diff --git a/gen/Windows.ts b/gen/Windows.ts deleted file mode 100644 index 52e77bf4..00000000 --- a/gen/Windows.ts +++ /dev/null @@ -1,223828 +0,0 @@ -// ---------------------------------------------------------------------------------- -// -// This code was generated by a tool. -// -// Generated from Windows.winmd version 255.255.255.255 at 26/03/2021 19:04:13 -// -// ---------------------------------------------------------------------------------- -export namespace Windows { - export namespace AI { - export namespace MachineLearning { - export interface ILearningModelFeatureDescriptor { - description: string; - isRequired: Boolean; - kind: LearningModelFeatureKind; - name: string; - } - export interface ILearningModelFeatureValue { - kind: LearningModelFeatureKind; - } - export interface ILearningModelOperatorProvider { - } - export class ImageFeatureDescriptor implements IImageFeatureDescriptor, ILearningModelFeatureDescriptor { - bitmapAlphaMode: Graphics.Imaging.BitmapAlphaMode; - bitmapPixelFormat: Graphics.Imaging.BitmapPixelFormat; - height: number; - width: number; - description: string; - isRequired: Boolean; - kind: LearningModelFeatureKind; - name: string; - - } - export class ImageFeatureValue implements IImageFeatureValue, ILearningModelFeatureValue { - videoFrame: Media.VideoFrame; - kind: LearningModelFeatureKind; - - static createFromVideoFrame(image: Media.VideoFrame): ImageFeatureValue { - throw new Error('shimmed function ImageFeatureValue.createFromVideoFrame'); - } - - } - export interface ITensor extends ILearningModelFeatureValue { - shape: number[]; - tensorKind: TensorKind; - } - export class LearningModel implements ILearningModel, Foundation.IClosable { - author: string; - description: string; - domain: string; - inputFeatures: ILearningModelFeatureDescriptor[]; - metadata: string[]; - name: string; - outputFeatures: ILearningModelFeatureDescriptor[]; - version: number; - - close(): void { - console.warn('shimmed function LearningModel.close'); - } - - static loadFromStorageFileAsync(modelFile: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModel.loadFromStorageFileAsync'); - } - - static loadFromStreamAsync(modelStream: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModel.loadFromStreamAsync'); - } - - static loadFromFilePath(filePath: string): LearningModel { - throw new Error('shimmed function LearningModel.loadFromFilePath'); - } - - static loadFromStream(modelStream: Storage.Streams.IRandomAccessStreamReference): LearningModel { - throw new Error('shimmed function LearningModel.loadFromStream'); - } - - static loadFromStorageFileAsync_1(modelFile: Storage.IStorageFile, operatorProvider: ILearningModelOperatorProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModel.loadFromStorageFileAsync_1'); - } - - static loadFromStreamAsync_1(modelStream: Storage.Streams.IRandomAccessStreamReference, operatorProvider: ILearningModelOperatorProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModel.loadFromStreamAsync_1'); - } - - static loadFromFilePath_1(filePath: string, operatorProvider: ILearningModelOperatorProvider): LearningModel { - throw new Error('shimmed function LearningModel.loadFromFilePath_1'); - } - - static loadFromStream_1(modelStream: Storage.Streams.IRandomAccessStreamReference, operatorProvider: ILearningModelOperatorProvider): LearningModel { - throw new Error('shimmed function LearningModel.loadFromStream_1'); - } - - } - export class LearningModelBinding implements ILearningModelBinding, Foundation.Collections.IMapView, Foundation.Collections.IIterable> { - // constructor(session: LearningModelSession); - constructor(session: LearningModelSession) {} - - size: number; - - bind(name: string, value: any): void { - console.warn('shimmed function LearningModelBinding.bind'); - } - - bind_1(name: string, value: any, props: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function LearningModelBinding.bind_1'); - } - - clear(): void { - console.warn('shimmed function LearningModelBinding.clear'); - } - - lookup(key: string): any { - throw new Error('shimmed function LearningModelBinding.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function LearningModelBinding.hasKey'); - } - - split(): { first: string[], second: string[] } { - throw new Error('shimmed function LearningModelBinding.split'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function LearningModelBinding.first'); - } - - } - export class LearningModelDevice implements ILearningModelDevice { - // constructor(deviceKind: LearningModelDeviceKind); - constructor(deviceKind: LearningModelDeviceKind) {} - - adapterId: Graphics.DisplayAdapterId; - direct3D11Device: Graphics.DirectX.Direct3D11.IDirect3DDevice; - - static createFromDirect3D11Device(device: Graphics.DirectX.Direct3D11.IDirect3DDevice): LearningModelDevice { - throw new Error('shimmed function LearningModelDevice.createFromDirect3D11Device'); - } - - } - export enum LearningModelDeviceKind { - default, - cpu, - directX, - directXHighPerformance, - directXMinPower, - } - export class LearningModelEvaluationResult implements ILearningModelEvaluationResult { - correlationId: string; - errorStatus: number; - outputs: string[]; - succeeded: Boolean; - - } - export enum LearningModelFeatureKind { - tensor, - sequence, - map, - image, - } - export class LearningModelSession implements ILearningModelSession, Foundation.IClosable { - // constructor(model: LearningModel, deviceToRunOn: LearningModelDevice, learningModelSessionOptions: LearningModelSessionOptions); - // constructor(model: LearningModel); - // constructor(model: LearningModel, deviceToRunOn: LearningModelDevice); - constructor(model: LearningModel, deviceToRunOn: LearningModelDevice, learningModelSessionOptions: LearningModelSessionOptions) {} - - device: LearningModelDevice; - evaluationProperties: Foundation.Collections.IPropertySet; - model: LearningModel; - - evaluateAsync(bindings: LearningModelBinding, correlationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModelSession.evaluateAsync'); - } - - evaluateFeaturesAsync(features: string[], correlationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModelSession.evaluateFeaturesAsync'); - } - - evaluate(bindings: LearningModelBinding, correlationId: string): LearningModelEvaluationResult { - throw new Error('shimmed function LearningModelSession.evaluate'); - } - - evaluateFeatures(features: string[], correlationId: string): LearningModelEvaluationResult { - throw new Error('shimmed function LearningModelSession.evaluateFeatures'); - } - - close(): void { - console.warn('shimmed function LearningModelSession.close'); - } - - } - export class LearningModelSessionOptions implements ILearningModelSessionOptions { - // constructor(); - batchSizeOverride: number = 1; - - } - export interface MachineLearningContract { - } - export class MapFeatureDescriptor implements IMapFeatureDescriptor, ILearningModelFeatureDescriptor { - description: string; - isRequired: Boolean; - kind: LearningModelFeatureKind; - name: string; - keyKind: TensorKind; - valueDescriptor: ILearningModelFeatureDescriptor; - - } - export namespace Preview { - export enum FeatureElementKindPreview { - undefined, - float, - uint8, - int8, - uint16, - int16, - int32, - int64, - string, - boolean, - float16, - double, - uint32, - uint64, - complex64, - complex128, - } - export interface ILearningModelVariableDescriptorPreview { - description: string; - isRequired: Boolean; - modelFeatureKind: LearningModelFeatureKindPreview; - name: string; - } - export class ImageVariableDescriptorPreview implements IImageVariableDescriptorPreview, ILearningModelVariableDescriptorPreview { - bitmapPixelFormat: Graphics.Imaging.BitmapPixelFormat; - height: number; - width: number; - description: string; - isRequired: Boolean; - modelFeatureKind: LearningModelFeatureKindPreview; - name: string; - - } - export class InferencingOptionsPreview implements IInferencingOptionsPreview { - reclaimMemoryAfterEvaluation: Boolean; - preferredDeviceKind: LearningModelDeviceKindPreview; - minimizeMemoryAllocation: Boolean; - maxBatchSize: number; - isTracingEnabled: Boolean; - - } - export class LearningModelBindingPreview implements ILearningModelBindingPreview, Foundation.Collections.IMapView, Foundation.Collections.IIterable> { - // constructor(model: LearningModelPreview); - constructor(model: LearningModelPreview) {} - - size: number; - - bind(name: string, value: any): void { - console.warn('shimmed function LearningModelBindingPreview.bind'); - } - - bind_1(name: string, value: any, metadata: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function LearningModelBindingPreview.bind_1'); - } - - clear(): void { - console.warn('shimmed function LearningModelBindingPreview.clear'); - } - - lookup(key: string): any { - throw new Error('shimmed function LearningModelBindingPreview.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function LearningModelBindingPreview.hasKey'); - } - - split(): { first: string[], second: string[] } { - throw new Error('shimmed function LearningModelBindingPreview.split'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function LearningModelBindingPreview.first'); - } - - } - export class LearningModelDescriptionPreview implements ILearningModelDescriptionPreview { - author: string; - description: string; - domain: string; - inputFeatures: Foundation.Collections.IIterable; - metadata: string[]; - name: string; - outputFeatures: Foundation.Collections.IIterable; - version: number; - - } - export enum LearningModelDeviceKindPreview { - learningDeviceAny, - learningDeviceCpu, - learningDeviceGpu, - learningDeviceNpu, - learningDeviceDsp, - learningDeviceFpga, - } - export class LearningModelEvaluationResultPreview implements ILearningModelEvaluationResultPreview { - correlationId: string; - outputs: string[]; - - } - export enum LearningModelFeatureKindPreview { - undefined, - tensor, - sequence, - map, - image, - } - export class LearningModelPreview implements ILearningModelPreview { - inferencingOptions: InferencingOptionsPreview; - description: LearningModelDescriptionPreview; - - evaluateAsync(binding: LearningModelBindingPreview, correlationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModelPreview.evaluateAsync'); - } - - evaluateFeaturesAsync(features: string[], correlationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModelPreview.evaluateFeaturesAsync'); - } - - static loadModelFromStorageFileAsync(modelFile: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModelPreview.loadModelFromStorageFileAsync'); - } - - static loadModelFromStreamAsync(modelStream: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function LearningModelPreview.loadModelFromStreamAsync'); - } - - } - export class LearningModelVariableDescriptorPreview implements ILearningModelVariableDescriptorPreview { - description: string; - isRequired: Boolean; - modelFeatureKind: LearningModelFeatureKindPreview; - name: string; - - } - export interface MachineLearningPreviewContract { - } - export class MapVariableDescriptorPreview implements IMapVariableDescriptorPreview, ILearningModelVariableDescriptorPreview { - description: string; - isRequired: Boolean; - modelFeatureKind: LearningModelFeatureKindPreview; - name: string; - fields: ILearningModelVariableDescriptorPreview; - keyKind: FeatureElementKindPreview; - validIntegerKeys: Foundation.Collections.IIterable; - validStringKeys: Foundation.Collections.IIterable; - - } - export class SequenceVariableDescriptorPreview implements ISequenceVariableDescriptorPreview, ILearningModelVariableDescriptorPreview { - description: string; - isRequired: Boolean; - modelFeatureKind: LearningModelFeatureKindPreview; - name: string; - elementType: ILearningModelVariableDescriptorPreview; - - } - export class TensorVariableDescriptorPreview implements ITensorVariableDescriptorPreview, ILearningModelVariableDescriptorPreview { - description: string; - isRequired: Boolean; - modelFeatureKind: LearningModelFeatureKindPreview; - name: string; - dataType: FeatureElementKindPreview; - shape: Foundation.Collections.IIterable; - - } - } - export class SequenceFeatureDescriptor implements ISequenceFeatureDescriptor, ILearningModelFeatureDescriptor { - description: string; - isRequired: Boolean; - kind: LearningModelFeatureKind; - name: string; - elementDescriptor: ILearningModelFeatureDescriptor; - - } - export class TensorBoolean implements ITensorBoolean, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): Boolean[] { - throw new Error('shimmed function TensorBoolean.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorBoolean.createReference'); - } - - close(): void { - console.warn('shimmed function TensorBoolean.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: Boolean[]): TensorBoolean { - throw new Error('shimmed function TensorBoolean.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorBoolean { - throw new Error('shimmed function TensorBoolean.createFromBuffer'); - } - - static create(): TensorBoolean { - throw new Error('shimmed function TensorBoolean.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorBoolean { - throw new Error('shimmed function TensorBoolean.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: Boolean[]): TensorBoolean { - throw new Error('shimmed function TensorBoolean.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorBoolean { - throw new Error('shimmed function TensorBoolean.createFromIterable'); - } - - } - export class TensorDouble implements ITensorDouble, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorDouble.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorDouble.createReference'); - } - - close(): void { - console.warn('shimmed function TensorDouble.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorDouble { - throw new Error('shimmed function TensorDouble.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorDouble { - throw new Error('shimmed function TensorDouble.createFromBuffer'); - } - - static create(): TensorDouble { - throw new Error('shimmed function TensorDouble.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorDouble { - throw new Error('shimmed function TensorDouble.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorDouble { - throw new Error('shimmed function TensorDouble.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorDouble { - throw new Error('shimmed function TensorDouble.createFromIterable'); - } - - } - export class TensorFeatureDescriptor implements ITensorFeatureDescriptor, ILearningModelFeatureDescriptor { - description: string; - isRequired: Boolean; - kind: LearningModelFeatureKind; - name: string; - shape: number[]; - tensorKind: TensorKind; - - } - export class TensorFloat implements ITensorFloat, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorFloat.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorFloat.createReference'); - } - - close(): void { - console.warn('shimmed function TensorFloat.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorFloat { - throw new Error('shimmed function TensorFloat.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorFloat { - throw new Error('shimmed function TensorFloat.createFromBuffer'); - } - - static create(): TensorFloat { - throw new Error('shimmed function TensorFloat.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorFloat { - throw new Error('shimmed function TensorFloat.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorFloat { - throw new Error('shimmed function TensorFloat.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorFloat { - throw new Error('shimmed function TensorFloat.createFromIterable'); - } - - } - export class TensorFloat16Bit implements ITensorFloat16Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorFloat16Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorFloat16Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorFloat16Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorFloat16Bit { - throw new Error('shimmed function TensorFloat16Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorFloat16Bit { - throw new Error('shimmed function TensorFloat16Bit.createFromBuffer'); - } - - static create(): TensorFloat16Bit { - throw new Error('shimmed function TensorFloat16Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorFloat16Bit { - throw new Error('shimmed function TensorFloat16Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorFloat16Bit { - throw new Error('shimmed function TensorFloat16Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorFloat16Bit { - throw new Error('shimmed function TensorFloat16Bit.createFromIterable'); - } - - } - export class TensorInt16Bit implements ITensorInt16Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorInt16Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorInt16Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorInt16Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorInt16Bit { - throw new Error('shimmed function TensorInt16Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorInt16Bit { - throw new Error('shimmed function TensorInt16Bit.createFromBuffer'); - } - - static create(): TensorInt16Bit { - throw new Error('shimmed function TensorInt16Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorInt16Bit { - throw new Error('shimmed function TensorInt16Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorInt16Bit { - throw new Error('shimmed function TensorInt16Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorInt16Bit { - throw new Error('shimmed function TensorInt16Bit.createFromIterable'); - } - - } - export class TensorInt32Bit implements ITensorInt32Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorInt32Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorInt32Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorInt32Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorInt32Bit { - throw new Error('shimmed function TensorInt32Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorInt32Bit { - throw new Error('shimmed function TensorInt32Bit.createFromBuffer'); - } - - static create(): TensorInt32Bit { - throw new Error('shimmed function TensorInt32Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorInt32Bit { - throw new Error('shimmed function TensorInt32Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorInt32Bit { - throw new Error('shimmed function TensorInt32Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorInt32Bit { - throw new Error('shimmed function TensorInt32Bit.createFromIterable'); - } - - } - export class TensorInt64Bit implements ITensorInt64Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorInt64Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorInt64Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorInt64Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorInt64Bit { - throw new Error('shimmed function TensorInt64Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorInt64Bit { - throw new Error('shimmed function TensorInt64Bit.createFromBuffer'); - } - - static create(): TensorInt64Bit { - throw new Error('shimmed function TensorInt64Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorInt64Bit { - throw new Error('shimmed function TensorInt64Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorInt64Bit { - throw new Error('shimmed function TensorInt64Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorInt64Bit { - throw new Error('shimmed function TensorInt64Bit.createFromIterable'); - } - - } - export class TensorInt8Bit implements ITensorInt8Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorInt8Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorInt8Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorInt8Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorInt8Bit { - throw new Error('shimmed function TensorInt8Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorInt8Bit { - throw new Error('shimmed function TensorInt8Bit.createFromBuffer'); - } - - static create(): TensorInt8Bit { - throw new Error('shimmed function TensorInt8Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorInt8Bit { - throw new Error('shimmed function TensorInt8Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorInt8Bit { - throw new Error('shimmed function TensorInt8Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorInt8Bit { - throw new Error('shimmed function TensorInt8Bit.createFromIterable'); - } - - } - export enum TensorKind { - undefined, - float, - uint8, - int8, - uint16, - int16, - int32, - int64, - string, - boolean, - float16, - double, - uint32, - uint64, - complex64, - complex128, - } - export class TensorString implements ITensorString, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): string[] { - throw new Error('shimmed function TensorString.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorString.createReference'); - } - - close(): void { - console.warn('shimmed function TensorString.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: string[]): TensorString { - throw new Error('shimmed function TensorString.createFromShapeArrayAndDataArray'); - } - - static create(): TensorString { - throw new Error('shimmed function TensorString.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorString { - throw new Error('shimmed function TensorString.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: string[]): TensorString { - throw new Error('shimmed function TensorString.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorString { - throw new Error('shimmed function TensorString.createFromIterable'); - } - - } - export class TensorUInt16Bit implements ITensorUInt16Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorUInt16Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorUInt16Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorUInt16Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorUInt16Bit { - throw new Error('shimmed function TensorUInt16Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorUInt16Bit { - throw new Error('shimmed function TensorUInt16Bit.createFromBuffer'); - } - - static create(): TensorUInt16Bit { - throw new Error('shimmed function TensorUInt16Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorUInt16Bit { - throw new Error('shimmed function TensorUInt16Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorUInt16Bit { - throw new Error('shimmed function TensorUInt16Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorUInt16Bit { - throw new Error('shimmed function TensorUInt16Bit.createFromIterable'); - } - - } - export class TensorUInt32Bit implements ITensorUInt32Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorUInt32Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorUInt32Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorUInt32Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorUInt32Bit { - throw new Error('shimmed function TensorUInt32Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorUInt32Bit { - throw new Error('shimmed function TensorUInt32Bit.createFromBuffer'); - } - - static create(): TensorUInt32Bit { - throw new Error('shimmed function TensorUInt32Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorUInt32Bit { - throw new Error('shimmed function TensorUInt32Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorUInt32Bit { - throw new Error('shimmed function TensorUInt32Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorUInt32Bit { - throw new Error('shimmed function TensorUInt32Bit.createFromIterable'); - } - - } - export class TensorUInt64Bit implements ITensorUInt64Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorUInt64Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorUInt64Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorUInt64Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorUInt64Bit { - throw new Error('shimmed function TensorUInt64Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorUInt64Bit { - throw new Error('shimmed function TensorUInt64Bit.createFromBuffer'); - } - - static create(): TensorUInt64Bit { - throw new Error('shimmed function TensorUInt64Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorUInt64Bit { - throw new Error('shimmed function TensorUInt64Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorUInt64Bit { - throw new Error('shimmed function TensorUInt64Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorUInt64Bit { - throw new Error('shimmed function TensorUInt64Bit.createFromIterable'); - } - - } - export class TensorUInt8Bit implements ITensorUInt8Bit, ITensor, ILearningModelFeatureValue, Foundation.IMemoryBuffer, Foundation.IClosable { - kind: LearningModelFeatureKind; - shape: number[]; - tensorKind: TensorKind; - - getAsVectorView(): number[] { - throw new Error('shimmed function TensorUInt8Bit.getAsVectorView'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function TensorUInt8Bit.createReference'); - } - - close(): void { - console.warn('shimmed function TensorUInt8Bit.close'); - } - - static createFromShapeArrayAndDataArray(shape: number[], data: number[]): TensorUInt8Bit { - throw new Error('shimmed function TensorUInt8Bit.createFromShapeArrayAndDataArray'); - } - - static createFromBuffer(shape: number[], buffer: Storage.Streams.IBuffer): TensorUInt8Bit { - throw new Error('shimmed function TensorUInt8Bit.createFromBuffer'); - } - - static create(): TensorUInt8Bit { - throw new Error('shimmed function TensorUInt8Bit.create'); - } - - static create_1(shape: Foundation.Collections.IIterable): TensorUInt8Bit { - throw new Error('shimmed function TensorUInt8Bit.create_1'); - } - - static createFromArray(shape: Foundation.Collections.IIterable, data: number[]): TensorUInt8Bit { - throw new Error('shimmed function TensorUInt8Bit.createFromArray'); - } - - static createFromIterable(shape: Foundation.Collections.IIterable, data: Foundation.Collections.IIterable): TensorUInt8Bit { - throw new Error('shimmed function TensorUInt8Bit.createFromIterable'); - } - - } - } - } - export namespace ApplicationModel { - export namespace Activation { - export interface ActivatedEventsContract { - } - export interface ActivationCameraSettingsContract { - } - export enum ActivationKind { - launch, - search, - shareTarget, - file, - protocol, - fileOpenPicker, - fileSavePicker, - cachedFileUpdater, - contactPicker, - device, - printTaskSettings, - cameraSettings, - restrictedLaunch, - appointmentsProvider, - contact, - lockScreenCall, - voiceCommand, - lockScreen, - pickerReturned = 1000, - walletAction, - pickFileContinuation, - pickSaveFileContinuation, - pickFolderContinuation, - webAuthenticationBrokerContinuation, - webAccountProvider, - componentUI, - protocolForResults = 1009, - toastNotification, - print3DWorkflow, - dialReceiver, - devicePairing, - userDataAccountsProvider, - filePickerExperience, - lockScreenComponent, - contactPanel, - printWorkflowForegroundTask, - gameUIProvider, - startupTask, - commandLineLaunch, - barcodeScannerProvider, - } - export enum ApplicationExecutionState { - notRunning, - running, - suspended, - terminated, - closedByUser, - } - export class AppointmentsProviderAddAppointmentActivatedEventArgs implements IAppointmentsProviderAddAppointmentActivatedEventArgs, IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - verb: string; - addAppointmentOperation: Appointments.AppointmentsProvider.AddAppointmentOperation; - - } - export class AppointmentsProviderRemoveAppointmentActivatedEventArgs implements IAppointmentsProviderRemoveAppointmentActivatedEventArgs, IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - verb: string; - removeAppointmentOperation: Appointments.AppointmentsProvider.RemoveAppointmentOperation; - - } - export class AppointmentsProviderReplaceAppointmentActivatedEventArgs implements IAppointmentsProviderReplaceAppointmentActivatedEventArgs, IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - verb: string; - replaceAppointmentOperation: Appointments.AppointmentsProvider.ReplaceAppointmentOperation; - - } - export class AppointmentsProviderShowAppointmentDetailsActivatedEventArgs implements IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs, IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - verb: string; - instanceStartDate: Date | null; - localId: string; - roamingId: string; - - } - export class AppointmentsProviderShowTimeFrameActivatedEventArgs implements IAppointmentsProviderShowTimeFrameActivatedEventArgs, IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - verb: string; - duration: number; - timeToShow: Date; - - } - export class BackgroundActivatedEventArgs implements IBackgroundActivatedEventArgs { - taskInstance: Background.IBackgroundTaskInstance; - - } - export class BarcodeScannerPreviewActivatedEventArgs implements IBarcodeScannerPreviewActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - connectionId: string; - - } - export class CachedFileUpdaterActivatedEventArgs implements ICachedFileUpdaterActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - cachedFileUpdaterUI: Storage.Provider.CachedFileUpdaterUI; - - } - export class CameraSettingsActivatedEventArgs implements ICameraSettingsActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - videoDeviceController: any; - videoDeviceExtension: any; - - } - export class CommandLineActivatedEventArgs implements ICommandLineActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - operation: CommandLineActivationOperation; - - } - export class CommandLineActivationOperation implements ICommandLineActivationOperation { - exitCode: number; - __arguments: string; - currentDirectoryPath: string; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CommandLineActivationOperation.getDeferral'); - } - - } - export interface ContactActivatedEventsContract { - } - export class ContactCallActivatedEventArgs implements IContactCallActivatedEventArgs, IContactActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - verb: string; - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - - } - export class ContactMapActivatedEventArgs implements IContactMapActivatedEventArgs, IContactActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - verb: string; - address: Contacts.ContactAddress; - contact: Contacts.Contact; - - } - export class ContactMessageActivatedEventArgs implements IContactMessageActivatedEventArgs, IContactActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - verb: string; - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - - } - export class ContactPanelActivatedEventArgs implements IContactPanelActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - contact: Contacts.Contact; - contactPanel: Contacts.ContactPanel; - - } - export class ContactPickerActivatedEventArgs implements IContactPickerActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - contactPickerUI: Contacts.Provider.ContactPickerUI; - - } - export class ContactPostActivatedEventArgs implements IContactPostActivatedEventArgs, IContactActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - verb: string; - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - - } - export class ContactVideoCallActivatedEventArgs implements IContactVideoCallActivatedEventArgs, IContactActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - verb: string; - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - - } - export class DeviceActivatedEventArgs implements IDeviceActivatedEventArgs, IActivatedEventArgs, IApplicationViewActivatedEventArgs, IViewSwitcherProvider, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - deviceInformationId: string; - verb: string; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class DevicePairingActivatedEventArgs implements IDevicePairingActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - deviceInformation: Devices.Enumeration.DeviceInformation; - - } - export class DialReceiverActivatedEventArgs implements IDialReceiverActivatedEventArgs, ILaunchActivatedEventArgs, IActivatedEventArgs, IApplicationViewActivatedEventArgs, IViewSwitcherProvider, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - appName: string; - __arguments: string; - tileId: string; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class FileActivatedEventArgs implements IFileActivatedEventArgs, IActivatedEventArgs, IFileActivatedEventArgsWithNeighboringFiles, IFileActivatedEventArgsWithCallerPackageFamilyName, IApplicationViewActivatedEventArgs, IViewSwitcherProvider, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - files: Storage.IStorageItem[]; - verb: string; - callerPackageFamilyName: string; - neighboringFilesQuery: Storage.Search.StorageFileQueryResult; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class FileOpenPickerActivatedEventArgs implements IFileOpenPickerActivatedEventArgs, IActivatedEventArgs, IFileOpenPickerActivatedEventArgs2, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - fileOpenPickerUI: Storage.Pickers.Provider.FileOpenPickerUI; - callerPackageFamilyName: string; - - } - export class FileOpenPickerContinuationEventArgs implements IFileOpenPickerContinuationEventArgs, IContinuationActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - continuationData: Foundation.Collections.ValueSet; - files: Storage.StorageFile[]; - - } - export class FileSavePickerActivatedEventArgs implements IFileSavePickerActivatedEventArgs, IActivatedEventArgs, IFileSavePickerActivatedEventArgs2, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - fileSavePickerUI: Storage.Pickers.Provider.FileSavePickerUI; - callerPackageFamilyName: string; - enterpriseId: string; - - } - export class FileSavePickerContinuationEventArgs implements IFileSavePickerContinuationEventArgs, IContinuationActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - continuationData: Foundation.Collections.ValueSet; - file: Storage.StorageFile; - - } - export class FolderPickerContinuationEventArgs implements IFolderPickerContinuationEventArgs, IContinuationActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - continuationData: Foundation.Collections.ValueSet; - folder: Storage.StorageFolder; - - } - export interface IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - } - export interface IActivatedEventArgsWithUser extends IActivatedEventArgs { - user: System.User; - } - export interface IApplicationViewActivatedEventArgs extends IActivatedEventArgs { - currentlyShownApplicationViewId: number; - } - export interface IAppointmentsProviderActivatedEventArgs extends IActivatedEventArgs { - verb: string; - } - export interface IAppointmentsProviderAddAppointmentActivatedEventArgs extends IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs { - addAppointmentOperation: Appointments.AppointmentsProvider.AddAppointmentOperation; - } - export interface IAppointmentsProviderRemoveAppointmentActivatedEventArgs extends IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs { - removeAppointmentOperation: Appointments.AppointmentsProvider.RemoveAppointmentOperation; - } - export interface IAppointmentsProviderReplaceAppointmentActivatedEventArgs extends IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs { - replaceAppointmentOperation: Appointments.AppointmentsProvider.ReplaceAppointmentOperation; - } - export interface IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs extends IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs { - instanceStartDate: Date | null; - localId: string; - roamingId: string; - } - export interface IAppointmentsProviderShowTimeFrameActivatedEventArgs extends IAppointmentsProviderActivatedEventArgs, IActivatedEventArgs { - duration: number; - timeToShow: Date; - } - export interface IBackgroundActivatedEventArgs { - taskInstance: Background.IBackgroundTaskInstance; - } - export interface IBarcodeScannerPreviewActivatedEventArgs extends IActivatedEventArgs { - connectionId: string; - } - export interface ICachedFileUpdaterActivatedEventArgs extends IActivatedEventArgs { - cachedFileUpdaterUI: Storage.Provider.CachedFileUpdaterUI; - } - export interface ICameraSettingsActivatedEventArgs extends IActivatedEventArgs { - videoDeviceController: any; - videoDeviceExtension: any; - } - export interface ICommandLineActivatedEventArgs extends IActivatedEventArgs { - operation: CommandLineActivationOperation; - } - export interface IContactActivatedEventArgs extends IActivatedEventArgs { - verb: string; - } - export interface IContactCallActivatedEventArgs extends IContactActivatedEventArgs, IActivatedEventArgs { - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - } - export interface IContactMapActivatedEventArgs extends IContactActivatedEventArgs, IActivatedEventArgs { - address: Contacts.ContactAddress; - contact: Contacts.Contact; - } - export interface IContactMessageActivatedEventArgs extends IContactActivatedEventArgs, IActivatedEventArgs { - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - } - export interface IContactPanelActivatedEventArgs { - contact: Contacts.Contact; - contactPanel: Contacts.ContactPanel; - } - export interface IContactPickerActivatedEventArgs extends IActivatedEventArgs { - contactPickerUI: Contacts.Provider.ContactPickerUI; - } - export interface IContactPostActivatedEventArgs extends IContactActivatedEventArgs, IActivatedEventArgs { - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - } - export interface IContactsProviderActivatedEventArgs extends IActivatedEventArgs { - verb: string; - } - export interface IContactVideoCallActivatedEventArgs extends IContactActivatedEventArgs, IActivatedEventArgs { - contact: Contacts.Contact; - serviceId: string; - serviceUserId: string; - } - export interface IContinuationActivatedEventArgs extends IActivatedEventArgs { - continuationData: Foundation.Collections.ValueSet; - } - export interface IDeviceActivatedEventArgs extends IActivatedEventArgs { - deviceInformationId: string; - verb: string; - } - export interface IDevicePairingActivatedEventArgs extends IActivatedEventArgs { - deviceInformation: Devices.Enumeration.DeviceInformation; - } - export interface IDialReceiverActivatedEventArgs extends ILaunchActivatedEventArgs, IActivatedEventArgs { - appName: string; - } - export interface IFileActivatedEventArgs extends IActivatedEventArgs { - files: Storage.IStorageItem[]; - verb: string; - } - export interface IFileActivatedEventArgsWithCallerPackageFamilyName extends IActivatedEventArgs { - callerPackageFamilyName: string; - } - export interface IFileActivatedEventArgsWithNeighboringFiles extends IFileActivatedEventArgs, IActivatedEventArgs { - neighboringFilesQuery: Storage.Search.StorageFileQueryResult; - } - export interface IFileOpenPickerActivatedEventArgs extends IActivatedEventArgs { - fileOpenPickerUI: Storage.Pickers.Provider.FileOpenPickerUI; - } - export interface IFileOpenPickerActivatedEventArgs2 { - callerPackageFamilyName: string; - } - export interface IFileOpenPickerContinuationEventArgs extends IContinuationActivatedEventArgs, IActivatedEventArgs { - files: Storage.StorageFile[]; - } - export interface IFileSavePickerActivatedEventArgs extends IActivatedEventArgs { - fileSavePickerUI: Storage.Pickers.Provider.FileSavePickerUI; - } - export interface IFileSavePickerActivatedEventArgs2 { - callerPackageFamilyName: string; - enterpriseId: string; - } - export interface IFileSavePickerContinuationEventArgs extends IContinuationActivatedEventArgs, IActivatedEventArgs { - file: Storage.StorageFile; - } - export interface IFolderPickerContinuationEventArgs extends IContinuationActivatedEventArgs, IActivatedEventArgs { - folder: Storage.StorageFolder; - } - export interface ILaunchActivatedEventArgs extends IActivatedEventArgs { - __arguments: string; - tileId: string; - } - export interface ILaunchActivatedEventArgs2 extends ILaunchActivatedEventArgs, IActivatedEventArgs { - tileActivatedInfo: TileActivatedInfo; - } - export interface ILockScreenActivatedEventArgs extends IActivatedEventArgs { - info: any; - } - export interface ILockScreenCallActivatedEventArgs extends ILaunchActivatedEventArgs, IActivatedEventArgs { - callUI: Calls.LockScreenCallUI; - } - export interface IPickerReturnedActivatedEventArgs extends IActivatedEventArgs { - pickerOperationId: string; - } - export interface IPrelaunchActivatedEventArgs extends IActivatedEventArgs { - prelaunchActivated: Boolean; - } - export interface IPrint3DWorkflowActivatedEventArgs extends IActivatedEventArgs { - workflow: Devices.Printers.Extensions.Print3DWorkflow; - } - export interface IPrintTaskSettingsActivatedEventArgs extends IActivatedEventArgs { - configuration: Devices.Printers.Extensions.PrintTaskConfiguration; - } - export interface IProtocolActivatedEventArgs extends IActivatedEventArgs { - uri: Foundation.Uri; - } - export interface IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData extends IActivatedEventArgs { - callerPackageFamilyName: string; - data: Foundation.Collections.ValueSet; - } - export interface IProtocolForResultsActivatedEventArgs extends IActivatedEventArgs { - protocolForResultsOperation: System.ProtocolForResultsOperation; - } - export interface IRestrictedLaunchActivatedEventArgs extends IActivatedEventArgs { - sharedContext: any; - } - export interface ISearchActivatedEventArgs extends IActivatedEventArgs { - language: string; - queryText: string; - } - export interface ISearchActivatedEventArgsWithLinguisticDetails { - linguisticDetails: Search.SearchPaneQueryLinguisticDetails; - } - export interface IShareTargetActivatedEventArgs extends IActivatedEventArgs { - shareOperation: DataTransfer.ShareTarget.ShareOperation; - } - export interface IStartupTaskActivatedEventArgs extends IActivatedEventArgs { - taskId: string; - } - export interface IToastNotificationActivatedEventArgs extends IActivatedEventArgs { - argument: string; - userInput: Foundation.Collections.ValueSet; - } - export interface IUserDataAccountProviderActivatedEventArgs extends IActivatedEventArgs { - operation: UserDataAccounts.Provider.IUserDataAccountProviderOperation; - } - export interface IViewSwitcherProvider extends IActivatedEventArgs { - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - } - export interface IVoiceCommandActivatedEventArgs extends IActivatedEventArgs { - result: Media.SpeechRecognition.SpeechRecognitionResult; - } - export interface IWalletActionActivatedEventArgs extends IActivatedEventArgs { - actionId: string; - actionKind: Wallet.WalletActionKind; - itemId: string; - } - export interface IWebAccountProviderActivatedEventArgs extends IActivatedEventArgs { - operation: Security.Authentication.Web.Provider.IWebAccountProviderOperation; - } - export interface IWebAuthenticationBrokerContinuationEventArgs extends IContinuationActivatedEventArgs, IActivatedEventArgs { - webAuthenticationResult: Security.Authentication.Web.WebAuthenticationResult; - } - export class LaunchActivatedEventArgs implements ILaunchActivatedEventArgs, IActivatedEventArgs, IApplicationViewActivatedEventArgs, IPrelaunchActivatedEventArgs, IViewSwitcherProvider, ILaunchActivatedEventArgs2, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - __arguments: string; - tileId: string; - tileActivatedInfo: TileActivatedInfo; - prelaunchActivated: Boolean; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class LockScreenActivatedEventArgs implements ILockScreenActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - info: any; - - } - export class LockScreenCallActivatedEventArgs implements ILockScreenCallActivatedEventArgs, ILaunchActivatedEventArgs, IActivatedEventArgs, IApplicationViewActivatedEventArgs, IViewSwitcherProvider { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - currentlyShownApplicationViewId: number; - __arguments: string; - tileId: string; - callUI: Calls.LockScreenCallUI; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class LockScreenComponentActivatedEventArgs implements IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - - } - export class PickerReturnedActivatedEventArgs implements IPickerReturnedActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - pickerOperationId: string; - - } - export class Print3DWorkflowActivatedEventArgs implements IPrint3DWorkflowActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - workflow: Devices.Printers.Extensions.Print3DWorkflow; - - } - export class PrintTaskSettingsActivatedEventArgs implements IPrintTaskSettingsActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - configuration: Devices.Printers.Extensions.PrintTaskConfiguration; - - } - export class ProtocolActivatedEventArgs implements IProtocolActivatedEventArgs, IActivatedEventArgs, IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData, IApplicationViewActivatedEventArgs, IViewSwitcherProvider, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - uri: Foundation.Uri; - callerPackageFamilyName: string; - data: Foundation.Collections.ValueSet; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class ProtocolForResultsActivatedEventArgs implements IProtocolForResultsActivatedEventArgs, IActivatedEventArgs, IProtocolActivatedEventArgs, IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData, IApplicationViewActivatedEventArgs, IViewSwitcherProvider, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - uri: Foundation.Uri; - callerPackageFamilyName: string; - data: Foundation.Collections.ValueSet; - protocolForResultsOperation: System.ProtocolForResultsOperation; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class RestrictedLaunchActivatedEventArgs implements IRestrictedLaunchActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - sharedContext: any; - - } - export class SearchActivatedEventArgs implements ISearchActivatedEventArgs, IActivatedEventArgs, IApplicationViewActivatedEventArgs, ISearchActivatedEventArgsWithLinguisticDetails, IViewSwitcherProvider, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - language: string; - queryText: string; - linguisticDetails: Search.SearchPaneQueryLinguisticDetails; - viewSwitcher: UI.ViewManagement.ActivationViewSwitcher; - - } - export class ShareTargetActivatedEventArgs implements IShareTargetActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - shareOperation: DataTransfer.ShareTarget.ShareOperation; - - } - export class SplashScreen implements ISplashScreen { - imageLocation: Foundation.Rect; - - addEventListener(name: string, handler: Function) { - console.warn(`SplashScreen::addEventListener: ${name}`); - switch (name) { - case "dismissed": // Foundation.TypedEventHandler - break; - } - - } - } - export class StartupTaskActivatedEventArgs implements IStartupTaskActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - taskId: string; - - } - export class TileActivatedInfo implements ITileActivatedInfo { - recentlyShownNotifications: UI.Notifications.ShownTileNotification[]; - - } - export class ToastNotificationActivatedEventArgs implements IToastNotificationActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser, IApplicationViewActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - argument: string; - userInput: Foundation.Collections.ValueSet; - - } - export class UserDataAccountProviderActivatedEventArgs implements IUserDataAccountProviderActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - operation: UserDataAccounts.Provider.IUserDataAccountProviderOperation; - - } - export class VoiceCommandActivatedEventArgs implements IVoiceCommandActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - result: Media.SpeechRecognition.SpeechRecognitionResult; - - } - export class WalletActionActivatedEventArgs implements IWalletActionActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - actionId: string; - actionKind: Wallet.WalletActionKind; - itemId: string; - - } - export class WebAccountProviderActivatedEventArgs implements IWebAccountProviderActivatedEventArgs, IActivatedEventArgs, IActivatedEventArgsWithUser { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - user: System.User; - operation: Security.Authentication.Web.Provider.IWebAccountProviderOperation; - - } - export class WebAuthenticationBrokerContinuationEventArgs implements IWebAuthenticationBrokerContinuationEventArgs, IContinuationActivatedEventArgs, IActivatedEventArgs { - kind: ActivationKind; - previousExecutionState: ApplicationExecutionState; - splashScreen: SplashScreen; - continuationData: Foundation.Collections.ValueSet; - webAuthenticationResult: Security.Authentication.Web.WebAuthenticationResult; - - } - export interface WebUISearchActivatedEventsContract { - } - } - export enum AddResourcePackageOptions { - none, - forceTargetAppShutdown, - applyUpdateIfAvailable, - } - export class AppDisplayInfo implements IAppDisplayInfo { - description: string; - displayName: string; - - getLogo(size: Foundation.Size): Storage.Streams.RandomAccessStreamReference { - throw new Error('shimmed function AppDisplayInfo.getLogo'); - } - - } - export namespace AppExtensions { - export class AppExtension implements IAppExtension { - appInfo: AppInfo; - description: string; - displayName: string; - id: string; - package: Package; - - getExtensionPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppExtension.getExtensionPropertiesAsync'); - } - - getPublicFolderAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppExtension.getPublicFolderAsync'); - } - - } - export class AppExtensionCatalog implements IAppExtensionCatalog { - findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppExtensionCatalog.findAllAsync'); - } - - requestRemovePackageAsync(packageFullName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppExtensionCatalog.requestRemovePackageAsync'); - } - - static open(appExtensionName: string): AppExtensionCatalog { - throw new Error('shimmed function AppExtensionCatalog.open'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppExtensionCatalog::addEventListener: ${name}`); - switch (name) { - case "packageinstalled": // Foundation.TypedEventHandler - case "packagestatuschanged": // Foundation.TypedEventHandler - case "packageuninstalling": // Foundation.TypedEventHandler - case "packageupdated": // Foundation.TypedEventHandler - case "packageupdating": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppExtensionPackageInstalledEventArgs implements IAppExtensionPackageInstalledEventArgs { - appExtensionName: string; - extensions: AppExtension[]; - package: Package; - - } - export class AppExtensionPackageStatusChangedEventArgs implements IAppExtensionPackageStatusChangedEventArgs { - appExtensionName: string; - package: Package; - - } - export class AppExtensionPackageUninstallingEventArgs implements IAppExtensionPackageUninstallingEventArgs { - appExtensionName: string; - package: Package; - - } - export class AppExtensionPackageUpdatedEventArgs implements IAppExtensionPackageUpdatedEventArgs { - appExtensionName: string; - extensions: AppExtension[]; - package: Package; - - } - export class AppExtensionPackageUpdatingEventArgs implements IAppExtensionPackageUpdatingEventArgs { - appExtensionName: string; - package: Package; - - } - } - export class AppInfo implements IAppInfo { - appUserModelId: string; - displayInfo: AppDisplayInfo; - id: string; - packageFamilyName: string; - - } - export class AppInstallerInfo implements IAppInstallerInfo { - uri: Foundation.Uri; - - } - export class AppInstance implements IAppInstance { - isCurrentInstance: Boolean; - key: string; - static recommendedInstance: AppInstance; - - redirectActivationTo(): void { - console.warn('shimmed function AppInstance.redirectActivationTo'); - } - - static getActivatedEventArgs(): Activation.IActivatedEventArgs { - throw new Error('shimmed function AppInstance.getActivatedEventArgs'); - } - - static findOrRegisterInstanceForKey(key: string): AppInstance { - throw new Error('shimmed function AppInstance.findOrRegisterInstanceForKey'); - } - - static unregister(): void { - console.warn('shimmed function AppInstance.unregister'); - } - - static getInstances(): AppInstance[] { - throw new Error('shimmed function AppInstance.getInstances'); - } - - } - export namespace Appointments { - export class Appointment implements IAppointment, IAppointment2, IAppointment3 { - // constructor(); - location: string = ''; - allDay: Boolean = false; - organizer: AppointmentOrganizer; - duration: number = 0; - details: string = ''; - busyStatus: AppointmentBusyStatus = AppointmentBusyStatus.busy; - recurrence: AppointmentRecurrence; - subject: string = ''; - uri: Foundation.Uri; - startTime: Date = new Date(1616785453704); - sensitivity: AppointmentSensitivity = AppointmentSensitivity.public; - reminder: number | null; - invitees: AppointmentInvitee[] = [ ]; - allowNewTimeProposal: Boolean = true; - userResponse: AppointmentParticipantResponse = AppointmentParticipantResponse.none; - roamingId: string = ''; - replyTime: Date | null; - isResponseRequested: Boolean = true; - isOrganizedByUser: Boolean = false; - isCanceledMeeting: Boolean = false; - onlineMeetingLink: string = ''; - hasInvitees: Boolean = false; - calendarId: string = ''; - localId: string = ''; - originalStartTime: Date | null; - remoteChangeNumber: number = 0; - detailsKind: AppointmentDetailsKind = AppointmentDetailsKind.plainText; - changeNumber: number = 0; - - } - export enum AppointmentBusyStatus { - busy, - tentative, - free, - outOfOffice, - workingElsewhere, - } - export class AppointmentCalendar implements IAppointmentCalendar, IAppointmentCalendar2, IAppointmentCalendar3 { - summaryCardView: AppointmentSummaryCardView; - otherAppWriteAccess: AppointmentCalendarOtherAppWriteAccess; - displayColor: UI.Color; - isHidden: Boolean; - displayName: string; - otherAppReadAccess: AppointmentCalendarOtherAppReadAccess; - localId: string; - sourceDisplayName: string; - canCancelMeetings: Boolean; - canNotifyInvitees: Boolean; - remoteId: string; - mustNofityInvitees: Boolean; - canUpdateMeetingResponses: Boolean; - canProposeNewTimeForMeetings: Boolean; - canCreateOrUpdateAppointments: Boolean; - canForwardMeetings: Boolean; - syncManager: AppointmentCalendarSyncManager; - userDataAccountId: string; - - findAppointmentsAsync(rangeStart: Date, rangeLength: number): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.findAppointmentsAsync'); - } - - findAppointmentsAsync_1(rangeStart: Date, rangeLength: number, options: FindAppointmentsOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.findAppointmentsAsync_1'); - } - - findExceptionsFromMasterAsync(masterLocalId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.findExceptionsFromMasterAsync'); - } - - findAllInstancesAsync(masterLocalId: string, rangeStart: Date, rangeLength: number): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.findAllInstancesAsync'); - } - - findAllInstancesAsync_1(masterLocalId: string, rangeStart: Date, rangeLength: number, pOptions: FindAppointmentsOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.findAllInstancesAsync_1'); - } - - getAppointmentAsync(localId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.getAppointmentAsync'); - } - - getAppointmentInstanceAsync(localId: string, instanceStartTime: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.getAppointmentInstanceAsync'); - } - - findUnexpandedAppointmentsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.findUnexpandedAppointmentsAsync'); - } - - findUnexpandedAppointmentsAsync_1(options: FindAppointmentsOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.findUnexpandedAppointmentsAsync_1'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendar.deleteAsync'); - } - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendar.saveAsync'); - } - - deleteAppointmentAsync(localId: string): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendar.deleteAppointmentAsync'); - } - - deleteAppointmentInstanceAsync(localId: string, instanceStartTime: Date): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendar.deleteAppointmentInstanceAsync'); - } - - saveAppointmentAsync(pAppointment: Appointment): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendar.saveAppointmentAsync'); - } - - tryCreateOrUpdateAppointmentAsync(appointment: Appointment, notifyInvitees: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.tryCreateOrUpdateAppointmentAsync'); - } - - tryCancelMeetingAsync(meeting: Appointment, subject: string, comment: string, notifyInvitees: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.tryCancelMeetingAsync'); - } - - tryForwardMeetingAsync(meeting: Appointment, invitees: Foundation.Collections.IIterable, subject: string, forwardHeader: string, comment: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.tryForwardMeetingAsync'); - } - - tryProposeNewTimeForMeetingAsync(meeting: Appointment, newStartTime: Date, newDuration: number, subject: string, comment: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.tryProposeNewTimeForMeetingAsync'); - } - - tryUpdateMeetingResponseAsync(meeting: Appointment, response: AppointmentParticipantResponse, subject: string, comment: string, sendUpdate: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendar.tryUpdateMeetingResponseAsync'); - } - - registerSyncManagerAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendar.registerSyncManagerAsync'); - } - - } - export enum AppointmentCalendarOtherAppReadAccess { - systemOnly, - limited, - full, - none, - } - export enum AppointmentCalendarOtherAppWriteAccess { - none, - systemOnly, - limited, - } - export class AppointmentCalendarSyncManager implements IAppointmentCalendarSyncManager, IAppointmentCalendarSyncManager2 { - status: AppointmentCalendarSyncStatus; - lastSuccessfulSyncTime: Date; - lastAttemptedSyncTime: Date; - - syncAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentCalendarSyncManager.syncAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppointmentCalendarSyncManager::addEventListener: ${name}`); - switch (name) { - case "syncstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppointmentCalendarSyncStatus { - idle, - syncing, - upToDate, - authenticationError, - policyError, - unknownError, - manualAccountRemovalRequired, - } - export class AppointmentConflictResult implements IAppointmentConflictResult { - date: Date; - type: AppointmentConflictType; - - } - export enum AppointmentConflictType { - none, - adjacent, - overlap, - } - export enum AppointmentDaysOfWeek { - none, - sunday, - monday, - tuesday = 4, - wednesday = 8, - thursday = 16, - friday = 32, - saturday = 64, - } - export enum AppointmentDetailsKind { - plainText, - html, - } - export class AppointmentException implements IAppointmentException { - appointment: Appointment; - exceptionProperties: string[]; - isDeleted: Boolean; - - } - export class AppointmentInvitee implements IAppointmentInvitee, IAppointmentParticipant { - // constructor(); - role: AppointmentParticipantRole = AppointmentParticipantRole.requiredAttendee; - response: AppointmentParticipantResponse = AppointmentParticipantResponse.none; - displayName: string = ''; - address: string = ''; - - } - export class AppointmentManager { - static getForUser(user: System.User): AppointmentManagerForUser { - throw new Error('shimmed function AppointmentManager.getForUser'); - } - - static showAppointmentDetailsAsync(appointmentId: string): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentManager.showAppointmentDetailsAsync'); - } - - static showAppointmentDetailsAsync_1(appointmentId: string, instanceStartDate: Date): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentManager.showAppointmentDetailsAsync_1'); - } - - static showEditNewAppointmentAsync(appointment: Appointment): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showEditNewAppointmentAsync'); - } - - static requestStoreAsync(options: AppointmentStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.requestStoreAsync'); - } - - static showAddAppointmentAsync(appointment: Appointment, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showAddAppointmentAsync'); - } - - static showAddAppointmentAsync_1(appointment: Appointment, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showAddAppointmentAsync_1'); - } - - static showReplaceAppointmentAsync(appointmentId: string, appointment: Appointment, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showReplaceAppointmentAsync'); - } - - static showReplaceAppointmentAsync_1(appointmentId: string, appointment: Appointment, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showReplaceAppointmentAsync_1'); - } - - static showReplaceAppointmentAsync_2(appointmentId: string, appointment: Appointment, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, instanceStartDate: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showReplaceAppointmentAsync_2'); - } - - static showRemoveAppointmentAsync(appointmentId: string, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showRemoveAppointmentAsync'); - } - - static showRemoveAppointmentAsync_1(appointmentId: string, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showRemoveAppointmentAsync_1'); - } - - static showRemoveAppointmentAsync_2(appointmentId: string, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, instanceStartDate: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManager.showRemoveAppointmentAsync_2'); - } - - static showTimeFrameAsync(timeToShow: Date, duration: number): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentManager.showTimeFrameAsync'); - } - - } - export class AppointmentManagerForUser implements IAppointmentManagerForUser { - user: System.User; - - showAddAppointmentAsync(appointment: Appointment, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showAddAppointmentAsync'); - } - - showAddAppointmentAsync_1(appointment: Appointment, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showAddAppointmentAsync_1'); - } - - showReplaceAppointmentAsync(appointmentId: string, appointment: Appointment, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showReplaceAppointmentAsync'); - } - - showReplaceAppointmentAsync_1(appointmentId: string, appointment: Appointment, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showReplaceAppointmentAsync_1'); - } - - showReplaceAppointmentAsync_2(appointmentId: string, appointment: Appointment, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, instanceStartDate: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showReplaceAppointmentAsync_2'); - } - - showRemoveAppointmentAsync(appointmentId: string, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showRemoveAppointmentAsync'); - } - - showRemoveAppointmentAsync_1(appointmentId: string, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showRemoveAppointmentAsync_1'); - } - - showRemoveAppointmentAsync_2(appointmentId: string, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, instanceStartDate: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showRemoveAppointmentAsync_2'); - } - - showTimeFrameAsync(timeToShow: Date, duration: number): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentManagerForUser.showTimeFrameAsync'); - } - - showAppointmentDetailsAsync(appointmentId: string): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentManagerForUser.showAppointmentDetailsAsync'); - } - - showAppointmentDetailsAsync_1(appointmentId: string, instanceStartDate: Date): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentManagerForUser.showAppointmentDetailsAsync_1'); - } - - showEditNewAppointmentAsync(appointment: Appointment): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.showEditNewAppointmentAsync'); - } - - requestStoreAsync(options: AppointmentStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentManagerForUser.requestStoreAsync'); - } - - } - export class AppointmentOrganizer implements IAppointmentParticipant { - // constructor(); - displayName: string = ''; - address: string = ''; - - } - export enum AppointmentParticipantResponse { - none, - tentative, - accepted, - declined, - unknown, - } - export enum AppointmentParticipantRole { - requiredAttendee, - optionalAttendee, - resource, - } - export class AppointmentProperties { - static hasInvitees: string = 'Appointment.HasInvitees'; - static allDay: string = 'Appointment.AllDay'; - static allowNewTimeProposal: string = 'Appointment.AllowNewTimeProposal'; - static busyStatus: string = 'Appointment.BusyStatus'; - static defaultProperties: string[] = [ 'Appointment.Subject', 'Appointment.Location', 'Appointment.StartTime', 'Appointment.Duration', 'Appointment.BusyStatus', 'Appointment.AllDay', 'Appointment.ParentFolderId', 'Appointment.Recurrence', 'Appointment.RemoteId', 'Appointment.OriginalStartTime', 'Appointment.ChangeNumber' ]; - static details: string = 'Appointment.Details'; - static duration: string = 'Appointment.Duration'; - static recurrence: string = 'Appointment.Recurrence'; - static invitees: string = 'Appointment.Invitees'; - static isCanceledMeeting: string = 'Appointment.IsCanceledMeeting'; - static isOrganizedByUser: string = 'Appointment.IsOrganizedByUser'; - static isResponseRequested: string = 'Appointment.IsResponseRequested'; - static location: string = 'Appointment.Location'; - static onlineMeetingLink: string = 'Appointment.OnlineMeetingLink'; - static organizer: string = 'Appointment.Organizer'; - static originalStartTime: string = 'Appointment.OriginalStartTime'; - static reminder: string = 'Appointment.Reminder'; - static replyTime: string = 'Appointment.ReplyTime'; - static sensitivity: string = 'Appointment.Sensitivity'; - static startTime: string = 'Appointment.StartTime'; - static subject: string = 'Appointment.Subject'; - static uri: string = 'Appointment.Uri'; - static userResponse: string = 'Appointment.UserResponse'; - static detailsKind: string = 'Appointment.DetailsKind'; - static remoteChangeNumber: string = 'Appointment.RemoteChangeNumber'; - static changeNumber: string = 'Appointment.ChangeNumber'; - - } - export class AppointmentRecurrence implements IAppointmentRecurrence, IAppointmentRecurrence2, IAppointmentRecurrence3 { - // constructor(); - unit: AppointmentRecurrenceUnit = AppointmentRecurrenceUnit.daily; - occurrences: number | null; - month: number = 1; - interval: number = 1; - daysOfWeek: AppointmentDaysOfWeek = AppointmentDaysOfWeek.none; - day: number = 1; - weekOfMonth: AppointmentWeekOfMonth = AppointmentWeekOfMonth.first; - until: Date | null; - timeZone: string = ''; - recurrenceType: RecurrenceType = RecurrenceType.master; - calendarIdentifier: string = ''; - - } - export enum AppointmentRecurrenceUnit { - daily, - weekly, - monthly, - monthlyOnDay, - yearly, - yearlyOnDay, - } - export enum AppointmentSensitivity { - public, - private, - } - export namespace AppointmentsProvider { - export class AddAppointmentOperation implements IAddAppointmentOperation { - appointmentInformation: Appointment; - sourcePackageFamilyName: string; - - reportCompleted(itemId: string): void { - console.warn('shimmed function AddAppointmentOperation.reportCompleted'); - } - - reportCanceled(): void { - console.warn('shimmed function AddAppointmentOperation.reportCanceled'); - } - - reportError(value: string): void { - console.warn('shimmed function AddAppointmentOperation.reportError'); - } - - dismissUI(): void { - console.warn('shimmed function AddAppointmentOperation.dismissUI'); - } - - } - export class AppointmentsProviderLaunchActionVerbs { - static addAppointment: string = 'Windows.AppointmentsProvider.AddAppointment'; - static removeAppointment: string = 'Windows.AppointmentsProvider.RemoveAppointment'; - static replaceAppointment: string = 'Windows.AppointmentsProvider.ReplaceAppointment'; - static showTimeFrame: string = 'Windows.AppointmentsProvider.ShowTimeFrame'; - static showAppointmentDetails: string = 'Windows.AppointmentsProvider.ShowAppointmentDetails'; - - } - export class RemoveAppointmentOperation implements IRemoveAppointmentOperation { - appointmentId: string; - instanceStartDate: Date | null; - sourcePackageFamilyName: string; - - reportCompleted(): void { - console.warn('shimmed function RemoveAppointmentOperation.reportCompleted'); - } - - reportCanceled(): void { - console.warn('shimmed function RemoveAppointmentOperation.reportCanceled'); - } - - reportError(value: string): void { - console.warn('shimmed function RemoveAppointmentOperation.reportError'); - } - - dismissUI(): void { - console.warn('shimmed function RemoveAppointmentOperation.dismissUI'); - } - - } - export class ReplaceAppointmentOperation implements IReplaceAppointmentOperation { - appointmentId: string; - appointmentInformation: Appointment; - instanceStartDate: Date | null; - sourcePackageFamilyName: string; - - reportCompleted(itemId: string): void { - console.warn('shimmed function ReplaceAppointmentOperation.reportCompleted'); - } - - reportCanceled(): void { - console.warn('shimmed function ReplaceAppointmentOperation.reportCanceled'); - } - - reportError(value: string): void { - console.warn('shimmed function ReplaceAppointmentOperation.reportError'); - } - - dismissUI(): void { - console.warn('shimmed function ReplaceAppointmentOperation.dismissUI'); - } - - } - } - export class AppointmentStore implements IAppointmentStore, IAppointmentStore2, IAppointmentStore3 { - changeTracker: AppointmentStoreChangeTracker; - - createAppointmentCalendarAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.createAppointmentCalendarAsync'); - } - - getAppointmentCalendarAsync(calendarId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.getAppointmentCalendarAsync'); - } - - getAppointmentAsync(localId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.getAppointmentAsync'); - } - - getAppointmentInstanceAsync(localId: string, instanceStartTime: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.getAppointmentInstanceAsync'); - } - - findAppointmentCalendarsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.findAppointmentCalendarsAsync'); - } - - findAppointmentCalendarsAsync_1(options: FindAppointmentCalendarsOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.findAppointmentCalendarsAsync_1'); - } - - findAppointmentsAsync(rangeStart: Date, rangeLength: number): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.findAppointmentsAsync'); - } - - findAppointmentsAsync_1(rangeStart: Date, rangeLength: number, options: FindAppointmentsOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.findAppointmentsAsync_1'); - } - - findConflictAsync(appointment: Appointment): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.findConflictAsync'); - } - - findConflictAsync_1(appointment: Appointment, instanceStartTime: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.findConflictAsync_1'); - } - - moveAppointmentAsync(appointment: Appointment, destinationCalendar: AppointmentCalendar): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentStore.moveAppointmentAsync'); - } - - showAddAppointmentAsync(appointment: Appointment, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.showAddAppointmentAsync'); - } - - showReplaceAppointmentAsync(localId: string, appointment: Appointment, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.showReplaceAppointmentAsync'); - } - - showReplaceAppointmentAsync_1(localId: string, appointment: Appointment, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, instanceStartDate: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.showReplaceAppointmentAsync_1'); - } - - showRemoveAppointmentAsync(localId: string, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.showRemoveAppointmentAsync'); - } - - showRemoveAppointmentAsync_1(localId: string, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, instanceStartDate: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.showRemoveAppointmentAsync_1'); - } - - showAppointmentDetailsAsync(localId: string): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentStore.showAppointmentDetailsAsync'); - } - - showAppointmentDetailsAsync_1(localId: string, instanceStartDate: Date): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentStore.showAppointmentDetailsAsync_1'); - } - - showEditNewAppointmentAsync(appointment: Appointment): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.showEditNewAppointmentAsync'); - } - - findLocalIdsFromRoamingIdAsync(roamingId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.findLocalIdsFromRoamingIdAsync'); - } - - createAppointmentCalendarAsync_1(name: string, userDataAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStore.createAppointmentCalendarAsync_1'); - } - - getChangeTracker(identity: string): AppointmentStoreChangeTracker { - throw new Error('shimmed function AppointmentStore.getChangeTracker'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppointmentStore::addEventListener: ${name}`); - switch (name) { - case "storechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppointmentStoreAccessType { - appCalendarsReadWrite, - allCalendarsReadOnly, - allCalendarsReadWrite, - } - export class AppointmentStoreChange implements IAppointmentStoreChange, IAppointmentStoreChange2 { - appointment: Appointment; - changeType: AppointmentStoreChangeType; - appointmentCalendar: AppointmentCalendar; - - } - export class AppointmentStoreChangedDeferral implements IAppointmentStoreChangedDeferral { - complete(): void { - console.warn('shimmed function AppointmentStoreChangedDeferral.complete'); - } - - } - export class AppointmentStoreChangedEventArgs implements IAppointmentStoreChangedEventArgs { - getDeferral(): AppointmentStoreChangedDeferral { - throw new Error('shimmed function AppointmentStoreChangedEventArgs.getDeferral'); - } - - } - export class AppointmentStoreChangeReader implements IAppointmentStoreChangeReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppointmentStoreChangeReader.readBatchAsync'); - } - - acceptChanges(): void { - console.warn('shimmed function AppointmentStoreChangeReader.acceptChanges'); - } - - acceptChangesThrough(lastChangeToAccept: AppointmentStoreChange): void { - console.warn('shimmed function AppointmentStoreChangeReader.acceptChangesThrough'); - } - - } - export class AppointmentStoreChangeTracker implements IAppointmentStoreChangeTracker, IAppointmentStoreChangeTracker2 { - isTracking: Boolean; - - getChangeReader(): AppointmentStoreChangeReader { - throw new Error('shimmed function AppointmentStoreChangeTracker.getChangeReader'); - } - - enable(): void { - console.warn('shimmed function AppointmentStoreChangeTracker.enable'); - } - - reset(): void { - console.warn('shimmed function AppointmentStoreChangeTracker.reset'); - } - - } - export enum AppointmentStoreChangeType { - appointmentCreated, - appointmentModified, - appointmentDeleted, - changeTrackingLost, - calendarCreated, - calendarModified, - calendarDeleted, - } - export class AppointmentStoreNotificationTriggerDetails implements IAppointmentStoreNotificationTriggerDetails { - } - export enum AppointmentSummaryCardView { - system, - app, - } - export enum AppointmentWeekOfMonth { - first, - second, - third, - fourth, - last, - } - export namespace DataProvider { - export class AppointmentCalendarCancelMeetingRequest implements IAppointmentCalendarCancelMeetingRequest { - appointmentCalendarLocalId: string; - appointmentLocalId: string; - appointmentOriginalStartTime: Date | null; - comment: string; - notifyInvitees: Boolean; - subject: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarCancelMeetingRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarCancelMeetingRequest.reportFailedAsync'); - } - - } - export class AppointmentCalendarCancelMeetingRequestEventArgs implements IAppointmentCalendarCancelMeetingRequestEventArgs { - request: AppointmentCalendarCancelMeetingRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AppointmentCalendarCancelMeetingRequestEventArgs.getDeferral'); - } - - } - export class AppointmentCalendarCreateOrUpdateAppointmentRequest implements IAppointmentCalendarCreateOrUpdateAppointmentRequest { - appointment: Appointment; - appointmentCalendarLocalId: string; - changedProperties: string[]; - notifyInvitees: Boolean; - - reportCompletedAsync(createdOrUpdatedAppointment: Appointment): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarCreateOrUpdateAppointmentRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarCreateOrUpdateAppointmentRequest.reportFailedAsync'); - } - - } - export class AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs implements IAppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs { - request: AppointmentCalendarCreateOrUpdateAppointmentRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AppointmentCalendarCreateOrUpdateAppointmentRequestEventArgs.getDeferral'); - } - - } - export class AppointmentCalendarForwardMeetingRequest implements IAppointmentCalendarForwardMeetingRequest { - appointmentCalendarLocalId: string; - appointmentLocalId: string; - appointmentOriginalStartTime: Date | null; - comment: string; - forwardHeader: string; - invitees: AppointmentInvitee[]; - subject: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarForwardMeetingRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarForwardMeetingRequest.reportFailedAsync'); - } - - } - export class AppointmentCalendarForwardMeetingRequestEventArgs implements IAppointmentCalendarForwardMeetingRequestEventArgs { - request: AppointmentCalendarForwardMeetingRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AppointmentCalendarForwardMeetingRequestEventArgs.getDeferral'); - } - - } - export class AppointmentCalendarProposeNewTimeForMeetingRequest implements IAppointmentCalendarProposeNewTimeForMeetingRequest { - appointmentCalendarLocalId: string; - appointmentLocalId: string; - appointmentOriginalStartTime: Date | null; - comment: string; - newDuration: number; - newStartTime: Date; - subject: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarProposeNewTimeForMeetingRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarProposeNewTimeForMeetingRequest.reportFailedAsync'); - } - - } - export class AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs implements IAppointmentCalendarProposeNewTimeForMeetingRequestEventArgs { - request: AppointmentCalendarProposeNewTimeForMeetingRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AppointmentCalendarProposeNewTimeForMeetingRequestEventArgs.getDeferral'); - } - - } - export class AppointmentCalendarSyncManagerSyncRequest implements IAppointmentCalendarSyncManagerSyncRequest { - appointmentCalendarLocalId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarSyncManagerSyncRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarSyncManagerSyncRequest.reportFailedAsync'); - } - - } - export class AppointmentCalendarSyncManagerSyncRequestEventArgs implements IAppointmentCalendarSyncManagerSyncRequestEventArgs { - request: AppointmentCalendarSyncManagerSyncRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AppointmentCalendarSyncManagerSyncRequestEventArgs.getDeferral'); - } - - } - export class AppointmentCalendarUpdateMeetingResponseRequest implements IAppointmentCalendarUpdateMeetingResponseRequest { - appointmentCalendarLocalId: string; - appointmentLocalId: string; - appointmentOriginalStartTime: Date | null; - comment: string; - response: AppointmentParticipantResponse; - sendUpdate: Boolean; - subject: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarUpdateMeetingResponseRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppointmentCalendarUpdateMeetingResponseRequest.reportFailedAsync'); - } - - } - export class AppointmentCalendarUpdateMeetingResponseRequestEventArgs implements IAppointmentCalendarUpdateMeetingResponseRequestEventArgs { - request: AppointmentCalendarUpdateMeetingResponseRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AppointmentCalendarUpdateMeetingResponseRequestEventArgs.getDeferral'); - } - - } - export class AppointmentDataProviderConnection implements IAppointmentDataProviderConnection { - start(): void { - console.warn('shimmed function AppointmentDataProviderConnection.start'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppointmentDataProviderConnection::addEventListener: ${name}`); - switch (name) { - case "cancelmeetingrequested": // Foundation.TypedEventHandler - case "createorupdateappointmentrequested": // Foundation.TypedEventHandler - case "forwardmeetingrequested": // Foundation.TypedEventHandler - case "proposenewtimeformeetingrequested": // Foundation.TypedEventHandler - case "syncrequested": // Foundation.TypedEventHandler - case "updatemeetingresponserequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppointmentDataProviderTriggerDetails implements IAppointmentDataProviderTriggerDetails { - connection: AppointmentDataProviderConnection; - - } - } - export enum FindAppointmentCalendarsOptions { - none, - includeHidden, - } - export class FindAppointmentsOptions implements IFindAppointmentsOptions { - // constructor(); - maxCount: number = 4294967295; - includeHidden: Boolean = false; - calendarIds: string[] = [ ]; - fetchProperties: string[] = [ ]; - - } - export interface IAppointmentParticipant { - address: string; - displayName: string; - } - export enum RecurrenceType { - master, - instance, - exceptionInstance, - } - } - export namespace AppService { - export class AppServiceCatalog { - static findAppServiceProvidersAsync(appServiceName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppServiceCatalog.findAppServiceProvidersAsync'); - } - - } - export class AppServiceClosedEventArgs implements IAppServiceClosedEventArgs { - status: AppServiceClosedStatus; - - } - export enum AppServiceClosedStatus { - completed, - canceled, - resourceLimitsExceeded, - unknown, - } - export class AppServiceConnection implements IAppServiceConnection, IAppServiceConnection2, Foundation.IClosable { - // constructor(); - packageFamilyName: string = ''; - appServiceName: string = ''; - user: System.User; - - openAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppServiceConnection.openAsync'); - } - - sendMessageAsync(message: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function AppServiceConnection.sendMessageAsync'); - } - - openRemoteAsync(remoteSystemConnectionRequest: System.RemoteSystems.RemoteSystemConnectionRequest): Foundation.IAsyncOperation { - throw new Error('shimmed function AppServiceConnection.openRemoteAsync'); - } - - close(): void { - console.warn('shimmed function AppServiceConnection.close'); - } - - static sendStatelessMessageAsync(connection: AppServiceConnection, connectionRequest: System.RemoteSystems.RemoteSystemConnectionRequest, message: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function AppServiceConnection.sendStatelessMessageAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppServiceConnection::addEventListener: ${name}`); - switch (name) { - case "requestreceived": // Foundation.TypedEventHandler - case "serviceclosed": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppServiceConnectionStatus { - success, - appNotInstalled, - appUnavailable, - appServiceUnavailable, - unknown, - remoteSystemUnavailable, - remoteSystemNotSupportedByApp, - notAuthorized, - } - export class AppServiceDeferral implements IAppServiceDeferral { - complete(): void { - console.warn('shimmed function AppServiceDeferral.complete'); - } - - } - export class AppServiceRequest implements IAppServiceRequest { - message: Foundation.Collections.ValueSet; - - sendResponseAsync(message: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function AppServiceRequest.sendResponseAsync'); - } - - } - export class AppServiceRequestReceivedEventArgs implements IAppServiceRequestReceivedEventArgs { - request: AppServiceRequest; - - getDeferral(): AppServiceDeferral { - throw new Error('shimmed function AppServiceRequestReceivedEventArgs.getDeferral'); - } - - } - export class AppServiceResponse implements IAppServiceResponse { - message: Foundation.Collections.ValueSet; - status: AppServiceResponseStatus; - - } - export enum AppServiceResponseStatus { - success, - failure, - resourceLimitsExceeded, - unknown, - remoteSystemUnavailable, - messageSizeTooLarge, - } - export class AppServiceTriggerDetails implements IAppServiceTriggerDetails, IAppServiceTriggerDetails2, IAppServiceTriggerDetails3, IAppServiceTriggerDetails4 { - appServiceConnection: AppServiceConnection; - callerPackageFamilyName: string; - name: string; - isRemoteSystemConnection: Boolean; - callerRemoteConnectionToken: string; - - checkCallerForCapabilityAsync(capabilityName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppServiceTriggerDetails.checkCallerForCapabilityAsync'); - } - - } - export class StatelessAppServiceResponse implements IStatelessAppServiceResponse { - message: Foundation.Collections.ValueSet; - status: StatelessAppServiceResponseStatus; - - } - export enum StatelessAppServiceResponseStatus { - success, - appNotInstalled, - appUnavailable, - appServiceUnavailable, - remoteSystemUnavailable, - remoteSystemNotSupportedByApp, - notAuthorized, - resourceLimitsExceeded, - messageSizeTooLarge, - failure, - unknown, - } - } - export namespace Background { - export class ActivitySensorTrigger implements IActivitySensorTrigger, IBackgroundTrigger { - // constructor(reportIntervalInMilliseconds: number); - constructor(reportIntervalInMilliseconds: number) {} - - minimumReportInterval: number; - reportInterval: number; - subscribedActivities: Devices.Sensors.ActivityType[]; - supportedActivities: Devices.Sensors.ActivityType[]; - - } - export enum AlarmAccessStatus { - unspecified, - allowedWithWakeupCapability, - allowedWithoutWakeupCapability, - denied, - } - export class AlarmApplicationManager { - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AlarmApplicationManager.requestAccessAsync'); - } - - static getAccessStatus(): AlarmAccessStatus { - throw new Error('shimmed function AlarmApplicationManager.getAccessStatus'); - } - - } - export class AppBroadcastTrigger implements IBackgroundTrigger, IAppBroadcastTrigger { - // constructor(providerKey: string); - constructor(providerKey: string) {} - - providerInfo: AppBroadcastTriggerProviderInfo; - - } - export class AppBroadcastTriggerProviderInfo implements IAppBroadcastTriggerProviderInfo { - videoKeyFrameInterval: number; - maxVideoWidth: number; - maxVideoHeight: number; - maxVideoBitrate: number; - logoResource: string; - displayNameResource: string; - - } - export class ApplicationTrigger implements IApplicationTrigger, IBackgroundTrigger { - // constructor(); - requestAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationTrigger.requestAsync'); - } - - requestAsync_1(__arguments: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationTrigger.requestAsync_1'); - } - - } - export class ApplicationTriggerDetails implements IApplicationTriggerDetails { - __arguments: Foundation.Collections.ValueSet; - - } - export enum ApplicationTriggerResult { - allowed, - currentlyRunning, - disabledByPolicy, - unknownError, - } - export class AppointmentStoreNotificationTrigger implements IBackgroundTrigger, IAppointmentStoreNotificationTrigger { - // constructor(); - } - export enum BackgroundAccessRequestKind { - alwaysAllowed, - allowedSubjectToSystemPolicy, - } - export enum BackgroundAccessStatus { - unspecified, - allowedWithAlwaysOnRealTimeConnectivity, - allowedMayUseActiveRealTimeConnectivity, - denied, - alwaysAllowed, - allowedSubjectToSystemPolicy, - deniedBySystemPolicy, - deniedByUser, - } - export interface BackgroundAlarmApplicationContract { - } - export class BackgroundExecutionManager { - static requestAccessKindAsync(requestedAccess: BackgroundAccessRequestKind, reason: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundExecutionManager.requestAccessKindAsync'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundExecutionManager.requestAccessAsync'); - } - - static requestAccessAsync_1(applicationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundExecutionManager.requestAccessAsync_1'); - } - - static removeAccess(): void { - console.warn('shimmed function BackgroundExecutionManager.removeAccess'); - } - - static removeAccess_1(applicationId: string): void { - console.warn('shimmed function BackgroundExecutionManager.removeAccess_1'); - } - - static getAccessStatus(): BackgroundAccessStatus { - throw new Error('shimmed function BackgroundExecutionManager.getAccessStatus'); - } - - static getAccessStatus_1(applicationId: string): BackgroundAccessStatus { - throw new Error('shimmed function BackgroundExecutionManager.getAccessStatus_1'); - } - - } - export class BackgroundTaskBuilder implements IBackgroundTaskBuilder, IBackgroundTaskBuilder2, IBackgroundTaskBuilder3, IBackgroundTaskBuilder4 { - // constructor(); - taskEntryPoint: string = 'Windows.ApplicationModel.Core.DefaultInProcBackgroundTask'; - name: string = ''; - cancelOnConditionLoss: Boolean = false; - isNetworkRequested: Boolean = false; - taskGroup: BackgroundTaskRegistrationGroup; - - setTrigger(trigger: IBackgroundTrigger): void { - console.warn('shimmed function BackgroundTaskBuilder.setTrigger'); - } - - addCondition(condition: IBackgroundCondition): void { - console.warn('shimmed function BackgroundTaskBuilder.addCondition'); - } - - register(): BackgroundTaskRegistration { - throw new Error('shimmed function BackgroundTaskBuilder.register'); - } - - } - export type BackgroundTaskCanceledEventHandler = (reason: BackgroundTaskCancellationReason) => void; - export enum BackgroundTaskCancellationReason { - abort, - terminating, - loggingOff, - servicingUpdate, - idleTask, - uninstall, - conditionLoss, - systemPolicy, - quietHoursEntered, - executionTimeExceeded, - resourceRevocation, - energySaver, - } - export class BackgroundTaskCompletedEventArgs implements IBackgroundTaskCompletedEventArgs { - instanceId: string; - - checkResult(): void { - console.warn('shimmed function BackgroundTaskCompletedEventArgs.checkResult'); - } - - } - export type BackgroundTaskCompletedEventHandler = (args: BackgroundTaskCompletedEventArgs) => void; - export class BackgroundTaskDeferral implements IBackgroundTaskDeferral { - complete(): void { - console.warn('shimmed function BackgroundTaskDeferral.complete'); - } - - } - export class BackgroundTaskProgressEventArgs implements IBackgroundTaskProgressEventArgs { - instanceId: string; - progress: number; - - } - export type BackgroundTaskProgressEventHandler = (args: BackgroundTaskProgressEventArgs) => void; - export class BackgroundTaskRegistration implements IBackgroundTaskRegistration, IBackgroundTaskRegistration2, IBackgroundTaskRegistration3 { - name: string; - taskId: string; - trigger: IBackgroundTrigger; - taskGroup: BackgroundTaskRegistrationGroup; - static allTasks: string[] = [ ]; - static allTaskGroups: string[] = [ ]; - - unregister(cancelTask: Boolean): void { - console.warn('shimmed function BackgroundTaskRegistration.unregister'); - } - - static getTaskGroup(groupId: string): BackgroundTaskRegistrationGroup { - throw new Error('shimmed function BackgroundTaskRegistration.getTaskGroup'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BackgroundTaskRegistration::addEventListener: ${name}`); - switch (name) { - case "completed": // BackgroundTaskCompletedEventHandler - case "progress": // BackgroundTaskProgressEventHandler - break; - } - - } - } - export class BackgroundTaskRegistrationGroup implements IBackgroundTaskRegistrationGroup { - // constructor(id: string); - // constructor(id: string, name: string); - constructor(id: string, name: string) {} - - allTasks: string[]; - id: string; - name: string; - - addEventListener(name: string, handler: Function) { - console.warn(`BackgroundTaskRegistrationGroup::addEventListener: ${name}`); - switch (name) { - case "backgroundactivated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum BackgroundTaskThrottleCounter { - all, - cpu, - network, - } - export class BackgroundWorkCost { - static currentBackgroundWorkCost: BackgroundWorkCostValue = BackgroundWorkCostValue.low; - - } - export enum BackgroundWorkCostValue { - low, - medium, - high, - } - export class BluetoothLEAdvertisementPublisherTrigger implements IBluetoothLEAdvertisementPublisherTrigger, IBackgroundTrigger { - // constructor(); - advertisement: Devices.Bluetooth.Advertisement.BluetoothLEAdvertisement = null; - - } - export class BluetoothLEAdvertisementWatcherTrigger implements IBluetoothLEAdvertisementWatcherTrigger, IBackgroundTrigger { - // constructor(); - signalStrengthFilter: Devices.Bluetooth.BluetoothSignalStrengthFilter = null; - advertisementFilter: Devices.Bluetooth.Advertisement.BluetoothLEAdvertisementFilter = null; - maxOutOfRangeTimeout: number = 60000; - maxSamplingInterval: number = 25500; - minOutOfRangeTimeout: number = 1000; - minSamplingInterval: number = 1000; - - } - export class CachedFileUpdaterTrigger implements ICachedFileUpdaterTrigger, IBackgroundTrigger { - // constructor(); - } - export class CachedFileUpdaterTriggerDetails implements ICachedFileUpdaterTriggerDetails { - canRequestUserInput: Boolean; - updateRequest: Storage.Provider.FileUpdateRequest; - updateTarget: Storage.Provider.CachedFileTarget; - - } - export class ChatMessageNotificationTrigger implements IBackgroundTrigger, IChatMessageNotificationTrigger { - // constructor(); - } - export class ChatMessageReceivedNotificationTrigger implements IBackgroundTrigger, IChatMessageReceivedNotificationTrigger { - // constructor(); - } - export class CommunicationBlockingAppSetAsActiveTrigger implements IBackgroundTrigger, ICommunicationBlockingAppSetAsActiveTrigger { - // constructor(); - } - export class ContactStoreNotificationTrigger implements IBackgroundTrigger, IContactStoreNotificationTrigger { - // constructor(); - } - export class ContentPrefetchTrigger implements IContentPrefetchTrigger, IBackgroundTrigger { - // constructor(waitInterval: number); - // constructor(); - constructor(waitInterval: number) {} - - waitInterval: number = 7200000; - - } - export class ConversationalAgentTrigger implements IBackgroundTrigger { - // constructor(); - } - export class CustomSystemEventTrigger implements ICustomSystemEventTrigger, IBackgroundTrigger { - // constructor(triggerId: string, recurrence: CustomSystemEventTriggerRecurrence); - constructor(triggerId: string, recurrence: CustomSystemEventTriggerRecurrence) {} - - recurrence: CustomSystemEventTriggerRecurrence; - triggerId: string; - - } - export enum CustomSystemEventTriggerRecurrence { - once, - always, - } - export class DeviceConnectionChangeTrigger implements IDeviceConnectionChangeTrigger, IBackgroundTrigger { - maintainConnection: Boolean; - canMaintainConnection: Boolean; - deviceId: string; - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceConnectionChangeTrigger.fromIdAsync'); - } - - } - export class DeviceManufacturerNotificationTrigger implements IDeviceManufacturerNotificationTrigger, IBackgroundTrigger { - // constructor(triggerQualifier: string, oneShot: Boolean); - constructor(triggerQualifier: string, oneShot: Boolean) {} - - oneShot: Boolean; - triggerQualifier: string; - - } - export class DeviceServicingTrigger implements IDeviceServicingTrigger, IBackgroundTrigger { - // constructor(); - requestAsync(deviceId: string, expectedDuration: number): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceServicingTrigger.requestAsync'); - } - - requestAsync_1(deviceId: string, expectedDuration: number, __arguments: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceServicingTrigger.requestAsync_1'); - } - - } - export enum DeviceTriggerResult { - allowed, - deniedByUser, - deniedBySystem, - lowBattery, - } - export class DeviceUseTrigger implements IDeviceUseTrigger, IBackgroundTrigger { - // constructor(); - requestAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceUseTrigger.requestAsync'); - } - - requestAsync_1(deviceId: string, __arguments: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceUseTrigger.requestAsync_1'); - } - - } - export class DeviceWatcherTrigger implements IDeviceWatcherTrigger, IBackgroundTrigger { - } - export class EmailStoreNotificationTrigger implements IBackgroundTrigger, IEmailStoreNotificationTrigger { - // constructor(); - } - export class GattCharacteristicNotificationTrigger implements IGattCharacteristicNotificationTrigger, IBackgroundTrigger, IGattCharacteristicNotificationTrigger2 { - // constructor(characteristic: Devices.Bluetooth.GenericAttributeProfile.GattCharacteristic, eventTriggeringMode: Devices.Bluetooth.Background.BluetoothEventTriggeringMode); - // constructor(characteristic: Devices.Bluetooth.GenericAttributeProfile.GattCharacteristic); - constructor(characteristic: Devices.Bluetooth.GenericAttributeProfile.GattCharacteristic, eventTriggeringMode: Devices.Bluetooth.Background.BluetoothEventTriggeringMode) {} - - characteristic: Devices.Bluetooth.GenericAttributeProfile.GattCharacteristic; - eventTriggeringMode: Devices.Bluetooth.Background.BluetoothEventTriggeringMode; - - } - export class GattServiceProviderTrigger implements IBackgroundTrigger, IGattServiceProviderTrigger { - advertisingParameters: Devices.Bluetooth.GenericAttributeProfile.GattServiceProviderAdvertisingParameters; - service: Devices.Bluetooth.GenericAttributeProfile.GattLocalService; - triggerId: string; - - static createAsync(triggerId: string, serviceUuid: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GattServiceProviderTrigger.createAsync'); - } - - } - export class GattServiceProviderTriggerResult implements IGattServiceProviderTriggerResult { - error: Devices.Bluetooth.BluetoothError; - trigger: GattServiceProviderTrigger; - - } - export class GeovisitTrigger implements IGeovisitTrigger, IBackgroundTrigger { - // constructor(); - monitoringScope: Devices.Geolocation.VisitMonitoringScope = VisitMonitoringScope.venue; - - } - export interface IBackgroundCondition { - } - export interface IBackgroundTask { - run(taskInstance: IBackgroundTaskInstance): void; - } - export interface IBackgroundTaskInstance { - instanceId: string; - progress: number; - suspendedCount: number; - task: BackgroundTaskRegistration; - triggerDetails: any; - getDeferral(): BackgroundTaskDeferral; - } - export interface IBackgroundTaskInstance2 extends IBackgroundTaskInstance { - getThrottleCount(counter: BackgroundTaskThrottleCounter): number; - } - export interface IBackgroundTaskInstance4 extends IBackgroundTaskInstance { - user: System.User; - } - export interface IBackgroundTaskRegistration { - name: string; - taskId: string; - unregister(cancelTask: Boolean): void; - } - export interface IBackgroundTaskRegistration2 extends IBackgroundTaskRegistration { - trigger: IBackgroundTrigger; - } - export interface IBackgroundTaskRegistration3 extends IBackgroundTaskRegistration { - taskGroup: BackgroundTaskRegistrationGroup; - } - export interface IBackgroundTrigger { - } - export class LocationTrigger implements ILocationTrigger, IBackgroundTrigger { - // constructor(triggerType: LocationTriggerType); - constructor(triggerType: LocationTriggerType) {} - - triggerType: LocationTriggerType; - - } - export enum LocationTriggerType { - geofence, - } - export class MaintenanceTrigger implements IMaintenanceTrigger, IBackgroundTrigger { - // constructor(freshnessTime: number, oneShot: Boolean); - constructor(freshnessTime: number, oneShot: Boolean) {} - - freshnessTime: number; - oneShot: Boolean; - - } - export class MediaProcessingTrigger implements IMediaProcessingTrigger, IBackgroundTrigger { - // constructor(); - requestAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaProcessingTrigger.requestAsync'); - } - - requestAsync_1(__arguments: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaProcessingTrigger.requestAsync_1'); - } - - } - export enum MediaProcessingTriggerResult { - allowed, - currentlyRunning, - disabledByPolicy, - unknownError, - } - export class MobileBroadbandDeviceServiceNotificationTrigger implements IBackgroundTrigger { - // constructor(); - } - export class MobileBroadbandPcoDataChangeTrigger implements IBackgroundTrigger { - // constructor(); - } - export class MobileBroadbandPinLockStateChangeTrigger implements IBackgroundTrigger { - // constructor(); - } - export class MobileBroadbandRadioStateChangeTrigger implements IBackgroundTrigger { - // constructor(); - } - export class MobileBroadbandRegistrationStateChangeTrigger implements IBackgroundTrigger { - // constructor(); - } - export class NetworkOperatorDataUsageTrigger implements IBackgroundTrigger { - // constructor(); - } - export class NetworkOperatorHotspotAuthenticationTrigger implements INetworkOperatorHotspotAuthenticationTrigger, IBackgroundTrigger { - // constructor(); - } - export class NetworkOperatorNotificationTrigger implements INetworkOperatorNotificationTrigger, IBackgroundTrigger { - // constructor(networkAccountId: string); - constructor(networkAccountId: string) {} - - networkAccountId: string; - - } - export class PaymentAppCanMakePaymentTrigger implements IBackgroundTrigger { - // constructor(); - } - export class PhoneTrigger implements IPhoneTrigger, IBackgroundTrigger { - // constructor(type: Calls.Background.PhoneTriggerType, oneShot: Boolean); - constructor(type: Calls.Background.PhoneTriggerType, oneShot: Boolean) {} - - oneShot: Boolean; - triggerType: Calls.Background.PhoneTriggerType; - - } - export class PushNotificationTrigger implements IBackgroundTrigger { - // constructor(applicationId: string); - // constructor(); - constructor(applicationId: string) {} - - } - export class RcsEndUserMessageAvailableTrigger implements IBackgroundTrigger, IRcsEndUserMessageAvailableTrigger { - // constructor(); - } - export class RfcommConnectionTrigger implements IRfcommConnectionTrigger, IBackgroundTrigger { - // constructor(); - remoteHostName: Networking.HostName; - protectionLevel: Networking.Sockets.SocketProtectionLevel = SocketProtectionLevel.bluetoothEncryptionWithAuthentication; - allowMultipleConnections: Boolean = false; - inboundConnection: Devices.Bluetooth.Background.RfcommInboundConnectionInformation = null; - outboundConnection: Devices.Bluetooth.Background.RfcommOutboundConnectionInformation = null; - - } - export class SecondaryAuthenticationFactorAuthenticationTrigger implements ISecondaryAuthenticationFactorAuthenticationTrigger, IBackgroundTrigger { - // constructor(); - } - export class SensorDataThresholdTrigger implements ISensorDataThresholdTrigger, IBackgroundTrigger { - // constructor(threshold: Devices.Sensors.ISensorDataThreshold); - constructor(threshold: Devices.Sensors.ISensorDataThreshold) {} - - } - export class SmartCardTrigger implements ISmartCardTrigger, IBackgroundTrigger { - // constructor(triggerType: Devices.SmartCards.SmartCardTriggerType); - constructor(triggerType: Devices.SmartCards.SmartCardTriggerType) {} - - triggerType: Devices.SmartCards.SmartCardTriggerType; - - } - export class SmsMessageReceivedTrigger implements IBackgroundTrigger { - // constructor(filterRules: Devices.Sms.SmsFilterRules); - constructor(filterRules: Devices.Sms.SmsFilterRules) {} - - } - export class SocketActivityTrigger implements IBackgroundTrigger, ISocketActivityTrigger { - // constructor(); - isWakeFromLowPowerSupported: Boolean = true; - - } - export class StorageLibraryChangeTrackerTrigger implements IBackgroundTrigger { - // constructor(tracker: Storage.StorageLibraryChangeTracker); - constructor(tracker: Storage.StorageLibraryChangeTracker) {} - - } - export class StorageLibraryContentChangedTrigger implements IStorageLibraryContentChangedTrigger, IBackgroundTrigger { - static create(storageLibrary: Storage.StorageLibrary): StorageLibraryContentChangedTrigger { - throw new Error('shimmed function StorageLibraryContentChangedTrigger.create'); - } - - static createFromLibraries(storageLibraries: Foundation.Collections.IIterable): StorageLibraryContentChangedTrigger { - throw new Error('shimmed function StorageLibraryContentChangedTrigger.createFromLibraries'); - } - - } - export class SystemCondition implements ISystemCondition, IBackgroundCondition { - // constructor(conditionType: SystemConditionType); - constructor(conditionType: SystemConditionType) {} - - conditionType: SystemConditionType; - - } - export enum SystemConditionType { - invalid, - userPresent, - userNotPresent, - internetAvailable, - internetNotAvailable, - sessionConnected, - sessionDisconnected, - freeNetworkAvailable, - backgroundWorkCostNotHigh, - } - export class SystemTrigger implements ISystemTrigger, IBackgroundTrigger { - // constructor(triggerType: SystemTriggerType, oneShot: Boolean); - constructor(triggerType: SystemTriggerType, oneShot: Boolean) {} - - oneShot: Boolean; - triggerType: SystemTriggerType; - - } - export enum SystemTriggerType { - invalid, - smsReceived, - userPresent, - userAway, - networkStateChange, - controlChannelReset, - internetAvailable, - sessionConnected, - servicingComplete, - lockScreenApplicationAdded, - lockScreenApplicationRemoved, - timeZoneChange, - onlineIdConnectedStateChange, - backgroundWorkCostChange, - powerStateChange, - defaultSignInAccountChange, - } - export class TetheringEntitlementCheckTrigger implements IBackgroundTrigger { - // constructor(); - } - export class TimeTrigger implements ITimeTrigger, IBackgroundTrigger { - // constructor(freshnessTime: number, oneShot: Boolean); - constructor(freshnessTime: number, oneShot: Boolean) {} - - freshnessTime: number; - oneShot: Boolean; - - } - export class ToastNotificationActionTrigger implements IBackgroundTrigger { - // constructor(applicationId: string); - // constructor(); - constructor(applicationId: string) {} - - } - export class ToastNotificationHistoryChangedTrigger implements IBackgroundTrigger { - // constructor(applicationId: string); - // constructor(); - constructor(applicationId: string) {} - - } - export class UserNotificationChangedTrigger implements IBackgroundTrigger { - // constructor(notificationKinds: UI.Notifications.NotificationKinds); - constructor(notificationKinds: UI.Notifications.NotificationKinds) {} - - } - } - export namespace Calls { - export namespace Background { - export interface CallsBackgroundContract { - } - export enum PhoneCallBlockedReason { - inCallBlockingList, - privateNumber, - unknownNumber, - } - export class PhoneCallBlockedTriggerDetails implements IPhoneCallBlockedTriggerDetails { - callBlockedReason: PhoneCallBlockedReason; - lineId: string; - phoneNumber: string; - - } - export class PhoneCallOriginDataRequestTriggerDetails implements IPhoneCallOriginDataRequestTriggerDetails { - phoneNumber: string; - requestId: string; - - } - export enum PhoneIncomingCallDismissedReason { - unknown, - callRejected, - textReply, - connectionLost, - } - export class PhoneIncomingCallDismissedTriggerDetails implements IPhoneIncomingCallDismissedTriggerDetails { - dismissalTime: Date; - displayName: string; - lineId: string; - phoneNumber: string; - reason: PhoneIncomingCallDismissedReason; - textReplyMessage: string; - - } - export class PhoneLineChangedTriggerDetails implements IPhoneLineChangedTriggerDetails { - changeType: PhoneLineChangeKind; - lineId: string; - - hasLinePropertyChanged(lineProperty: PhoneLineProperties): Boolean { - throw new Error('shimmed function PhoneLineChangedTriggerDetails.hasLinePropertyChanged'); - } - - } - export enum PhoneLineChangeKind { - added, - removed, - propertiesChanged, - } - export enum PhoneLineProperties { - none, - brandingOptions, - canDial, - cellularDetails = 4, - displayColor = 8, - displayName = 16, - networkName = 32, - networkState = 64, - transport = 128, - voicemail = 256, - } - export class PhoneNewVoicemailMessageTriggerDetails implements IPhoneNewVoicemailMessageTriggerDetails { - lineId: string; - operatorMessage: string; - voicemailCount: number; - - } - export enum PhoneTriggerType { - newVoicemailMessage, - callHistoryChanged, - lineChanged, - airplaneModeDisabledForEmergencyCall, - callOriginDataRequest, - callBlocked, - incomingCallDismissed, - } - } - export class CallAnswerEventArgs implements ICallAnswerEventArgs { - acceptedMedia: VoipPhoneCallMedia; - - } - export class CallRejectEventArgs implements ICallRejectEventArgs { - rejectReason: VoipPhoneCallRejectReason; - - } - export interface CallsPhoneContract { - } - export class CallStateChangeEventArgs implements ICallStateChangeEventArgs { - state: VoipPhoneCallState; - - } - export interface CallsVoipContract { - } - export enum CellularDtmfMode { - continuous, - burst, - } - export interface LockScreenCallContract { - } - export class LockScreenCallEndCallDeferral implements ILockScreenCallEndCallDeferral { - complete(): void { - console.warn('shimmed function LockScreenCallEndCallDeferral.complete'); - } - - } - export class LockScreenCallEndRequestedEventArgs implements ILockScreenCallEndRequestedEventArgs { - deadline: Date; - - getDeferral(): LockScreenCallEndCallDeferral { - throw new Error('shimmed function LockScreenCallEndRequestedEventArgs.getDeferral'); - } - - } - export class LockScreenCallUI implements ILockScreenCallUI { - callTitle: string; - - dismiss(): void { - console.warn('shimmed function LockScreenCallUI.dismiss'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LockScreenCallUI::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "endrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MuteChangeEventArgs implements IMuteChangeEventArgs { - muted: Boolean; - - } - export enum PhoneAudioRoutingEndpoint { - default, - bluetooth, - speakerphone, - } - export class PhoneCallBlocking { - static blockUnknownNumbers: Boolean; - static blockPrivateNumbers: Boolean; - - static setCallBlockingListAsync(phoneNumberList: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallBlocking.setCallBlockingListAsync'); - } - - } - export class PhoneCallHistoryEntry implements IPhoneCallHistoryEntry { - // constructor(); - media: PhoneCallHistoryEntryMedia = PhoneCallHistoryEntryMedia.audio; - isMissed: Boolean = false; - isIncoming: Boolean = false; - isCallerIdBlocked: Boolean = false; - isSeen: Boolean = false; - duration: number | null; - isEmergency: Boolean = false; - isSuppressed: Boolean = false; - startTime: Date = new Date(-11644473600000); - sourceIdKind: PhoneCallHistorySourceIdKind = PhoneCallHistorySourceIdKind.packageFamilyName; - address: PhoneCallHistoryEntryAddress; - sourceId: string = ''; - remoteId: string = ''; - otherAppReadAccess: PhoneCallHistoryEntryOtherAppReadAccess = PhoneCallHistoryEntryOtherAppReadAccess.full; - isRinging: Boolean = false; - isVoicemail: Boolean = false; - id: string = ''; - sourceDisplayName: string = ''; - - } - export class PhoneCallHistoryEntryAddress implements IPhoneCallHistoryEntryAddress { - // constructor(rawAddress: string, rawAddressKind: PhoneCallHistoryEntryRawAddressKind); - // constructor(); - constructor(rawAddress: string, rawAddressKind: PhoneCallHistoryEntryRawAddressKind) {} - - rawAddressKind: PhoneCallHistoryEntryRawAddressKind = PhoneCallHistoryEntryRawAddressKind.custom; - rawAddress: string = ''; - displayName: string = ''; - contactId: string = ''; - - } - export enum PhoneCallHistoryEntryMedia { - audio, - video, - } - export enum PhoneCallHistoryEntryOtherAppReadAccess { - full, - systemOnly, - } - export enum PhoneCallHistoryEntryQueryDesiredMedia { - none, - audio, - video, - all = 4294967295, - } - export class PhoneCallHistoryEntryQueryOptions implements IPhoneCallHistoryEntryQueryOptions { - // constructor(); - desiredMedia: PhoneCallHistoryEntryQueryDesiredMedia = PhoneCallHistoryEntryQueryDesiredMedia.all; - sourceIds: string[] = [ ]; - - } - export enum PhoneCallHistoryEntryRawAddressKind { - phoneNumber, - custom, - } - export class PhoneCallHistoryEntryReader implements IPhoneCallHistoryEntryReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallHistoryEntryReader.readBatchAsync'); - } - - } - export class PhoneCallHistoryManager { - static getForUser(user: System.User): PhoneCallHistoryManagerForUser { - throw new Error('shimmed function PhoneCallHistoryManager.getForUser'); - } - - static requestStoreAsync(accessType: PhoneCallHistoryStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallHistoryManager.requestStoreAsync'); - } - - } - export class PhoneCallHistoryManagerForUser implements IPhoneCallHistoryManagerForUser { - user: System.User; - - requestStoreAsync(accessType: PhoneCallHistoryStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallHistoryManagerForUser.requestStoreAsync'); - } - - } - export enum PhoneCallHistorySourceIdKind { - cellularPhoneLineId, - packageFamilyName, - } - export class PhoneCallHistoryStore implements IPhoneCallHistoryStore { - getEntryAsync(callHistoryEntryId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallHistoryStore.getEntryAsync'); - } - - getEntryReader(): PhoneCallHistoryEntryReader { - throw new Error('shimmed function PhoneCallHistoryStore.getEntryReader'); - } - - getEntryReader_1(queryOptions: PhoneCallHistoryEntryQueryOptions): PhoneCallHistoryEntryReader { - throw new Error('shimmed function PhoneCallHistoryStore.getEntryReader_1'); - } - - saveEntryAsync(callHistoryEntry: PhoneCallHistoryEntry): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneCallHistoryStore.saveEntryAsync'); - } - - deleteEntryAsync(callHistoryEntry: PhoneCallHistoryEntry): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneCallHistoryStore.deleteEntryAsync'); - } - - deleteEntriesAsync(callHistoryEntries: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneCallHistoryStore.deleteEntriesAsync'); - } - - markEntryAsSeenAsync(callHistoryEntry: PhoneCallHistoryEntry): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneCallHistoryStore.markEntryAsSeenAsync'); - } - - markEntriesAsSeenAsync(callHistoryEntries: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneCallHistoryStore.markEntriesAsSeenAsync'); - } - - getUnseenCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallHistoryStore.getUnseenCountAsync'); - } - - markAllAsSeenAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneCallHistoryStore.markAllAsSeenAsync'); - } - - getSourcesUnseenCountAsync(sourceIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallHistoryStore.getSourcesUnseenCountAsync'); - } - - markSourcesAsSeenAsync(sourceIds: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneCallHistoryStore.markSourcesAsSeenAsync'); - } - - } - export enum PhoneCallHistoryStoreAccessType { - appEntriesReadWrite, - allEntriesLimitedReadWrite, - allEntriesReadWrite, - } - export class PhoneCallManager { - static isCallActive: Boolean = false; - static isCallIncoming: Boolean = false; - - static showPhoneCallSettingsUI(): void { - console.warn('shimmed function PhoneCallManager.showPhoneCallSettingsUI'); - } - - static requestStoreAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallManager.requestStoreAsync'); - } - - static showPhoneCallUI(phoneNumber: string, displayName: string): void { - console.warn('shimmed function PhoneCallManager.showPhoneCallUI'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`PhoneCallManager::addEventListener: ${name}`); - switch (name) { - case "callstatechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum PhoneCallMedia { - audio, - audioAndVideo, - audioAndRealTimeText, - } - export class PhoneCallStore implements IPhoneCallStore { - isEmergencyPhoneNumberAsync(number: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallStore.isEmergencyPhoneNumberAsync'); - } - - getDefaultLineAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallStore.getDefaultLineAsync'); - } - - requestLineWatcher(): PhoneLineWatcher { - throw new Error('shimmed function PhoneCallStore.requestLineWatcher'); - } - - } - export class PhoneCallVideoCapabilities implements IPhoneCallVideoCapabilities { - isVideoCallingCapable: Boolean; - - } - export class PhoneCallVideoCapabilitiesManager { - static getCapabilitiesAsync(phoneNumber: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallVideoCapabilitiesManager.getCapabilitiesAsync'); - } - - } - export class PhoneDialOptions implements IPhoneDialOptions { - // constructor(); - number: string = ''; - media: PhoneCallMedia = PhoneCallMedia.audio; - displayName: string = ''; - contactPhone: Contacts.ContactPhone; - contact: Contacts.Contact; - audioEndpoint: PhoneAudioRoutingEndpoint = PhoneAudioRoutingEndpoint.default; - - } - export class PhoneLine implements IPhoneLine, IPhoneLine2 { - canDial: Boolean; - cellularDetails: PhoneLineCellularDetails; - displayColor: UI.Color; - displayName: string; - id: string; - lineConfiguration: PhoneLineConfiguration; - networkName: string; - networkState: PhoneNetworkState; - supportsTile: Boolean; - transport: PhoneLineTransport; - videoCallingCapabilities: PhoneCallVideoCapabilities; - voicemail: PhoneVoicemail; - transportDeviceId: string; - - isImmediateDialNumberAsync(number: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneLine.isImmediateDialNumberAsync'); - } - - dial(number: string, displayName: string): void { - console.warn('shimmed function PhoneLine.dial'); - } - - dialWithOptions(options: PhoneDialOptions): void { - console.warn('shimmed function PhoneLine.dialWithOptions'); - } - - enableTextReply(value: Boolean): void { - console.warn('shimmed function PhoneLine.enableTextReply'); - } - - static fromIdAsync(lineId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneLine.fromIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PhoneLine::addEventListener: ${name}`); - switch (name) { - case "linechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class PhoneLineCellularDetails implements IPhoneLineCellularDetails { - isModemOn: Boolean; - registrationRejectCode: number; - simSlotIndex: number; - simState: PhoneSimState; - - getNetworkOperatorDisplayText(location: PhoneLineNetworkOperatorDisplayTextLocation): string { - throw new Error('shimmed function PhoneLineCellularDetails.getNetworkOperatorDisplayText'); - } - - } - export class PhoneLineConfiguration implements IPhoneLineConfiguration { - extendedProperties: string[]; - isVideoCallingEnabled: Boolean; - - } - export enum PhoneLineNetworkOperatorDisplayTextLocation { - default, - tile, - dialer, - inCallUI, - } - export enum PhoneLineTransport { - cellular, - voipApp, - bluetooth, - } - export class PhoneLineTransportDevice implements IPhoneLineTransportDevice { - deviceId: string; - transport: PhoneLineTransport; - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneLineTransportDevice.requestAccessAsync'); - } - - registerApp(): void { - console.warn('shimmed function PhoneLineTransportDevice.registerApp'); - } - - registerAppForUser(user: System.User): void { - console.warn('shimmed function PhoneLineTransportDevice.registerAppForUser'); - } - - unregisterApp(): void { - console.warn('shimmed function PhoneLineTransportDevice.unregisterApp'); - } - - unregisterAppForUser(user: System.User): void { - console.warn('shimmed function PhoneLineTransportDevice.unregisterAppForUser'); - } - - isRegistered(): Boolean { - throw new Error('shimmed function PhoneLineTransportDevice.isRegistered'); - } - - connect(): Boolean { - throw new Error('shimmed function PhoneLineTransportDevice.connect'); - } - - connectAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneLineTransportDevice.connectAsync'); - } - - static fromId(id: string): PhoneLineTransportDevice { - throw new Error('shimmed function PhoneLineTransportDevice.fromId'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function PhoneLineTransportDevice.getDeviceSelector'); - } - - static getDeviceSelector_1(transport: PhoneLineTransport): string { - throw new Error('shimmed function PhoneLineTransportDevice.getDeviceSelector_1'); - } - - } - export class PhoneLineWatcher implements IPhoneLineWatcher { - status: PhoneLineWatcherStatus; - - start(): void { - console.warn('shimmed function PhoneLineWatcher.start'); - } - - stop(): void { - console.warn('shimmed function PhoneLineWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PhoneLineWatcher::addEventListener: ${name}`); - switch (name) { - case "enumerationcompleted": // Foundation.TypedEventHandler - case "lineadded": // Foundation.TypedEventHandler - case "lineremoved": // Foundation.TypedEventHandler - case "lineupdated": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export class PhoneLineWatcherEventArgs implements IPhoneLineWatcherEventArgs { - lineId: string; - - } - export enum PhoneLineWatcherStatus { - created, - started, - enumerationCompleted, - stopped, - } - export enum PhoneNetworkState { - unknown, - noSignal, - deregistered, - denied, - searching, - home, - roamingInternational, - roamingDomestic, - } - export enum PhoneSimState { - unknown, - pinNotRequired, - pinUnlocked, - pinLocked, - pukLocked, - notInserted, - invalid, - disabled, - } - export class PhoneVoicemail implements IPhoneVoicemail { - messageCount: number; - number: string; - type: PhoneVoicemailType; - - dialVoicemailAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PhoneVoicemail.dialVoicemailAsync'); - } - - } - export enum PhoneVoicemailType { - none, - traditional, - visual, - } - export namespace Provider { - export class PhoneCallOrigin implements IPhoneCallOrigin, IPhoneCallOrigin2, IPhoneCallOrigin3 { - // constructor(); - location: string = ''; - categoryDescription: string = ''; - category: string = ''; - displayName: string = ''; - displayPicture: Storage.StorageFile; - - } - export class PhoneCallOriginManager { - static isCurrentAppActiveCallOriginApp: Boolean; - static isSupported: Boolean; - - static requestSetAsActiveCallOriginAppAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhoneCallOriginManager.requestSetAsActiveCallOriginAppAsync'); - } - - static showPhoneCallOriginSettingsUI(): void { - console.warn('shimmed function PhoneCallOriginManager.showPhoneCallOriginSettingsUI'); - } - - static setCallOrigin(requestId: string, callOrigin: PhoneCallOrigin): void { - console.warn('shimmed function PhoneCallOriginManager.setCallOrigin'); - } - - } - } - export class VoipCallCoordinator implements IVoipCallCoordinator, IVoipCallCoordinator2, IVoipCallCoordinator3, IVoipCallCoordinator4 { - reserveCallResourcesAsync(taskEntryPoint: string): Foundation.IAsyncOperation { - throw new Error('shimmed function VoipCallCoordinator.reserveCallResourcesAsync'); - } - - requestNewIncomingCall(context: string, contactName: string, contactNumber: string, contactImage: Foundation.Uri, serviceName: string, brandingImage: Foundation.Uri, callDetails: string, ringtone: Foundation.Uri, media: VoipPhoneCallMedia, ringTimeout: number): VoipPhoneCall { - throw new Error('shimmed function VoipCallCoordinator.requestNewIncomingCall'); - } - - requestNewOutgoingCall(context: string, contactName: string, serviceName: string, media: VoipPhoneCallMedia): VoipPhoneCall { - throw new Error('shimmed function VoipCallCoordinator.requestNewOutgoingCall'); - } - - notifyMuted(): void { - console.warn('shimmed function VoipCallCoordinator.notifyMuted'); - } - - notifyUnmuted(): void { - console.warn('shimmed function VoipCallCoordinator.notifyUnmuted'); - } - - requestOutgoingUpgradeToVideoCall(callUpgradeGuid: string, context: string, contactName: string, serviceName: string): VoipPhoneCall { - throw new Error('shimmed function VoipCallCoordinator.requestOutgoingUpgradeToVideoCall'); - } - - requestIncomingUpgradeToVideoCall(context: string, contactName: string, contactNumber: string, contactImage: Foundation.Uri, serviceName: string, brandingImage: Foundation.Uri, callDetails: string, ringtone: Foundation.Uri, ringTimeout: number): VoipPhoneCall { - throw new Error('shimmed function VoipCallCoordinator.requestIncomingUpgradeToVideoCall'); - } - - terminateCellularCall(callUpgradeGuid: string): void { - console.warn('shimmed function VoipCallCoordinator.terminateCellularCall'); - } - - cancelUpgrade(callUpgradeGuid: string): void { - console.warn('shimmed function VoipCallCoordinator.cancelUpgrade'); - } - - setupNewAcceptedCall(context: string, contactName: string, contactNumber: string, serviceName: string, media: VoipPhoneCallMedia): VoipPhoneCall { - throw new Error('shimmed function VoipCallCoordinator.setupNewAcceptedCall'); - } - - requestNewAppInitiatedCall(context: string, contactName: string, contactNumber: string, serviceName: string, media: VoipPhoneCallMedia): VoipPhoneCall { - throw new Error('shimmed function VoipCallCoordinator.requestNewAppInitiatedCall'); - } - - requestNewIncomingCall_1(context: string, contactName: string, contactNumber: string, contactImage: Foundation.Uri, serviceName: string, brandingImage: Foundation.Uri, callDetails: string, ringtone: Foundation.Uri, media: VoipPhoneCallMedia, ringTimeout: number, contactRemoteId: string): VoipPhoneCall { - throw new Error('shimmed function VoipCallCoordinator.requestNewIncomingCall_1'); - } - - reserveCallResourcesAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function VoipCallCoordinator.reserveCallResourcesAsync_1'); - } - - static getDefault(): VoipCallCoordinator { - throw new Error('shimmed function VoipCallCoordinator.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VoipCallCoordinator::addEventListener: ${name}`); - switch (name) { - case "mutestatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class VoipPhoneCall implements IVoipPhoneCall, IVoipPhoneCall2, IVoipPhoneCall3 { - startTime: Date; - contactName: string; - callMedia: VoipPhoneCallMedia; - - notifyCallHeld(): void { - console.warn('shimmed function VoipPhoneCall.notifyCallHeld'); - } - - notifyCallActive(): void { - console.warn('shimmed function VoipPhoneCall.notifyCallActive'); - } - - notifyCallEnded(): void { - console.warn('shimmed function VoipPhoneCall.notifyCallEnded'); - } - - notifyCallReady(): void { - console.warn('shimmed function VoipPhoneCall.notifyCallReady'); - } - - tryShowAppUI(): void { - console.warn('shimmed function VoipPhoneCall.tryShowAppUI'); - } - - notifyCallAccepted(media: VoipPhoneCallMedia): void { - console.warn('shimmed function VoipPhoneCall.notifyCallAccepted'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VoipPhoneCall::addEventListener: ${name}`); - switch (name) { - case "answerrequested": // Foundation.TypedEventHandler - case "endrequested": // Foundation.TypedEventHandler - case "holdrequested": // Foundation.TypedEventHandler - case "rejectrequested": // Foundation.TypedEventHandler - case "resumerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum VoipPhoneCallMedia { - none, - audio, - video, - } - export enum VoipPhoneCallRejectReason { - userIgnored, - timedOut, - otherIncomingCall, - emergencyCallExists, - invalidCallState, - } - export enum VoipPhoneCallResourceReservationStatus { - success, - resourcesNotAvailable, - } - export enum VoipPhoneCallState { - ended, - held, - active, - incoming, - outgoing, - } - } - export class CameraApplicationManager { - static showInstalledApplicationsUI(): void { - console.warn('shimmed function CameraApplicationManager.showInstalledApplicationsUI'); - } - - } - export namespace Chat { - export class ChatCapabilities implements IChatCapabilities { - isChatCapable: Boolean; - isFileTransferCapable: Boolean; - isGeoLocationPushCapable: Boolean; - isIntegratedMessagingCapable: Boolean; - isOnline: Boolean; - - } - export class ChatCapabilitiesManager { - static getCachedCapabilitiesAsync(address: string, transportId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatCapabilitiesManager.getCachedCapabilitiesAsync'); - } - - static getCapabilitiesFromNetworkAsync(address: string, transportId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatCapabilitiesManager.getCapabilitiesFromNetworkAsync'); - } - - static getCachedCapabilitiesAsync_1(address: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatCapabilitiesManager.getCachedCapabilitiesAsync_1'); - } - - static getCapabilitiesFromNetworkAsync_1(address: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatCapabilitiesManager.getCapabilitiesFromNetworkAsync_1'); - } - - } - export class ChatConversation implements IChatConversation, IChatConversation2, IChatItem { - subject: string; - isConversationMuted: Boolean; - hasUnreadMessages: Boolean; - id: string; - mostRecentMessageId: string; - participants: string[]; - threadingInfo: ChatConversationThreadingInfo; - canModifyParticipants: Boolean; - itemKind: ChatItemKind; - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ChatConversation.deleteAsync'); - } - - getMessageReader(): ChatMessageReader { - throw new Error('shimmed function ChatConversation.getMessageReader'); - } - - markMessagesAsReadAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ChatConversation.markMessagesAsReadAsync'); - } - - markMessagesAsReadAsync_1(value: Date): Foundation.IAsyncAction { - throw new Error('shimmed function ChatConversation.markMessagesAsReadAsync_1'); - } - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ChatConversation.saveAsync'); - } - - notifyLocalParticipantComposing(transportId: string, participantAddress: string, isComposing: Boolean): void { - console.warn('shimmed function ChatConversation.notifyLocalParticipantComposing'); - } - - notifyRemoteParticipantComposing(transportId: string, participantAddress: string, isComposing: Boolean): void { - console.warn('shimmed function ChatConversation.notifyRemoteParticipantComposing'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ChatConversation::addEventListener: ${name}`); - switch (name) { - case "remoteparticipantcomposingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ChatConversationReader implements IChatConversationReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatConversationReader.readBatchAsync'); - } - - readBatchAsync_1(count: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatConversationReader.readBatchAsync_1'); - } - - } - export class ChatConversationThreadingInfo implements IChatConversationThreadingInfo { - // constructor(); - kind: ChatConversationThreadingKind = ChatConversationThreadingKind.participants; - custom: string = ''; - conversationId: string = ''; - contactId: string = ''; - participants: string[] = [ ]; - - } - export enum ChatConversationThreadingKind { - participants, - contactId, - conversationId, - custom, - } - export enum ChatItemKind { - message, - conversation, - } - export class ChatMessage implements IChatMessage, IChatMessage2, IChatMessage3, IChatMessage4, IChatItem { - // constructor(); - itemKind: ChatItemKind = ChatItemKind.message; - isIncoming: Boolean = false; - isForwardingDisabled: Boolean = false; - transportId: string = '0'; - status: ChatMessageStatus = ChatMessageStatus.draft; - from: string = ''; - body: string = ''; - subject: string = ''; - isRead: Boolean = true; - networkTimestamp: Date = new Date(1616785454317.62); - localTimestamp: Date = new Date(1616785454317.62); - recipientSendStatuses: string[] = [ ]; - recipients: string[] = [ ]; - transportFriendlyName: string = ''; - attachments: ChatMessageAttachment[] = [ ]; - id: string = ''; - isSeen: Boolean = false; - messageKind: ChatMessageKind = ChatMessageKind.standard; - isReceivedDuringQuietHours: Boolean; - isAutoReply: Boolean; - estimatedDownloadSize: number; - threadingInfo: ChatConversationThreadingInfo; - shouldSuppressNotification: Boolean; - remoteId: string; - messageOperatorKind: ChatMessageOperatorKind = ChatMessageOperatorKind.unspecified; - isReplyDisabled: Boolean = false; - isSimMessage: Boolean; - recipientsDeliveryInfos: ChatRecipientDeliveryInfo[] = [ ]; - syncId: string = ''; - - } - export class ChatMessageAttachment implements IChatMessageAttachment, IChatMessageAttachment2 { - // constructor(mimeType: string, dataStreamReference: Storage.Streams.IRandomAccessStreamReference); - constructor(mimeType: string, dataStreamReference: Storage.Streams.IRandomAccessStreamReference) {} - - text: string; - mimeType: string; - groupId: number; - dataStreamReference: Storage.Streams.IRandomAccessStreamReference; - transferProgress: number; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - originalFileName: string; - - } - export class ChatMessageBlocking { - static markMessageAsBlockedAsync(localChatMessageId: string, blocked: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageBlocking.markMessageAsBlockedAsync'); - } - - } - export class ChatMessageChange implements IChatMessageChange { - changeType: ChatMessageChangeType; - message: ChatMessage; - - } - export class ChatMessageChangedDeferral implements IChatMessageChangedDeferral { - complete(): void { - console.warn('shimmed function ChatMessageChangedDeferral.complete'); - } - - } - export class ChatMessageChangedEventArgs implements IChatMessageChangedEventArgs { - getDeferral(): ChatMessageChangedDeferral { - throw new Error('shimmed function ChatMessageChangedEventArgs.getDeferral'); - } - - } - export class ChatMessageChangeReader implements IChatMessageChangeReader { - acceptChanges(): void { - console.warn('shimmed function ChatMessageChangeReader.acceptChanges'); - } - - acceptChangesThrough(lastChangeToAcknowledge: ChatMessageChange): void { - console.warn('shimmed function ChatMessageChangeReader.acceptChangesThrough'); - } - - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageChangeReader.readBatchAsync'); - } - - } - export class ChatMessageChangeTracker implements IChatMessageChangeTracker { - enable(): void { - console.warn('shimmed function ChatMessageChangeTracker.enable'); - } - - getChangeReader(): ChatMessageChangeReader { - throw new Error('shimmed function ChatMessageChangeTracker.getChangeReader'); - } - - reset(): void { - console.warn('shimmed function ChatMessageChangeTracker.reset'); - } - - } - export enum ChatMessageChangeType { - messageCreated, - messageModified, - messageDeleted, - changeTrackingLost, - } - export enum ChatMessageKind { - standard, - fileTransferRequest, - transportCustom, - joinedConversation, - leftConversation, - otherParticipantJoinedConversation, - otherParticipantLeftConversation, - } - export class ChatMessageManager { - static requestSyncManagerAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageManager.requestSyncManagerAsync'); - } - - static registerTransportAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageManager.registerTransportAsync'); - } - - static getTransportAsync(transportId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageManager.getTransportAsync'); - } - - static getTransportsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageManager.getTransportsAsync'); - } - - static requestStoreAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageManager.requestStoreAsync'); - } - - static showComposeSmsMessageAsync(message: ChatMessage): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageManager.showComposeSmsMessageAsync'); - } - - static showSmsSettings(): void { - console.warn('shimmed function ChatMessageManager.showSmsSettings'); - } - - } - export class ChatMessageNotificationTriggerDetails implements IChatMessageNotificationTriggerDetails, IChatMessageNotificationTriggerDetails2 { - chatMessage: ChatMessage; - shouldDisplayToast: Boolean; - shouldUpdateActionCenter: Boolean; - shouldUpdateBadge: Boolean; - shouldUpdateDetailText: Boolean; - - } - export enum ChatMessageOperatorKind { - unspecified, - sms, - mms, - rcs, - } - export class ChatMessageReader implements IChatMessageReader, IChatMessageReader2 { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageReader.readBatchAsync'); - } - - readBatchAsync_1(count: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageReader.readBatchAsync_1'); - } - - } - export enum ChatMessageStatus { - draft, - sending, - sent, - sendRetryNeeded, - sendFailed, - received, - receiveDownloadNeeded, - receiveDownloadFailed, - receiveDownloading, - deleted, - declined, - cancelled, - recalled, - receiveRetryNeeded, - } - export class ChatMessageStore implements IChatMessageStore, IChatMessageStore2, IChatMessageStore3 { - changeTracker: ChatMessageChangeTracker; - - deleteMessageAsync(localMessageId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.deleteMessageAsync'); - } - - downloadMessageAsync(localChatMessageId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.downloadMessageAsync'); - } - - getMessageAsync(localChatMessageId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getMessageAsync'); - } - - getMessageReader(): ChatMessageReader { - throw new Error('shimmed function ChatMessageStore.getMessageReader'); - } - - getMessageReader_1(recentTimeLimit: number): ChatMessageReader { - throw new Error('shimmed function ChatMessageStore.getMessageReader_1'); - } - - markMessageReadAsync(localChatMessageId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.markMessageReadAsync'); - } - - retrySendMessageAsync(localChatMessageId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.retrySendMessageAsync'); - } - - sendMessageAsync(chatMessage: ChatMessage): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.sendMessageAsync'); - } - - validateMessage(chatMessage: ChatMessage): ChatMessageValidationResult { - throw new Error('shimmed function ChatMessageStore.validateMessage'); - } - - forwardMessageAsync(localChatMessageId: string, addresses: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.forwardMessageAsync'); - } - - getConversationAsync(conversationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getConversationAsync'); - } - - getConversationAsync_1(conversationId: string, transportIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getConversationAsync_1'); - } - - getConversationFromThreadingInfoAsync(threadingInfo: ChatConversationThreadingInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getConversationFromThreadingInfoAsync'); - } - - getConversationReader(): ChatConversationReader { - throw new Error('shimmed function ChatMessageStore.getConversationReader'); - } - - getConversationReader_1(transportIds: Foundation.Collections.IIterable): ChatConversationReader { - throw new Error('shimmed function ChatMessageStore.getConversationReader_1'); - } - - getMessageByRemoteIdAsync(transportId: string, remoteId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getMessageByRemoteIdAsync'); - } - - getUnseenCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getUnseenCountAsync'); - } - - getUnseenCountAsync_1(transportIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getUnseenCountAsync_1'); - } - - markAsSeenAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.markAsSeenAsync'); - } - - markAsSeenAsync_1(transportIds: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.markAsSeenAsync_1'); - } - - getSearchReader(value: ChatQueryOptions): ChatSearchReader { - throw new Error('shimmed function ChatMessageStore.getSearchReader'); - } - - saveMessageAsync(chatMessage: ChatMessage): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageStore.saveMessageAsync'); - } - - tryCancelDownloadMessageAsync(localChatMessageId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.tryCancelDownloadMessageAsync'); - } - - tryCancelSendMessageAsync(localChatMessageId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.tryCancelSendMessageAsync'); - } - - getMessageBySyncIdAsync(syncId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatMessageStore.getMessageBySyncIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ChatMessageStore::addEventListener: ${name}`); - switch (name) { - case "messagechanged": // Foundation.TypedEventHandler - case "storechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ChatMessageStoreChangedEventArgs implements IChatMessageStoreChangedEventArgs { - id: string; - kind: ChatStoreChangedEventKind; - - } - export class ChatMessageTransport implements IChatMessageTransport, IChatMessageTransport2 { - isActive: Boolean; - isAppSetAsNotificationProvider: Boolean; - transportFriendlyName: string; - transportId: string; - configuration: ChatMessageTransportConfiguration; - transportKind: ChatMessageTransportKind; - - requestSetAsNotificationProviderAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ChatMessageTransport.requestSetAsNotificationProviderAsync'); - } - - } - export class ChatMessageTransportConfiguration implements IChatMessageTransportConfiguration { - extendedProperties: string[]; - maxAttachmentCount: number; - maxMessageSizeInKilobytes: number; - maxRecipientCount: number; - supportedVideoFormat: Media.MediaProperties.MediaEncodingProfile; - - } - export enum ChatMessageTransportKind { - text, - untriaged, - blocked, - custom, - } - export class ChatMessageValidationResult implements IChatMessageValidationResult { - maxPartCount: number | null; - partCount: number | null; - remainingCharacterCountInPart: number | null; - status: ChatMessageValidationStatus; - - } - export enum ChatMessageValidationStatus { - valid, - noRecipients, - invalidData, - messageTooLarge, - tooManyRecipients, - transportInactive, - transportNotFound, - tooManyAttachments, - invalidRecipients, - invalidBody, - invalidOther, - validWithLargeMessage, - voiceRoamingRestriction, - dataRoamingRestriction, - } - export class ChatQueryOptions implements IChatQueryOptions { - // constructor(); - searchString: string = ''; - - } - export class ChatRecipientDeliveryInfo implements IChatRecipientDeliveryInfo { - // constructor(); - transportAddress: string = ''; - readTime: Date | null; - deliveryTime: Date | null; - isErrorPermanent: Boolean = false; - status: ChatMessageStatus = ChatMessageStatus.sent; - transportErrorCode: number = 0; - transportErrorCodeCategory: ChatTransportErrorCodeCategory = ChatTransportErrorCodeCategory.none; - transportInterpretedErrorCode: ChatTransportInterpretedErrorCode = ChatTransportInterpretedErrorCode.none; - - } - export enum ChatRestoreHistorySpan { - lastMonth, - lastYear, - anyTime, - } - export class ChatSearchReader implements IChatSearchReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatSearchReader.readBatchAsync'); - } - - readBatchAsync_1(count: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ChatSearchReader.readBatchAsync_1'); - } - - } - export enum ChatStoreChangedEventKind { - notificationsMissed, - storeModified, - messageCreated, - messageModified, - messageDeleted, - conversationModified, - conversationDeleted, - conversationTransportDeleted, - } - export class ChatSyncConfiguration implements IChatSyncConfiguration { - restoreHistorySpan: ChatRestoreHistorySpan; - isSyncEnabled: Boolean; - - } - export class ChatSyncManager implements IChatSyncManager { - configuration: ChatSyncConfiguration; - - associateAccountAsync(webAccount: Security.Credentials.WebAccount): Foundation.IAsyncAction { - throw new Error('shimmed function ChatSyncManager.associateAccountAsync'); - } - - unassociateAccountAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ChatSyncManager.unassociateAccountAsync'); - } - - isAccountAssociated(webAccount: Security.Credentials.WebAccount): Boolean { - throw new Error('shimmed function ChatSyncManager.isAccountAssociated'); - } - - startSync(): void { - console.warn('shimmed function ChatSyncManager.startSync'); - } - - setConfigurationAsync(configuration: ChatSyncConfiguration): Foundation.IAsyncAction { - throw new Error('shimmed function ChatSyncManager.setConfigurationAsync'); - } - - } - export enum ChatTransportErrorCodeCategory { - none, - http, - network, - mmsServer, - } - export enum ChatTransportInterpretedErrorCode { - none, - unknown, - invalidRecipientAddress, - networkConnectivity, - serviceDenied, - timeout, - } - export interface IChatItem { - itemKind: ChatItemKind; - } - export class RcsEndUserMessage implements IRcsEndUserMessage { - actions: RcsEndUserMessageAction[]; - isPinRequired: Boolean; - text: string; - title: string; - transportId: string; - - sendResponseAsync(action: RcsEndUserMessageAction): Foundation.IAsyncAction { - throw new Error('shimmed function RcsEndUserMessage.sendResponseAsync'); - } - - sendResponseWithPinAsync(action: RcsEndUserMessageAction, pin: string): Foundation.IAsyncAction { - throw new Error('shimmed function RcsEndUserMessage.sendResponseWithPinAsync'); - } - - } - export class RcsEndUserMessageAction implements IRcsEndUserMessageAction { - label: string; - - } - export class RcsEndUserMessageAvailableEventArgs implements IRcsEndUserMessageAvailableEventArgs { - isMessageAvailable: Boolean; - message: RcsEndUserMessage; - - } - export class RcsEndUserMessageAvailableTriggerDetails implements IRcsEndUserMessageAvailableTriggerDetails { - text: string; - title: string; - - } - export class RcsEndUserMessageManager implements IRcsEndUserMessageManager { - addEventListener(name: string, handler: Function) { - console.warn(`RcsEndUserMessageManager::addEventListener: ${name}`); - switch (name) { - case "messageavailablechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class RcsManager { - static getEndUserMessageManager(): RcsEndUserMessageManager { - throw new Error('shimmed function RcsManager.getEndUserMessageManager'); - } - - static getTransportsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RcsManager.getTransportsAsync'); - } - - static getTransportAsync(transportId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function RcsManager.getTransportAsync'); - } - - static leaveConversationAsync(conversation: ChatConversation): Foundation.IAsyncAction { - throw new Error('shimmed function RcsManager.leaveConversationAsync'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`RcsManager::addEventListener: ${name}`); - switch (name) { - case "transportlistchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum RcsServiceKind { - chat, - groupChat, - fileTransfer, - capability, - } - export class RcsServiceKindSupportedChangedEventArgs implements IRcsServiceKindSupportedChangedEventArgs { - serviceKind: RcsServiceKind; - - } - export class RcsTransport implements IRcsTransport { - configuration: RcsTransportConfiguration; - extendedProperties: string[]; - isActive: Boolean; - transportFriendlyName: string; - transportId: string; - - isStoreAndForwardEnabled(serviceKind: RcsServiceKind): Boolean { - throw new Error('shimmed function RcsTransport.isStoreAndForwardEnabled'); - } - - isServiceKindSupported(serviceKind: RcsServiceKind): Boolean { - throw new Error('shimmed function RcsTransport.isServiceKindSupported'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RcsTransport::addEventListener: ${name}`); - switch (name) { - case "servicekindsupportedchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class RcsTransportConfiguration implements IRcsTransportConfiguration { - maxAttachmentCount: number; - maxFileSizeInKilobytes: number; - maxGroupMessageSizeInKilobytes: number; - maxMessageSizeInKilobytes: number; - maxRecipientCount: number; - warningFileSizeInKilobytes: number; - - } - export class RemoteParticipantComposingChangedEventArgs implements IRemoteParticipantComposingChangedEventArgs { - isComposing: Boolean; - participantAddress: string; - transportId: string; - - } - } - export namespace CommunicationBlocking { - export class CommunicationBlockingAccessManager { - static isBlockingActive: Boolean = false; - - static isBlockedNumberAsync(number: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CommunicationBlockingAccessManager.isBlockedNumberAsync'); - } - - static showBlockNumbersUI(phoneNumbers: Foundation.Collections.IIterable): Boolean { - throw new Error('shimmed function CommunicationBlockingAccessManager.showBlockNumbersUI'); - } - - static showUnblockNumbersUI(phoneNumbers: Foundation.Collections.IIterable): Boolean { - throw new Error('shimmed function CommunicationBlockingAccessManager.showUnblockNumbersUI'); - } - - static showBlockedCallsUI(): void { - console.warn('shimmed function CommunicationBlockingAccessManager.showBlockedCallsUI'); - } - - static showBlockedMessagesUI(): void { - console.warn('shimmed function CommunicationBlockingAccessManager.showBlockedMessagesUI'); - } - - } - export class CommunicationBlockingAppManager { - static isCurrentAppActiveBlockingApp: Boolean; - - static requestSetAsActiveBlockingAppAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CommunicationBlockingAppManager.requestSetAsActiveBlockingAppAsync'); - } - - static showCommunicationBlockingSettingsUI(): void { - console.warn('shimmed function CommunicationBlockingAppManager.showCommunicationBlockingSettingsUI'); - } - - } - export interface CommunicationBlockingContract { - } - } - export namespace Contacts { - export class AggregateContactManager implements IAggregateContactManager, IAggregateContactManager2 { - findRawContactsAsync(contact: Contact): Foundation.IAsyncOperation { - throw new Error('shimmed function AggregateContactManager.findRawContactsAsync'); - } - - tryLinkContactsAsync(primaryContact: Contact, secondaryContact: Contact): Foundation.IAsyncOperation { - throw new Error('shimmed function AggregateContactManager.tryLinkContactsAsync'); - } - - unlinkRawContactAsync(contact: Contact): Foundation.IAsyncAction { - throw new Error('shimmed function AggregateContactManager.unlinkRawContactAsync'); - } - - trySetPreferredSourceForPictureAsync(aggregateContact: Contact, rawContact: Contact): Foundation.IAsyncOperation { - throw new Error('shimmed function AggregateContactManager.trySetPreferredSourceForPictureAsync'); - } - - setRemoteIdentificationInformationAsync(contactListId: string, remoteSourceId: string, accountId: string): Foundation.IAsyncAction { - throw new Error('shimmed function AggregateContactManager.setRemoteIdentificationInformationAsync'); - } - - } - export class Contact implements IContact, IContact2, IContactName, IContact3 { - // constructor(); - thumbnail: Storage.Streams.IRandomAccessStreamReference; - name: string = ''; - fields: IContactField[] = [ ]; - id: string = ''; - notes: string = ''; - connectedServiceAccounts: ContactConnectedServiceAccount[] = [ ]; - emails: ContactEmail[] = [ ]; - addresses: ContactAddress[] = [ ]; - importantDates: ContactDate[] = [ ]; - jobInfo: ContactJobInfo[] = [ ]; - dataSuppliers: string[] = [ ]; - phones: ContactPhone[] = [ ]; - providerProperties: Foundation.Collections.IPropertySet = [ ]; - significantOthers: ContactSignificantOther[] = [ ]; - websites: ContactWebsite[] = [ ]; - sourceDisplayPicture: Storage.Streams.IRandomAccessStreamReference; - textToneToken: string = ''; - displayNameOverride: string = ''; - displayPictureUserUpdateTime: Date = new Date(-11644473600000); - nickname: string = ''; - remoteId: string = ''; - ringToneToken: string = ''; - contactListId: string = ''; - largeDisplayPicture: Storage.Streams.IRandomAccessStreamReference; - smallDisplayPicture: Storage.Streams.IRandomAccessStreamReference; - sortName: string = ''; - aggregateId: string = ''; - fullName: string = ''; - isAggregate: Boolean = false; - isDisplayPictureManuallySet: Boolean = false; - isMe: Boolean = false; - yomiGivenName: string = ''; - honorificNameSuffix: string = ''; - yomiFamilyName: string = ''; - middleName: string = ''; - lastName: string = ''; - honorificNamePrefix: string = ''; - firstName: string = ''; - displayName: string = ''; - yomiDisplayName: string = ''; - - } - export class ContactAddress implements IContactAddress { - // constructor(); - streetAddress: string = ''; - region: string = ''; - postalCode: string = ''; - locality: string = ''; - kind: ContactAddressKind = ContactAddressKind.home; - description: string = ''; - country: string = ''; - - } - export enum ContactAddressKind { - home, - work, - other, - } - export class ContactAnnotation implements IContactAnnotation, IContactAnnotation2 { - // constructor(); - supportedOperations: ContactAnnotationOperations = ContactAnnotationOperations.none; - remoteId: string = ''; - contactId: string = ''; - annotationListId: string = ''; - id: string = ''; - isDisabled: Boolean = false; - providerProperties: Foundation.Collections.ValueSet = [ ]; - contactListId: string = ''; - - } - export class ContactAnnotationList implements IContactAnnotationList { - id: string; - providerPackageFamilyName: string; - userDataAccountId: string; - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactAnnotationList.deleteAsync'); - } - - trySaveAnnotationAsync(annotation: ContactAnnotation): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationList.trySaveAnnotationAsync'); - } - - getAnnotationAsync(annotationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationList.getAnnotationAsync'); - } - - findAnnotationsByRemoteIdAsync(remoteId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationList.findAnnotationsByRemoteIdAsync'); - } - - findAnnotationsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationList.findAnnotationsAsync'); - } - - deleteAnnotationAsync(annotation: ContactAnnotation): Foundation.IAsyncAction { - throw new Error('shimmed function ContactAnnotationList.deleteAnnotationAsync'); - } - - } - export enum ContactAnnotationOperations { - none, - contactProfile, - message, - audioCall = 4, - videoCall = 8, - socialFeeds = 16, - share = 32, - } - export class ContactAnnotationStore implements IContactAnnotationStore, IContactAnnotationStore2 { - findContactIdsByEmailAsync(emailAddress: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.findContactIdsByEmailAsync'); - } - - findContactIdsByPhoneNumberAsync(phoneNumber: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.findContactIdsByPhoneNumberAsync'); - } - - findAnnotationsForContactAsync(contact: Contact): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.findAnnotationsForContactAsync'); - } - - disableAnnotationAsync(annotation: ContactAnnotation): Foundation.IAsyncAction { - throw new Error('shimmed function ContactAnnotationStore.disableAnnotationAsync'); - } - - createAnnotationListAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.createAnnotationListAsync'); - } - - createAnnotationListAsync_1(userDataAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.createAnnotationListAsync_1'); - } - - getAnnotationListAsync(annotationListId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.getAnnotationListAsync'); - } - - findAnnotationListsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.findAnnotationListsAsync'); - } - - findAnnotationsForContactListAsync(contactListId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactAnnotationStore.findAnnotationsForContactListAsync'); - } - - } - export enum ContactAnnotationStoreAccessType { - appAnnotationsReadWrite, - allAnnotationsReadWrite, - } - export class ContactBatch implements IContactBatch { - contacts: Contact[]; - status: ContactBatchStatus; - - } - export enum ContactBatchStatus { - success, - serverSearchSyncManagerError, - serverSearchUnknownError, - } - export class ContactCardDelayedDataLoader implements IContactCardDelayedDataLoader, Foundation.IClosable { - close(): void { - console.warn('shimmed function ContactCardDelayedDataLoader.close'); - } - - } - export enum ContactCardHeaderKind { - default, - basic, - enterprise, - } - export class ContactCardOptions implements IContactCardOptions, IContactCardOptions2 { - // constructor(); - initialTabKind: ContactCardTabKind = ContactCardTabKind.default; - headerKind: ContactCardHeaderKind = ContactCardHeaderKind.default; - serverSearchContactListIds: string[] = [ ]; - - } - export enum ContactCardTabKind { - default, - email, - messaging, - phone, - video, - organizationalHierarchy, - } - export class ContactChange implements IContactChange { - changeType: ContactChangeType; - contact: Contact; - - } - export class ContactChangedDeferral implements IContactChangedDeferral { - complete(): void { - console.warn('shimmed function ContactChangedDeferral.complete'); - } - - } - export class ContactChangedEventArgs implements IContactChangedEventArgs { - getDeferral(): ContactChangedDeferral { - throw new Error('shimmed function ContactChangedEventArgs.getDeferral'); - } - - } - export class ContactChangeReader implements IContactChangeReader { - acceptChanges(): void { - console.warn('shimmed function ContactChangeReader.acceptChanges'); - } - - acceptChangesThrough(lastChangeToAccept: ContactChange): void { - console.warn('shimmed function ContactChangeReader.acceptChangesThrough'); - } - - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactChangeReader.readBatchAsync'); - } - - } - export class ContactChangeTracker implements IContactChangeTracker, IContactChangeTracker2 { - isTracking: Boolean; - - enable(): void { - console.warn('shimmed function ContactChangeTracker.enable'); - } - - getChangeReader(): ContactChangeReader { - throw new Error('shimmed function ContactChangeTracker.getChangeReader'); - } - - reset(): void { - console.warn('shimmed function ContactChangeTracker.reset'); - } - - } - export enum ContactChangeType { - created, - modified, - deleted, - changeTrackingLost, - } - export class ContactConnectedServiceAccount implements IContactConnectedServiceAccount { - // constructor(); - serviceName: string = ''; - id: string = ''; - - } - export class ContactDate implements IContactDate { - // constructor(); - year: number | null; - month: number | null; - kind: ContactDateKind = 505; - description: string = ''; - day: number | null; - - } - export enum ContactDateKind { - birthday, - anniversary, - other, - } - export class ContactEmail implements IContactEmail { - // constructor(); - kind: ContactEmailKind = ContactEmailKind.personal; - description: string = ''; - address: string = ''; - - } - export enum ContactEmailKind { - personal, - work, - other, - } - export class ContactField implements IContactField { - // constructor(value: string, type: ContactFieldType); - // constructor(value: string, type: ContactFieldType, category: ContactFieldCategory); - // constructor(name: string, value: string, type: ContactFieldType, category: ContactFieldCategory); - constructor(value: string, type: ContactFieldType, category: ContactFieldCategory, name: string) {} - - category: ContactFieldCategory; - name: string; - type: ContactFieldType; - value: string; - - } - export enum ContactFieldCategory { - none, - home, - work, - mobile, - other, - } - export class ContactFieldFactory implements IContactFieldFactory, IContactLocationFieldFactory, IContactInstantMessageFieldFactory { - // constructor(); - createField(value: string, type: ContactFieldType): ContactField { - throw new Error('shimmed function ContactFieldFactory.createField'); - } - - createField_1(value: string, type: ContactFieldType, category: ContactFieldCategory): ContactField { - throw new Error('shimmed function ContactFieldFactory.createField_1'); - } - - createField_2(name: string, value: string, type: ContactFieldType, category: ContactFieldCategory): ContactField { - throw new Error('shimmed function ContactFieldFactory.createField_2'); - } - - createLocation(unstructuredAddress: string): ContactLocationField { - throw new Error('shimmed function ContactFieldFactory.createLocation'); - } - - createLocation_1(unstructuredAddress: string, category: ContactFieldCategory): ContactLocationField { - throw new Error('shimmed function ContactFieldFactory.createLocation_1'); - } - - createLocation_2(unstructuredAddress: string, category: ContactFieldCategory, street: string, city: string, region: string, country: string, postalCode: string): ContactLocationField { - throw new Error('shimmed function ContactFieldFactory.createLocation_2'); - } - - createInstantMessage(userName: string): ContactInstantMessageField { - throw new Error('shimmed function ContactFieldFactory.createInstantMessage'); - } - - createInstantMessage_1(userName: string, category: ContactFieldCategory): ContactInstantMessageField { - throw new Error('shimmed function ContactFieldFactory.createInstantMessage_1'); - } - - createInstantMessage_2(userName: string, category: ContactFieldCategory, service: string, displayText: string, verb: Foundation.Uri): ContactInstantMessageField { - throw new Error('shimmed function ContactFieldFactory.createInstantMessage_2'); - } - - } - export enum ContactFieldType { - email, - phoneNumber, - location, - instantMessage, - custom, - connectedServiceAccount, - importantDate, - address, - significantOther, - notes, - website, - jobInfo, - } - export class ContactGroup implements IContactGroup { - } - export class ContactInformation implements IContactInformation { - customFields: ContactField[]; - emails: ContactField[]; - instantMessages: ContactInstantMessageField[]; - locations: ContactLocationField[]; - name: string; - phoneNumbers: ContactField[]; - - getThumbnailAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactInformation.getThumbnailAsync'); - } - - queryCustomFields(customName: string): ContactField[] { - throw new Error('shimmed function ContactInformation.queryCustomFields'); - } - - } - export class ContactInstantMessageField implements IContactInstantMessageField, IContactField { - // constructor(userName: string); - // constructor(userName: string, category: ContactFieldCategory); - // constructor(userName: string, category: ContactFieldCategory, service: string, displayText: string, verb: Foundation.Uri); - constructor(userName: string, category: ContactFieldCategory, service: string, displayText: string, verb: Foundation.Uri) {} - - category: ContactFieldCategory; - name: string; - type: ContactFieldType; - value: string; - displayText: string; - launchUri: Foundation.Uri; - service: string; - userName: string; - - } - export class ContactJobInfo implements IContactJobInfo { - // constructor(); - title: string = ''; - office: string = ''; - manager: string = ''; - description: string = ''; - department: string = ''; - companyYomiName: string = ''; - companyName: string = ''; - companyAddress: string = ''; - - } - export class ContactLaunchActionVerbs { - static call: string = 'Windows.Contact.Call'; - static map: string = 'Windows.Contact.Map'; - static message: string = 'Windows.Contact.Message'; - static post: string = 'Windows.Contact.Post'; - static videoCall: string = 'Windows.Contact.VideoCall'; - - } - export class ContactList implements IContactList, IContactList2, IContactList3 { - supportsServerSearch: Boolean; - isHidden: Boolean; - otherAppWriteAccess: ContactListOtherAppWriteAccess; - displayName: string; - otherAppReadAccess: ContactListOtherAppReadAccess; - changeTracker: ContactChangeTracker; - sourceDisplayName: string; - id: string; - syncManager: ContactListSyncManager; - userDataAccountId: string; - syncConstraints: ContactListSyncConstraints; - limitedWriteOperations: ContactListLimitedWriteOperations; - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactList.saveAsync'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactList.deleteAsync'); - } - - getContactFromRemoteIdAsync(remoteId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactList.getContactFromRemoteIdAsync'); - } - - getMeContactAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactList.getMeContactAsync'); - } - - getContactReader(): ContactReader { - throw new Error('shimmed function ContactList.getContactReader'); - } - - getContactReader_1(options: ContactQueryOptions): ContactReader { - throw new Error('shimmed function ContactList.getContactReader_1'); - } - - saveContactAsync(contact: Contact): Foundation.IAsyncAction { - throw new Error('shimmed function ContactList.saveContactAsync'); - } - - deleteContactAsync(contact: Contact): Foundation.IAsyncAction { - throw new Error('shimmed function ContactList.deleteContactAsync'); - } - - getContactAsync(contactId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactList.getContactAsync'); - } - - registerSyncManagerAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactList.registerSyncManagerAsync'); - } - - getChangeTracker(identity: string): ContactChangeTracker { - throw new Error('shimmed function ContactList.getChangeTracker'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContactList::addEventListener: ${name}`); - switch (name) { - case "contactchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContactListLimitedWriteOperations implements IContactListLimitedWriteOperations { - tryCreateOrUpdateContactAsync(contact: Contact): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactListLimitedWriteOperations.tryCreateOrUpdateContactAsync'); - } - - tryDeleteContactAsync(contactId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactListLimitedWriteOperations.tryDeleteContactAsync'); - } - - } - export enum ContactListOtherAppReadAccess { - systemOnly, - limited, - full, - none, - } - export enum ContactListOtherAppWriteAccess { - none, - systemOnly, - limited, - } - export class ContactListSyncConstraints implements IContactListSyncConstraints { - canSyncDescriptions: Boolean; - maxCompanyPhoneNumbers: number | null; - maxChildRelationships: number | null; - maxBusinessFaxPhoneNumbers: number | null; - maxBirthdayDates: number | null; - maxAssistantPhoneNumbers: number | null; - maxOtherAddresses: number | null; - maxAnniversaryDates: number | null; - maxHomeAddresses: number | null; - maxOtherDates: number | null; - maxMobilePhoneNumbers: number | null; - maxJobInfo: number | null; - maxHomePhoneNumbers: number | null; - maxHomeFaxPhoneNumbers: number | null; - maxOtherEmailAddresses: number | null; - maxPersonalEmailAddresses: number | null; - maxPartnerRelationships: number | null; - maxParentRelationships: number | null; - maxPagerPhoneNumbers: number | null; - maxOtherRelationships: number | null; - maxOtherPhoneNumbers: number | null; - maxRadioPhoneNumbers: number | null; - maxWorkPhoneNumbers: number | null; - maxWorkEmailAddresses: number | null; - maxWorkAddresses: number | null; - maxWebsites: number | null; - maxSpouseRelationships: number | null; - maxSiblingRelationships: number | null; - - } - export class ContactListSyncManager implements IContactListSyncManager, IContactListSyncManager2 { - status: ContactListSyncStatus; - lastSuccessfulSyncTime: Date; - lastAttemptedSyncTime: Date; - - syncAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactListSyncManager.syncAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContactListSyncManager::addEventListener: ${name}`); - switch (name) { - case "syncstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ContactListSyncStatus { - idle, - syncing, - upToDate, - authenticationError, - policyError, - unknownError, - manualAccountRemovalRequired, - } - export class ContactLocationField implements IContactLocationField, IContactField { - // constructor(unstructuredAddress: string); - // constructor(unstructuredAddress: string, category: ContactFieldCategory); - // constructor(unstructuredAddress: string, category: ContactFieldCategory, street: string, city: string, region: string, country: string, postalCode: string); - constructor(unstructuredAddress: string, category: ContactFieldCategory, street: string, city: string, region: string, country: string, postalCode: string) {} - - category: ContactFieldCategory; - name: string; - type: ContactFieldType; - value: string; - city: string; - country: string; - postalCode: string; - region: string; - street: string; - unstructuredAddress: string; - - } - export class ContactManager { - static systemSortOrder: ContactNameOrder = ContactNameOrder.firstNameLastName; - static systemDisplayNameOrder: ContactNameOrder = ContactNameOrder.firstNameLastName; - static includeMiddleNameInSystemDisplayAndSort: Boolean = false; - - static isShowFullContactCardSupportedAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManager.isShowFullContactCardSupportedAsync'); - } - - static getForUser(user: System.User): ContactManagerForUser { - throw new Error('shimmed function ContactManager.getForUser'); - } - - static convertContactToVCardAsync(contact: Contact): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManager.convertContactToVCardAsync'); - } - - static convertContactToVCardAsync_1(contact: Contact, maxBytes: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManager.convertContactToVCardAsync_1'); - } - - static convertVCardToContactAsync(vCard: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManager.convertVCardToContactAsync'); - } - - static requestStoreAsync(accessType: ContactStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManager.requestStoreAsync'); - } - - static requestAnnotationStoreAsync(accessType: ContactAnnotationStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManager.requestAnnotationStoreAsync'); - } - - static isShowContactCardSupported(): Boolean { - throw new Error('shimmed function ContactManager.isShowContactCardSupported'); - } - - static showContactCard(contact: Contact, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, contactCardOptions: ContactCardOptions): void { - console.warn('shimmed function ContactManager.showContactCard'); - } - - static isShowDelayLoadedContactCardSupported(): Boolean { - throw new Error('shimmed function ContactManager.isShowDelayLoadedContactCardSupported'); - } - - static showDelayLoadedContactCard(contact: Contact, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement, contactCardOptions: ContactCardOptions): ContactCardDelayedDataLoader { - throw new Error('shimmed function ContactManager.showDelayLoadedContactCard'); - } - - static showFullContactCard(contact: Contact, fullContactCardOptions: FullContactCardOptions): void { - console.warn('shimmed function ContactManager.showFullContactCard'); - } - - static requestStoreAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManager.requestStoreAsync_1'); - } - - static showContactCard_1(contact: Contact, selection: Foundation.Rect): void { - console.warn('shimmed function ContactManager.showContactCard_1'); - } - - static showContactCard_2(contact: Contact, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): void { - console.warn('shimmed function ContactManager.showContactCard_2'); - } - - static showDelayLoadedContactCard_1(contact: Contact, selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): ContactCardDelayedDataLoader { - throw new Error('shimmed function ContactManager.showDelayLoadedContactCard_1'); - } - - } - export class ContactManagerForUser implements IContactManagerForUser, IContactManagerForUser2 { - systemSortOrder: ContactNameOrder; - systemDisplayNameOrder: ContactNameOrder; - user: System.User; - - convertContactToVCardAsync(contact: Contact): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManagerForUser.convertContactToVCardAsync'); - } - - convertContactToVCardAsync_1(contact: Contact, maxBytes: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManagerForUser.convertContactToVCardAsync_1'); - } - - convertVCardToContactAsync(vCard: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManagerForUser.convertVCardToContactAsync'); - } - - requestStoreAsync(accessType: ContactStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManagerForUser.requestStoreAsync'); - } - - requestAnnotationStoreAsync(accessType: ContactAnnotationStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactManagerForUser.requestAnnotationStoreAsync'); - } - - showFullContactCard(contact: Contact, fullContactCardOptions: FullContactCardOptions): void { - console.warn('shimmed function ContactManagerForUser.showFullContactCard'); - } - - } - export class ContactMatchReason implements IContactMatchReason { - field: ContactMatchReasonKind; - segments: Data.Text.TextSegment[]; - text: string; - - } - export enum ContactMatchReasonKind { - name, - emailAddress, - phoneNumber, - jobInfo, - yomiName, - other, - } - export enum ContactNameOrder { - firstNameLastName, - lastNameFirstName, - } - export class ContactPanel implements IContactPanel { - headerColor: UI.Color | null; - - closePanel(): void { - console.warn('shimmed function ContactPanel.closePanel'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContactPanel::addEventListener: ${name}`); - switch (name) { - case "closing": // Foundation.TypedEventHandler - case "launchfullapprequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContactPanelClosingEventArgs implements IContactPanelClosingEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ContactPanelClosingEventArgs.getDeferral'); - } - - } - export class ContactPanelLaunchFullAppRequestedEventArgs implements IContactPanelLaunchFullAppRequestedEventArgs { - handled: Boolean; - - } - export class ContactPhone implements IContactPhone { - // constructor(); - number: string = ''; - kind: ContactPhoneKind = ContactPhoneKind.home; - description: string = ''; - - } - export enum ContactPhoneKind { - home, - mobile, - work, - other, - pager, - businessFax, - homeFax, - company, - assistant, - radio, - } - export class ContactPicker implements IContactPicker, IContactPicker2, IContactPicker3 { - // constructor(); - selectionMode: ContactSelectionMode = ContactSelectionMode.contacts; - commitButtonText: string = ''; - desiredFields: string[] = [ ]; - desiredFieldsWithContactFieldType: ContactFieldType[] = [ ]; - user: System.User; - - pickSingleContactAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactPicker.pickSingleContactAsync'); - } - - pickMultipleContactsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactPicker.pickMultipleContactsAsync'); - } - - pickContactAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactPicker.pickContactAsync'); - } - - pickContactsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactPicker.pickContactsAsync'); - } - - static createForUser(user: System.User): ContactPicker { - throw new Error('shimmed function ContactPicker.createForUser'); - } - - static isSupportedAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactPicker.isSupportedAsync'); - } - - } - export enum ContactQueryDesiredFields { - none, - phoneNumber, - emailAddress, - postalAddress = 4, - } - export class ContactQueryOptions implements IContactQueryOptions { - // constructor(text: string); - // constructor(text: string, fields: ContactQuerySearchFields); - // constructor(); - constructor(text: string, fields: ContactQuerySearchFields) {} - - includeContactsFromHiddenLists: Boolean = true; - desiredOperations: ContactAnnotationOperations = ContactAnnotationOperations.none; - desiredFields: ContactQueryDesiredFields = ContactQueryDesiredFields.none; - annotationListIds: string[] = [ ]; - contactListIds: string[] = [ ]; - textSearch: ContactQueryTextSearch = null; - - } - export enum ContactQuerySearchFields { - none, - name, - email, - phone = 4, - all = 4294967295, - } - export enum ContactQuerySearchScope { - local, - server, - } - export class ContactQueryTextSearch implements IContactQueryTextSearch { - text: string; - searchScope: ContactQuerySearchScope; - fields: ContactQuerySearchFields; - - } - export class ContactReader implements IContactReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactReader.readBatchAsync'); - } - - getMatchingPropertiesWithMatchReason(contact: Contact): ContactMatchReason[] { - throw new Error('shimmed function ContactReader.getMatchingPropertiesWithMatchReason'); - } - - } - export enum ContactRelationship { - other, - spouse, - partner, - sibling, - parent, - child, - } - export enum ContactSelectionMode { - contacts, - fields, - } - export class ContactSignificantOther implements IContactSignificantOther, IContactSignificantOther2 { - // constructor(); - name: string = ''; - description: string = ''; - relationship: ContactRelationship = ContactRelationship.other; - - } - export class ContactStore implements IContactStore, IContactStore2, IContactStore3 { - aggregateContactManager: AggregateContactManager; - changeTracker: ContactChangeTracker; - - findContactsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.findContactsAsync'); - } - - findContactsAsync_1(searchText: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.findContactsAsync_1'); - } - - getContactAsync(contactId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.getContactAsync'); - } - - findContactListsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.findContactListsAsync'); - } - - getContactListAsync(contactListId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.getContactListAsync'); - } - - createContactListAsync(displayName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.createContactListAsync'); - } - - getMeContactAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.getMeContactAsync'); - } - - getContactReader(): ContactReader { - throw new Error('shimmed function ContactStore.getContactReader'); - } - - getContactReader_1(options: ContactQueryOptions): ContactReader { - throw new Error('shimmed function ContactStore.getContactReader_1'); - } - - createContactListAsync_1(displayName: string, userDataAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.createContactListAsync_1'); - } - - getChangeTracker(identity: string): ContactChangeTracker { - throw new Error('shimmed function ContactStore.getChangeTracker'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContactStore::addEventListener: ${name}`); - switch (name) { - case "contactchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ContactStoreAccessType { - appContactsReadWrite, - allContactsReadOnly, - allContactsReadWrite, - } - export class ContactStoreNotificationTriggerDetails implements IContactStoreNotificationTriggerDetails { - } - export class ContactWebsite implements IContactWebsite, IContactWebsite2 { - // constructor(); - uri: Foundation.Uri; - description: string = ''; - rawValue: string = ''; - - } - export namespace DataProvider { - export class ContactDataProviderConnection implements IContactDataProviderConnection, IContactDataProviderConnection2 { - start(): void { - console.warn('shimmed function ContactDataProviderConnection.start'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContactDataProviderConnection::addEventListener: ${name}`); - switch (name) { - case "serversearchreadbatchrequested": // Foundation.TypedEventHandler - case "syncrequested": // Foundation.TypedEventHandler - case "createorupdatecontactrequested": // Foundation.TypedEventHandler - case "deletecontactrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContactDataProviderTriggerDetails implements IContactDataProviderTriggerDetails { - connection: ContactDataProviderConnection; - - } - export class ContactListCreateOrUpdateContactRequest implements IContactListCreateOrUpdateContactRequest { - contact: Contact; - contactListId: string; - - reportCompletedAsync(createdOrUpdatedContact: Contact): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListCreateOrUpdateContactRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListCreateOrUpdateContactRequest.reportFailedAsync'); - } - - } - export class ContactListCreateOrUpdateContactRequestEventArgs implements IContactListCreateOrUpdateContactRequestEventArgs { - request: ContactListCreateOrUpdateContactRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ContactListCreateOrUpdateContactRequestEventArgs.getDeferral'); - } - - } - export class ContactListDeleteContactRequest implements IContactListDeleteContactRequest { - contactId: string; - contactListId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListDeleteContactRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListDeleteContactRequest.reportFailedAsync'); - } - - } - export class ContactListDeleteContactRequestEventArgs implements IContactListDeleteContactRequestEventArgs { - request: ContactListDeleteContactRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ContactListDeleteContactRequestEventArgs.getDeferral'); - } - - } - export class ContactListServerSearchReadBatchRequest implements IContactListServerSearchReadBatchRequest { - contactListId: string; - options: ContactQueryOptions; - sessionId: string; - suggestedBatchSize: number; - - saveContactAsync(contact: Contact): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListServerSearchReadBatchRequest.saveContactAsync'); - } - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListServerSearchReadBatchRequest.reportCompletedAsync'); - } - - reportFailedAsync(batchStatus: ContactBatchStatus): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListServerSearchReadBatchRequest.reportFailedAsync'); - } - - } - export class ContactListServerSearchReadBatchRequestEventArgs implements IContactListServerSearchReadBatchRequestEventArgs { - request: ContactListServerSearchReadBatchRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ContactListServerSearchReadBatchRequestEventArgs.getDeferral'); - } - - } - export class ContactListSyncManagerSyncRequest implements IContactListSyncManagerSyncRequest { - contactListId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListSyncManagerSyncRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactListSyncManagerSyncRequest.reportFailedAsync'); - } - - } - export class ContactListSyncManagerSyncRequestEventArgs implements IContactListSyncManagerSyncRequestEventArgs { - request: ContactListSyncManagerSyncRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ContactListSyncManagerSyncRequestEventArgs.getDeferral'); - } - - } - } - export class FullContactCardOptions implements IFullContactCardOptions { - // constructor(); - desiredRemainingView: UI.ViewManagement.ViewSizePreference = ViewSizePreference.default; - - } - export interface IContactField { - category: ContactFieldCategory; - name: string; - type: ContactFieldType; - value: string; - } - export interface IContactFieldFactory { - createField(value: string, type: ContactFieldType): ContactField; - createField_1(value: string, type: ContactFieldType, category: ContactFieldCategory): ContactField; - createField_2(name: string, value: string, type: ContactFieldType, category: ContactFieldCategory): ContactField; - } - export interface IContactInstantMessageFieldFactory { - createInstantMessage(userName: string): ContactInstantMessageField; - createInstantMessage_1(userName: string, category: ContactFieldCategory): ContactInstantMessageField; - createInstantMessage_2(userName: string, category: ContactFieldCategory, service: string, displayText: string, verb: Foundation.Uri): ContactInstantMessageField; - } - export interface IContactLocationFieldFactory { - createLocation(unstructuredAddress: string): ContactLocationField; - createLocation_1(unstructuredAddress: string, category: ContactFieldCategory): ContactLocationField; - createLocation_2(unstructuredAddress: string, category: ContactFieldCategory, street: string, city: string, region: string, country: string, postalCode: string): ContactLocationField; - } - export class KnownContactField { - static email: string = 'email'; - static instantMessage: string = 'instantMessage'; - static location: string = 'location'; - static phoneNumber: string = 'phoneNumber'; - - static convertNameToType(name: string): ContactFieldType { - throw new Error('shimmed function KnownContactField.convertNameToType'); - } - - static convertTypeToName(type: ContactFieldType): string { - throw new Error('shimmed function KnownContactField.convertTypeToName'); - } - - } - export class PinnedContactIdsQueryResult implements IPinnedContactIdsQueryResult { - contactIds: string[]; - - } - export class PinnedContactManager implements IPinnedContactManager { - user: System.User; - - isPinSurfaceSupported(surface: PinnedContactSurface): Boolean { - throw new Error('shimmed function PinnedContactManager.isPinSurfaceSupported'); - } - - isContactPinned(contact: Contact, surface: PinnedContactSurface): Boolean { - throw new Error('shimmed function PinnedContactManager.isContactPinned'); - } - - requestPinContactAsync(contact: Contact, surface: PinnedContactSurface): Foundation.IAsyncOperation { - throw new Error('shimmed function PinnedContactManager.requestPinContactAsync'); - } - - requestPinContactsAsync(contacts: Foundation.Collections.IIterable, surface: PinnedContactSurface): Foundation.IAsyncOperation { - throw new Error('shimmed function PinnedContactManager.requestPinContactsAsync'); - } - - requestUnpinContactAsync(contact: Contact, surface: PinnedContactSurface): Foundation.IAsyncOperation { - throw new Error('shimmed function PinnedContactManager.requestUnpinContactAsync'); - } - - signalContactActivity(contact: Contact): void { - console.warn('shimmed function PinnedContactManager.signalContactActivity'); - } - - getPinnedContactIdsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PinnedContactManager.getPinnedContactIdsAsync'); - } - - static getDefault(): PinnedContactManager { - throw new Error('shimmed function PinnedContactManager.getDefault'); - } - - static getForUser(user: System.User): PinnedContactManager { - throw new Error('shimmed function PinnedContactManager.getForUser'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function PinnedContactManager.isSupported'); - } - - } - export enum PinnedContactSurface { - startMenu, - taskbar, - } - export namespace Provider { - export enum AddContactResult { - added, - alreadyAdded, - unavailable, - } - export class ContactPickerUI implements IContactPickerUI, IContactPickerUI2 { - desiredFields: string[]; - selectionMode: ContactSelectionMode; - desiredFieldsWithContactFieldType: ContactFieldType[]; - - addContact(id: string, contact: Contact): AddContactResult { - throw new Error('shimmed function ContactPickerUI.addContact'); - } - - removeContact(id: string): void { - console.warn('shimmed function ContactPickerUI.removeContact'); - } - - containsContact(id: string): Boolean { - throw new Error('shimmed function ContactPickerUI.containsContact'); - } - - addContact_1(contact: Contact): AddContactResult { - throw new Error('shimmed function ContactPickerUI.addContact_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContactPickerUI::addEventListener: ${name}`); - switch (name) { - case "contactremoved": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContactRemovedEventArgs implements IContactRemovedEventArgs { - id: string; - - } - } - } - export namespace ConversationalAgent { - export class ConversationalAgentSession implements IConversationalAgentSession, Foundation.IClosable { - agentState: ConversationalAgentState; - isIndicatorLightAvailable: Boolean; - isInterrupted: Boolean; - isInterruptible: Boolean; - isScreenAvailable: Boolean; - isUserAuthenticated: Boolean; - isVoiceActivationAvailable: Boolean; - signal: ConversationalAgentSignal; - - requestInterruptibleAsync(interruptible: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.requestInterruptibleAsync'); - } - - requestInterruptible(interruptible: Boolean): ConversationalAgentSessionUpdateResponse { - throw new Error('shimmed function ConversationalAgentSession.requestInterruptible'); - } - - requestAgentStateChangeAsync(state: ConversationalAgentState): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.requestAgentStateChangeAsync'); - } - - requestAgentStateChange(state: ConversationalAgentState): ConversationalAgentSessionUpdateResponse { - throw new Error('shimmed function ConversationalAgentSession.requestAgentStateChange'); - } - - requestForegroundActivationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.requestForegroundActivationAsync'); - } - - requestForegroundActivation(): ConversationalAgentSessionUpdateResponse { - throw new Error('shimmed function ConversationalAgentSession.requestForegroundActivation'); - } - - getAudioClientAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.getAudioClientAsync'); - } - - getAudioClient(): any { - throw new Error('shimmed function ConversationalAgentSession.getAudioClient'); - } - - createAudioDeviceInputNodeAsync(graph: Media.Audio.AudioGraph): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.createAudioDeviceInputNodeAsync'); - } - - createAudioDeviceInputNode(graph: Media.Audio.AudioGraph): Media.Audio.AudioDeviceInputNode { - throw new Error('shimmed function ConversationalAgentSession.createAudioDeviceInputNode'); - } - - getAudioCaptureDeviceIdAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.getAudioCaptureDeviceIdAsync'); - } - - getAudioCaptureDeviceId(): string { - throw new Error('shimmed function ConversationalAgentSession.getAudioCaptureDeviceId'); - } - - getAudioRenderDeviceIdAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.getAudioRenderDeviceIdAsync'); - } - - getAudioRenderDeviceId(): string { - throw new Error('shimmed function ConversationalAgentSession.getAudioRenderDeviceId'); - } - - getSignalModelIdAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.getSignalModelIdAsync'); - } - - getSignalModelId(): number { - throw new Error('shimmed function ConversationalAgentSession.getSignalModelId'); - } - - setSignalModelIdAsync(signalModelId: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.setSignalModelIdAsync'); - } - - setSignalModelId(signalModelId: number): Boolean { - throw new Error('shimmed function ConversationalAgentSession.setSignalModelId'); - } - - getSupportedSignalModelIdsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.getSupportedSignalModelIdsAsync'); - } - - getSupportedSignalModelIds(): number[] { - throw new Error('shimmed function ConversationalAgentSession.getSupportedSignalModelIds'); - } - - close(): void { - console.warn('shimmed function ConversationalAgentSession.close'); - } - - static getCurrentSessionAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConversationalAgentSession.getCurrentSessionAsync'); - } - - static getCurrentSessionSync(): ConversationalAgentSession { - throw new Error('shimmed function ConversationalAgentSession.getCurrentSessionSync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ConversationalAgentSession::addEventListener: ${name}`); - switch (name) { - case "sessioninterrupted": // Foundation.TypedEventHandler - case "signaldetected": // Foundation.TypedEventHandler - case "systemstatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ConversationalAgentSessionInterruptedEventArgs implements IConversationalAgentSessionInterruptedEventArgs { - } - export enum ConversationalAgentSessionUpdateResponse { - success, - failed, - } - export class ConversationalAgentSignal implements IConversationalAgentSignal { - signalStart: number; - signalName: string; - signalId: string; - signalEnd: number; - signalContext: any; - isSignalVerificationRequired: Boolean; - - } - export class ConversationalAgentSignalDetectedEventArgs implements IConversationalAgentSignalDetectedEventArgs { - } - export enum ConversationalAgentState { - inactive, - detecting, - listening, - working, - speaking, - listeningAndSpeaking, - } - export class ConversationalAgentSystemStateChangedEventArgs implements IConversationalAgentSystemStateChangedEventArgs { - systemStateChangeType: ConversationalAgentSystemStateChangeType; - - } - export enum ConversationalAgentSystemStateChangeType { - userAuthentication, - screenAvailability, - indicatorLightAvailability, - voiceActivationAvailability, - } - } - export namespace Core { - export class AppListEntry implements IAppListEntry, IAppListEntry2, IAppListEntry3 { - displayInfo: AppDisplayInfo; - appUserModelId: string; - - launchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppListEntry.launchAsync'); - } - - launchForUserAsync(user: System.User): Foundation.IAsyncOperation { - throw new Error('shimmed function AppListEntry.launchForUserAsync'); - } - - } - export enum AppRestartFailureReason { - restartPending, - notInForeground, - invalidUser, - other, - } - export class CoreApplication { - static id: string = 'App'; - static properties: Foundation.Collections.IPropertySet = [ ]; - static mainView: CoreApplicationView = null; - static views: CoreApplicationView[] = [ null ]; - - static createNewView(viewSource: IFrameworkViewSource): CoreApplicationView { - throw new Error('shimmed function CoreApplication.createNewView'); - } - - static createNewView_1(): CoreApplicationView { - throw new Error('shimmed function CoreApplication.createNewView_1'); - } - - static incrementApplicationUseCount(): void { - console.warn('shimmed function CoreApplication.incrementApplicationUseCount'); - } - - static decrementApplicationUseCount(): void { - console.warn('shimmed function CoreApplication.decrementApplicationUseCount'); - } - - static createNewView_2(runtimeType: string, entryPoint: string): CoreApplicationView { - throw new Error('shimmed function CoreApplication.createNewView_2'); - } - - static exit(): void { - console.warn('shimmed function CoreApplication.exit'); - } - - static requestRestartAsync(launchArguments: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CoreApplication.requestRestartAsync'); - } - - static requestRestartForUserAsync(user: System.User, launchArguments: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CoreApplication.requestRestartForUserAsync'); - } - - static enablePrelaunch(value: Boolean): void { - console.warn('shimmed function CoreApplication.enablePrelaunch'); - } - - static getCurrentView(): CoreApplicationView { - throw new Error('shimmed function CoreApplication.getCurrentView'); - } - - static run(viewSource: IFrameworkViewSource): void { - console.warn('shimmed function CoreApplication.run'); - } - - static runWithActivationFactories(activationFactoryCallback: Foundation.IGetActivationFactory): void { - console.warn('shimmed function CoreApplication.runWithActivationFactories'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`CoreApplication::addEventListener: ${name}`); - switch (name) { - case "unhandlederrordetected": // /* System.EventHandler`1[[Windows.ApplicationModel.Core.UnhandledErrorDetectedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "exiting": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "backgroundactivated": // /* System.EventHandler`1[[Windows.ApplicationModel.Activation.BackgroundActivatedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "enteredbackground": // /* System.EventHandler`1[[Windows.ApplicationModel.EnteredBackgroundEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "leavingbackground": // /* System.EventHandler`1[[Windows.ApplicationModel.LeavingBackgroundEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "resuming": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "suspending": // /* System.EventHandler`1[[Windows.ApplicationModel.SuspendingEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export class CoreApplicationView implements ICoreApplicationView, ICoreApplicationView2, ICoreApplicationView3, ICoreApplicationView5, ICoreApplicationView6 { - coreWindow: UI.Core.CoreWindow; - isHosted: Boolean; - isMain: Boolean; - dispatcher: UI.Core.CoreDispatcher; - isComponent: Boolean; - titleBar: CoreApplicationViewTitleBar; - properties: Foundation.Collections.IPropertySet; - dispatcherQueue: System.DispatcherQueue; - - addEventListener(name: string, handler: Function) { - console.warn(`CoreApplicationView::addEventListener: ${name}`); - switch (name) { - case "activated": // Foundation.TypedEventHandler - case "hostedviewclosing": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreApplicationViewTitleBar implements ICoreApplicationViewTitleBar { - extendViewIntoTitleBar: Boolean; - height: number; - isVisible: Boolean; - systemOverlayLeftInset: number; - systemOverlayRightInset: number; - - addEventListener(name: string, handler: Function) { - console.warn(`CoreApplicationViewTitleBar::addEventListener: ${name}`); - switch (name) { - case "isvisiblechanged": // Foundation.TypedEventHandler - case "layoutmetricschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class HostedViewClosingEventArgs implements IHostedViewClosingEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function HostedViewClosingEventArgs.getDeferral'); - } - - } - export interface ICoreApplicationUnhandledError { - } - export interface IFrameworkView { - initialize(applicationView: CoreApplicationView): void; - setWindow(window: UI.Core.CoreWindow): void; - load(entryPoint: string): void; - run(): void; - uninitialize(): void; - } - export interface IFrameworkViewSource { - createView(): IFrameworkView; - } - export class UnhandledError implements IUnhandledError { - handled: Boolean; - - propagate(): void { - console.warn('shimmed function UnhandledError.propagate'); - } - - } - export class UnhandledErrorDetectedEventArgs implements IUnhandledErrorDetectedEventArgs { - unhandledError: UnhandledError; - - } - } - export namespace DataTransfer { - export class Clipboard { - static getHistoryItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Clipboard.getHistoryItemsAsync'); - } - - static clearHistory(): Boolean { - throw new Error('shimmed function Clipboard.clearHistory'); - } - - static deleteItemFromHistory(item: ClipboardHistoryItem): Boolean { - throw new Error('shimmed function Clipboard.deleteItemFromHistory'); - } - - static setHistoryItemAsContent(item: ClipboardHistoryItem): SetHistoryItemAsContentStatus { - throw new Error('shimmed function Clipboard.setHistoryItemAsContent'); - } - - static isHistoryEnabled(): Boolean { - throw new Error('shimmed function Clipboard.isHistoryEnabled'); - } - - static isRoamingEnabled(): Boolean { - throw new Error('shimmed function Clipboard.isRoamingEnabled'); - } - - static setContentWithOptions(content: DataPackage, options: ClipboardContentOptions): Boolean { - throw new Error('shimmed function Clipboard.setContentWithOptions'); - } - - static getContent(): DataPackageView { - throw new Error('shimmed function Clipboard.getContent'); - } - - static setContent(content: DataPackage): void { - console.warn('shimmed function Clipboard.setContent'); - } - - static flush(): void { - console.warn('shimmed function Clipboard.flush'); - } - - static clear(): void { - console.warn('shimmed function Clipboard.clear'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`Clipboard::addEventListener: ${name}`); - switch (name) { - case "historychanged": // /* System.EventHandler`1[[Windows.ApplicationModel.DataTransfer.ClipboardHistoryChangedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "historyenabledchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "roamingenabledchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "contentchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class ClipboardContentOptions implements IClipboardContentOptions { - // constructor(); - isRoamable: Boolean = true; - isAllowedInHistory: Boolean = true; - historyFormats: string[] = [ ]; - roamingFormats: string[] = [ ]; - - } - export class ClipboardHistoryChangedEventArgs implements IClipboardHistoryChangedEventArgs { - } - export class ClipboardHistoryItem implements IClipboardHistoryItem { - content: DataPackageView; - id: string; - timestamp: Date; - - } - export class ClipboardHistoryItemsResult implements IClipboardHistoryItemsResult { - items: ClipboardHistoryItem[]; - status: ClipboardHistoryItemsResultStatus; - - } - export enum ClipboardHistoryItemsResultStatus { - success, - accessDenied, - clipboardHistoryDisabled, - } - export class DataPackage implements IDataPackage, IDataPackage2, IDataPackage3 { - // constructor(); - requestedOperation: DataPackageOperation = DataPackageOperation.none; - properties: DataPackagePropertySet = [ ]; - resourceMap: string[] = [ ]; - - getView(): DataPackageView { - throw new Error('shimmed function DataPackage.getView'); - } - - setDataProvider(formatId: string, delayRenderer: DataProviderHandler): void { - console.warn('shimmed function DataPackage.setDataProvider'); - } - - setText(value: string): void { - console.warn('shimmed function DataPackage.setText'); - } - - setUri(value: Foundation.Uri): void { - console.warn('shimmed function DataPackage.setUri'); - } - - setHtmlFormat(value: string): void { - console.warn('shimmed function DataPackage.setHtmlFormat'); - } - - setRtf(value: string): void { - console.warn('shimmed function DataPackage.setRtf'); - } - - setBitmap(value: Storage.Streams.RandomAccessStreamReference): void { - console.warn('shimmed function DataPackage.setBitmap'); - } - - setStorageItems(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function DataPackage.setStorageItems'); - } - - setStorageItems_1(value: Foundation.Collections.IIterable, readOnly: Boolean): void { - console.warn('shimmed function DataPackage.setStorageItems_1'); - } - - setApplicationLink(value: Foundation.Uri): void { - console.warn('shimmed function DataPackage.setApplicationLink'); - } - - setWebLink(value: Foundation.Uri): void { - console.warn('shimmed function DataPackage.setWebLink'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DataPackage::addEventListener: ${name}`); - switch (name) { - case "destroyed": // Foundation.TypedEventHandler - case "operationcompleted": // Foundation.TypedEventHandler - case "sharecompleted": // Foundation.TypedEventHandler - break; - } - - } - } - export enum DataPackageOperation { - none, - copy, - move, - link = 4, - } - export class DataPackagePropertySet implements IDataPackagePropertySet, Foundation.Collections.IMap, Foundation.Collections.IIterable>, IDataPackagePropertySet2, IDataPackagePropertySet3, IDataPackagePropertySet4 { - title: string; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - description: string; - applicationName: string; - applicationListingUri: Foundation.Uri; - fileTypes: string[]; - square30x30Logo: Storage.Streams.IRandomAccessStreamReference; - packageFamilyName: string; - logoBackgroundColor: UI.Color; - contentSourceWebLink: Foundation.Uri; - contentSourceApplicationLink: Foundation.Uri; - enterpriseId: string; - contentSourceUserActivityJson: string; - size: number; - - lookup(key: string): any { - throw new Error('shimmed function DataPackagePropertySet.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function DataPackagePropertySet.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function DataPackagePropertySet.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function DataPackagePropertySet.insert'); - } - - clear(): void { - console.warn('shimmed function DataPackagePropertySet.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function DataPackagePropertySet.first'); - } - - } - export class DataPackagePropertySetView implements IDataPackagePropertySetView, IDataPackagePropertySetView2, IDataPackagePropertySetView3, IDataPackagePropertySetView4, IDataPackagePropertySetView5, Foundation.Collections.IMapView, Foundation.Collections.IIterable> { - applicationListingUri: Foundation.Uri; - applicationName: string; - description: string; - fileTypes: string[]; - thumbnail: Storage.Streams.RandomAccessStreamReference; - title: string; - contentSourceApplicationLink: Foundation.Uri; - contentSourceWebLink: Foundation.Uri; - logoBackgroundColor: UI.Color; - packageFamilyName: string; - square30x30Logo: Storage.Streams.IRandomAccessStreamReference; - enterpriseId: string; - contentSourceUserActivityJson: string; - isFromRoamingClipboard: Boolean; - size: number; - - lookup(key: string): any { - throw new Error('shimmed function DataPackagePropertySetView.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function DataPackagePropertySetView.hasKey'); - } - - split(): { first: string[], second: string[] } { - throw new Error('shimmed function DataPackagePropertySetView.split'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function DataPackagePropertySetView.first'); - } - - } - export class DataPackageView implements IDataPackageView, IDataPackageView2, IDataPackageView3, IDataPackageView4 { - availableFormats: string[]; - properties: DataPackagePropertySetView; - requestedOperation: DataPackageOperation; - - reportOperationCompleted(value: DataPackageOperation): void { - console.warn('shimmed function DataPackageView.reportOperationCompleted'); - } - - contains(formatId: string): Boolean { - throw new Error('shimmed function DataPackageView.contains'); - } - - getDataAsync(formatId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getDataAsync'); - } - - getTextAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getTextAsync'); - } - - getTextAsync_1(formatId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getTextAsync_1'); - } - - getUriAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getUriAsync'); - } - - getHtmlFormatAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getHtmlFormatAsync'); - } - - getResourceMapAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getResourceMapAsync'); - } - - getRtfAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getRtfAsync'); - } - - getBitmapAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getBitmapAsync'); - } - - getStorageItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getStorageItemsAsync'); - } - - getApplicationLinkAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getApplicationLinkAsync'); - } - - getWebLinkAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.getWebLinkAsync'); - } - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.requestAccessAsync'); - } - - requestAccessAsync_1(enterpriseId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DataPackageView.requestAccessAsync_1'); - } - - unlockAndAssumeEnterpriseIdentity(): Security.EnterpriseData.ProtectionPolicyEvaluationResult { - throw new Error('shimmed function DataPackageView.unlockAndAssumeEnterpriseIdentity'); - } - - setAcceptedFormatId(formatId: string): void { - console.warn('shimmed function DataPackageView.setAcceptedFormatId'); - } - - } - export class DataProviderDeferral implements IDataProviderDeferral { - complete(): void { - console.warn('shimmed function DataProviderDeferral.complete'); - } - - } - export type DataProviderHandler = () => void; - export class DataProviderRequest implements IDataProviderRequest { - deadline: Date; - formatId: string; - - getDeferral(): DataProviderDeferral { - throw new Error('shimmed function DataProviderRequest.getDeferral'); - } - - } - export class DataRequest implements IDataRequest { - data: DataPackage; - deadline: Date; - - failWithDisplayText(value: string): void { - console.warn('shimmed function DataRequest.failWithDisplayText'); - } - - getDeferral(): DataRequestDeferral { - throw new Error('shimmed function DataRequest.getDeferral'); - } - - } - export class DataRequestDeferral implements IDataRequestDeferral { - complete(): void { - console.warn('shimmed function DataRequestDeferral.complete'); - } - - } - export class DataRequestedEventArgs implements IDataRequestedEventArgs { - request: DataRequest; - - } - export class DataTransferManager implements IDataTransferManager, IDataTransferManager2 { - static showShareUI(options: ShareUIOptions): void { - console.warn('shimmed function DataTransferManager.showShareUI'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function DataTransferManager.isSupported'); - } - - static showShareUI_1(): void { - console.warn('shimmed function DataTransferManager.showShareUI_1'); - } - - static getForCurrentView(): DataTransferManager { - throw new Error('shimmed function DataTransferManager.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DataTransferManager::addEventListener: ${name}`); - switch (name) { - case "datarequested": // Foundation.TypedEventHandler - case "targetapplicationchosen": // Foundation.TypedEventHandler - case "shareprovidersrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export namespace DragDrop { - export namespace Core { - export class CoreDragDropManager implements ICoreDragDropManager { - areConcurrentOperationsEnabled: Boolean; - - static getForCurrentView(): CoreDragDropManager { - throw new Error('shimmed function CoreDragDropManager.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreDragDropManager::addEventListener: ${name}`); - switch (name) { - case "targetrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreDragInfo implements ICoreDragInfo, ICoreDragInfo2 { - data: DataPackageView; - modifiers: DragDropModifiers; - position: Foundation.Point; - allowedOperations: DataPackageOperation; - - } - export class CoreDragOperation implements ICoreDragOperation, ICoreDragOperation2 { - // constructor(); - dragUIContentMode: CoreDragUIContentMode = CoreDragUIContentMode.auto; - data: DataPackage = null; - allowedOperations: DataPackageOperation = DataPackageOperation.none; - - setPointerId(pointerId: number): void { - console.warn('shimmed function CoreDragOperation.setPointerId'); - } - - setDragUIContentFromSoftwareBitmap(softwareBitmap: Graphics.Imaging.SoftwareBitmap): void { - console.warn('shimmed function CoreDragOperation.setDragUIContentFromSoftwareBitmap'); - } - - setDragUIContentFromSoftwareBitmap_1(softwareBitmap: Graphics.Imaging.SoftwareBitmap, anchorPoint: Foundation.Point): void { - console.warn('shimmed function CoreDragOperation.setDragUIContentFromSoftwareBitmap_1'); - } - - startAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CoreDragOperation.startAsync'); - } - - } - export enum CoreDragUIContentMode { - auto, - deferred, - } - export class CoreDragUIOverride implements ICoreDragUIOverride { - isGlyphVisible: Boolean; - isContentVisible: Boolean; - isCaptionVisible: Boolean; - caption: string; - - setContentFromSoftwareBitmap(softwareBitmap: Graphics.Imaging.SoftwareBitmap): void { - console.warn('shimmed function CoreDragUIOverride.setContentFromSoftwareBitmap'); - } - - setContentFromSoftwareBitmap_1(softwareBitmap: Graphics.Imaging.SoftwareBitmap, anchorPoint: Foundation.Point): void { - console.warn('shimmed function CoreDragUIOverride.setContentFromSoftwareBitmap_1'); - } - - clear(): void { - console.warn('shimmed function CoreDragUIOverride.clear'); - } - - } - export class CoreDropOperationTargetRequestedEventArgs implements ICoreDropOperationTargetRequestedEventArgs { - setTarget(target: ICoreDropOperationTarget): void { - console.warn('shimmed function CoreDropOperationTargetRequestedEventArgs.setTarget'); - } - - } - export interface ICoreDropOperationTarget { - enterAsync(dragInfo: CoreDragInfo, dragUIOverride: CoreDragUIOverride): Foundation.IAsyncOperation; - overAsync(dragInfo: CoreDragInfo, dragUIOverride: CoreDragUIOverride): Foundation.IAsyncOperation; - leaveAsync(dragInfo: CoreDragInfo): Foundation.IAsyncAction; - dropAsync(dragInfo: CoreDragInfo): Foundation.IAsyncOperation; - } - } - export enum DragDropModifiers { - none, - shift, - control, - alt = 4, - leftButton = 8, - middleButton = 16, - rightButton = 32, - } - } - export class HtmlFormatHelper { - static getStaticFragment(htmlFormat: string): string { - throw new Error('shimmed function HtmlFormatHelper.getStaticFragment'); - } - - static createHtmlFormat(htmlFragment: string): string { - throw new Error('shimmed function HtmlFormatHelper.createHtmlFormat'); - } - - } - export class OperationCompletedEventArgs implements IOperationCompletedEventArgs, IOperationCompletedEventArgs2 { - operation: DataPackageOperation; - acceptedFormatId: string; - - } - export enum SetHistoryItemAsContentStatus { - success, - accessDenied, - itemDeleted, - } - export class ShareCompletedEventArgs implements IShareCompletedEventArgs { - shareTarget: ShareTargetInfo; - - } - export class SharedStorageAccessManager { - static addFile(file: Storage.IStorageFile): string { - throw new Error('shimmed function SharedStorageAccessManager.addFile'); - } - - static redeemTokenForFileAsync(token: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SharedStorageAccessManager.redeemTokenForFileAsync'); - } - - static removeFile(token: string): void { - console.warn('shimmed function SharedStorageAccessManager.removeFile'); - } - - } - export class ShareProvider implements IShareProvider { - // constructor(title: string, displayIcon: Storage.Streams.RandomAccessStreamReference, backgroundColor: UI.Color, handler: ShareProviderHandler); - constructor(title: string, displayIcon: Storage.Streams.RandomAccessStreamReference, backgroundColor: UI.Color, handler: ShareProviderHandler) {} - - tag: any; - backgroundColor: UI.Color; - displayIcon: Storage.Streams.RandomAccessStreamReference; - title: string; - - } - export type ShareProviderHandler = () => void; - export class ShareProviderOperation implements IShareProviderOperation { - data: DataPackageView; - provider: ShareProvider; - - reportCompleted(): void { - console.warn('shimmed function ShareProviderOperation.reportCompleted'); - } - - } - export class ShareProvidersRequestedEventArgs implements IShareProvidersRequestedEventArgs { - data: DataPackageView; - providers: ShareProvider[]; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ShareProvidersRequestedEventArgs.getDeferral'); - } - - } - export namespace ShareTarget { - export class QuickLink implements IQuickLink { - // constructor(); - title: string = ''; - thumbnail: Storage.Streams.RandomAccessStreamReference; - id: string = ''; - supportedDataFormats: string[] = [ ]; - supportedFileTypes: string[] = [ ]; - - } - export class ShareOperation implements IShareOperation, IShareOperation2, IShareOperation3 { - data: DataPackageView; - quickLinkId: string; - contacts: Contacts.Contact[]; - - removeThisQuickLink(): void { - console.warn('shimmed function ShareOperation.removeThisQuickLink'); - } - - reportStarted(): void { - console.warn('shimmed function ShareOperation.reportStarted'); - } - - reportDataRetrieved(): void { - console.warn('shimmed function ShareOperation.reportDataRetrieved'); - } - - reportSubmittedBackgroundTask(): void { - console.warn('shimmed function ShareOperation.reportSubmittedBackgroundTask'); - } - - reportCompleted(quicklink: QuickLink): void { - console.warn('shimmed function ShareOperation.reportCompleted'); - } - - reportCompleted_1(): void { - console.warn('shimmed function ShareOperation.reportCompleted_1'); - } - - reportError(value: string): void { - console.warn('shimmed function ShareOperation.reportError'); - } - - dismissUI(): void { - console.warn('shimmed function ShareOperation.dismissUI'); - } - - } - } - export class ShareTargetInfo implements IShareTargetInfo { - appUserModelId: string; - shareProvider: ShareProvider; - - } - export class ShareUIOptions implements IShareUIOptions { - // constructor(); - theme: ShareUITheme = ShareUITheme.default; - selectionRect: Foundation.Rect | null; - - } - export enum ShareUITheme { - default, - light, - dark, - } - export class StandardDataFormats { - static bitmap: string = 'Bitmap'; - static html: string = 'HTML Format'; - static rtf: string = 'Rich Text Format'; - static storageItems: string = 'Shell IDList Array'; - static text: string = 'Text'; - static uri: string = 'UniformResourceLocatorW'; - static applicationLink: string = 'ApplicationLink'; - static webLink: string = 'UniformResourceLocatorW'; - static userActivityJsonArray: string = 'UserActivityJsonArray'; - - } - export class TargetApplicationChosenEventArgs implements ITargetApplicationChosenEventArgs { - applicationName: string; - - } - } - export class DesignMode { - static designModeEnabled: Boolean = false; - static designMode2Enabled: Boolean = false; - - } - export namespace Email { - export namespace DataProvider { - export class EmailDataProviderConnection implements IEmailDataProviderConnection { - start(): void { - console.warn('shimmed function EmailDataProviderConnection.start'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`EmailDataProviderConnection::addEventListener: ${name}`); - switch (name) { - case "createfolderrequested": // Foundation.TypedEventHandler - case "deletefolderrequested": // Foundation.TypedEventHandler - case "downloadattachmentrequested": // Foundation.TypedEventHandler - case "downloadmessagerequested": // Foundation.TypedEventHandler - case "emptyfolderrequested": // Foundation.TypedEventHandler - case "forwardmeetingrequested": // Foundation.TypedEventHandler - case "getautoreplysettingsrequested": // Foundation.TypedEventHandler - case "mailboxsyncrequested": // Foundation.TypedEventHandler - case "movefolderrequested": // Foundation.TypedEventHandler - case "proposenewtimeformeetingrequested": // Foundation.TypedEventHandler - case "resolverecipientsrequested": // Foundation.TypedEventHandler - case "serversearchreadbatchrequested": // Foundation.TypedEventHandler - case "setautoreplysettingsrequested": // Foundation.TypedEventHandler - case "updatemeetingresponserequested": // Foundation.TypedEventHandler - case "validatecertificatesrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class EmailDataProviderTriggerDetails implements IEmailDataProviderTriggerDetails { - connection: EmailDataProviderConnection; - - } - export class EmailMailboxCreateFolderRequest implements IEmailMailboxCreateFolderRequest { - emailMailboxId: string; - name: string; - parentFolderId: string; - - reportCompletedAsync(folder: EmailFolder): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxCreateFolderRequest.reportCompletedAsync'); - } - - reportFailedAsync(status: EmailMailboxCreateFolderStatus): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxCreateFolderRequest.reportFailedAsync'); - } - - } - export class EmailMailboxCreateFolderRequestEventArgs implements IEmailMailboxCreateFolderRequestEventArgs { - request: EmailMailboxCreateFolderRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxCreateFolderRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxDeleteFolderRequest implements IEmailMailboxDeleteFolderRequest { - emailFolderId: string; - emailMailboxId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxDeleteFolderRequest.reportCompletedAsync'); - } - - reportFailedAsync(status: EmailMailboxDeleteFolderStatus): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxDeleteFolderRequest.reportFailedAsync'); - } - - } - export class EmailMailboxDeleteFolderRequestEventArgs implements IEmailMailboxDeleteFolderRequestEventArgs { - request: EmailMailboxDeleteFolderRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxDeleteFolderRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxDownloadAttachmentRequest implements IEmailMailboxDownloadAttachmentRequest { - emailAttachmentId: string; - emailMailboxId: string; - emailMessageId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxDownloadAttachmentRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxDownloadAttachmentRequest.reportFailedAsync'); - } - - } - export class EmailMailboxDownloadAttachmentRequestEventArgs implements IEmailMailboxDownloadAttachmentRequestEventArgs { - request: EmailMailboxDownloadAttachmentRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxDownloadAttachmentRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxDownloadMessageRequest implements IEmailMailboxDownloadMessageRequest { - emailMailboxId: string; - emailMessageId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxDownloadMessageRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxDownloadMessageRequest.reportFailedAsync'); - } - - } - export class EmailMailboxDownloadMessageRequestEventArgs implements IEmailMailboxDownloadMessageRequestEventArgs { - request: EmailMailboxDownloadMessageRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxDownloadMessageRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxEmptyFolderRequest implements IEmailMailboxEmptyFolderRequest { - emailFolderId: string; - emailMailboxId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxEmptyFolderRequest.reportCompletedAsync'); - } - - reportFailedAsync(status: EmailMailboxEmptyFolderStatus): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxEmptyFolderRequest.reportFailedAsync'); - } - - } - export class EmailMailboxEmptyFolderRequestEventArgs implements IEmailMailboxEmptyFolderRequestEventArgs { - request: EmailMailboxEmptyFolderRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxEmptyFolderRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxForwardMeetingRequest implements IEmailMailboxForwardMeetingRequest { - comment: string; - emailMailboxId: string; - emailMessageId: string; - forwardHeader: string; - forwardHeaderType: EmailMessageBodyKind; - recipients: EmailRecipient[]; - subject: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxForwardMeetingRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxForwardMeetingRequest.reportFailedAsync'); - } - - } - export class EmailMailboxForwardMeetingRequestEventArgs implements IEmailMailboxForwardMeetingRequestEventArgs { - request: EmailMailboxForwardMeetingRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxForwardMeetingRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxGetAutoReplySettingsRequest implements IEmailMailboxGetAutoReplySettingsRequest { - emailMailboxId: string; - requestedFormat: EmailMailboxAutoReplyMessageResponseKind; - - reportCompletedAsync(autoReplySettings: EmailMailboxAutoReplySettings): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxGetAutoReplySettingsRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxGetAutoReplySettingsRequest.reportFailedAsync'); - } - - } - export class EmailMailboxGetAutoReplySettingsRequestEventArgs implements IEmailMailboxGetAutoReplySettingsRequestEventArgs { - request: EmailMailboxGetAutoReplySettingsRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxGetAutoReplySettingsRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxMoveFolderRequest implements IEmailMailboxMoveFolderRequest { - emailFolderId: string; - emailMailboxId: string; - newFolderName: string; - newParentFolderId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxMoveFolderRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxMoveFolderRequest.reportFailedAsync'); - } - - } - export class EmailMailboxMoveFolderRequestEventArgs implements IEmailMailboxMoveFolderRequestEventArgs { - request: EmailMailboxMoveFolderRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxMoveFolderRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxProposeNewTimeForMeetingRequest implements IEmailMailboxProposeNewTimeForMeetingRequest { - comment: string; - emailMailboxId: string; - emailMessageId: string; - newDuration: number; - newStartTime: Date; - subject: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxProposeNewTimeForMeetingRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxProposeNewTimeForMeetingRequest.reportFailedAsync'); - } - - } - export class EmailMailboxProposeNewTimeForMeetingRequestEventArgs implements IEmailMailboxProposeNewTimeForMeetingRequestEventArgs { - request: EmailMailboxProposeNewTimeForMeetingRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxProposeNewTimeForMeetingRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxResolveRecipientsRequest implements IEmailMailboxResolveRecipientsRequest { - emailMailboxId: string; - recipients: string[]; - - reportCompletedAsync(resolutionResults: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxResolveRecipientsRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxResolveRecipientsRequest.reportFailedAsync'); - } - - } - export class EmailMailboxResolveRecipientsRequestEventArgs implements IEmailMailboxResolveRecipientsRequestEventArgs { - request: EmailMailboxResolveRecipientsRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxResolveRecipientsRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxServerSearchReadBatchRequest implements IEmailMailboxServerSearchReadBatchRequest { - emailFolderId: string; - emailMailboxId: string; - options: EmailQueryOptions; - sessionId: string; - suggestedBatchSize: number; - - saveMessageAsync(message: EmailMessage): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxServerSearchReadBatchRequest.saveMessageAsync'); - } - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxServerSearchReadBatchRequest.reportCompletedAsync'); - } - - reportFailedAsync(batchStatus: EmailBatchStatus): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxServerSearchReadBatchRequest.reportFailedAsync'); - } - - } - export class EmailMailboxServerSearchReadBatchRequestEventArgs implements IEmailMailboxServerSearchReadBatchRequestEventArgs { - request: EmailMailboxServerSearchReadBatchRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxServerSearchReadBatchRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxSetAutoReplySettingsRequest implements IEmailMailboxSetAutoReplySettingsRequest { - autoReplySettings: EmailMailboxAutoReplySettings; - emailMailboxId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxSetAutoReplySettingsRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxSetAutoReplySettingsRequest.reportFailedAsync'); - } - - } - export class EmailMailboxSetAutoReplySettingsRequestEventArgs implements IEmailMailboxSetAutoReplySettingsRequestEventArgs { - request: EmailMailboxSetAutoReplySettingsRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxSetAutoReplySettingsRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxSyncManagerSyncRequest implements IEmailMailboxSyncManagerSyncRequest { - emailMailboxId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxSyncManagerSyncRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxSyncManagerSyncRequest.reportFailedAsync'); - } - - } - export class EmailMailboxSyncManagerSyncRequestEventArgs implements IEmailMailboxSyncManagerSyncRequestEventArgs { - request: EmailMailboxSyncManagerSyncRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxSyncManagerSyncRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxUpdateMeetingResponseRequest implements IEmailMailboxUpdateMeetingResponseRequest { - comment: string; - emailMailboxId: string; - emailMessageId: string; - response: EmailMeetingResponseType; - sendUpdate: Boolean; - subject: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxUpdateMeetingResponseRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxUpdateMeetingResponseRequest.reportFailedAsync'); - } - - } - export class EmailMailboxUpdateMeetingResponseRequestEventArgs implements IEmailMailboxUpdateMeetingResponseRequestEventArgs { - request: EmailMailboxUpdateMeetingResponseRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxUpdateMeetingResponseRequestEventArgs.getDeferral'); - } - - } - export class EmailMailboxValidateCertificatesRequest implements IEmailMailboxValidateCertificatesRequest { - certificates: Security.Cryptography.Certificates.Certificate[]; - emailMailboxId: string; - - reportCompletedAsync(validationStatuses: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxValidateCertificatesRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailboxValidateCertificatesRequest.reportFailedAsync'); - } - - } - export class EmailMailboxValidateCertificatesRequestEventArgs implements IEmailMailboxValidateCertificatesRequestEventArgs { - request: EmailMailboxValidateCertificatesRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EmailMailboxValidateCertificatesRequestEventArgs.getDeferral'); - } - - } - } - export class EmailAttachment implements IEmailAttachment, IEmailAttachment2 { - // constructor(fileName: string, data: Storage.Streams.IRandomAccessStreamReference, mimeType: string); - // constructor(fileName: string, data: Storage.Streams.IRandomAccessStreamReference); - // constructor(); - constructor(fileName: string, data: Storage.Streams.IRandomAccessStreamReference, mimeType: string) {} - - fileName: string = ''; - data: Storage.Streams.IRandomAccessStreamReference; - mimeType: string = ''; - isInline: Boolean = false; - estimatedDownloadSizeInBytes: number = 0; - downloadState: EmailAttachmentDownloadState = EmailAttachmentDownloadState.notDownloaded; - contentLocation: string = ''; - contentId: string = ''; - id: string = ''; - isFromBaseMessage: Boolean = false; - - } - export enum EmailAttachmentDownloadState { - notDownloaded, - downloading, - downloaded, - failed, - } - export enum EmailBatchStatus { - success, - serverSearchSyncManagerError, - serverSearchUnknownError, - } - export enum EmailCertificateValidationStatus { - success, - noMatch, - invalidUsage, - invalidCertificate, - revoked, - chainRevoked, - revocationServerFailure, - expired, - untrusted, - serverError, - unknownFailure, - } - export class EmailConversation implements IEmailConversation { - flagState: EmailFlagState; - hasAttachment: Boolean; - id: string; - importance: EmailImportance; - lastEmailResponseKind: EmailMessageResponseKind; - latestSender: EmailRecipient; - mailboxId: string; - messageCount: number; - mostRecentMessageId: string; - mostRecentMessageTime: Date; - preview: string; - subject: string; - unreadMessageCount: number; - - findMessagesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailConversation.findMessagesAsync'); - } - - findMessagesAsync_1(count: number): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailConversation.findMessagesAsync_1'); - } - - } - export class EmailConversationBatch implements IEmailConversationBatch { - conversations: EmailConversation[]; - status: EmailBatchStatus; - - } - export class EmailConversationReader implements IEmailConversationReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailConversationReader.readBatchAsync'); - } - - } - export enum EmailFlagState { - unflagged, - flagged, - completed, - cleared, - } - export class EmailFolder implements IEmailFolder { - remoteId: string; - lastSuccessfulSyncTime: Date; - isSyncEnabled: Boolean; - displayName: string; - id: string; - kind: EmailSpecialFolderKind; - mailboxId: string; - parentFolderId: string; - - createFolderAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailFolder.createFolderAsync'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailFolder.deleteAsync'); - } - - findChildFoldersAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailFolder.findChildFoldersAsync'); - } - - getConversationReader(): EmailConversationReader { - throw new Error('shimmed function EmailFolder.getConversationReader'); - } - - getConversationReader_1(options: EmailQueryOptions): EmailConversationReader { - throw new Error('shimmed function EmailFolder.getConversationReader_1'); - } - - getMessageAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailFolder.getMessageAsync'); - } - - getMessageReader(): EmailMessageReader { - throw new Error('shimmed function EmailFolder.getMessageReader'); - } - - getMessageReader_1(options: EmailQueryOptions): EmailMessageReader { - throw new Error('shimmed function EmailFolder.getMessageReader_1'); - } - - getMessageCountsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailFolder.getMessageCountsAsync'); - } - - tryMoveAsync(newParentFolder: EmailFolder): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailFolder.tryMoveAsync'); - } - - tryMoveAsync_1(newParentFolder: EmailFolder, newFolderName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailFolder.tryMoveAsync_1'); - } - - trySaveAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailFolder.trySaveAsync'); - } - - saveMessageAsync(message: EmailMessage): Foundation.IAsyncAction { - throw new Error('shimmed function EmailFolder.saveMessageAsync'); - } - - } - export enum EmailImportance { - normal, - high, - low, - } - export class EmailIrmInfo implements IEmailIrmInfo { - // constructor(expiration: Date, irmTemplate: EmailIrmTemplate); - // constructor(); - constructor(expiration: Date, irmTemplate: EmailIrmTemplate) {} - - canRemoveIrmOnResponse: Boolean = false; - canPrintData: Boolean = false; - canModifyRecipientsOnResponse: Boolean = false; - canForward: Boolean = false; - canExtractData: Boolean = false; - canReply: Boolean = false; - canEdit: Boolean = false; - template: EmailIrmTemplate; - isProgramaticAccessAllowed: Boolean = false; - isIrmOriginator: Boolean = false; - expirationDate: Date = new Date(-11644473600000); - canReplyAll: Boolean = false; - - } - export class EmailIrmTemplate implements IEmailIrmTemplate { - // constructor(id: string, name: string, description: string); - // constructor(); - constructor(id: string, name: string, description: string) {} - - name: string = ''; - id: string = ''; - description: string = ''; - - } - export class EmailItemCounts implements IEmailItemCounts { - flagged: number; - important: number; - total: number; - unread: number; - - } - export class EmailMailbox implements IEmailMailbox, IEmailMailbox2, IEmailMailbox3, IEmailMailbox4, IEmailMailbox5 { - otherAppWriteAccess: EmailMailboxOtherAppWriteAccess; - mailAddress: string; - otherAppReadAccess: EmailMailboxOtherAppReadAccess; - displayName: string; - id: string; - isDataEncryptedUnderLock: Boolean; - isOwnedByCurrentApp: Boolean; - mailAddressAliases: string[]; - capabilities: EmailMailboxCapabilities; - changeTracker: EmailMailboxChangeTracker; - policies: EmailMailboxPolicies; - sourceDisplayName: string; - syncManager: EmailMailboxSyncManager; - userDataAccountId: string; - linkedMailboxId: string; - networkAccountId: string; - networkId: string; - - getConversationReader(): EmailConversationReader { - throw new Error('shimmed function EmailMailbox.getConversationReader'); - } - - getConversationReader_1(options: EmailQueryOptions): EmailConversationReader { - throw new Error('shimmed function EmailMailbox.getConversationReader_1'); - } - - getMessageReader(): EmailMessageReader { - throw new Error('shimmed function EmailMailbox.getMessageReader'); - } - - getMessageReader_1(options: EmailQueryOptions): EmailMessageReader { - throw new Error('shimmed function EmailMailbox.getMessageReader_1'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.deleteAsync'); - } - - getConversationAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.getConversationAsync'); - } - - getFolderAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.getFolderAsync'); - } - - getMessageAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.getMessageAsync'); - } - - getSpecialFolderAsync(folderType: EmailSpecialFolderKind): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.getSpecialFolderAsync'); - } - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.saveAsync'); - } - - markMessageAsSeenAsync(messageId: string): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.markMessageAsSeenAsync'); - } - - markFolderAsSeenAsync(folderId: string): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.markFolderAsSeenAsync'); - } - - markMessageReadAsync(messageId: string, isRead: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.markMessageReadAsync'); - } - - changeMessageFlagStateAsync(messageId: string, flagState: EmailFlagState): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.changeMessageFlagStateAsync'); - } - - tryMoveMessageAsync(messageId: string, newParentFolderId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryMoveMessageAsync'); - } - - tryMoveFolderAsync(folderId: string, newParentFolderId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryMoveFolderAsync'); - } - - tryMoveFolderAsync_1(folderId: string, newParentFolderId: string, newFolderName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryMoveFolderAsync_1'); - } - - deleteMessageAsync(messageId: string): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.deleteMessageAsync'); - } - - markFolderSyncEnabledAsync(folderId: string, isSyncEnabled: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.markFolderSyncEnabledAsync'); - } - - sendMessageAsync(message: EmailMessage): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.sendMessageAsync'); - } - - saveDraftAsync(message: EmailMessage): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.saveDraftAsync'); - } - - downloadMessageAsync(messageId: string): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.downloadMessageAsync'); - } - - downloadAttachmentAsync(attachmentId: string): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.downloadAttachmentAsync'); - } - - createResponseMessageAsync(messageId: string, responseType: EmailMessageResponseKind, subject: string, responseHeaderType: EmailMessageBodyKind, responseHeader: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.createResponseMessageAsync'); - } - - tryUpdateMeetingResponseAsync(meeting: EmailMessage, response: EmailMeetingResponseType, subject: string, comment: string, sendUpdate: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryUpdateMeetingResponseAsync'); - } - - tryForwardMeetingAsync(meeting: EmailMessage, recipients: Foundation.Collections.IIterable, subject: string, forwardHeaderType: EmailMessageBodyKind, forwardHeader: string, comment: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryForwardMeetingAsync'); - } - - tryProposeNewTimeForMeetingAsync(meeting: EmailMessage, newStartTime: Date, newDuration: number, subject: string, comment: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryProposeNewTimeForMeetingAsync'); - } - - sendMessageAsync_1(message: EmailMessage, smartSend: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.sendMessageAsync_1'); - } - - trySetAutoReplySettingsAsync(autoReplySettings: EmailMailboxAutoReplySettings): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.trySetAutoReplySettingsAsync'); - } - - tryGetAutoReplySettingsAsync(requestedFormat: EmailMailboxAutoReplyMessageResponseKind): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryGetAutoReplySettingsAsync'); - } - - resolveRecipientsAsync(recipients: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.resolveRecipientsAsync'); - } - - validateCertificatesAsync(certificates: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.validateCertificatesAsync'); - } - - tryEmptyFolderAsync(folderId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryEmptyFolderAsync'); - } - - tryCreateFolderAsync(parentFolderId: string, name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryCreateFolderAsync'); - } - - tryDeleteFolderAsync(folderId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailbox.tryDeleteFolderAsync'); - } - - registerSyncManagerAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EmailMailbox.registerSyncManagerAsync'); - } - - getChangeTracker(identity: string): EmailMailboxChangeTracker { - throw new Error('shimmed function EmailMailbox.getChangeTracker'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`EmailMailbox::addEventListener: ${name}`); - switch (name) { - case "mailboxchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class EmailMailboxAction implements IEmailMailboxAction { - changeNumber: number; - kind: EmailMailboxActionKind; - - } - export enum EmailMailboxActionKind { - markMessageAsSeen, - markMessageRead, - changeMessageFlagState, - moveMessage, - saveDraft, - sendMessage, - createResponseReplyMessage, - createResponseReplyAllMessage, - createResponseForwardMessage, - moveFolder, - markFolderForSyncEnabled, - } - export enum EmailMailboxAllowedSmimeEncryptionAlgorithmNegotiation { - none, - strongAlgorithm, - anyAlgorithm, - } - export class EmailMailboxAutoReply implements IEmailMailboxAutoReply { - response: string; - isEnabled: Boolean; - - } - export enum EmailMailboxAutoReplyMessageResponseKind { - html, - plainText, - } - export class EmailMailboxAutoReplySettings implements IEmailMailboxAutoReplySettings { - // constructor(); - startTime: Date | null; - responseKind: EmailMailboxAutoReplyMessageResponseKind = EmailMailboxAutoReplyMessageResponseKind.html; - isEnabled: Boolean = true; - endTime: Date | null; - internalReply: EmailMailboxAutoReply = null; - knownExternalReply: EmailMailboxAutoReply = null; - unknownExternalReply: EmailMailboxAutoReply = null; - - } - export class EmailMailboxCapabilities implements IEmailMailboxCapabilities, IEmailMailboxCapabilities2, IEmailMailboxCapabilities3 { - canSmartSend: Boolean; - canUpdateMeetingResponses: Boolean; - canServerSearchMailbox: Boolean; - canServerSearchFolders: Boolean; - canForwardMeetings: Boolean; - canProposeNewTimeForMeetings: Boolean; - canGetAndSetInternalAutoReplies: Boolean; - canGetAndSetExternalAutoReplies: Boolean; - canValidateCertificates: Boolean; - canResolveRecipients: Boolean; - canMoveFolder: Boolean; - canEmptyFolder: Boolean; - canDeleteFolder: Boolean; - canCreateFolder: Boolean; - - } - export class EmailMailboxChange implements IEmailMailboxChange { - changeType: EmailMailboxChangeType; - folder: EmailFolder; - mailboxActions: EmailMailboxAction[]; - message: EmailMessage; - - } - export class EmailMailboxChangedDeferral implements IEmailMailboxChangedDeferral { - complete(): void { - console.warn('shimmed function EmailMailboxChangedDeferral.complete'); - } - - } - export class EmailMailboxChangedEventArgs implements IEmailMailboxChangedEventArgs { - getDeferral(): EmailMailboxChangedDeferral { - throw new Error('shimmed function EmailMailboxChangedEventArgs.getDeferral'); - } - - } - export class EmailMailboxChangeReader implements IEmailMailboxChangeReader { - acceptChanges(): void { - console.warn('shimmed function EmailMailboxChangeReader.acceptChanges'); - } - - acceptChangesThrough(lastChangeToAcknowledge: EmailMailboxChange): void { - console.warn('shimmed function EmailMailboxChangeReader.acceptChangesThrough'); - } - - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailboxChangeReader.readBatchAsync'); - } - - } - export class EmailMailboxChangeTracker implements IEmailMailboxChangeTracker { - isTracking: Boolean; - - enable(): void { - console.warn('shimmed function EmailMailboxChangeTracker.enable'); - } - - getChangeReader(): EmailMailboxChangeReader { - throw new Error('shimmed function EmailMailboxChangeTracker.getChangeReader'); - } - - reset(): void { - console.warn('shimmed function EmailMailboxChangeTracker.reset'); - } - - } - export enum EmailMailboxChangeType { - messageCreated, - messageModified, - messageDeleted, - folderCreated, - folderModified, - folderDeleted, - changeTrackingLost, - } - export class EmailMailboxCreateFolderResult implements IEmailMailboxCreateFolderResult { - folder: EmailFolder; - status: EmailMailboxCreateFolderStatus; - - } - export enum EmailMailboxCreateFolderStatus { - success, - networkError, - permissionsError, - serverError, - unknownFailure, - nameCollision, - serverRejected, - } - export enum EmailMailboxDeleteFolderStatus { - success, - networkError, - permissionsError, - serverError, - unknownFailure, - couldNotDeleteEverything, - } - export enum EmailMailboxEmptyFolderStatus { - success, - networkError, - permissionsError, - serverError, - unknownFailure, - couldNotDeleteEverything, - } - export enum EmailMailboxOtherAppReadAccess { - systemOnly, - full, - none, - } - export enum EmailMailboxOtherAppWriteAccess { - none, - limited, - } - export class EmailMailboxPolicies implements IEmailMailboxPolicies, IEmailMailboxPolicies2, IEmailMailboxPolicies3 { - requiredSmimeSigningAlgorithm: EmailMailboxSmimeSigningAlgorithm | null; - requiredSmimeEncryptionAlgorithm: EmailMailboxSmimeEncryptionAlgorithm | null; - allowedSmimeEncryptionAlgorithmNegotiation: EmailMailboxAllowedSmimeEncryptionAlgorithmNegotiation; - allowSmimeSoftCertificates: Boolean; - mustSignSmimeMessages: Boolean; - mustEncryptSmimeMessages: Boolean; - - } - export enum EmailMailboxSmimeEncryptionAlgorithm { - any, - tripleDes, - des, - rc2128Bit, - rc264Bit, - rc240Bit, - } - export enum EmailMailboxSmimeSigningAlgorithm { - any, - sha1, - md5, - } - export class EmailMailboxSyncManager implements IEmailMailboxSyncManager, IEmailMailboxSyncManager2 { - status: EmailMailboxSyncStatus; - lastSuccessfulSyncTime: Date; - lastAttemptedSyncTime: Date; - - syncAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMailboxSyncManager.syncAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`EmailMailboxSyncManager::addEventListener: ${name}`); - switch (name) { - case "syncstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum EmailMailboxSyncStatus { - idle, - syncing, - upToDate, - authenticationError, - policyError, - unknownError, - manualAccountRemovalRequired, - } - export class EmailManager { - static getForUser(user: System.User): EmailManagerForUser { - throw new Error('shimmed function EmailManager.getForUser'); - } - - static requestStoreAsync(accessType: EmailStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailManager.requestStoreAsync'); - } - - static showComposeNewEmailAsync(message: EmailMessage): Foundation.IAsyncAction { - throw new Error('shimmed function EmailManager.showComposeNewEmailAsync'); - } - - } - export class EmailManagerForUser implements IEmailManagerForUser { - user: System.User; - - showComposeNewEmailAsync(message: EmailMessage): Foundation.IAsyncAction { - throw new Error('shimmed function EmailManagerForUser.showComposeNewEmailAsync'); - } - - requestStoreAsync(accessType: EmailStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailManagerForUser.requestStoreAsync'); - } - - } - export class EmailMeetingInfo implements IEmailMeetingInfo, IEmailMeetingInfo2 { - // constructor(); - location: string = ''; - isResponseRequested: Boolean = true; - isAllDay: Boolean = false; - allowNewTimeProposal: Boolean = true; - duration: number = 0; - appointmentRoamingId: string = ''; - appointmentOriginalStartTime: Date | null; - proposedDuration: number | null; - remoteChangeNumber: number = 0; - startTime: Date = new Date(-11644473600000); - recurrenceStartTime: Date | null; - recurrence: Appointments.AppointmentRecurrence; - proposedStartTime: Date | null; - isReportedOutOfDateByServer: Boolean = false; - - } - export enum EmailMeetingResponseType { - accept, - decline, - tentative, - } - export class EmailMessage implements IEmailMessage, IEmailMessage2, IEmailMessage3, IEmailMessage4 { - // constructor(); - subject: string = ''; - body: string = ''; - bcc: EmailRecipient[] = [ ]; - cc: EmailRecipient[] = [ ]; - attachments: EmailAttachment[] = [ ]; - to: EmailRecipient[] = [ ]; - allowInternetImages: Boolean = false; - flagState: EmailFlagState = EmailFlagState.unflagged; - estimatedDownloadSizeInBytes: number = 0; - downloadState: EmailMessageDownloadState = EmailMessageDownloadState.downloaded; - importance: EmailImportance = EmailImportance.normal; - irmInfo: EmailIrmInfo; - originalCodePage: number = 0; - sentTime: Date | null; - sender: EmailRecipient = null; - remoteId: string = ''; - preview: string = ''; - messageClass: string = ''; - meetingInfo: EmailMeetingInfo; - lastResponseKind: EmailMessageResponseKind = EmailMessageResponseKind.none; - isSeen: Boolean = false; - isRead: Boolean = false; - isServerSearchMessage: Boolean = false; - isSmartSendable: Boolean = false; - mailboxId: string = ''; - changeNumber: number = 0; - conversationId: string = ''; - normalizedSubject: string = ''; - folderId: string = ''; - hasPartialBodies: Boolean = false; - id: string = ''; - inResponseToMessageId: string = ''; - isDraftMessage: Boolean = false; - smimeKind: EmailMessageSmimeKind = EmailMessageSmimeKind.none; - smimeData: Storage.Streams.IRandomAccessStreamReference; - sentRepresenting: EmailRecipient; - replyTo: EmailRecipient[] = [ ]; - - getBodyStream(type: EmailMessageBodyKind): Storage.Streams.IRandomAccessStreamReference { - throw new Error('shimmed function EmailMessage.getBodyStream'); - } - - setBodyStream(type: EmailMessageBodyKind, stream: Storage.Streams.IRandomAccessStreamReference): void { - console.warn('shimmed function EmailMessage.setBodyStream'); - } - - } - export class EmailMessageBatch implements IEmailMessageBatch { - messages: EmailMessage[]; - status: EmailBatchStatus; - - } - export enum EmailMessageBodyKind { - html, - plainText, - } - export enum EmailMessageDownloadState { - partiallyDownloaded, - downloading, - downloaded, - failed, - } - export class EmailMessageReader implements IEmailMessageReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailMessageReader.readBatchAsync'); - } - - } - export enum EmailMessageResponseKind { - none, - reply, - replyAll, - forward, - } - export enum EmailMessageSmimeKind { - none, - clearSigned, - opaqueSigned, - encrypted, - } - export enum EmailQueryKind { - all, - important, - flagged, - unread, - read, - unseen, - } - export class EmailQueryOptions implements IEmailQueryOptions { - // constructor(text: string); - // constructor(text: string, fields: EmailQuerySearchFields); - // constructor(); - constructor(text: string, fields: EmailQuerySearchFields) {} - - sortProperty: EmailQuerySortProperty = EmailQuerySortProperty.date; - sortDirection: EmailQuerySortDirection = EmailQuerySortDirection.descending; - kind: EmailQueryKind = EmailQueryKind.all; - folderIds: string[] = [ ]; - textSearch: EmailQueryTextSearch = null; - - } - export enum EmailQuerySearchFields { - none, - subject, - sender, - preview = 4, - recipients = 8, - all = 4294967295, - } - export enum EmailQuerySearchScope { - local, - server, - } - export enum EmailQuerySortDirection { - descending, - ascending, - } - export enum EmailQuerySortProperty { - date, - } - export class EmailQueryTextSearch implements IEmailQueryTextSearch { - text: string; - searchScope: EmailQuerySearchScope; - fields: EmailQuerySearchFields; - - } - export class EmailRecipient implements IEmailRecipient { - // constructor(address: string); - // constructor(address: string, name: string); - // constructor(); - constructor(address: string, name: string) {} - - name: string = ''; - address: string = ''; - - } - export class EmailRecipientResolutionResult implements IEmailRecipientResolutionResult, IEmailRecipientResolutionResult2 { - // constructor(); - status: EmailRecipientResolutionStatus = EmailRecipientResolutionStatus.success; - publicKeys: Security.Cryptography.Certificates.Certificate[] = [ ]; - - setPublicKeys(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function EmailRecipientResolutionResult.setPublicKeys'); - } - - } - export enum EmailRecipientResolutionStatus { - success, - recipientNotFound, - ambiguousRecipient, - noCertificate, - certificateRequestLimitReached, - cannotResolveDistributionList, - serverError, - unknownFailure, - } - export enum EmailSpecialFolderKind { - none, - root, - inbox, - outbox, - drafts, - deletedItems, - sent, - } - export class EmailStore implements IEmailStore { - findMailboxesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailStore.findMailboxesAsync'); - } - - getConversationReader(): EmailConversationReader { - throw new Error('shimmed function EmailStore.getConversationReader'); - } - - getConversationReader_1(options: EmailQueryOptions): EmailConversationReader { - throw new Error('shimmed function EmailStore.getConversationReader_1'); - } - - getMessageReader(): EmailMessageReader { - throw new Error('shimmed function EmailStore.getMessageReader'); - } - - getMessageReader_1(options: EmailQueryOptions): EmailMessageReader { - throw new Error('shimmed function EmailStore.getMessageReader_1'); - } - - getMailboxAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailStore.getMailboxAsync'); - } - - getConversationAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailStore.getConversationAsync'); - } - - getFolderAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailStore.getFolderAsync'); - } - - getMessageAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailStore.getMessageAsync'); - } - - createMailboxAsync(accountName: string, accountAddress: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailStore.createMailboxAsync'); - } - - createMailboxAsync_1(accountName: string, accountAddress: string, userDataAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EmailStore.createMailboxAsync_1'); - } - - } - export enum EmailStoreAccessType { - appMailboxesReadWrite, - allMailboxesLimitedReadWrite, - } - export class EmailStoreNotificationTriggerDetails implements IEmailStoreNotificationTriggerDetails { - } - } - export class EnteredBackgroundEventArgs implements IEnteredBackgroundEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EnteredBackgroundEventArgs.getDeferral'); - } - - } - export namespace ExtendedExecution { - export enum ExtendedExecutionReason { - unspecified, - locationTracking, - savingData, - } - export enum ExtendedExecutionResult { - allowed, - denied, - } - export class ExtendedExecutionRevokedEventArgs implements IExtendedExecutionRevokedEventArgs { - reason: ExtendedExecutionRevokedReason; - - } - export enum ExtendedExecutionRevokedReason { - resumed, - systemPolicy, - } - export class ExtendedExecutionSession implements IExtendedExecutionSession, Foundation.IClosable { - // constructor(); - reason: ExtendedExecutionReason = ExtendedExecutionReason.unspecified; - percentProgress: number = 0; - description: string = ''; - - requestExtensionAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ExtendedExecutionSession.requestExtensionAsync'); - } - - close(): void { - console.warn('shimmed function ExtendedExecutionSession.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ExtendedExecutionSession::addEventListener: ${name}`); - switch (name) { - case "revoked": // Foundation.TypedEventHandler - break; - } - - } - } - export namespace Foreground { - export enum ExtendedExecutionForegroundReason { - unspecified, - savingData, - backgroundAudio, - unconstrained, - } - export enum ExtendedExecutionForegroundResult { - allowed, - denied, - } - export class ExtendedExecutionForegroundRevokedEventArgs implements IExtendedExecutionForegroundRevokedEventArgs { - reason: ExtendedExecutionForegroundRevokedReason; - - } - export enum ExtendedExecutionForegroundRevokedReason { - resumed, - systemPolicy, - } - export class ExtendedExecutionForegroundSession implements IExtendedExecutionForegroundSession, Foundation.IClosable { - // constructor(); - reason: ExtendedExecutionForegroundReason = ExtendedExecutionForegroundReason.unspecified; - description: string = ''; - - requestExtensionAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ExtendedExecutionForegroundSession.requestExtensionAsync'); - } - - close(): void { - console.warn('shimmed function ExtendedExecutionForegroundSession.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ExtendedExecutionForegroundSession::addEventListener: ${name}`); - switch (name) { - case "revoked": // Foundation.TypedEventHandler - break; - } - - } - } - } - } - export interface FullTrustAppContract { - } - export class FullTrustProcessLauncher { - static launchFullTrustProcessForCurrentAppAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function FullTrustProcessLauncher.launchFullTrustProcessForCurrentAppAsync'); - } - - static launchFullTrustProcessForCurrentAppAsync_1(parameterGroupId: string): Foundation.IAsyncAction { - throw new Error('shimmed function FullTrustProcessLauncher.launchFullTrustProcessForCurrentAppAsync_1'); - } - - static launchFullTrustProcessForAppAsync(fullTrustPackageRelativeAppId: string): Foundation.IAsyncAction { - throw new Error('shimmed function FullTrustProcessLauncher.launchFullTrustProcessForAppAsync'); - } - - static launchFullTrustProcessForAppAsync_1(fullTrustPackageRelativeAppId: string, parameterGroupId: string): Foundation.IAsyncAction { - throw new Error('shimmed function FullTrustProcessLauncher.launchFullTrustProcessForAppAsync_1'); - } - - } - export interface IEnteredBackgroundEventArgs { - getDeferral(): Foundation.Deferral; - } - export interface ILeavingBackgroundEventArgs { - getDeferral(): Foundation.Deferral; - } - export interface ISuspendingDeferral { - complete(): void; - } - export interface ISuspendingEventArgs { - suspendingOperation: SuspendingOperation; - } - export interface ISuspendingOperation { - deadline: Date; - getDeferral(): SuspendingDeferral; - } - export class LeavingBackgroundEventArgs implements ILeavingBackgroundEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function LeavingBackgroundEventArgs.getDeferral'); - } - - } - export class LimitedAccessFeatureRequestResult implements ILimitedAccessFeatureRequestResult { - estimatedRemovalDate: Date | null; - featureId: string; - status: LimitedAccessFeatureStatus; - - } - export class LimitedAccessFeatures { - static tryUnlockFeature(featureId: string, token: string, attestation: string): LimitedAccessFeatureRequestResult { - throw new Error('shimmed function LimitedAccessFeatures.tryUnlockFeature'); - } - - } - export enum LimitedAccessFeatureStatus { - unavailable, - available, - availableWithoutToken, - unknown, - } - export namespace LockScreen { - export class LockApplicationHost implements ILockApplicationHost { - requestUnlock(): void { - console.warn('shimmed function LockApplicationHost.requestUnlock'); - } - - static getForCurrentView(): LockApplicationHost { - throw new Error('shimmed function LockApplicationHost.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LockApplicationHost::addEventListener: ${name}`); - switch (name) { - case "unlocking": // Foundation.TypedEventHandler - break; - } - - } - } - export class LockScreenBadge implements ILockScreenBadge { - automationName: string; - glyph: Storage.Streams.IRandomAccessStream; - logo: Storage.Streams.IRandomAccessStream; - number: number | null; - - launchApp(): void { - console.warn('shimmed function LockScreenBadge.launchApp'); - } - - } - export class LockScreenInfo implements ILockScreenInfo { - alarmIcon: Storage.Streams.IRandomAccessStream; - badges: LockScreenBadge[]; - detailText: string[]; - lockScreenImage: Storage.Streams.IRandomAccessStream; - - addEventListener(name: string, handler: Function) { - console.warn(`LockScreenInfo::addEventListener: ${name}`); - switch (name) { - case "alarmiconchanged": // Foundation.TypedEventHandler - case "badgeschanged": // Foundation.TypedEventHandler - case "detailtextchanged": // Foundation.TypedEventHandler - case "lockscreenimagechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class LockScreenUnlockingDeferral implements ILockScreenUnlockingDeferral { - complete(): void { - console.warn('shimmed function LockScreenUnlockingDeferral.complete'); - } - - } - export class LockScreenUnlockingEventArgs implements ILockScreenUnlockingEventArgs { - deadline: Date; - - getDeferral(): LockScreenUnlockingDeferral { - throw new Error('shimmed function LockScreenUnlockingEventArgs.getDeferral'); - } - - } - } - export class Package implements IPackage, IPackage2, IPackage3, IPackageWithMetadata, IPackage4, IPackage5, IPackage6, IPackage7 { - dependencies: Package[]; - id: PackageId; - installedLocation: Storage.StorageFolder; - isFramework: Boolean; - description: string; - displayName: string; - isBundle: Boolean; - isDevelopmentMode: Boolean; - isResourcePackage: Boolean; - logo: Foundation.Uri; - publisherDisplayName: string; - installedDate: Date; - status: PackageStatus; - isOptional: Boolean; - signatureKind: PackageSignatureKind; - effectiveLocation: Storage.StorageFolder; - mutableLocation: Storage.StorageFolder; - installDate: Date; - static current: Package = null; - - getAppListEntriesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.getAppListEntriesAsync'); - } - - getThumbnailToken(): string { - throw new Error('shimmed function Package.getThumbnailToken'); - } - - launch(parameters: string): void { - console.warn('shimmed function Package.launch'); - } - - verifyContentIntegrityAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.verifyContentIntegrityAsync'); - } - - getContentGroupsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.getContentGroupsAsync'); - } - - getContentGroupAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.getContentGroupAsync'); - } - - stageContentGroupsAsync(names: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.stageContentGroupsAsync'); - } - - stageContentGroupsAsync_1(names: Foundation.Collections.IIterable, moveToHeadOfQueue: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.stageContentGroupsAsync_1'); - } - - setInUseAsync(inUse: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.setInUseAsync'); - } - - getAppInstallerInfo(): AppInstallerInfo { - throw new Error('shimmed function Package.getAppInstallerInfo'); - } - - checkUpdateAvailabilityAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Package.checkUpdateAvailabilityAsync'); - } - - } - export class PackageCatalog implements IPackageCatalog, IPackageCatalog2, IPackageCatalog3, IPackageCatalog4 { - addOptionalPackageAsync(optionalPackageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PackageCatalog.addOptionalPackageAsync'); - } - - removeOptionalPackagesAsync(optionalPackageFamilyNames: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function PackageCatalog.removeOptionalPackagesAsync'); - } - - addResourcePackageAsync(resourcePackageFamilyName: string, resourceID: string, options: AddResourcePackageOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageCatalog.addResourcePackageAsync'); - } - - removeResourcePackagesAsync(resourcePackages: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function PackageCatalog.removeResourcePackagesAsync'); - } - - static openForCurrentPackage(): PackageCatalog { - throw new Error('shimmed function PackageCatalog.openForCurrentPackage'); - } - - static openForCurrentUser(): PackageCatalog { - throw new Error('shimmed function PackageCatalog.openForCurrentUser'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PackageCatalog::addEventListener: ${name}`); - switch (name) { - case "packageinstalling": // Foundation.TypedEventHandler - case "packagestaging": // Foundation.TypedEventHandler - case "packagestatuschanged": // Foundation.TypedEventHandler - case "packageuninstalling": // Foundation.TypedEventHandler - case "packageupdating": // Foundation.TypedEventHandler - case "packagecontentgroupstaging": // Foundation.TypedEventHandler - break; - } - - } - } - export class PackageCatalogAddOptionalPackageResult implements IPackageCatalogAddOptionalPackageResult { - extendedError: number; - package: Package; - - } - export class PackageCatalogAddResourcePackageResult implements IPackageCatalogAddResourcePackageResult { - extendedError: number; - isComplete: Boolean; - package: Package; - - } - export class PackageCatalogRemoveOptionalPackagesResult implements IPackageCatalogRemoveOptionalPackagesResult { - extendedError: number; - packagesRemoved: Package[]; - - } - export class PackageCatalogRemoveResourcePackagesResult implements IPackageCatalogRemoveResourcePackagesResult { - extendedError: number; - packagesRemoved: Package[]; - - } - export class PackageContentGroup implements IPackageContentGroup { - isRequired: Boolean; - name: string; - package: Package; - state: PackageContentGroupState; - static requiredGroupName: string = 'Required'; - - } - export class PackageContentGroupStagingEventArgs implements IPackageContentGroupStagingEventArgs { - activityId: string; - contentGroupName: string; - errorCode: number; - isComplete: Boolean; - isContentGroupRequired: Boolean; - package: Package; - progress: number; - - } - export enum PackageContentGroupState { - notStaged, - queued, - staging, - staged, - } - export class PackageId implements IPackageId, IPackageIdWithMetadata { - architecture: System.ProcessorArchitecture; - familyName: string; - fullName: string; - name: string; - publisher: string; - publisherId: string; - resourceId: string; - version: PackageVersion; - author: string; - productId: string; - - } - export class PackageInstallingEventArgs implements IPackageInstallingEventArgs { - activityId: string; - errorCode: number; - isComplete: Boolean; - package: Package; - progress: number; - - } - export interface PackageInstallProgress { - percentComplete: number = 0; - } - export enum PackageSignatureKind { - none, - developer, - enterprise, - store, - system, - } - export class PackageStagingEventArgs implements IPackageStagingEventArgs { - activityId: string; - errorCode: number; - isComplete: Boolean; - package: Package; - progress: number; - - } - export class PackageStatus implements IPackageStatus, IPackageStatus2 { - dataOffline: Boolean; - dependencyIssue: Boolean; - deploymentInProgress: Boolean; - disabled: Boolean; - licenseIssue: Boolean; - modified: Boolean; - needsRemediation: Boolean; - notAvailable: Boolean; - packageOffline: Boolean; - servicing: Boolean; - tampered: Boolean; - isPartiallyStaged: Boolean; - - verifyIsOK(): Boolean { - throw new Error('shimmed function PackageStatus.verifyIsOK'); - } - - } - export class PackageStatusChangedEventArgs implements IPackageStatusChangedEventArgs { - package: Package; - - } - export class PackageUninstallingEventArgs implements IPackageUninstallingEventArgs { - activityId: string; - errorCode: number; - isComplete: Boolean; - package: Package; - progress: number; - - } - export enum PackageUpdateAvailability { - unknown, - noUpdates, - available, - required, - error, - } - export class PackageUpdateAvailabilityResult implements IPackageUpdateAvailabilityResult { - availability: PackageUpdateAvailability; - extendedError: number; - - } - export class PackageUpdatingEventArgs implements IPackageUpdatingEventArgs { - activityId: string; - errorCode: number; - isComplete: Boolean; - progress: number; - sourcePackage: Package; - targetPackage: Package; - - } - export interface PackageVersion { - major: number; - minor: number; - build: number; - revision: number; - } - export namespace Payments { - export class PaymentAddress implements IPaymentAddress { - // constructor(); - sortingCode: string = ''; - region: string = ''; - recipient: string = ''; - postalCode: string = ''; - phoneNumber: string = ''; - organization: string = ''; - languageCode: string = ''; - dependentLocality: string = ''; - country: string = ''; - city: string = ''; - addressLines: string[] = [ ]; - properties: Foundation.Collections.ValueSet = [ ]; - - } - export class PaymentCanMakePaymentResult implements IPaymentCanMakePaymentResult { - // constructor(value: PaymentCanMakePaymentResultStatus); - constructor(value: PaymentCanMakePaymentResultStatus) {} - - status: PaymentCanMakePaymentResultStatus; - - } - export enum PaymentCanMakePaymentResultStatus { - unknown, - yes, - no, - notAllowed, - userNotSignedIn, - specifiedPaymentMethodIdsNotSupported, - noQualifyingCardOnFile, - } - export class PaymentCurrencyAmount implements IPaymentCurrencyAmount { - // constructor(value: string, currency: string); - // constructor(value: string, currency: string, currencySystem: string); - constructor(value: string, currency: string, currencySystem: string) {} - - value: string; - currencySystem: string; - currency: string; - - } - export class PaymentDetails implements IPaymentDetails { - // constructor(total: PaymentItem); - // constructor(total: PaymentItem, displayItems: Foundation.Collections.IIterable); - // constructor(); - constructor(total: PaymentItem, displayItems: Foundation.Collections.IIterable) {} - - total: PaymentItem; - shippingOptions: PaymentShippingOption[]; - modifiers: PaymentDetailsModifier[]; - displayItems: PaymentItem[]; - - } - export class PaymentDetailsModifier implements IPaymentDetailsModifier { - // constructor(supportedMethodIds: Foundation.Collections.IIterable, total: PaymentItem); - // constructor(supportedMethodIds: Foundation.Collections.IIterable, total: PaymentItem, additionalDisplayItems: Foundation.Collections.IIterable); - // constructor(supportedMethodIds: Foundation.Collections.IIterable, total: PaymentItem, additionalDisplayItems: Foundation.Collections.IIterable, jsonData: string); - constructor(supportedMethodIds: Foundation.Collections.IIterable, total: PaymentItem, additionalDisplayItems: Foundation.Collections.IIterable, jsonData: string) {} - - additionalDisplayItems: PaymentItem[]; - jsonData: string; - supportedMethodIds: string[]; - total: PaymentItem; - - } - export class PaymentItem implements IPaymentItem { - // constructor(label: string, amount: PaymentCurrencyAmount); - constructor(label: string, amount: PaymentCurrencyAmount) {} - - pending: Boolean; - label: string; - amount: PaymentCurrencyAmount; - - } - export class PaymentMediator implements IPaymentMediator, IPaymentMediator2 { - // constructor(); - getSupportedMethodIdsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentMediator.getSupportedMethodIdsAsync'); - } - - submitPaymentRequestAsync(paymentRequest: PaymentRequest): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentMediator.submitPaymentRequestAsync'); - } - - submitPaymentRequestAsync_1(paymentRequest: PaymentRequest, changeHandler: PaymentRequestChangedHandler): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentMediator.submitPaymentRequestAsync_1'); - } - - canMakePaymentAsync(paymentRequest: PaymentRequest): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentMediator.canMakePaymentAsync'); - } - - } - export class PaymentMerchantInfo implements IPaymentMerchantInfo { - // constructor(uri: Foundation.Uri); - // constructor(); - constructor(uri: Foundation.Uri) {} - - packageFullName: string = ''; - uri: Foundation.Uri; - - } - export class PaymentMethodData implements IPaymentMethodData { - // constructor(supportedMethodIds: Foundation.Collections.IIterable); - // constructor(supportedMethodIds: Foundation.Collections.IIterable, jsonData: string); - constructor(supportedMethodIds: Foundation.Collections.IIterable, jsonData: string) {} - - jsonData: string; - supportedMethodIds: string[]; - - } - export enum PaymentOptionPresence { - none, - optional, - required, - } - export class PaymentOptions implements IPaymentOptions { - // constructor(); - shippingType: PaymentShippingType = PaymentShippingType.shipping; - requestShipping: Boolean = false; - requestPayerPhoneNumber: PaymentOptionPresence = PaymentOptionPresence.none; - requestPayerName: PaymentOptionPresence = PaymentOptionPresence.none; - requestPayerEmail: PaymentOptionPresence = PaymentOptionPresence.none; - - } - export class PaymentRequest implements IPaymentRequest, IPaymentRequest2 { - // constructor(details: PaymentDetails, methodData: Foundation.Collections.IIterable, merchantInfo: PaymentMerchantInfo, options: PaymentOptions, id: string); - // constructor(details: PaymentDetails, methodData: Foundation.Collections.IIterable); - // constructor(details: PaymentDetails, methodData: Foundation.Collections.IIterable, merchantInfo: PaymentMerchantInfo); - // constructor(details: PaymentDetails, methodData: Foundation.Collections.IIterable, merchantInfo: PaymentMerchantInfo, options: PaymentOptions); - constructor(details: PaymentDetails, methodData: Foundation.Collections.IIterable, merchantInfo: PaymentMerchantInfo, options: PaymentOptions, id: string) {} - - details: PaymentDetails; - merchantInfo: PaymentMerchantInfo; - methodData: PaymentMethodData[]; - options: PaymentOptions; - id: string; - - } - export class PaymentRequestChangedArgs implements IPaymentRequestChangedArgs { - changeKind: PaymentRequestChangeKind; - selectedShippingOption: PaymentShippingOption; - shippingAddress: PaymentAddress; - - acknowledge(changeResult: PaymentRequestChangedResult): void { - console.warn('shimmed function PaymentRequestChangedArgs.acknowledge'); - } - - } - export type PaymentRequestChangedHandler = (args: PaymentRequestChangedArgs) => void; - export class PaymentRequestChangedResult implements IPaymentRequestChangedResult { - // constructor(changeAcceptedByMerchant: Boolean); - // constructor(changeAcceptedByMerchant: Boolean, updatedPaymentDetails: PaymentDetails); - constructor(changeAcceptedByMerchant: Boolean, updatedPaymentDetails: PaymentDetails) {} - - updatedPaymentDetails: PaymentDetails; - message: string; - changeAcceptedByMerchant: Boolean; - - } - export enum PaymentRequestChangeKind { - shippingOption, - shippingAddress, - } - export enum PaymentRequestCompletionStatus { - succeeded, - failed, - unknown, - } - export enum PaymentRequestStatus { - succeeded, - failed, - canceled, - } - export class PaymentRequestSubmitResult implements IPaymentRequestSubmitResult { - response: PaymentResponse; - status: PaymentRequestStatus; - - } - export class PaymentResponse implements IPaymentResponse { - payerEmail: string; - payerName: string; - payerPhoneNumber: string; - paymentToken: PaymentToken; - shippingAddress: PaymentAddress; - shippingOption: PaymentShippingOption; - - completeAsync(status: PaymentRequestCompletionStatus): Foundation.IAsyncAction { - throw new Error('shimmed function PaymentResponse.completeAsync'); - } - - } - export class PaymentShippingOption implements IPaymentShippingOption { - // constructor(label: string, amount: PaymentCurrencyAmount); - // constructor(label: string, amount: PaymentCurrencyAmount, selected: Boolean); - // constructor(label: string, amount: PaymentCurrencyAmount, selected: Boolean, tag: string); - constructor(label: string, amount: PaymentCurrencyAmount, selected: Boolean, tag: string) {} - - tag: string; - label: string; - isSelected: Boolean; - amount: PaymentCurrencyAmount; - - } - export enum PaymentShippingType { - shipping, - delivery, - pickup, - } - export class PaymentToken implements IPaymentToken { - // constructor(paymentMethodId: string); - // constructor(paymentMethodId: string, jsonDetails: string); - constructor(paymentMethodId: string, jsonDetails: string) {} - - jsonDetails: string; - paymentMethodId: string; - - } - export namespace Provider { - export class PaymentAppCanMakePaymentTriggerDetails implements IPaymentAppCanMakePaymentTriggerDetails { - request: PaymentRequest; - - reportCanMakePaymentResult(value: PaymentCanMakePaymentResult): void { - console.warn('shimmed function PaymentAppCanMakePaymentTriggerDetails.reportCanMakePaymentResult'); - } - - } - export class PaymentAppManager implements IPaymentAppManager { - static current: PaymentAppManager; - - registerAsync(supportedPaymentMethodIds: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function PaymentAppManager.registerAsync'); - } - - unregisterAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PaymentAppManager.unregisterAsync'); - } - - } - export class PaymentTransaction implements IPaymentTransaction { - payerPhoneNumber: string; - payerName: string; - payerEmail: string; - paymentRequest: PaymentRequest; - - updateShippingAddressAsync(shippingAddress: PaymentAddress): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentTransaction.updateShippingAddressAsync'); - } - - updateSelectedShippingOptionAsync(selectedShippingOption: PaymentShippingOption): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentTransaction.updateSelectedShippingOptionAsync'); - } - - acceptAsync(paymentToken: PaymentToken): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentTransaction.acceptAsync'); - } - - reject(): void { - console.warn('shimmed function PaymentTransaction.reject'); - } - - static fromIdAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PaymentTransaction.fromIdAsync'); - } - - } - export class PaymentTransactionAcceptResult implements IPaymentTransactionAcceptResult { - status: PaymentRequestCompletionStatus; - - } - } - } - export namespace Preview { - export namespace Holographic { - export class HolographicApplicationPreview { - static isCurrentViewPresentedOnHolographicDisplay(): Boolean { - throw new Error('shimmed function HolographicApplicationPreview.isCurrentViewPresentedOnHolographicDisplay'); - } - - static isHolographicActivation(activatedEventArgs: Activation.IActivatedEventArgs): Boolean { - throw new Error('shimmed function HolographicApplicationPreview.isHolographicActivation'); - } - - } - export class HolographicKeyboardPlacementOverridePreview implements IHolographicKeyboardPlacementOverridePreview { - setPlacementOverride(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, topCenterPosition: Foundation.Numerics.Vector3, normal: Foundation.Numerics.Vector3): void { - console.warn('shimmed function HolographicKeyboardPlacementOverridePreview.setPlacementOverride'); - } - - setPlacementOverride_1(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, topCenterPosition: Foundation.Numerics.Vector3, normal: Foundation.Numerics.Vector3, maxSize: Foundation.Numerics.Vector2): void { - console.warn('shimmed function HolographicKeyboardPlacementOverridePreview.setPlacementOverride_1'); - } - - resetPlacementOverride(): void { - console.warn('shimmed function HolographicKeyboardPlacementOverridePreview.resetPlacementOverride'); - } - - static getForCurrentView(): HolographicKeyboardPlacementOverridePreview { - throw new Error('shimmed function HolographicKeyboardPlacementOverridePreview.getForCurrentView'); - } - - } - } - export namespace InkWorkspace { - export class InkWorkspaceHostedAppManager implements IInkWorkspaceHostedAppManager { - setThumbnailAsync(bitmap: Graphics.Imaging.SoftwareBitmap): Foundation.IAsyncAction { - throw new Error('shimmed function InkWorkspaceHostedAppManager.setThumbnailAsync'); - } - - static getForCurrentApp(): InkWorkspaceHostedAppManager { - throw new Error('shimmed function InkWorkspaceHostedAppManager.getForCurrentApp'); - } - - } - export interface PreviewInkWorkspaceContract { - } - } - export namespace Notes { - export class NotePlacementChangedPreviewEventArgs implements INotePlacementChangedPreviewEventArgs { - viewId: number; - - } - export class NotesWindowManagerPreview implements INotesWindowManagerPreview, INotesWindowManagerPreview2 { - isScreenLocked: Boolean; - - showNote(noteViewId: number): void { - console.warn('shimmed function NotesWindowManagerPreview.showNote'); - } - - showNoteRelativeTo(noteViewId: number, anchorNoteViewId: number): void { - console.warn('shimmed function NotesWindowManagerPreview.showNoteRelativeTo'); - } - - showNoteWithPlacement(noteViewId: number, data: Storage.Streams.IBuffer): void { - console.warn('shimmed function NotesWindowManagerPreview.showNoteWithPlacement'); - } - - hideNote(noteViewId: number): void { - console.warn('shimmed function NotesWindowManagerPreview.hideNote'); - } - - getNotePlacement(noteViewId: number): Storage.Streams.IBuffer { - throw new Error('shimmed function NotesWindowManagerPreview.getNotePlacement'); - } - - trySetNoteSize(noteViewId: number, size: Foundation.Size): Boolean { - throw new Error('shimmed function NotesWindowManagerPreview.trySetNoteSize'); - } - - setFocusToNextView(): void { - console.warn('shimmed function NotesWindowManagerPreview.setFocusToNextView'); - } - - setNotesThumbnailAsync(thumbnail: Storage.Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function NotesWindowManagerPreview.setNotesThumbnailAsync'); - } - - showNoteRelativeTo_1(noteViewId: number, anchorNoteViewId: number, options: NotesWindowManagerPreviewShowNoteOptions): void { - console.warn('shimmed function NotesWindowManagerPreview.showNoteRelativeTo_1'); - } - - showNoteWithPlacement_1(noteViewId: number, data: Storage.Streams.IBuffer, options: NotesWindowManagerPreviewShowNoteOptions): void { - console.warn('shimmed function NotesWindowManagerPreview.showNoteWithPlacement_1'); - } - - setFocusToPreviousView(): void { - console.warn('shimmed function NotesWindowManagerPreview.setFocusToPreviousView'); - } - - setThumbnailImageForTaskSwitcherAsync(bitmap: Graphics.Imaging.SoftwareBitmap): Foundation.IAsyncAction { - throw new Error('shimmed function NotesWindowManagerPreview.setThumbnailImageForTaskSwitcherAsync'); - } - - static getForCurrentApp(): NotesWindowManagerPreview { - throw new Error('shimmed function NotesWindowManagerPreview.getForCurrentApp'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NotesWindowManagerPreview::addEventListener: ${name}`); - switch (name) { - case "noteplacementchanged": // Foundation.TypedEventHandler - case "notevisibilitychanged": // Foundation.TypedEventHandler - case "systemlockstatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class NotesWindowManagerPreviewShowNoteOptions implements INotesWindowManagerPreviewShowNoteOptions { - // constructor(); - showWithFocus: Boolean = true; - - } - export class NoteVisibilityChangedPreviewEventArgs implements INoteVisibilityChangedPreviewEventArgs { - isVisible: Boolean; - viewId: number; - - } - export interface PreviewNotesContract { - } - } - } - export namespace Resources { - export namespace Core { - export class NamedResource implements INamedResource { - candidates: ResourceCandidate[]; - uri: Foundation.Uri; - - resolve(): ResourceCandidate { - throw new Error('shimmed function NamedResource.resolve'); - } - - resolve_1(resourceContext: ResourceContext): ResourceCandidate { - throw new Error('shimmed function NamedResource.resolve_1'); - } - - resolveAll(): ResourceCandidate[] { - throw new Error('shimmed function NamedResource.resolveAll'); - } - - resolveAll_1(resourceContext: ResourceContext): ResourceCandidate[] { - throw new Error('shimmed function NamedResource.resolveAll_1'); - } - - } - export class ResourceCandidate implements IResourceCandidate, IResourceCandidate2, IResourceCandidate3 { - isDefault: Boolean; - isMatch: Boolean; - isMatchAsDefault: Boolean; - qualifiers: ResourceQualifier[]; - valueAsString: string; - kind: ResourceCandidateKind; - - getValueAsFileAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ResourceCandidate.getValueAsFileAsync'); - } - - getQualifierValue(qualifierName: string): string { - throw new Error('shimmed function ResourceCandidate.getQualifierValue'); - } - - getValueAsStreamAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ResourceCandidate.getValueAsStreamAsync'); - } - - } - export enum ResourceCandidateKind { - string, - file, - embeddedData, - } - export class ResourceCandidateVectorView implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): ResourceCandidate { - throw new Error('shimmed function ResourceCandidateVectorView.getAt'); - } - - indexOf(value: ResourceCandidate): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ResourceCandidateVectorView.indexOf'); - } - - getMany(startIndex: number, items: ResourceCandidate[]): number { - throw new Error('shimmed function ResourceCandidateVectorView.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ResourceCandidateVectorView.first'); - } - - } - export class ResourceContext implements IResourceContext { - // constructor(); - languages: string[] = [ 'en-GB' ]; - qualifierValues: string[] = [ null, null, null, null, null, null, null, null, null, null, null, null ]; - - reset(): void { - console.warn('shimmed function ResourceContext.reset'); - } - - reset_1(qualifierNames: Foundation.Collections.IIterable): void { - console.warn('shimmed function ResourceContext.reset_1'); - } - - overrideToMatch(result: Foundation.Collections.IIterable): void { - console.warn('shimmed function ResourceContext.overrideToMatch'); - } - - static getForUIContext(context: UI.UIContext): ResourceContext { - throw new Error('shimmed function ResourceContext.getForUIContext'); - } - - static setGlobalQualifierValue(key: string, value: string, persistence: ResourceQualifierPersistence): void { - console.warn('shimmed function ResourceContext.setGlobalQualifierValue'); - } - - static getForCurrentView(): ResourceContext { - throw new Error('shimmed function ResourceContext.getForCurrentView'); - } - - static setGlobalQualifierValue_1(key: string, value: string): void { - console.warn('shimmed function ResourceContext.setGlobalQualifierValue_1'); - } - - static resetGlobalQualifierValues(): void { - console.warn('shimmed function ResourceContext.resetGlobalQualifierValues'); - } - - static resetGlobalQualifierValues_1(qualifierNames: Foundation.Collections.IIterable): void { - console.warn('shimmed function ResourceContext.resetGlobalQualifierValues_1'); - } - - static getForViewIndependentUse(): ResourceContext { - throw new Error('shimmed function ResourceContext.getForViewIndependentUse'); - } - - static createMatchingContext(result: Foundation.Collections.IIterable): ResourceContext { - throw new Error('shimmed function ResourceContext.createMatchingContext'); - } - - } - export class ResourceContextLanguagesVectorView implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): string { - throw new Error('shimmed function ResourceContextLanguagesVectorView.getAt'); - } - - indexOf(value: string): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ResourceContextLanguagesVectorView.indexOf'); - } - - getMany(startIndex: number, items: string[]): number { - throw new Error('shimmed function ResourceContextLanguagesVectorView.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ResourceContextLanguagesVectorView.first'); - } - - } - export interface ResourceLayoutInfo { - majorVersion: number; - minorVersion: number; - resourceSubtreeCount: number; - namedResourceCount: number; - checksum: number; - } - export class ResourceManager implements IResourceManager, IResourceManager2 { - allResourceMaps: string[]; - defaultContext: ResourceContext; - mainResourceMap: ResourceMap; - static current: ResourceManager = null; - - loadPriFiles(files: Foundation.Collections.IIterable): void { - console.warn('shimmed function ResourceManager.loadPriFiles'); - } - - unloadPriFiles(files: Foundation.Collections.IIterable): void { - console.warn('shimmed function ResourceManager.unloadPriFiles'); - } - - getAllNamedResourcesForPackage(packageName: string, resourceLayoutInfo: ResourceLayoutInfo): NamedResource[] { - throw new Error('shimmed function ResourceManager.getAllNamedResourcesForPackage'); - } - - getAllSubtreesForPackage(packageName: string, resourceLayoutInfo: ResourceLayoutInfo): ResourceMap[] { - throw new Error('shimmed function ResourceManager.getAllSubtreesForPackage'); - } - - static isResourceReference(resourceReference: string): Boolean { - throw new Error('shimmed function ResourceManager.isResourceReference'); - } - - } - export class ResourceMap implements IResourceMap, Foundation.Collections.IMapView, Foundation.Collections.IIterable> { - uri: Foundation.Uri; - size: number; - - getValue(resource: string): ResourceCandidate { - throw new Error('shimmed function ResourceMap.getValue'); - } - - getValue_1(resource: string, context: ResourceContext): ResourceCandidate { - throw new Error('shimmed function ResourceMap.getValue_1'); - } - - getSubtree(reference: string): ResourceMap { - throw new Error('shimmed function ResourceMap.getSubtree'); - } - - lookup(key: string): NamedResource { - throw new Error('shimmed function ResourceMap.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ResourceMap.hasKey'); - } - - split(): { first: string[], second: string[] } { - throw new Error('shimmed function ResourceMap.split'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ResourceMap.first'); - } - - } - export class ResourceMapIterator implements Foundation.Collections.IIterator> { - current: Foundation.Collections.IKeyValuePair; - hasCurrent: Boolean; - - moveNext(): Boolean { - throw new Error('shimmed function ResourceMapIterator.moveNext'); - } - - getMany(items: Foundation.Collections.IKeyValuePair[]): number { - throw new Error('shimmed function ResourceMapIterator.getMany'); - } - - } - export class ResourceMapMapView implements Foundation.Collections.IMapView, Foundation.Collections.IIterable> { - size: number; - - lookup(key: string): ResourceMap { - throw new Error('shimmed function ResourceMapMapView.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ResourceMapMapView.hasKey'); - } - - split(): { first: string[], second: string[] } { - throw new Error('shimmed function ResourceMapMapView.split'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ResourceMapMapView.first'); - } - - } - export class ResourceMapMapViewIterator implements Foundation.Collections.IIterator> { - current: Foundation.Collections.IKeyValuePair; - hasCurrent: Boolean; - - moveNext(): Boolean { - throw new Error('shimmed function ResourceMapMapViewIterator.moveNext'); - } - - getMany(items: Foundation.Collections.IKeyValuePair[]): number { - throw new Error('shimmed function ResourceMapMapViewIterator.getMany'); - } - - } - export class ResourceQualifier implements IResourceQualifier { - isDefault: Boolean; - isMatch: Boolean; - qualifierName: string; - qualifierValue: string; - score: number; - - } - export class ResourceQualifierMapView implements Foundation.Collections.IMapView, Foundation.Collections.IIterable> { - size: number; - - lookup(key: string): string { - throw new Error('shimmed function ResourceQualifierMapView.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ResourceQualifierMapView.hasKey'); - } - - split(): { first: string[], second: string[] } { - throw new Error('shimmed function ResourceQualifierMapView.split'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ResourceQualifierMapView.first'); - } - - } - export class ResourceQualifierObservableMap implements Foundation.Collections.IObservableMap, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - size: number; - - lookup(key: string): string { - throw new Error('shimmed function ResourceQualifierObservableMap.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ResourceQualifierObservableMap.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function ResourceQualifierObservableMap.getView'); - } - - insert(key: string, value: string): Boolean { - throw new Error('shimmed function ResourceQualifierObservableMap.insert'); - } - - clear(): void { - console.warn('shimmed function ResourceQualifierObservableMap.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ResourceQualifierObservableMap.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ResourceQualifierObservableMap::addEventListener: ${name}`); - switch (name) { - case "mapchanged": // Foundation.Collections.MapChangedEventHandler - break; - } - - } - } - export enum ResourceQualifierPersistence { - none, - localMachine, - } - export class ResourceQualifierVectorView implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): ResourceQualifier { - throw new Error('shimmed function ResourceQualifierVectorView.getAt'); - } - - indexOf(value: ResourceQualifier): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ResourceQualifierVectorView.indexOf'); - } - - getMany(startIndex: number, items: ResourceQualifier[]): number { - throw new Error('shimmed function ResourceQualifierVectorView.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ResourceQualifierVectorView.first'); - } - - } - } - export namespace Management { - export class IndexedResourceCandidate implements IIndexedResourceCandidate { - metadata: string[]; - qualifiers: IndexedResourceQualifier[]; - type: IndexedResourceType; - uri: Foundation.Uri; - valueAsString: string; - - getQualifierValue(qualifierName: string): string { - throw new Error('shimmed function IndexedResourceCandidate.getQualifierValue'); - } - - } - export class IndexedResourceQualifier implements IIndexedResourceQualifier { - qualifierName: string; - qualifierValue: string; - - } - export enum IndexedResourceType { - string, - path, - embeddedData, - } - export class ResourceIndexer implements IResourceIndexer { - // constructor(projectRoot: Foundation.Uri, extensionDllPath: Foundation.Uri); - // constructor(projectRoot: Foundation.Uri); - constructor(projectRoot: Foundation.Uri, extensionDllPath: Foundation.Uri) {} - - indexFilePath(filePath: Foundation.Uri): IndexedResourceCandidate { - throw new Error('shimmed function ResourceIndexer.indexFilePath'); - } - - indexFileContentsAsync(file: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function ResourceIndexer.indexFileContentsAsync'); - } - - } - export interface ResourceIndexerContract { - } - } - export class ResourceLoader implements IResourceLoader, IResourceLoader2 { - // constructor(name: string); - // constructor(); - constructor(name: string) {} - - getString(resource: string): string { - throw new Error('shimmed function ResourceLoader.getString'); - } - - getStringForUri(uri: Foundation.Uri): string { - throw new Error('shimmed function ResourceLoader.getStringForUri'); - } - - static getForUIContext(context: UI.UIContext): ResourceLoader { - throw new Error('shimmed function ResourceLoader.getForUIContext'); - } - - static getForCurrentView(): ResourceLoader { - throw new Error('shimmed function ResourceLoader.getForCurrentView'); - } - - static getForCurrentView_1(name: string): ResourceLoader { - throw new Error('shimmed function ResourceLoader.getForCurrentView_1'); - } - - static getForViewIndependentUse(): ResourceLoader { - throw new Error('shimmed function ResourceLoader.getForViewIndependentUse'); - } - - static getForViewIndependentUse_1(name: string): ResourceLoader { - throw new Error('shimmed function ResourceLoader.getForViewIndependentUse_1'); - } - - static getStringForReference(uri: Foundation.Uri): string { - throw new Error('shimmed function ResourceLoader.getStringForReference'); - } - - } - } - export namespace Search { - export namespace Core { - export class RequestingFocusOnKeyboardInputEventArgs implements IRequestingFocusOnKeyboardInputEventArgs { - } - export interface SearchCoreContract { - } - export class SearchSuggestion implements ISearchSuggestion { - detailText: string; - image: Storage.Streams.IRandomAccessStreamReference; - imageAlternateText: string; - kind: SearchSuggestionKind; - tag: string; - text: string; - - } - export enum SearchSuggestionKind { - query, - result, - separator, - } - export class SearchSuggestionManager implements ISearchSuggestionManager { - // constructor(); - searchHistoryEnabled: Boolean = true; - searchHistoryContext: string = ''; - suggestions: SearchSuggestion[] = [ ]; - - setLocalContentSuggestionSettings(settings: LocalContentSuggestionSettings): void { - console.warn('shimmed function SearchSuggestionManager.setLocalContentSuggestionSettings'); - } - - setQuery(queryText: string): void { - console.warn('shimmed function SearchSuggestionManager.setQuery'); - } - - setQuery_1(queryText: string, language: string): void { - console.warn('shimmed function SearchSuggestionManager.setQuery_1'); - } - - setQuery_2(queryText: string, language: string, linguisticDetails: SearchQueryLinguisticDetails): void { - console.warn('shimmed function SearchSuggestionManager.setQuery_2'); - } - - addToHistory(queryText: string): void { - console.warn('shimmed function SearchSuggestionManager.addToHistory'); - } - - addToHistory_1(queryText: string, language: string): void { - console.warn('shimmed function SearchSuggestionManager.addToHistory_1'); - } - - clearHistory(): void { - console.warn('shimmed function SearchSuggestionManager.clearHistory'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SearchSuggestionManager::addEventListener: ${name}`); - switch (name) { - case "requestingfocusonkeyboardinput": // Foundation.TypedEventHandler - case "suggestionsrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SearchSuggestionsRequestedEventArgs implements ISearchSuggestionsRequestedEventArgs { - language: string; - linguisticDetails: SearchQueryLinguisticDetails; - queryText: string; - request: SearchSuggestionsRequest; - - } - } - export interface ISearchPaneQueryChangedEventArgs { - language: string; - linguisticDetails: SearchPaneQueryLinguisticDetails; - queryText: string; - } - export class LocalContentSuggestionSettings implements ILocalContentSuggestionSettings { - // constructor(); - enabled: Boolean = false; - aqsFilter: string = ''; - locations: Storage.StorageFolder[] = [ ]; - propertiesToMatch: string[] = [ ]; - - } - export interface SearchContract { - } - export class SearchPane implements ISearchPane { - showOnKeyboardInput: Boolean; - searchHistoryEnabled: Boolean; - searchHistoryContext: string; - placeholderText: string; - language: string; - queryText: string; - visible: Boolean; - - setLocalContentSuggestionSettings(settings: LocalContentSuggestionSettings): void { - console.warn('shimmed function SearchPane.setLocalContentSuggestionSettings'); - } - - show(): void { - console.warn('shimmed function SearchPane.show'); - } - - show_1(query: string): void { - console.warn('shimmed function SearchPane.show_1'); - } - - trySetQueryText(query: string): Boolean { - throw new Error('shimmed function SearchPane.trySetQueryText'); - } - - static hideThisApplication(): void { - console.warn('shimmed function SearchPane.hideThisApplication'); - } - - static getForCurrentView(): SearchPane { - throw new Error('shimmed function SearchPane.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SearchPane::addEventListener: ${name}`); - switch (name) { - case "querychanged": // Foundation.TypedEventHandler - case "querysubmitted": // Foundation.TypedEventHandler - case "resultsuggestionchosen": // Foundation.TypedEventHandler - case "suggestionsrequested": // Foundation.TypedEventHandler - case "visibilitychanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class SearchPaneQueryChangedEventArgs implements ISearchPaneQueryChangedEventArgs { - language: string; - linguisticDetails: SearchPaneQueryLinguisticDetails; - queryText: string; - - } - export class SearchPaneQueryLinguisticDetails implements ISearchPaneQueryLinguisticDetails { - queryTextAlternatives: string[]; - queryTextCompositionLength: number; - queryTextCompositionStart: number; - - } - export class SearchPaneQuerySubmittedEventArgs implements ISearchPaneQuerySubmittedEventArgs, ISearchPaneQuerySubmittedEventArgsWithLinguisticDetails { - language: string; - queryText: string; - linguisticDetails: SearchPaneQueryLinguisticDetails; - - } - export class SearchPaneResultSuggestionChosenEventArgs implements ISearchPaneResultSuggestionChosenEventArgs { - tag: string; - - } - export class SearchPaneSuggestionsRequest implements ISearchPaneSuggestionsRequest { - isCanceled: Boolean; - searchSuggestionCollection: SearchSuggestionCollection; - - getDeferral(): SearchPaneSuggestionsRequestDeferral { - throw new Error('shimmed function SearchPaneSuggestionsRequest.getDeferral'); - } - - } - export class SearchPaneSuggestionsRequestDeferral implements ISearchPaneSuggestionsRequestDeferral { - complete(): void { - console.warn('shimmed function SearchPaneSuggestionsRequestDeferral.complete'); - } - - } - export class SearchPaneSuggestionsRequestedEventArgs implements ISearchPaneSuggestionsRequestedEventArgs, ISearchPaneQueryChangedEventArgs { - language: string; - linguisticDetails: SearchPaneQueryLinguisticDetails; - queryText: string; - request: SearchPaneSuggestionsRequest; - - } - export class SearchPaneVisibilityChangedEventArgs implements ISearchPaneVisibilityChangedEventArgs { - visible: Boolean; - - } - export class SearchQueryLinguisticDetails implements ISearchQueryLinguisticDetails { - // constructor(queryTextAlternatives: Foundation.Collections.IIterable, queryTextCompositionStart: number, queryTextCompositionLength: number); - constructor(queryTextAlternatives: Foundation.Collections.IIterable, queryTextCompositionStart: number, queryTextCompositionLength: number) {} - - queryTextAlternatives: string[]; - queryTextCompositionLength: number; - queryTextCompositionStart: number; - - } - export class SearchSuggestionCollection implements ISearchSuggestionCollection { - size: number; - - appendQuerySuggestion(text: string): void { - console.warn('shimmed function SearchSuggestionCollection.appendQuerySuggestion'); - } - - appendQuerySuggestions(suggestions: Foundation.Collections.IIterable): void { - console.warn('shimmed function SearchSuggestionCollection.appendQuerySuggestions'); - } - - appendResultSuggestion(text: string, detailText: string, tag: string, image: Storage.Streams.IRandomAccessStreamReference, imageAlternateText: string): void { - console.warn('shimmed function SearchSuggestionCollection.appendResultSuggestion'); - } - - appendSearchSeparator(label: string): void { - console.warn('shimmed function SearchSuggestionCollection.appendSearchSeparator'); - } - - } - export class SearchSuggestionsRequest implements ISearchSuggestionsRequest { - isCanceled: Boolean; - searchSuggestionCollection: SearchSuggestionCollection; - - getDeferral(): SearchSuggestionsRequestDeferral { - throw new Error('shimmed function SearchSuggestionsRequest.getDeferral'); - } - - } - export class SearchSuggestionsRequestDeferral implements ISearchSuggestionsRequestDeferral { - complete(): void { - console.warn('shimmed function SearchSuggestionsRequestDeferral.complete'); - } - - } - } - export namespace SocialInfo { - export namespace Provider { - export class SocialDashboardItemUpdater implements ISocialDashboardItemUpdater { - timestamp: Date; - thumbnail: SocialItemThumbnail; - targetUri: Foundation.Uri; - content: SocialFeedContent; - ownerRemoteId: string; - - commitAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SocialDashboardItemUpdater.commitAsync'); - } - - } - export class SocialFeedUpdater implements ISocialFeedUpdater { - items: SocialFeedItem[]; - kind: SocialFeedKind; - ownerRemoteId: string; - - commitAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SocialFeedUpdater.commitAsync'); - } - - } - export class SocialInfoProviderManager { - static createSocialFeedUpdaterAsync(kind: SocialFeedKind, mode: SocialFeedUpdateMode, ownerRemoteId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SocialInfoProviderManager.createSocialFeedUpdaterAsync'); - } - - static createDashboardItemUpdaterAsync(ownerRemoteId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SocialInfoProviderManager.createDashboardItemUpdaterAsync'); - } - - static updateBadgeCountValue(itemRemoteId: string, newCount: number): void { - console.warn('shimmed function SocialInfoProviderManager.updateBadgeCountValue'); - } - - static reportNewContentAvailable(contactRemoteId: string, kind: SocialFeedKind): void { - console.warn('shimmed function SocialInfoProviderManager.reportNewContentAvailable'); - } - - static provisionAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SocialInfoProviderManager.provisionAsync'); - } - - static deprovisionAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SocialInfoProviderManager.deprovisionAsync'); - } - - } - } - export class SocialFeedChildItem implements ISocialFeedChildItem { - // constructor(); - timestamp: Date = new Date(-11644473600000); - targetUri: Foundation.Uri; - sharedItem: SocialFeedSharedItem; - author: SocialUserInfo = null; - primaryContent: SocialFeedContent = null; - secondaryContent: SocialFeedContent = null; - thumbnails: SocialItemThumbnail[] = [ ]; - - } - export class SocialFeedContent implements ISocialFeedContent { - title: string; - targetUri: Foundation.Uri; - message: string; - - } - export class SocialFeedItem implements ISocialFeedItem { - // constructor(); - timestamp: Date = new Date(-11644473600000); - targetUri: Foundation.Uri; - style: SocialFeedItemStyle = SocialFeedItemStyle.default; - sharedItem: SocialFeedSharedItem; - remoteId: string = ''; - childItem: SocialFeedChildItem; - badgeStyle: SocialItemBadgeStyle = SocialItemBadgeStyle.hidden; - badgeCountValue: number = 0; - author: SocialUserInfo = null; - thumbnails: SocialItemThumbnail[] = [ ]; - primaryContent: SocialFeedContent = null; - secondaryContent: SocialFeedContent = null; - - } - export enum SocialFeedItemStyle { - default, - photo, - } - export enum SocialFeedKind { - homeFeed, - contactFeed, - dashboard, - } - export class SocialFeedSharedItem implements ISocialFeedSharedItem { - // constructor(); - timestamp: Date = new Date(-11644473600000); - thumbnail: SocialItemThumbnail; - targetUri: Foundation.Uri; - originalSource: Foundation.Uri; - content: SocialFeedContent; - - } - export enum SocialFeedUpdateMode { - append, - replace, - } - export interface SocialInfoContract { - } - export enum SocialItemBadgeStyle { - hidden, - visible, - visibleWithCount, - } - export class SocialItemThumbnail implements ISocialItemThumbnail { - // constructor(); - targetUri: Foundation.Uri; - imageUri: Foundation.Uri; - bitmapSize: Graphics.Imaging.BitmapSize = null; - - setImageAsync(image: Storage.Streams.IInputStream): Foundation.IAsyncAction { - throw new Error('shimmed function SocialItemThumbnail.setImageAsync'); - } - - } - export class SocialUserInfo implements ISocialUserInfo { - userName: string; - targetUri: Foundation.Uri; - remoteId: string; - displayName: string; - - } - } - export class StartupTask implements IStartupTask { - state: StartupTaskState; - taskId: string; - - requestEnableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StartupTask.requestEnableAsync'); - } - - disable(): void { - console.warn('shimmed function StartupTask.disable'); - } - - static getForCurrentPackageAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StartupTask.getForCurrentPackageAsync'); - } - - static getAsync(taskId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StartupTask.getAsync'); - } - - } - export interface StartupTaskContract { - } - export enum StartupTaskState { - disabled, - disabledByUser, - enabled, - disabledByPolicy, - enabledByPolicy, - } - export namespace Store { - export class CurrentApp { - static appId: string = '00000000-0000-0000-0000-000000000000'; - static licenseInformation: LicenseInformation = null; - static linkUri: Foundation.Uri = new Uri('https://www.microsoft.com/store/apps/'); - - static getCustomerPurchaseIdAsync(serviceTicket: string, publisherUserId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.getCustomerPurchaseIdAsync'); - } - - static getCustomerCollectionsIdAsync(serviceTicket: string, publisherUserId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.getCustomerCollectionsIdAsync'); - } - - static getAppPurchaseCampaignIdAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.getAppPurchaseCampaignIdAsync'); - } - - static loadListingInformationByProductIdsAsync(productIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.loadListingInformationByProductIdsAsync'); - } - - static loadListingInformationByKeywordsAsync(keywords: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.loadListingInformationByKeywordsAsync'); - } - - static reportProductFulfillment(productId: string): void { - console.warn('shimmed function CurrentApp.reportProductFulfillment'); - } - - static reportConsumableFulfillmentAsync(productId: string, transactionId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.reportConsumableFulfillmentAsync'); - } - - static requestProductPurchaseAsync(productId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.requestProductPurchaseAsync'); - } - - static requestProductPurchaseAsync_1(productId: string, offerId: string, displayProperties: ProductPurchaseDisplayProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.requestProductPurchaseAsync_1'); - } - - static getUnfulfilledConsumablesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.getUnfulfilledConsumablesAsync'); - } - - static requestAppPurchaseAsync(includeReceipt: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.requestAppPurchaseAsync'); - } - - static requestProductPurchaseAsync_2(productId: string, includeReceipt: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.requestProductPurchaseAsync_2'); - } - - static loadListingInformationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.loadListingInformationAsync'); - } - - static getAppReceiptAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.getAppReceiptAsync'); - } - - static getProductReceiptAsync(productId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentApp.getProductReceiptAsync'); - } - - } - export class CurrentAppSimulator { - static appId: string = '00000000-0000-0000-0000-000000000000'; - static licenseInformation: LicenseInformation = null; - static linkUri: Foundation.Uri = new Uri('http://apps.microsoft.com/webpdp/app/00000000-0000-0000-0000-000000000000'); - - static getAppPurchaseCampaignIdAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.getAppPurchaseCampaignIdAsync'); - } - - static loadListingInformationByProductIdsAsync(productIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.loadListingInformationByProductIdsAsync'); - } - - static loadListingInformationByKeywordsAsync(keywords: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.loadListingInformationByKeywordsAsync'); - } - - static reportConsumableFulfillmentAsync(productId: string, transactionId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.reportConsumableFulfillmentAsync'); - } - - static requestProductPurchaseAsync(productId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.requestProductPurchaseAsync'); - } - - static requestProductPurchaseAsync_1(productId: string, offerId: string, displayProperties: ProductPurchaseDisplayProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.requestProductPurchaseAsync_1'); - } - - static getUnfulfilledConsumablesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.getUnfulfilledConsumablesAsync'); - } - - static requestAppPurchaseAsync(includeReceipt: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.requestAppPurchaseAsync'); - } - - static requestProductPurchaseAsync_2(productId: string, includeReceipt: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.requestProductPurchaseAsync_2'); - } - - static loadListingInformationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.loadListingInformationAsync'); - } - - static getAppReceiptAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.getAppReceiptAsync'); - } - - static getProductReceiptAsync(productId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CurrentAppSimulator.getProductReceiptAsync'); - } - - static reloadSimulatorAsync(simulatorSettingsFile: Storage.StorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function CurrentAppSimulator.reloadSimulatorAsync'); - } - - } - export enum FulfillmentResult { - succeeded, - nothingToFulfill, - purchasePending, - purchaseReverted, - serverError, - } - export type LicenseChangedEventHandler = () => void; - export class LicenseInformation implements ILicenseInformation { - expirationDate: Date; - isActive: Boolean; - isTrial: Boolean; - productLicenses: string[]; - - addEventListener(name: string, handler: Function) { - console.warn(`LicenseInformation::addEventListener: ${name}`); - switch (name) { - case "licensechanged": // LicenseChangedEventHandler - break; - } - - } - } - export namespace LicenseManagement { - export class LicenseManager { - static refreshLicensesAsync(refreshOption: LicenseRefreshOption): Foundation.IAsyncAction { - throw new Error('shimmed function LicenseManager.refreshLicensesAsync'); - } - - static addLicenseAsync(license: Storage.Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function LicenseManager.addLicenseAsync'); - } - - static getSatisfactionInfosAsync(contentIds: Foundation.Collections.IIterable, keyIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function LicenseManager.getSatisfactionInfosAsync'); - } - - } - export enum LicenseRefreshOption { - runningLicenses, - allLicenses, - } - export class LicenseSatisfactionInfo implements ILicenseSatisfactionInfo { - isSatisfied: Boolean; - satisfiedByDevice: Boolean; - satisfiedByInstallMedia: Boolean; - satisfiedByOpenLicense: Boolean; - satisfiedByPass: Boolean; - satisfiedBySignedInUser: Boolean; - satisfiedByTrial: Boolean; - - } - export class LicenseSatisfactionResult implements ILicenseSatisfactionResult { - extendedError: number; - licenseSatisfactionInfos: string[]; - - } - } - export class ListingInformation implements IListingInformation, IListingInformation2 { - ageRating: number; - currentMarket: string; - description: string; - formattedPrice: string; - name: string; - productListings: string[]; - currencyCode: string; - formattedBasePrice: string; - isOnSale: Boolean; - saleEndDate: Date; - - } - export namespace Preview { - export enum DeliveryOptimizationDownloadMode { - simple, - httpOnly, - lan, - group, - internet, - bypass, - } - export enum DeliveryOptimizationDownloadModeSource { - default, - policy, - } - export class DeliveryOptimizationSettings implements IDeliveryOptimizationSettings { - downloadMode: DeliveryOptimizationDownloadMode; - downloadModeSource: DeliveryOptimizationDownloadModeSource; - - static getCurrentSettings(): DeliveryOptimizationSettings { - throw new Error('shimmed function DeliveryOptimizationSettings.getCurrentSettings'); - } - - } - export namespace InstallControl { - export enum AppInstallationToastNotificationMode { - default, - toast, - toastWithoutPopup, - noToast, - } - export class AppInstallItem implements IAppInstallItem, IAppInstallItem2, IAppInstallItem3, IAppInstallItem4, IAppInstallItem5 { - installType: AppInstallType; - isUserInitiated: Boolean; - packageFamilyName: string; - productId: string; - children: AppInstallItem[]; - itemOperationsMightAffectOtherItems: Boolean; - launchAfterInstall: Boolean; - pinToTaskbarAfterInstall: Boolean; - pinToStartAfterInstall: Boolean; - pinToDesktopAfterInstall: Boolean; - installInProgressToastNotificationMode: AppInstallationToastNotificationMode; - completedInstallToastNotificationMode: AppInstallationToastNotificationMode; - - getCurrentStatus(): AppInstallStatus { - throw new Error('shimmed function AppInstallItem.getCurrentStatus'); - } - - cancel(): void { - console.warn('shimmed function AppInstallItem.cancel'); - } - - pause(): void { - console.warn('shimmed function AppInstallItem.pause'); - } - - restart(): void { - console.warn('shimmed function AppInstallItem.restart'); - } - - cancel_1(correlationVector: string): void { - console.warn('shimmed function AppInstallItem.cancel_1'); - } - - pause_1(correlationVector: string): void { - console.warn('shimmed function AppInstallItem.pause_1'); - } - - restart_1(correlationVector: string): void { - console.warn('shimmed function AppInstallItem.restart_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppInstallItem::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppInstallManager implements IAppInstallManager, IAppInstallManager2, IAppInstallManager3, IAppInstallManager4, IAppInstallManager5, IAppInstallManager6, IAppInstallManager7 { - // constructor(); - autoUpdateSetting: AutoUpdateSetting; - acquisitionIdentity: string; - appInstallItems: AppInstallItem[]; - appInstallItemsWithGroupSupport: AppInstallItem[]; - canInstallForAllUsers: Boolean; - - cancel(productId: string): void { - console.warn('shimmed function AppInstallManager.cancel'); - } - - pause(productId: string): void { - console.warn('shimmed function AppInstallManager.pause'); - } - - restart(productId: string): void { - console.warn('shimmed function AppInstallManager.restart'); - } - - getIsApplicableAsync(productId: string, skuId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getIsApplicableAsync'); - } - - startAppInstallAsync(productId: string, skuId: string, repair: Boolean, forceUseOfNonRemovableStorage: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.startAppInstallAsync'); - } - - updateAppByPackageFamilyNameAsync(packageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.updateAppByPackageFamilyNameAsync'); - } - - searchForUpdatesAsync(productId: string, skuId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForUpdatesAsync'); - } - - searchForAllUpdatesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForAllUpdatesAsync'); - } - - isStoreBlockedByPolicyAsync(storeClientName: string, storeClientPublisher: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.isStoreBlockedByPolicyAsync'); - } - - getIsAppAllowedToInstallAsync(productId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getIsAppAllowedToInstallAsync'); - } - - startAppInstallAsync_1(productId: string, skuId: string, repair: Boolean, forceUseOfNonRemovableStorage: Boolean, catalogId: string, bundleId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.startAppInstallAsync_1'); - } - - updateAppByPackageFamilyNameAsync_1(packageFamilyName: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.updateAppByPackageFamilyNameAsync_1'); - } - - searchForUpdatesAsync_1(productId: string, skuId: string, catalogId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForUpdatesAsync_1'); - } - - searchForAllUpdatesAsync_1(correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForAllUpdatesAsync_1'); - } - - getIsAppAllowedToInstallAsync_1(productId: string, skuId: string, catalogId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getIsAppAllowedToInstallAsync_1'); - } - - cancel_1(productId: string, correlationVector: string): void { - console.warn('shimmed function AppInstallManager.cancel_1'); - } - - pause_1(productId: string, correlationVector: string): void { - console.warn('shimmed function AppInstallManager.pause_1'); - } - - restart_1(productId: string, correlationVector: string): void { - console.warn('shimmed function AppInstallManager.restart_1'); - } - - startProductInstallAsync(productId: string, catalogId: string, flightId: string, clientId: string, repair: Boolean, forceUseOfNonRemovableStorage: Boolean, correlationVector: string, targetVolume: Management.Deployment.PackageVolume): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.startProductInstallAsync'); - } - - startProductInstallForUserAsync(user: System.User, productId: string, catalogId: string, flightId: string, clientId: string, repair: Boolean, forceUseOfNonRemovableStorage: Boolean, correlationVector: string, targetVolume: Management.Deployment.PackageVolume): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.startProductInstallForUserAsync'); - } - - updateAppByPackageFamilyNameForUserAsync(user: System.User, packageFamilyName: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.updateAppByPackageFamilyNameForUserAsync'); - } - - searchForUpdatesForUserAsync(user: System.User, productId: string, skuId: string, catalogId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForUpdatesForUserAsync'); - } - - searchForAllUpdatesForUserAsync(user: System.User, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForAllUpdatesForUserAsync'); - } - - getIsAppAllowedToInstallForUserAsync(user: System.User, productId: string, skuId: string, catalogId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getIsAppAllowedToInstallForUserAsync'); - } - - getIsApplicableForUserAsync(user: System.User, productId: string, skuId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getIsApplicableForUserAsync'); - } - - moveToFrontOfDownloadQueue(productId: string, correlationVector: string): void { - console.warn('shimmed function AppInstallManager.moveToFrontOfDownloadQueue'); - } - - getFreeUserEntitlementAsync(storeId: string, campaignId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getFreeUserEntitlementAsync'); - } - - getFreeUserEntitlementForUserAsync(user: System.User, storeId: string, campaignId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getFreeUserEntitlementForUserAsync'); - } - - getFreeDeviceEntitlementAsync(storeId: string, campaignId: string, correlationVector: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getFreeDeviceEntitlementAsync'); - } - - searchForAllUpdatesAsync_2(correlationVector: string, clientId: string, updateOptions: AppUpdateOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForAllUpdatesAsync_2'); - } - - searchForAllUpdatesForUserAsync_1(user: System.User, correlationVector: string, clientId: string, updateOptions: AppUpdateOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForAllUpdatesForUserAsync_1'); - } - - searchForUpdatesAsync_2(productId: string, skuId: string, correlationVector: string, clientId: string, updateOptions: AppUpdateOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForUpdatesAsync_2'); - } - - searchForUpdatesForUserAsync_1(user: System.User, productId: string, skuId: string, correlationVector: string, clientId: string, updateOptions: AppUpdateOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.searchForUpdatesForUserAsync_1'); - } - - startProductInstallAsync_1(productId: string, flightId: string, clientId: string, correlationVector: string, installOptions: AppInstallOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.startProductInstallAsync_1'); - } - - startProductInstallForUserAsync_1(user: System.User, productId: string, flightId: string, clientId: string, correlationVector: string, installOptions: AppInstallOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.startProductInstallForUserAsync_1'); - } - - getIsPackageIdentityAllowedToInstallAsync(correlationVector: string, packageIdentityName: string, publisherCertificateName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getIsPackageIdentityAllowedToInstallAsync'); - } - - getIsPackageIdentityAllowedToInstallForUserAsync(user: System.User, correlationVector: string, packageIdentityName: string, publisherCertificateName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppInstallManager.getIsPackageIdentityAllowedToInstallForUserAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppInstallManager::addEventListener: ${name}`); - switch (name) { - case "itemcompleted": // Foundation.TypedEventHandler - case "itemstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppInstallManagerItemEventArgs implements IAppInstallManagerItemEventArgs { - item: AppInstallItem; - - } - export class AppInstallOptions implements IAppInstallOptions, IAppInstallOptions2 { - // constructor(); - targetVolume: Management.Deployment.PackageVolume; - repair: Boolean = false; - launchAfterInstall: Boolean = false; - forceUseOfNonRemovableStorage: Boolean = false; - catalogId: string = ''; - allowForcedAppRestart: Boolean = false; - stageButDoNotInstall: Boolean = false; - pinToTaskbarAfterInstall: Boolean = false; - pinToStartAfterInstall: Boolean = false; - pinToDesktopAfterInstall: Boolean = false; - installInProgressToastNotificationMode: AppInstallationToastNotificationMode = AppInstallationToastNotificationMode.default; - installForAllUsers: Boolean = false; - extendedCampaignId: string = ''; - completedInstallToastNotificationMode: AppInstallationToastNotificationMode = AppInstallationToastNotificationMode.default; - campaignId: string = ''; - - } - export enum AppInstallState { - pending, - starting, - acquiringLicense, - downloading, - restoringData, - installing, - completed, - canceled, - paused, - error, - pausedLowBattery, - pausedWiFiRecommended, - pausedWiFiRequired, - readyToDownload, - } - export class AppInstallStatus implements IAppInstallStatus, IAppInstallStatus2, IAppInstallStatus3 { - bytesDownloaded: number; - downloadSizeInBytes: number; - errorCode: number; - installState: AppInstallState; - percentComplete: number; - readyForLaunch: Boolean; - user: System.User; - isStaged: Boolean; - - } - export enum AppInstallType { - install, - update, - repair, - } - export class AppUpdateOptions implements IAppUpdateOptions, IAppUpdateOptions2 { - // constructor(); - catalogId: string = ''; - allowForcedAppRestart: Boolean = false; - automaticallyDownloadAndInstallUpdateIfFound: Boolean = true; - - } - export enum AutoUpdateSetting { - disabled, - enabled, - disabledByPolicy, - enabledByPolicy, - } - export class GetEntitlementResult implements IGetEntitlementResult { - status: GetEntitlementStatus; - - } - export enum GetEntitlementStatus { - succeeded, - noStoreAccount, - networkError, - serverError, - } - } - export class StoreConfiguration { - static hardwareManufacturerInfo: StoreHardwareManufacturerInfo; - static purchasePromptingPolicy: number | null; - - static isPinToDesktopSupported(): Boolean { - throw new Error('shimmed function StoreConfiguration.isPinToDesktopSupported'); - } - - static isPinToTaskbarSupported(): Boolean { - throw new Error('shimmed function StoreConfiguration.isPinToTaskbarSupported'); - } - - static isPinToStartSupported(): Boolean { - throw new Error('shimmed function StoreConfiguration.isPinToStartSupported'); - } - - static pinToDesktop(appPackageFamilyName: string): void { - console.warn('shimmed function StoreConfiguration.pinToDesktop'); - } - - static pinToDesktopForUser(user: System.User, appPackageFamilyName: string): void { - console.warn('shimmed function StoreConfiguration.pinToDesktopForUser'); - } - - static getStoreWebAccountId(): string { - throw new Error('shimmed function StoreConfiguration.getStoreWebAccountId'); - } - - static getStoreWebAccountIdForUser(user: System.User): string { - throw new Error('shimmed function StoreConfiguration.getStoreWebAccountIdForUser'); - } - - static setEnterpriseStoreWebAccountId(webAccountId: string): void { - console.warn('shimmed function StoreConfiguration.setEnterpriseStoreWebAccountId'); - } - - static setEnterpriseStoreWebAccountIdForUser(user: System.User, webAccountId: string): void { - console.warn('shimmed function StoreConfiguration.setEnterpriseStoreWebAccountIdForUser'); - } - - static getEnterpriseStoreWebAccountId(): string { - throw new Error('shimmed function StoreConfiguration.getEnterpriseStoreWebAccountId'); - } - - static getEnterpriseStoreWebAccountIdForUser(user: System.User): string { - throw new Error('shimmed function StoreConfiguration.getEnterpriseStoreWebAccountIdForUser'); - } - - static shouldRestrictToEnterpriseStoreOnly(): Boolean { - throw new Error('shimmed function StoreConfiguration.shouldRestrictToEnterpriseStoreOnly'); - } - - static shouldRestrictToEnterpriseStoreOnlyForUser(user: System.User): Boolean { - throw new Error('shimmed function StoreConfiguration.shouldRestrictToEnterpriseStoreOnlyForUser'); - } - - static hasStoreWebAccount(): Boolean { - throw new Error('shimmed function StoreConfiguration.hasStoreWebAccount'); - } - - static hasStoreWebAccountForUser(user: System.User): Boolean { - throw new Error('shimmed function StoreConfiguration.hasStoreWebAccountForUser'); - } - - static getStoreLogDataAsync(options: StoreLogOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreConfiguration.getStoreLogDataAsync'); - } - - static setStoreWebAccountIdForUser(user: System.User, webAccountId: string): void { - console.warn('shimmed function StoreConfiguration.setStoreWebAccountIdForUser'); - } - - static isStoreWebAccountIdForUser(user: System.User, webAccountId: string): Boolean { - throw new Error('shimmed function StoreConfiguration.isStoreWebAccountIdForUser'); - } - - static getPurchasePromptingPolicyForUser(user: System.User): number | null { - throw new Error('shimmed function StoreConfiguration.getPurchasePromptingPolicyForUser'); - } - - static setPurchasePromptingPolicyForUser(user: System.User, value: number | null): void { - console.warn('shimmed function StoreConfiguration.setPurchasePromptingPolicyForUser'); - } - - static setSystemConfiguration(catalogHardwareManufacturerId: string, catalogStoreContentModifierId: string, systemConfigurationExpiration: Date, catalogHardwareDescriptor: string): void { - console.warn('shimmed function StoreConfiguration.setSystemConfiguration'); - } - - static setMobileOperatorConfiguration(mobileOperatorId: string, appDownloadLimitInMegabytes: number, updateDownloadLimitInMegabytes: number): void { - console.warn('shimmed function StoreConfiguration.setMobileOperatorConfiguration'); - } - - static setStoreWebAccountId(webAccountId: string): void { - console.warn('shimmed function StoreConfiguration.setStoreWebAccountId'); - } - - static isStoreWebAccountId(webAccountId: string): Boolean { - throw new Error('shimmed function StoreConfiguration.isStoreWebAccountId'); - } - - static filterUnsupportedSystemFeaturesAsync(systemFeatures: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreConfiguration.filterUnsupportedSystemFeaturesAsync'); - } - - } - export class StoreHardwareManufacturerInfo implements IStoreHardwareManufacturerInfo { - hardwareManufacturerId: string; - manufacturerName: string; - modelName: string; - storeContentModifierId: string; - - } - export enum StoreLogOptions { - none, - tryElevate, - } - export class StorePreview { - static requestProductPurchaseByProductIdAndSkuIdAsync(productId: string, skuId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorePreview.requestProductPurchaseByProductIdAndSkuIdAsync'); - } - - static loadAddOnProductInfosAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorePreview.loadAddOnProductInfosAsync'); - } - - } - export class StorePreviewProductInfo implements IStorePreviewProductInfo { - description: string; - productId: string; - productType: string; - skuInfoList: StorePreviewSkuInfo[]; - title: string; - - } - export enum StorePreviewProductPurchaseStatus { - succeeded, - alreadyPurchased, - notFulfilled, - notPurchased, - } - export class StorePreviewPurchaseResults implements IStorePreviewPurchaseResults { - productPurchaseStatus: StorePreviewProductPurchaseStatus; - - } - export class StorePreviewSkuInfo implements IStorePreviewSkuInfo { - currencyCode: string; - customDeveloperData: string; - description: string; - extendedData: string; - formattedListPrice: string; - productId: string; - skuId: string; - skuType: string; - title: string; - - } - export enum StoreSystemFeature { - architectureX86, - architectureX64, - architectureArm, - directX9, - directX10, - directX11, - d3D12HardwareFL11, - d3D12HardwareFL12, - memory300MB, - memory750MB, - memory1GB, - memory2GB, - cameraFront, - cameraRear, - gyroscope, - hover, - magnetometer, - nfc, - resolution720P, - resolutionWvga, - resolutionWvgaOr720P, - resolutionWxga, - resolutionWvgaOrWxga, - resolutionWxgaOr720P, - memory4GB, - memory6GB, - memory8GB, - memory12GB, - memory16GB, - memory20GB, - videoMemory2GB, - videoMemory4GB, - videoMemory6GB, - videoMemory1GB, - architectureArm64, - } - export class WebAuthenticationCoreManagerHelper { - static requestTokenWithUIElementHostingAsync(request: Security.Authentication.Web.Core.WebTokenRequest, uiElement: UI.Xaml.UIElement): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManagerHelper.requestTokenWithUIElementHostingAsync'); - } - - static requestTokenWithUIElementHostingAsync_1(request: Security.Authentication.Web.Core.WebTokenRequest, webAccount: Security.Credentials.WebAccount, uiElement: UI.Xaml.UIElement): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManagerHelper.requestTokenWithUIElementHostingAsync_1'); - } - - } - } - export class ProductLicense implements IProductLicense, IProductLicenseWithFulfillment { - expirationDate: Date; - isActive: Boolean; - productId: string; - isConsumable: Boolean; - - } - export class ProductListing implements IProductListing, IProductListingWithMetadata, IProductListing2 { - formattedPrice: string; - name: string; - productId: string; - formattedBasePrice: string; - isOnSale: Boolean; - saleEndDate: Date; - currencyCode: string; - description: string; - imageUri: Foundation.Uri; - keywords: Foundation.Collections.IIterable; - tag: string; - productType: ProductType; - - } - export class ProductPurchaseDisplayProperties implements IProductPurchaseDisplayProperties { - // constructor(name: string); - // constructor(); - constructor(name: string) {} - - name: string = ''; - image: Foundation.Uri; - description: string = ''; - - } - export enum ProductPurchaseStatus { - succeeded, - alreadyPurchased, - notFulfilled, - notPurchased, - } - export enum ProductType { - unknown, - durable, - consumable, - } - export class PurchaseResults implements IPurchaseResults { - offerId: string; - receiptXml: string; - status: ProductPurchaseStatus; - transactionId: string; - - } - export class UnfulfilledConsumable implements IUnfulfilledConsumable { - offerId: string; - productId: string; - transactionId: string; - - } - } - export class SuspendingDeferral implements ISuspendingDeferral { - complete(): void { - console.warn('shimmed function SuspendingDeferral.complete'); - } - - } - export class SuspendingEventArgs implements ISuspendingEventArgs { - suspendingOperation: SuspendingOperation; - - } - export class SuspendingOperation implements ISuspendingOperation { - deadline: Date; - - getDeferral(): SuspendingDeferral { - throw new Error('shimmed function SuspendingOperation.getDeferral'); - } - - } - export namespace UserActivities { - export namespace Core { - export class CoreUserActivityManager { - static createUserActivitySessionInBackground(activity: UserActivity): UserActivitySession { - throw new Error('shimmed function CoreUserActivityManager.createUserActivitySessionInBackground'); - } - - static deleteUserActivitySessionsInTimeRangeAsync(channel: UserActivityChannel, startTime: Date, endTime: Date): Foundation.IAsyncAction { - throw new Error('shimmed function CoreUserActivityManager.deleteUserActivitySessionsInTimeRangeAsync'); - } - - } - } - export interface IUserActivityContentInfo { - toJson(): string; - } - export class UserActivity implements IUserActivity, IUserActivity2, IUserActivity3 { - // constructor(activityId: string); - constructor(activityId: string) {} - - fallbackUri: Foundation.Uri; - contentUri: Foundation.Uri; - contentType: string; - contentInfo: IUserActivityContentInfo; - activationUri: Foundation.Uri; - activityId: string; - state: UserActivityState; - visualElements: UserActivityVisualElements; - isRoamable: Boolean; - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserActivity.saveAsync'); - } - - createSession(): UserActivitySession { - throw new Error('shimmed function UserActivity.createSession'); - } - - toJson(): string { - throw new Error('shimmed function UserActivity.toJson'); - } - - static tryParseFromJson(json: string): UserActivity { - throw new Error('shimmed function UserActivity.tryParseFromJson'); - } - - static tryParseFromJsonArray(json: string): UserActivity[] { - throw new Error('shimmed function UserActivity.tryParseFromJsonArray'); - } - - static toJsonArray(activities: Foundation.Collections.IIterable): string { - throw new Error('shimmed function UserActivity.toJsonArray'); - } - - } - export class UserActivityAttribution implements IUserActivityAttribution { - // constructor(iconUri: Foundation.Uri); - // constructor(); - constructor(iconUri: Foundation.Uri) {} - - iconUri: Foundation.Uri; - alternateText: string = ''; - addImageQuery: Boolean = false; - - } - export class UserActivityChannel implements IUserActivityChannel, IUserActivityChannel2 { - getOrCreateUserActivityAsync(activityId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserActivityChannel.getOrCreateUserActivityAsync'); - } - - deleteActivityAsync(activityId: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserActivityChannel.deleteActivityAsync'); - } - - deleteAllActivitiesAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserActivityChannel.deleteAllActivitiesAsync'); - } - - getRecentUserActivitiesAsync(maxUniqueActivities: number): Foundation.IAsyncOperation { - throw new Error('shimmed function UserActivityChannel.getRecentUserActivitiesAsync'); - } - - getSessionHistoryItemsForUserActivityAsync(activityId: string, startTime: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function UserActivityChannel.getSessionHistoryItemsForUserActivityAsync'); - } - - static getForUser(user: System.User): UserActivityChannel { - throw new Error('shimmed function UserActivityChannel.getForUser'); - } - - static disableAutoSessionCreation(): void { - console.warn('shimmed function UserActivityChannel.disableAutoSessionCreation'); - } - - static tryGetForWebAccount(account: Security.Credentials.WebAccount): UserActivityChannel { - throw new Error('shimmed function UserActivityChannel.tryGetForWebAccount'); - } - - static getDefault(): UserActivityChannel { - throw new Error('shimmed function UserActivityChannel.getDefault'); - } - - } - export class UserActivityContentInfo implements IUserActivityContentInfo { - toJson(): string { - throw new Error('shimmed function UserActivityContentInfo.toJson'); - } - - static fromJson(value: string): UserActivityContentInfo { - throw new Error('shimmed function UserActivityContentInfo.fromJson'); - } - - } - export class UserActivityRequest implements IUserActivityRequest { - setUserActivity(activity: UserActivity): void { - console.warn('shimmed function UserActivityRequest.setUserActivity'); - } - - } - export class UserActivityRequestedEventArgs implements IUserActivityRequestedEventArgs { - request: UserActivityRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserActivityRequestedEventArgs.getDeferral'); - } - - } - export class UserActivityRequestManager implements IUserActivityRequestManager { - static getForCurrentView(): UserActivityRequestManager { - throw new Error('shimmed function UserActivityRequestManager.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserActivityRequestManager::addEventListener: ${name}`); - switch (name) { - case "useractivityrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class UserActivitySession implements IUserActivitySession, Foundation.IClosable { - activityId: string; - - close(): void { - console.warn('shimmed function UserActivitySession.close'); - } - - } - export class UserActivitySessionHistoryItem implements IUserActivitySessionHistoryItem { - endTime: Date | null; - startTime: Date; - userActivity: UserActivity; - - } - export enum UserActivityState { - new, - published, - } - export class UserActivityVisualElements implements IUserActivityVisualElements, IUserActivityVisualElements2 { - displayText: string; - description: string; - content: UI.Shell.IAdaptiveCard; - backgroundColor: UI.Color; - attribution: UserActivityAttribution; - attributionDisplayText: string; - - } - } - export namespace UserDataAccounts { - export namespace Provider { - export interface IUserDataAccountProviderOperation { - kind: UserDataAccountProviderOperationKind; - } - export class UserDataAccountPartnerAccountInfo implements IUserDataAccountPartnerAccountInfo { - accountKind: UserDataAccountProviderPartnerAccountKind; - displayName: string; - priority: number; - - } - export class UserDataAccountProviderAddAccountOperation implements IUserDataAccountProviderAddAccountOperation, IUserDataAccountProviderOperation { - contentKinds: UserDataAccountContentKinds; - partnerAccountInfos: UserDataAccountPartnerAccountInfo[]; - kind: UserDataAccountProviderOperationKind; - - reportCompleted(userDataAccountId: string): void { - console.warn('shimmed function UserDataAccountProviderAddAccountOperation.reportCompleted'); - } - - } - export enum UserDataAccountProviderOperationKind { - addAccount, - settings, - resolveErrors, - } - export enum UserDataAccountProviderPartnerAccountKind { - exchange, - popOrImap, - } - export class UserDataAccountProviderResolveErrorsOperation implements IUserDataAccountProviderResolveErrorsOperation, IUserDataAccountProviderOperation { - kind: UserDataAccountProviderOperationKind; - userDataAccountId: string; - - reportCompleted(): void { - console.warn('shimmed function UserDataAccountProviderResolveErrorsOperation.reportCompleted'); - } - - } - export class UserDataAccountProviderSettingsOperation implements IUserDataAccountProviderSettingsOperation, IUserDataAccountProviderOperation { - kind: UserDataAccountProviderOperationKind; - userDataAccountId: string; - - reportCompleted(): void { - console.warn('shimmed function UserDataAccountProviderSettingsOperation.reportCompleted'); - } - - } - } - export namespace SystemAccess { - export enum DeviceAccountAuthenticationType { - basic, - oauth, - singleSignOn, - } - export class DeviceAccountConfiguration implements IDeviceAccountConfiguration, IDeviceAccountConfiguration2 { - // constructor(); - emailAddress: string = ''; - domain: string = ''; - deviceAccountTypeId: string = ''; - outgoingServerAddress: string = ''; - contactsSyncEnabled: Boolean = false; - calendarSyncEnabled: Boolean = false; - accountName: string = ''; - incomingServerUsername: string = ''; - incomingServerRequiresSsl: Boolean = true; - incomingServerPort: number = 0; - incomingServerAddress: string = ''; - emailSyncEnabled: Boolean = false; - serverType: DeviceAccountServerType = DeviceAccountServerType.exchange; - outgoingServerUsername: string = ''; - outgoingServerRequiresSsl: Boolean = true; - outgoingServerPort: number = 0; - accountIconId: DeviceAccountIconId = DeviceAccountIconId.generic; - calDavServerUrl: Foundation.Uri; - calDavRequiresSsl: Boolean = true; - autoSelectAuthenticationCertificate: Boolean = true; - authenticationType: DeviceAccountAuthenticationType = DeviceAccountAuthenticationType.basic; - authenticationCertificateId: string = ''; - isOutgoingServerAuthenticationEnabled: Boolean = false; - isClientAuthenticationCertificateRequired: Boolean = false; - incomingServerCredential: Security.Credentials.PasswordCredential; - isOutgoingServerAuthenticationRequired: Boolean = false; - cardDavSyncScheduleKind: DeviceAccountSyncScheduleKind = DeviceAccountSyncScheduleKind.every2Hours; - alwaysDownloadFullMessage: Boolean = false; - cardDavServerUrl: Foundation.Uri; - cardDavRequiresSsl: Boolean = true; - calDavSyncScheduleKind: DeviceAccountSyncScheduleKind = DeviceAccountSyncScheduleKind.every2Hours; - incomingServerCertificateHash: string = ''; - wasOutgoingServerCertificateHashConfirmed: Boolean = false; - wasModifiedByUser: Boolean = false; - syncScheduleKind: DeviceAccountSyncScheduleKind = DeviceAccountSyncScheduleKind.asItemsArrive; - ssoAccountId: string = ''; - wasIncomingServerCertificateHashConfirmed: Boolean = false; - oauthRefreshToken: string = ''; - isExternallyManaged: Boolean = false; - mailAgeFilter: DeviceAccountMailAgeFilter = DeviceAccountMailAgeFilter.last7Days; - isSyncScheduleManagedBySystem: Boolean = true; - outgoingServerCertificateHash: string = ''; - outgoingServerCredential: Security.Credentials.PasswordCredential; - doesPolicyAllowMailSync: Boolean = true; - isSsoAuthenticationSupported: Boolean = false; - - } - export enum DeviceAccountIconId { - exchange, - msa, - outlook, - generic, - } - export enum DeviceAccountMailAgeFilter { - all, - last1Day, - last3Days, - last7Days, - last14Days, - last30Days, - last90Days, - } - export enum DeviceAccountServerType { - exchange, - pop, - imap, - } - export enum DeviceAccountSyncScheduleKind { - manual, - every15Minutes, - every30Minutes, - every60Minutes, - every2Hours, - daily, - asItemsArrive, - } - export class UserDataAccountSystemAccessManager { - static suppressLocalAccountWithAccountAsync(userDataAccountId: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataAccountSystemAccessManager.suppressLocalAccountWithAccountAsync'); - } - - static createDeviceAccountAsync(account: DeviceAccountConfiguration): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountSystemAccessManager.createDeviceAccountAsync'); - } - - static deleteDeviceAccountAsync(accountId: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataAccountSystemAccessManager.deleteDeviceAccountAsync'); - } - - static getDeviceAccountConfigurationAsync(accountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountSystemAccessManager.getDeviceAccountConfigurationAsync'); - } - - static addAndShowDeviceAccountsAsync(accounts: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountSystemAccessManager.addAndShowDeviceAccountsAsync'); - } - - } - } - export class UserDataAccount implements IUserDataAccount, IUserDataAccount2, IUserDataAccount3, IUserDataAccount4 { - userDisplayName: string; - otherAppReadAccess: UserDataAccountOtherAppReadAccess; - icon: Storage.Streams.IRandomAccessStreamReference; - deviceAccountTypeId: string; - id: string; - packageFamilyName: string; - isProtectedUnderLock: Boolean; - enterpriseId: string; - displayName: string; - explictReadAccessPackageFamilyNames: string[]; - canShowCreateContactGroup: Boolean; - providerProperties: Foundation.Collections.IPropertySet; - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataAccount.saveAsync'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataAccount.deleteAsync'); - } - - findAppointmentCalendarsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccount.findAppointmentCalendarsAsync'); - } - - findEmailMailboxesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccount.findEmailMailboxesAsync'); - } - - findContactListsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccount.findContactListsAsync'); - } - - findContactAnnotationListsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccount.findContactAnnotationListsAsync'); - } - - findUserDataTaskListsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccount.findUserDataTaskListsAsync'); - } - - findContactGroupsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccount.findContactGroupsAsync'); - } - - tryShowCreateContactGroupAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccount.tryShowCreateContactGroupAsync'); - } - - } - export enum UserDataAccountContentKinds { - email = 1, - contact, - appointment = 4, - } - export class UserDataAccountManager { - static getForUser(user: System.User): UserDataAccountManagerForUser { - throw new Error('shimmed function UserDataAccountManager.getForUser'); - } - - static requestStoreAsync(storeAccessType: UserDataAccountStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountManager.requestStoreAsync'); - } - - static showAddAccountAsync(contentKinds: UserDataAccountContentKinds): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountManager.showAddAccountAsync'); - } - - static showAccountSettingsAsync(id: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataAccountManager.showAccountSettingsAsync'); - } - - static showAccountErrorResolverAsync(id: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataAccountManager.showAccountErrorResolverAsync'); - } - - } - export class UserDataAccountManagerForUser implements IUserDataAccountManagerForUser { - user: System.User; - - requestStoreAsync(storeAccessType: UserDataAccountStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountManagerForUser.requestStoreAsync'); - } - - } - export enum UserDataAccountOtherAppReadAccess { - systemOnly, - full, - none, - } - export class UserDataAccountStore implements IUserDataAccountStore, IUserDataAccountStore2, IUserDataAccountStore3 { - findAccountsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountStore.findAccountsAsync'); - } - - getAccountAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountStore.getAccountAsync'); - } - - createAccountAsync(userDisplayName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountStore.createAccountAsync'); - } - - createAccountAsync_1(userDisplayName: string, packageRelativeAppId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountStore.createAccountAsync_1'); - } - - createAccountAsync_2(userDisplayName: string, packageRelativeAppId: string, enterpriseId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataAccountStore.createAccountAsync_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserDataAccountStore::addEventListener: ${name}`); - switch (name) { - case "storechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum UserDataAccountStoreAccessType { - allAccountsReadOnly, - appAccountsReadWrite, - } - export class UserDataAccountStoreChangedEventArgs implements IUserDataAccountStoreChangedEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserDataAccountStoreChangedEventArgs.getDeferral'); - } - - } - } - export namespace UserDataTasks { - export namespace DataProvider { - export class UserDataTaskDataProviderConnection implements IUserDataTaskDataProviderConnection { - start(): void { - console.warn('shimmed function UserDataTaskDataProviderConnection.start'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserDataTaskDataProviderConnection::addEventListener: ${name}`); - switch (name) { - case "completetaskrequested": // Foundation.TypedEventHandler - case "createorupdatetaskrequested": // Foundation.TypedEventHandler - case "deletetaskrequested": // Foundation.TypedEventHandler - case "skipoccurrencerequested": // Foundation.TypedEventHandler - case "syncrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class UserDataTaskDataProviderTriggerDetails implements IUserDataTaskDataProviderTriggerDetails { - connection: UserDataTaskDataProviderConnection; - - } - export class UserDataTaskListCompleteTaskRequest implements IUserDataTaskListCompleteTaskRequest { - taskId: string; - taskListId: string; - - reportCompletedAsync(completedTaskId: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListCompleteTaskRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListCompleteTaskRequest.reportFailedAsync'); - } - - } - export class UserDataTaskListCompleteTaskRequestEventArgs implements IUserDataTaskListCompleteTaskRequestEventArgs { - request: UserDataTaskListCompleteTaskRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserDataTaskListCompleteTaskRequestEventArgs.getDeferral'); - } - - } - export class UserDataTaskListCreateOrUpdateTaskRequest implements IUserDataTaskListCreateOrUpdateTaskRequest { - task: UserDataTask; - taskListId: string; - - reportCompletedAsync(createdOrUpdatedUserDataTask: UserDataTask): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListCreateOrUpdateTaskRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListCreateOrUpdateTaskRequest.reportFailedAsync'); - } - - } - export class UserDataTaskListCreateOrUpdateTaskRequestEventArgs implements IUserDataTaskListCreateOrUpdateTaskRequestEventArgs { - request: UserDataTaskListCreateOrUpdateTaskRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserDataTaskListCreateOrUpdateTaskRequestEventArgs.getDeferral'); - } - - } - export class UserDataTaskListDeleteTaskRequest implements IUserDataTaskListDeleteTaskRequest { - taskId: string; - taskListId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListDeleteTaskRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListDeleteTaskRequest.reportFailedAsync'); - } - - } - export class UserDataTaskListDeleteTaskRequestEventArgs implements IUserDataTaskListDeleteTaskRequestEventArgs { - request: UserDataTaskListDeleteTaskRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserDataTaskListDeleteTaskRequestEventArgs.getDeferral'); - } - - } - export class UserDataTaskListSkipOccurrenceRequest implements IUserDataTaskListSkipOccurrenceRequest { - taskId: string; - taskListId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListSkipOccurrenceRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListSkipOccurrenceRequest.reportFailedAsync'); - } - - } - export class UserDataTaskListSkipOccurrenceRequestEventArgs implements IUserDataTaskListSkipOccurrenceRequestEventArgs { - request: UserDataTaskListSkipOccurrenceRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserDataTaskListSkipOccurrenceRequestEventArgs.getDeferral'); - } - - } - export class UserDataTaskListSyncManagerSyncRequest implements IUserDataTaskListSyncManagerSyncRequest { - taskListId: string; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListSyncManagerSyncRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskListSyncManagerSyncRequest.reportFailedAsync'); - } - - } - export class UserDataTaskListSyncManagerSyncRequestEventArgs implements IUserDataTaskListSyncManagerSyncRequestEventArgs { - request: UserDataTaskListSyncManagerSyncRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserDataTaskListSyncManagerSyncRequestEventArgs.getDeferral'); - } - - } - } - export class UserDataTask implements IUserDataTask { - // constructor(); - regenerationProperties: UserDataTaskRegenerationProperties; - priority: UserDataTaskPriority = UserDataTaskPriority.normal; - completedDate: Date | null; - dueDate: Date | null; - detailsKind: UserDataTaskDetailsKind = UserDataTaskDetailsKind.plainText; - startDate: Date | null; - details: string = ''; - subject: string = ''; - sensitivity: UserDataTaskSensitivity = UserDataTaskSensitivity.public; - remoteId: string = ''; - reminder: Date | null; - recurrenceProperties: UserDataTaskRecurrenceProperties; - id: string = ''; - kind: UserDataTaskKind = UserDataTaskKind.single; - listId: string = ''; - - } - export class UserDataTaskBatch implements IUserDataTaskBatch { - tasks: UserDataTask[]; - - } - export enum UserDataTaskDaysOfWeek { - none, - sunday, - monday, - tuesday = 4, - wednesday = 8, - thursday = 16, - friday = 32, - saturday = 64, - } - export enum UserDataTaskDetailsKind { - plainText, - html, - } - export enum UserDataTaskKind { - single, - recurring, - regenerating, - } - export class UserDataTaskList implements IUserDataTaskList { - otherAppWriteAccess: UserDataTaskListOtherAppWriteAccess; - otherAppReadAccess: UserDataTaskListOtherAppReadAccess; - displayName: string; - id: string; - limitedWriteOperations: UserDataTaskListLimitedWriteOperations; - sourceDisplayName: string; - syncManager: UserDataTaskListSyncManager; - userDataAccountId: string; - - registerSyncManagerAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskList.registerSyncManagerAsync'); - } - - getTaskReader(): UserDataTaskReader { - throw new Error('shimmed function UserDataTaskList.getTaskReader'); - } - - getTaskReader_1(options: UserDataTaskQueryOptions): UserDataTaskReader { - throw new Error('shimmed function UserDataTaskList.getTaskReader_1'); - } - - getTaskAsync(userDataTask: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskList.getTaskAsync'); - } - - saveTaskAsync(userDataTask: UserDataTask): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskList.saveTaskAsync'); - } - - deleteTaskAsync(userDataTaskId: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskList.deleteTaskAsync'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskList.deleteAsync'); - } - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UserDataTaskList.saveAsync'); - } - - } - export class UserDataTaskListLimitedWriteOperations implements IUserDataTaskListLimitedWriteOperations { - tryCompleteTaskAsync(userDataTaskId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskListLimitedWriteOperations.tryCompleteTaskAsync'); - } - - tryCreateOrUpdateTaskAsync(userDataTask: UserDataTask): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskListLimitedWriteOperations.tryCreateOrUpdateTaskAsync'); - } - - tryDeleteTaskAsync(userDataTaskId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskListLimitedWriteOperations.tryDeleteTaskAsync'); - } - - trySkipOccurrenceAsync(userDataTaskId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskListLimitedWriteOperations.trySkipOccurrenceAsync'); - } - - } - export enum UserDataTaskListOtherAppReadAccess { - full, - systemOnly, - none, - } - export enum UserDataTaskListOtherAppWriteAccess { - limited, - none, - } - export class UserDataTaskListSyncManager implements IUserDataTaskListSyncManager { - status: UserDataTaskListSyncStatus; - lastSuccessfulSyncTime: Date; - lastAttemptedSyncTime: Date; - - syncAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskListSyncManager.syncAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserDataTaskListSyncManager::addEventListener: ${name}`); - switch (name) { - case "syncstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum UserDataTaskListSyncStatus { - idle, - syncing, - upToDate, - authenticationError, - policyError, - unknownError, - } - export class UserDataTaskManager implements IUserDataTaskManager { - user: System.User; - - requestStoreAsync(accessType: UserDataTaskStoreAccessType): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskManager.requestStoreAsync'); - } - - static getDefault(): UserDataTaskManager { - throw new Error('shimmed function UserDataTaskManager.getDefault'); - } - - static getForUser(user: System.User): UserDataTaskManager { - throw new Error('shimmed function UserDataTaskManager.getForUser'); - } - - } - export enum UserDataTaskPriority { - normal, - low = -1, - high = 1, - } - export enum UserDataTaskQueryKind { - all, - incomplete, - complete, - } - export class UserDataTaskQueryOptions implements IUserDataTaskQueryOptions { - // constructor(); - sortProperty: UserDataTaskQuerySortProperty = UserDataTaskQuerySortProperty.dueDate; - kind: UserDataTaskQueryKind = UserDataTaskQueryKind.all; - - } - export enum UserDataTaskQuerySortProperty { - dueDate, - } - export class UserDataTaskReader implements IUserDataTaskReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskReader.readBatchAsync'); - } - - } - export class UserDataTaskRecurrenceProperties implements IUserDataTaskRecurrenceProperties { - // constructor(); - weekOfMonth: UserDataTaskWeekOfMonth | null; - until: Date | null; - unit: UserDataTaskRecurrenceUnit = UserDataTaskRecurrenceUnit.weekly; - occurrences: number | null; - month: number | null; - interval: number = 1; - daysOfWeek: UserDataTaskDaysOfWeek | null; - day: number | null; - - } - export enum UserDataTaskRecurrenceUnit { - daily, - weekly, - monthly, - monthlyOnDay, - yearly, - yearlyOnDay, - } - export class UserDataTaskRegenerationProperties implements IUserDataTaskRegenerationProperties { - // constructor(); - until: Date | null; - unit: UserDataTaskRegenerationUnit = UserDataTaskRegenerationUnit.weekly; - occurrences: number | null; - interval: number = 1; - - } - export enum UserDataTaskRegenerationUnit { - daily, - weekly, - monthly, - yearly = 4, - } - export enum UserDataTaskSensitivity { - public, - private, - } - export class UserDataTaskStore implements IUserDataTaskStore { - createListAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskStore.createListAsync'); - } - - createListAsync_1(name: string, userDataAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskStore.createListAsync_1'); - } - - findListsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskStore.findListsAsync'); - } - - getListAsync(taskListId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataTaskStore.getListAsync'); - } - - } - export enum UserDataTaskStoreAccessType { - appTasksReadWrite, - allTasksLimitedReadWrite, - } - export enum UserDataTaskWeekOfMonth { - first, - second, - third, - fourth, - last, - } - } - export namespace VoiceCommands { - export class VoiceCommand implements IVoiceCommand { - commandName: string; - properties: string[]; - speechRecognitionResult: Media.SpeechRecognition.SpeechRecognitionResult; - - } - export class VoiceCommandCompletedEventArgs implements IVoiceCommandCompletedEventArgs { - reason: VoiceCommandCompletionReason; - - } - export enum VoiceCommandCompletionReason { - unknown, - communicationFailed, - resourceLimitsExceeded, - canceled, - timeoutExceeded, - appLaunched, - completed, - } - export class VoiceCommandConfirmationResult implements IVoiceCommandConfirmationResult { - confirmed: Boolean; - - } - export class VoiceCommandContentTile implements IVoiceCommandContentTile { - // constructor(); - title: string = ''; - textLine3: string = ''; - textLine2: string = ''; - textLine1: string = ''; - image: Storage.IStorageFile; - contentTileType: VoiceCommandContentTileType = VoiceCommandContentTileType.titleOnly; - appLaunchArgument: string = ''; - appContext: any; - - } - export enum VoiceCommandContentTileType { - titleOnly, - titleWithText, - titleWith68x68Icon, - titleWith68x68IconAndText, - titleWith68x92Icon, - titleWith68x92IconAndText, - titleWith280x140Icon, - titleWith280x140IconAndText, - } - export class VoiceCommandDefinition implements IVoiceCommandDefinition { - language: string; - name: string; - - setPhraseListAsync(phraseListName: string, phraseList: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandDefinition.setPhraseListAsync'); - } - - } - export class VoiceCommandDefinitionManager { - static installedCommandDefinitions: string[] = [ ]; - - static installCommandDefinitionsFromStorageFileAsync(file: Storage.StorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandDefinitionManager.installCommandDefinitionsFromStorageFileAsync'); - } - - } - export class VoiceCommandDisambiguationResult implements IVoiceCommandDisambiguationResult { - selectedItem: VoiceCommandContentTile; - - } - export class VoiceCommandResponse implements IVoiceCommandResponse { - repeatMessage: VoiceCommandUserMessage; - message: VoiceCommandUserMessage; - appLaunchArgument: string; - voiceCommandContentTiles: VoiceCommandContentTile[]; - static maxSupportedVoiceCommandContentTiles: number = 10; - - static createResponse(userMessage: VoiceCommandUserMessage): VoiceCommandResponse { - throw new Error('shimmed function VoiceCommandResponse.createResponse'); - } - - static createResponse_1(message: VoiceCommandUserMessage, contentTiles: Foundation.Collections.IIterable): VoiceCommandResponse { - throw new Error('shimmed function VoiceCommandResponse.createResponse_1'); - } - - static createResponseForPrompt(message: VoiceCommandUserMessage, repeatMessage: VoiceCommandUserMessage): VoiceCommandResponse { - throw new Error('shimmed function VoiceCommandResponse.createResponseForPrompt'); - } - - static createResponseForPrompt_1(message: VoiceCommandUserMessage, repeatMessage: VoiceCommandUserMessage, contentTiles: Foundation.Collections.IIterable): VoiceCommandResponse { - throw new Error('shimmed function VoiceCommandResponse.createResponseForPrompt_1'); - } - - } - export class VoiceCommandServiceConnection implements IVoiceCommandServiceConnection { - language: Globalization.Language; - - getVoiceCommandAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function VoiceCommandServiceConnection.getVoiceCommandAsync'); - } - - requestConfirmationAsync(response: VoiceCommandResponse): Foundation.IAsyncOperation { - throw new Error('shimmed function VoiceCommandServiceConnection.requestConfirmationAsync'); - } - - requestDisambiguationAsync(response: VoiceCommandResponse): Foundation.IAsyncOperation { - throw new Error('shimmed function VoiceCommandServiceConnection.requestDisambiguationAsync'); - } - - reportProgressAsync(response: VoiceCommandResponse): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandServiceConnection.reportProgressAsync'); - } - - reportSuccessAsync(response: VoiceCommandResponse): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandServiceConnection.reportSuccessAsync'); - } - - reportFailureAsync(response: VoiceCommandResponse): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandServiceConnection.reportFailureAsync'); - } - - requestAppLaunchAsync(response: VoiceCommandResponse): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandServiceConnection.requestAppLaunchAsync'); - } - - static fromAppServiceTriggerDetails(triggerDetails: AppService.AppServiceTriggerDetails): VoiceCommandServiceConnection { - throw new Error('shimmed function VoiceCommandServiceConnection.fromAppServiceTriggerDetails'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VoiceCommandServiceConnection::addEventListener: ${name}`); - switch (name) { - case "voicecommandcompleted": // Foundation.TypedEventHandler - break; - } - - } - } - export class VoiceCommandUserMessage implements IVoiceCommandUserMessage { - // constructor(); - spokenMessage: string = ''; - displayMessage: string = ''; - - } - } - export namespace Wallet { - export namespace System { - export enum WalletItemAppAssociation { - none, - appInstalled, - appNotInstalled, - } - export class WalletItemSystemStore implements IWalletItemSystemStore, IWalletItemSystemStore2 { - getItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletItemSystemStore.getItemsAsync'); - } - - deleteAsync(item: WalletItem): Foundation.IAsyncAction { - throw new Error('shimmed function WalletItemSystemStore.deleteAsync'); - } - - importItemAsync(stream: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletItemSystemStore.importItemAsync'); - } - - getAppStatusForItem(item: WalletItem): WalletItemAppAssociation { - throw new Error('shimmed function WalletItemSystemStore.getAppStatusForItem'); - } - - launchAppForItemAsync(item: WalletItem): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletItemSystemStore.launchAppForItemAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WalletItemSystemStore::addEventListener: ${name}`); - switch (name) { - case "itemschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class WalletManagerSystem { - static requestStoreAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletManagerSystem.requestStoreAsync'); - } - - } - } - export enum WalletActionKind { - openItem, - transaction, - moreTransactions, - message, - verb, - } - export class WalletBarcode implements IWalletBarcode { - // constructor(symbology: WalletBarcodeSymbology, value: string); - // constructor(streamToBarcodeImage: Storage.Streams.IRandomAccessStreamReference); - constructor(symbology: WalletBarcodeSymbology, value: string, streamToBarcodeImage: Storage.Streams.IRandomAccessStreamReference) {} - - symbology: WalletBarcodeSymbology; - value: string; - - getImageAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletBarcode.getImageAsync'); - } - - } - export enum WalletBarcodeSymbology { - invalid, - upca, - upce, - ean13, - ean8, - itf, - code39, - code128, - qr, - pdf417, - aztec, - custom = 100000, - } - export interface WalletContract { - } - export enum WalletDetailViewPosition { - hidden, - headerField1, - headerField2, - primaryField1, - primaryField2, - secondaryField1, - secondaryField2, - secondaryField3, - secondaryField4, - secondaryField5, - centerField1, - footerField1, - footerField2, - footerField3, - footerField4, - } - export class WalletItem implements IWalletItem { - // constructor(kind: WalletItemKind, displayName: string); - constructor(kind: WalletItemKind, displayName: string) {} - - displayName: string; - displayMessage: string; - logoText: string; - bodyFontColor: UI.Color; - bodyColor: UI.Color; - bodyBackgroundImage: Storage.Streams.IRandomAccessStreamReference; - isDisplayMessageLaunchable: Boolean; - isAcknowledged: Boolean; - isMoreTransactionHistoryLaunchable: Boolean; - headerFontColor: UI.Color; - headerColor: UI.Color; - headerBackgroundImage: Storage.Streams.IRandomAccessStreamReference; - expirationDate: Date | null; - logo99x99: Storage.Streams.IRandomAccessStreamReference; - logoImage: Storage.Streams.IRandomAccessStreamReference; - promotionalImage: Storage.Streams.IRandomAccessStreamReference; - logo159x159: Storage.Streams.IRandomAccessStreamReference; - lastUpdated: Date | null; - issuerDisplayName: string; - barcode: WalletBarcode; - relevantDateDisplayMessage: string; - relevantDate: Date | null; - logo336x336: Storage.Streams.IRandomAccessStreamReference; - kind: WalletItemKind; - displayProperties: string[]; - id: string; - relevantLocations: string[]; - transactionHistory: string[]; - verbs: string[]; - - } - export class WalletItemCustomProperty implements IWalletItemCustomProperty { - // constructor(name: string, value: string); - constructor(name: string, value: string) {} - - value: string; - summaryViewPosition: WalletSummaryViewPosition; - name: string; - detailViewPosition: WalletDetailViewPosition; - autoDetectLinks: Boolean; - - } - export enum WalletItemKind { - invalid, - deal, - general, - paymentInstrument, - ticket, - boardingPass, - membershipCard, - } - export class WalletItemStore implements IWalletItemStore { - addAsync(id: string, item: WalletItem): Foundation.IAsyncAction { - throw new Error('shimmed function WalletItemStore.addAsync'); - } - - clearAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WalletItemStore.clearAsync'); - } - - getWalletItemAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletItemStore.getWalletItemAsync'); - } - - getItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletItemStore.getItemsAsync'); - } - - getItemsAsync_1(kind: WalletItemKind): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletItemStore.getItemsAsync_1'); - } - - importItemAsync(stream: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletItemStore.importItemAsync'); - } - - deleteAsync(id: string): Foundation.IAsyncAction { - throw new Error('shimmed function WalletItemStore.deleteAsync'); - } - - showAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WalletItemStore.showAsync'); - } - - showAsync_1(id: string): Foundation.IAsyncAction { - throw new Error('shimmed function WalletItemStore.showAsync_1'); - } - - updateAsync(item: WalletItem): Foundation.IAsyncAction { - throw new Error('shimmed function WalletItemStore.updateAsync'); - } - - } - export class WalletManager { - static requestStoreAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WalletManager.requestStoreAsync'); - } - - } - export class WalletRelevantLocation implements IWalletRelevantLocation { - // constructor(); - position: Devices.Geolocation.BasicGeoposition = null; - displayMessage: string = ''; - - } - export enum WalletSummaryViewPosition { - hidden, - field1, - field2, - } - export class WalletTransaction implements IWalletTransaction { - // constructor(); - transactionDate: Date | null; - isLaunchable: Boolean = false; - ignoreTimeOfDay: Boolean = true; - displayLocation: string = ''; - displayAmount: string = ''; - description: string = ''; - - } - export class WalletVerb implements IWalletVerb { - // constructor(name: string); - constructor(name: string) {} - - name: string; - - } - } - } - export namespace Data { - export namespace Html { - export class HtmlUtilities { - static convertToText(html: string): string { - throw new Error('shimmed function HtmlUtilities.convertToText'); - } - - } - } - export namespace Json { - export interface IJsonValue { - valueType: JsonValueType; - stringify(): string; - getString(): string; - getNumber(): number; - getBoolean(): Boolean; - getArray(): JsonArray; - getObject(): JsonObject; - } - export class JsonArray implements IJsonArray, IJsonValue, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - // constructor(); - valueType: JsonValueType = JsonValueType.array; - size: number; - - getObjectAt(index: number): JsonObject { - throw new Error('shimmed function JsonArray.getObjectAt'); - } - - getArrayAt(index: number): JsonArray { - throw new Error('shimmed function JsonArray.getArrayAt'); - } - - getStringAt(index: number): string { - throw new Error('shimmed function JsonArray.getStringAt'); - } - - getNumberAt(index: number): number { - throw new Error('shimmed function JsonArray.getNumberAt'); - } - - getBooleanAt(index: number): Boolean { - throw new Error('shimmed function JsonArray.getBooleanAt'); - } - - stringify(): string { - throw new Error('shimmed function JsonArray.stringify'); - } - - getString(): string { - throw new Error('shimmed function JsonArray.getString'); - } - - getNumber(): number { - throw new Error('shimmed function JsonArray.getNumber'); - } - - getBoolean(): Boolean { - throw new Error('shimmed function JsonArray.getBoolean'); - } - - getArray(): JsonArray { - throw new Error('shimmed function JsonArray.getArray'); - } - - getObject(): JsonObject { - throw new Error('shimmed function JsonArray.getObject'); - } - - getAt(index: number): IJsonValue { - throw new Error('shimmed function JsonArray.getAt'); - } - - getView(): IJsonValue[] { - throw new Error('shimmed function JsonArray.getView'); - } - - indexOf(value: IJsonValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function JsonArray.indexOf'); - } - - setAt(index: number, value: IJsonValue): void { - console.warn('shimmed function JsonArray.setAt'); - } - - insertAt(index: number, value: IJsonValue): void { - console.warn('shimmed function JsonArray.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function JsonArray.removeAt'); - } - - append(value: IJsonValue): void { - console.warn('shimmed function JsonArray.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function JsonArray.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function JsonArray.clear'); - } - - getMany(startIndex: number, items: IJsonValue[]): number { - throw new Error('shimmed function JsonArray.getMany'); - } - - replaceAll(items: IJsonValue[]): void { - console.warn('shimmed function JsonArray.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function JsonArray.first'); - } - - static parse(input: string): JsonArray { - throw new Error('shimmed function JsonArray.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, result: JsonArray } { - throw new Error('shimmed function JsonArray.tryParse'); - } - - } - export class JsonError { - static getJsonStatus(hresult: number): JsonErrorStatus { - throw new Error('shimmed function JsonError.getJsonStatus'); - } - - } - export enum JsonErrorStatus { - unknown, - invalidJsonString, - invalidJsonNumber, - jsonValueNotFound, - implementationLimit, - } - export class JsonObject implements IJsonObject, IJsonValue, Foundation.Collections.IMap, Foundation.Collections.IIterable>, IJsonObjectWithDefaultValues, Foundation.IStringable { - // constructor(); - valueType: JsonValueType = JsonValueType.object; - size: number; - - getNamedValue(name: string): JsonValue { - throw new Error('shimmed function JsonObject.getNamedValue'); - } - - setNamedValue(name: string, value: IJsonValue): void { - console.warn('shimmed function JsonObject.setNamedValue'); - } - - getNamedObject(name: string): JsonObject { - throw new Error('shimmed function JsonObject.getNamedObject'); - } - - getNamedArray(name: string): JsonArray { - throw new Error('shimmed function JsonObject.getNamedArray'); - } - - getNamedString(name: string): string { - throw new Error('shimmed function JsonObject.getNamedString'); - } - - getNamedNumber(name: string): number { - throw new Error('shimmed function JsonObject.getNamedNumber'); - } - - getNamedBoolean(name: string): Boolean { - throw new Error('shimmed function JsonObject.getNamedBoolean'); - } - - stringify(): string { - throw new Error('shimmed function JsonObject.stringify'); - } - - getString(): string { - throw new Error('shimmed function JsonObject.getString'); - } - - getNumber(): number { - throw new Error('shimmed function JsonObject.getNumber'); - } - - getBoolean(): Boolean { - throw new Error('shimmed function JsonObject.getBoolean'); - } - - getArray(): JsonArray { - throw new Error('shimmed function JsonObject.getArray'); - } - - getObject(): JsonObject { - throw new Error('shimmed function JsonObject.getObject'); - } - - lookup(key: string): IJsonValue { - throw new Error('shimmed function JsonObject.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function JsonObject.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function JsonObject.getView'); - } - - insert(key: string, value: IJsonValue): Boolean { - throw new Error('shimmed function JsonObject.insert'); - } - - clear(): void { - console.warn('shimmed function JsonObject.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function JsonObject.first'); - } - - getNamedValue_1(name: string, defaultValue: JsonValue): JsonValue { - throw new Error('shimmed function JsonObject.getNamedValue_1'); - } - - getNamedObject_1(name: string, defaultValue: JsonObject): JsonObject { - throw new Error('shimmed function JsonObject.getNamedObject_1'); - } - - getNamedString_1(name: string, defaultValue: string): string { - throw new Error('shimmed function JsonObject.getNamedString_1'); - } - - getNamedArray_1(name: string, defaultValue: JsonArray): JsonArray { - throw new Error('shimmed function JsonObject.getNamedArray_1'); - } - - getNamedNumber_1(name: string, defaultValue: number): number { - throw new Error('shimmed function JsonObject.getNamedNumber_1'); - } - - getNamedBoolean_1(name: string, defaultValue: Boolean): Boolean { - throw new Error('shimmed function JsonObject.getNamedBoolean_1'); - } - - static parse(input: string): JsonObject { - throw new Error('shimmed function JsonObject.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, result: JsonObject } { - throw new Error('shimmed function JsonObject.tryParse'); - } - - } - export class JsonValue implements IJsonValue, Foundation.IStringable { - valueType: JsonValueType; - - stringify(): string { - throw new Error('shimmed function JsonValue.stringify'); - } - - getString(): string { - throw new Error('shimmed function JsonValue.getString'); - } - - getNumber(): number { - throw new Error('shimmed function JsonValue.getNumber'); - } - - getBoolean(): Boolean { - throw new Error('shimmed function JsonValue.getBoolean'); - } - - getArray(): JsonArray { - throw new Error('shimmed function JsonValue.getArray'); - } - - getObject(): JsonObject { - throw new Error('shimmed function JsonValue.getObject'); - } - - static createNullValue(): JsonValue { - throw new Error('shimmed function JsonValue.createNullValue'); - } - - static parse(input: string): JsonValue { - throw new Error('shimmed function JsonValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, result: JsonValue } { - throw new Error('shimmed function JsonValue.tryParse'); - } - - static createBooleanValue(input: Boolean): JsonValue { - throw new Error('shimmed function JsonValue.createBooleanValue'); - } - - static createNumberValue(input: number): JsonValue { - throw new Error('shimmed function JsonValue.createNumberValue'); - } - - static createStringValue(input: string): JsonValue { - throw new Error('shimmed function JsonValue.createStringValue'); - } - - } - export enum JsonValueType { - null, - boolean, - number, - string, - array, - object, - } - } - export namespace Pdf { - export class PdfDocument implements IPdfDocument { - isPasswordProtected: Boolean; - pageCount: number; - - getPage(pageIndex: number): PdfPage { - throw new Error('shimmed function PdfDocument.getPage'); - } - - static loadFromFileAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function PdfDocument.loadFromFileAsync'); - } - - static loadFromFileAsync_1(file: Storage.IStorageFile, password: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PdfDocument.loadFromFileAsync_1'); - } - - static loadFromStreamAsync(inputStream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function PdfDocument.loadFromStreamAsync'); - } - - static loadFromStreamAsync_1(inputStream: Storage.Streams.IRandomAccessStream, password: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PdfDocument.loadFromStreamAsync_1'); - } - - } - export class PdfPage implements IPdfPage, Foundation.IClosable { - dimensions: PdfPageDimensions; - index: number; - preferredZoom: number; - rotation: PdfPageRotation; - size: Foundation.Size; - - renderToStreamAsync(outputStream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function PdfPage.renderToStreamAsync'); - } - - renderToStreamAsync_1(outputStream: Storage.Streams.IRandomAccessStream, options: PdfPageRenderOptions): Foundation.IAsyncAction { - throw new Error('shimmed function PdfPage.renderToStreamAsync_1'); - } - - preparePageAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PdfPage.preparePageAsync'); - } - - close(): void { - console.warn('shimmed function PdfPage.close'); - } - - } - export class PdfPageDimensions implements IPdfPageDimensions { - artBox: Foundation.Rect; - bleedBox: Foundation.Rect; - cropBox: Foundation.Rect; - mediaBox: Foundation.Rect; - trimBox: Foundation.Rect; - - } - export class PdfPageRenderOptions implements IPdfPageRenderOptions { - // constructor(); - sourceRect: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - isIgnoringHighContrast: Boolean = true; - destinationWidth: number = 0; - destinationHeight: number = 0; - bitmapEncoderId: string = '27949969-876a-41d7-9447-568f6a35a4dc'; - backgroundColor: UI.Color = { a: 255, r: 255, g: 255, b: 255 }; - - } - export enum PdfPageRotation { - normal, - rotate90, - rotate180, - rotate270, - } - } - export namespace Text { - export enum AlternateNormalizationFormat { - notNormalized, - number, - currency = 3, - date, - time, - } - export class AlternateWordForm implements IAlternateWordForm { - alternateText: string; - normalizationFormat: AlternateNormalizationFormat; - sourceTextSegment: TextSegment; - - } - export class SelectableWordSegment implements ISelectableWordSegment { - sourceTextSegment: TextSegment; - text: string; - - } - export type SelectableWordSegmentsTokenizingHandler = (words: Foundation.Collections.IIterable) => void; - export class SelectableWordsSegmenter implements ISelectableWordsSegmenter { - // constructor(language: string); - constructor(language: string) {} - - resolvedLanguage: string; - - getTokenAt(text: string, startIndex: number): SelectableWordSegment { - throw new Error('shimmed function SelectableWordsSegmenter.getTokenAt'); - } - - getTokens(text: string): SelectableWordSegment[] { - throw new Error('shimmed function SelectableWordsSegmenter.getTokens'); - } - - tokenize(text: string, startIndex: number, handler: SelectableWordSegmentsTokenizingHandler): void { - console.warn('shimmed function SelectableWordsSegmenter.tokenize'); - } - - } - export class SemanticTextQuery implements ISemanticTextQuery { - // constructor(aqsFilter: string); - // constructor(aqsFilter: string, filterLanguage: string); - constructor(aqsFilter: string, filterLanguage: string) {} - - find(content: string): TextSegment[] { - throw new Error('shimmed function SemanticTextQuery.find'); - } - - findInProperty(propertyContent: string, propertyName: string): TextSegment[] { - throw new Error('shimmed function SemanticTextQuery.findInProperty'); - } - - } - export class TextConversionGenerator implements ITextConversionGenerator { - // constructor(languageTag: string); - constructor(languageTag: string) {} - - languageAvailableButNotInstalled: Boolean; - resolvedLanguage: string; - - getCandidatesAsync(input: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TextConversionGenerator.getCandidatesAsync'); - } - - getCandidatesAsync_1(input: string, maxCandidates: number): Foundation.IAsyncOperation { - throw new Error('shimmed function TextConversionGenerator.getCandidatesAsync_1'); - } - - } - export class TextPhoneme implements ITextPhoneme { - displayText: string; - readingText: string; - - } - export class TextPredictionGenerator implements ITextPredictionGenerator, ITextPredictionGenerator2 { - // constructor(languageTag: string); - constructor(languageTag: string) {} - - languageAvailableButNotInstalled: Boolean; - resolvedLanguage: string; - inputScope: UI.Text.Core.CoreTextInputScope; - - getCandidatesAsync(input: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TextPredictionGenerator.getCandidatesAsync'); - } - - getCandidatesAsync_1(input: string, maxCandidates: number): Foundation.IAsyncOperation { - throw new Error('shimmed function TextPredictionGenerator.getCandidatesAsync_1'); - } - - getCandidatesAsync_2(input: string, maxCandidates: number, predictionOptions: TextPredictionOptions, previousStrings: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function TextPredictionGenerator.getCandidatesAsync_2'); - } - - getNextWordCandidatesAsync(maxCandidates: number, previousStrings: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function TextPredictionGenerator.getNextWordCandidatesAsync'); - } - - } - export enum TextPredictionOptions { - none, - predictions, - corrections, - } - export class TextReverseConversionGenerator implements ITextReverseConversionGenerator, ITextReverseConversionGenerator2 { - // constructor(languageTag: string); - constructor(languageTag: string) {} - - languageAvailableButNotInstalled: Boolean; - resolvedLanguage: string; - - convertBackAsync(input: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TextReverseConversionGenerator.convertBackAsync'); - } - - getPhonemesAsync(input: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TextReverseConversionGenerator.getPhonemesAsync'); - } - - } - export interface TextSegment { - startPosition: number; - length: number; - } - export class UnicodeCharacters { - static getCodepointFromSurrogatePair(highSurrogate: number, lowSurrogate: number): number { - throw new Error('shimmed function UnicodeCharacters.getCodepointFromSurrogatePair'); - } - - static getSurrogatePairFromCodepoint(codepoint: number): { highSurrogate: string, lowSurrogate: string } { - throw new Error('shimmed function UnicodeCharacters.getSurrogatePairFromCodepoint'); - } - - static isHighSurrogate(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isHighSurrogate'); - } - - static isLowSurrogate(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isLowSurrogate'); - } - - static isSupplementary(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isSupplementary'); - } - - static isNoncharacter(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isNoncharacter'); - } - - static isWhitespace(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isWhitespace'); - } - - static isAlphabetic(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isAlphabetic'); - } - - static isCased(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isCased'); - } - - static isUppercase(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isUppercase'); - } - - static isLowercase(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isLowercase'); - } - - static isIdStart(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isIdStart'); - } - - static isIdContinue(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isIdContinue'); - } - - static isGraphemeBase(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isGraphemeBase'); - } - - static isGraphemeExtend(codepoint: number): Boolean { - throw new Error('shimmed function UnicodeCharacters.isGraphemeExtend'); - } - - static getNumericType(codepoint: number): UnicodeNumericType { - throw new Error('shimmed function UnicodeCharacters.getNumericType'); - } - - static getGeneralCategory(codepoint: number): UnicodeGeneralCategory { - throw new Error('shimmed function UnicodeCharacters.getGeneralCategory'); - } - - } - export enum UnicodeGeneralCategory { - uppercaseLetter, - lowercaseLetter, - titlecaseLetter, - modifierLetter, - otherLetter, - nonspacingMark, - spacingCombiningMark, - enclosingMark, - decimalDigitNumber, - letterNumber, - otherNumber, - spaceSeparator, - lineSeparator, - paragraphSeparator, - control, - format, - surrogate, - privateUse, - connectorPunctuation, - dashPunctuation, - openPunctuation, - closePunctuation, - initialQuotePunctuation, - finalQuotePunctuation, - otherPunctuation, - mathSymbol, - currencySymbol, - modifierSymbol, - otherSymbol, - notAssigned, - } - export enum UnicodeNumericType { - none, - decimal, - digit, - numeric, - } - export class WordSegment implements IWordSegment { - alternateForms: AlternateWordForm[]; - sourceTextSegment: TextSegment; - text: string; - - } - export type WordSegmentsTokenizingHandler = (words: Foundation.Collections.IIterable) => void; - export class WordsSegmenter implements IWordsSegmenter { - // constructor(language: string); - constructor(language: string) {} - - resolvedLanguage: string; - - getTokenAt(text: string, startIndex: number): WordSegment { - throw new Error('shimmed function WordsSegmenter.getTokenAt'); - } - - getTokens(text: string): WordSegment[] { - throw new Error('shimmed function WordsSegmenter.getTokens'); - } - - tokenize(text: string, startIndex: number, handler: WordSegmentsTokenizingHandler): void { - console.warn('shimmed function WordsSegmenter.tokenize'); - } - - } - } - export namespace Xml { - export namespace Dom { - export class DtdEntity implements IDtdEntity, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - notationName: any; - publicId: any; - systemId: any; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - childNodes: XmlNodeList; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - - hasChildNodes(): Boolean { - throw new Error('shimmed function DtdEntity.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdEntity.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdEntity.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdEntity.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdEntity.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function DtdEntity.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function DtdEntity.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function DtdEntity.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function DtdEntity.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function DtdEntity.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function DtdEntity.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function DtdEntity.getXml'); - } - - } - export class DtdNotation implements IDtdNotation, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - publicId: any; - systemId: any; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - childNodes: XmlNodeList; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - - hasChildNodes(): Boolean { - throw new Error('shimmed function DtdNotation.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdNotation.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdNotation.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdNotation.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function DtdNotation.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function DtdNotation.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function DtdNotation.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function DtdNotation.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function DtdNotation.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function DtdNotation.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function DtdNotation.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function DtdNotation.getXml'); - } - - } - export interface IXmlCharacterData extends IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - data: string; - length: number; - substringData(offset: number, count: number): string; - appendData(data: string): void; - insertData(offset: number, data: string): void; - deleteData(offset: number, count: number): void; - replaceData(offset: number, count: number, data: string): void; - } - export interface IXmlNode extends IXmlNodeSelector, IXmlNodeSerializer { - attributes: XmlNamedNodeMap; - childNodes: XmlNodeList; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - nodeValue: any; - ownerDocument: XmlDocument; - parentNode: IXmlNode; - prefix: any; - previousSibling: IXmlNode; - hasChildNodes(): Boolean; - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode; - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode; - removeChild(childNode: IXmlNode): IXmlNode; - appendChild(newChild: IXmlNode): IXmlNode; - cloneNode(deep: Boolean): IXmlNode; - normalize(): void; - } - export interface IXmlNodeSelector { - selectSingleNode(xpath: string): IXmlNode; - selectNodes(xpath: string): XmlNodeList; - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode; - selectNodesNS(xpath: string, namespaces: any): XmlNodeList; - } - export interface IXmlNodeSerializer { - innerText: string; - getXml(): string; - } - export interface IXmlText extends IXmlCharacterData, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - splitText(offset: number): IXmlText; - } - export enum NodeType { - invalid, - elementNode, - attributeNode, - textNode, - dataSectionNode, - entityReferenceNode, - entityNode, - processingInstructionNode, - commentNode, - documentNode, - documentTypeNode, - documentFragmentNode, - notationNode, - } - export class XmlAttribute implements IXmlAttribute, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - value: string; - specified: Boolean; - name: string; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - childNodes: XmlNodeList; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlAttribute.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlAttribute.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlAttribute.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlAttribute.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlAttribute.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlAttribute.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlAttribute.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlAttribute.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlAttribute.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlAttribute.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlAttribute.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlAttribute.getXml'); - } - - } - export class XmlCDataSection implements IXmlCDataSection, IXmlText, IXmlCharacterData, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - data: string; - length: number; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - childNodes: XmlNodeList; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - - splitText(offset: number): IXmlText { - throw new Error('shimmed function XmlCDataSection.splitText'); - } - - substringData(offset: number, count: number): string { - throw new Error('shimmed function XmlCDataSection.substringData'); - } - - appendData(data: string): void { - console.warn('shimmed function XmlCDataSection.appendData'); - } - - insertData(offset: number, data: string): void { - console.warn('shimmed function XmlCDataSection.insertData'); - } - - deleteData(offset: number, count: number): void { - console.warn('shimmed function XmlCDataSection.deleteData'); - } - - replaceData(offset: number, count: number, data: string): void { - console.warn('shimmed function XmlCDataSection.replaceData'); - } - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlCDataSection.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlCDataSection.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlCDataSection.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlCDataSection.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlCDataSection.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlCDataSection.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlCDataSection.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlCDataSection.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlCDataSection.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlCDataSection.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlCDataSection.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlCDataSection.getXml'); - } - - } - export class XmlComment implements IXmlComment, IXmlCharacterData, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - data: string; - length: number; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - childNodes: XmlNodeList; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - - substringData(offset: number, count: number): string { - throw new Error('shimmed function XmlComment.substringData'); - } - - appendData(data: string): void { - console.warn('shimmed function XmlComment.appendData'); - } - - insertData(offset: number, data: string): void { - console.warn('shimmed function XmlComment.insertData'); - } - - deleteData(offset: number, count: number): void { - console.warn('shimmed function XmlComment.deleteData'); - } - - replaceData(offset: number, count: number, data: string): void { - console.warn('shimmed function XmlComment.replaceData'); - } - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlComment.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlComment.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlComment.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlComment.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlComment.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlComment.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlComment.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlComment.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlComment.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlComment.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlComment.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlComment.getXml'); - } - - } - export class XmlDocument implements IXmlDocument, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer, IXmlDocumentIO, IXmlDocumentIO2 { - // constructor(); - doctype: XmlDocumentType; - documentElement: XmlElement; - documentUri: string = ''; - implementation: XmlDomImplementation = null; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string = '#document'; - nodeType: NodeType = NodeType.documentNode; - attributes: XmlNamedNodeMap; - childNodes: XmlNodeList = [ ]; - parentNode: IXmlNode; - ownerDocument: XmlDocument; - previousSibling: IXmlNode; - innerText: string = ''; - - createElement(tagName: string): XmlElement { - throw new Error('shimmed function XmlDocument.createElement'); - } - - createDocumentFragment(): XmlDocumentFragment { - throw new Error('shimmed function XmlDocument.createDocumentFragment'); - } - - createTextNode(data: string): XmlText { - throw new Error('shimmed function XmlDocument.createTextNode'); - } - - createComment(data: string): XmlComment { - throw new Error('shimmed function XmlDocument.createComment'); - } - - createProcessingInstruction(target: string, data: string): XmlProcessingInstruction { - throw new Error('shimmed function XmlDocument.createProcessingInstruction'); - } - - createAttribute(name: string): XmlAttribute { - throw new Error('shimmed function XmlDocument.createAttribute'); - } - - createEntityReference(name: string): XmlEntityReference { - throw new Error('shimmed function XmlDocument.createEntityReference'); - } - - getElementsByTagName(tagName: string): XmlNodeList { - throw new Error('shimmed function XmlDocument.getElementsByTagName'); - } - - createCDataSection(data: string): XmlCDataSection { - throw new Error('shimmed function XmlDocument.createCDataSection'); - } - - createAttributeNS(namespaceUri: any, qualifiedName: string): XmlAttribute { - throw new Error('shimmed function XmlDocument.createAttributeNS'); - } - - createElementNS(namespaceUri: any, qualifiedName: string): XmlElement { - throw new Error('shimmed function XmlDocument.createElementNS'); - } - - getElementById(elementId: string): XmlElement { - throw new Error('shimmed function XmlDocument.getElementById'); - } - - importNode(node: IXmlNode, deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlDocument.importNode'); - } - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlDocument.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocument.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocument.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocument.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocument.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlDocument.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlDocument.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlDocument.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlDocument.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlDocument.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlDocument.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlDocument.getXml'); - } - - loadXml(xml: string): void { - console.warn('shimmed function XmlDocument.loadXml'); - } - - loadXml_1(xml: string, loadSettings: XmlLoadSettings): void { - console.warn('shimmed function XmlDocument.loadXml_1'); - } - - saveToFileAsync(file: Storage.IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function XmlDocument.saveToFileAsync'); - } - - loadXmlFromBuffer(buffer: Storage.Streams.IBuffer): void { - console.warn('shimmed function XmlDocument.loadXmlFromBuffer'); - } - - loadXmlFromBuffer_1(buffer: Storage.Streams.IBuffer, loadSettings: XmlLoadSettings): void { - console.warn('shimmed function XmlDocument.loadXmlFromBuffer_1'); - } - - static loadFromUriAsync(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function XmlDocument.loadFromUriAsync'); - } - - static loadFromUriAsync_1(uri: Foundation.Uri, loadSettings: XmlLoadSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function XmlDocument.loadFromUriAsync_1'); - } - - static loadFromFileAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function XmlDocument.loadFromFileAsync'); - } - - static loadFromFileAsync_1(file: Storage.IStorageFile, loadSettings: XmlLoadSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function XmlDocument.loadFromFileAsync_1'); - } - - } - export class XmlDocumentFragment implements IXmlDocumentFragment, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - parentNode: IXmlNode; - childNodes: XmlNodeList; - previousSibling: IXmlNode; - innerText: string; - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlDocumentFragment.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentFragment.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentFragment.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentFragment.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentFragment.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlDocumentFragment.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlDocumentFragment.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlDocumentFragment.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlDocumentFragment.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlDocumentFragment.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlDocumentFragment.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlDocumentFragment.getXml'); - } - - } - export class XmlDocumentType implements IXmlDocumentType, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - entities: XmlNamedNodeMap; - name: string; - notations: XmlNamedNodeMap; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - childNodes: XmlNodeList; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlDocumentType.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentType.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentType.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentType.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlDocumentType.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlDocumentType.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlDocumentType.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlDocumentType.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlDocumentType.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlDocumentType.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlDocumentType.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlDocumentType.getXml'); - } - - } - export class XmlDomImplementation implements IXmlDomImplementation { - hasFeature(feature: string, version: any): Boolean { - throw new Error('shimmed function XmlDomImplementation.hasFeature'); - } - - } - export class XmlElement implements IXmlElement, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - tagName: string; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - nextSibling: IXmlNode; - namespaceUri: any; - nodeType: NodeType; - nodeName: string; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - parentNode: IXmlNode; - childNodes: XmlNodeList; - previousSibling: IXmlNode; - innerText: string; - - getAttribute(attributeName: string): string { - throw new Error('shimmed function XmlElement.getAttribute'); - } - - setAttribute(attributeName: string, attributeValue: string): void { - console.warn('shimmed function XmlElement.setAttribute'); - } - - removeAttribute(attributeName: string): void { - console.warn('shimmed function XmlElement.removeAttribute'); - } - - getAttributeNode(attributeName: string): XmlAttribute { - throw new Error('shimmed function XmlElement.getAttributeNode'); - } - - setAttributeNode(newAttribute: XmlAttribute): XmlAttribute { - throw new Error('shimmed function XmlElement.setAttributeNode'); - } - - removeAttributeNode(attributeNode: XmlAttribute): XmlAttribute { - throw new Error('shimmed function XmlElement.removeAttributeNode'); - } - - getElementsByTagName(tagName: string): XmlNodeList { - throw new Error('shimmed function XmlElement.getElementsByTagName'); - } - - setAttributeNS(namespaceUri: any, qualifiedName: string, value: string): void { - console.warn('shimmed function XmlElement.setAttributeNS'); - } - - getAttributeNS(namespaceUri: any, localName: string): string { - throw new Error('shimmed function XmlElement.getAttributeNS'); - } - - removeAttributeNS(namespaceUri: any, localName: string): void { - console.warn('shimmed function XmlElement.removeAttributeNS'); - } - - setAttributeNodeNS(newAttribute: XmlAttribute): XmlAttribute { - throw new Error('shimmed function XmlElement.setAttributeNodeNS'); - } - - getAttributeNodeNS(namespaceUri: any, localName: string): XmlAttribute { - throw new Error('shimmed function XmlElement.getAttributeNodeNS'); - } - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlElement.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlElement.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlElement.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlElement.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlElement.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlElement.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlElement.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlElement.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlElement.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlElement.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlElement.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlElement.getXml'); - } - - } - export class XmlEntityReference implements IXmlEntityReference, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - parentNode: IXmlNode; - childNodes: XmlNodeList; - previousSibling: IXmlNode; - innerText: string; - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlEntityReference.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlEntityReference.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlEntityReference.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlEntityReference.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlEntityReference.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlEntityReference.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlEntityReference.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlEntityReference.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlEntityReference.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlEntityReference.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlEntityReference.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlEntityReference.getXml'); - } - - } - export class XmlLoadSettings implements IXmlLoadSettings { - // constructor(); - validateOnParse: Boolean = false; - resolveExternals: Boolean = false; - prohibitDtd: Boolean = true; - maxElementDepth: number = 256; - elementContentWhiteSpace: Boolean = true; - - } - export class XmlNamedNodeMap implements IXmlNamedNodeMap, Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - length: number; - size: number; - - item(index: number): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.item'); - } - - getNamedItem(name: string): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.getNamedItem'); - } - - setNamedItem(node: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.setNamedItem'); - } - - removeNamedItem(name: string): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.removeNamedItem'); - } - - getNamedItemNS(namespaceUri: any, name: string): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.getNamedItemNS'); - } - - removeNamedItemNS(namespaceUri: any, name: string): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.removeNamedItemNS'); - } - - setNamedItemNS(node: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.setNamedItemNS'); - } - - getAt(index: number): IXmlNode { - throw new Error('shimmed function XmlNamedNodeMap.getAt'); - } - - indexOf(value: IXmlNode): { returnValue: Boolean, index: number } { - throw new Error('shimmed function XmlNamedNodeMap.indexOf'); - } - - getMany(startIndex: number, items: IXmlNode[]): number { - throw new Error('shimmed function XmlNamedNodeMap.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function XmlNamedNodeMap.first'); - } - - } - export class XmlNodeList implements IXmlNodeList, Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - length: number; - size: number; - - item(index: number): IXmlNode { - throw new Error('shimmed function XmlNodeList.item'); - } - - getAt(index: number): IXmlNode { - throw new Error('shimmed function XmlNodeList.getAt'); - } - - indexOf(value: IXmlNode): { returnValue: Boolean, index: number } { - throw new Error('shimmed function XmlNodeList.indexOf'); - } - - getMany(startIndex: number, items: IXmlNode[]): number { - throw new Error('shimmed function XmlNodeList.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function XmlNodeList.first'); - } - - } - export class XmlProcessingInstruction implements IXmlProcessingInstruction, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - prefix: any; - nodeValue: any; - attributes: XmlNamedNodeMap; - firstChild: IXmlNode; - childNodes: XmlNodeList; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - ownerDocument: XmlDocument; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - data: string; - target: string; - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlProcessingInstruction.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlProcessingInstruction.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlProcessingInstruction.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlProcessingInstruction.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlProcessingInstruction.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlProcessingInstruction.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlProcessingInstruction.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlProcessingInstruction.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlProcessingInstruction.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlProcessingInstruction.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlProcessingInstruction.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlProcessingInstruction.getXml'); - } - - } - export class XmlText implements IXmlText, IXmlCharacterData, IXmlNode, IXmlNodeSelector, IXmlNodeSerializer { - data: string; - length: number; - prefix: any; - nodeValue: any; - firstChild: IXmlNode; - lastChild: IXmlNode; - localName: any; - namespaceUri: any; - nextSibling: IXmlNode; - nodeName: string; - nodeType: NodeType; - attributes: XmlNamedNodeMap; - ownerDocument: XmlDocument; - childNodes: XmlNodeList; - parentNode: IXmlNode; - previousSibling: IXmlNode; - innerText: string; - - splitText(offset: number): IXmlText { - throw new Error('shimmed function XmlText.splitText'); - } - - substringData(offset: number, count: number): string { - throw new Error('shimmed function XmlText.substringData'); - } - - appendData(data: string): void { - console.warn('shimmed function XmlText.appendData'); - } - - insertData(offset: number, data: string): void { - console.warn('shimmed function XmlText.insertData'); - } - - deleteData(offset: number, count: number): void { - console.warn('shimmed function XmlText.deleteData'); - } - - replaceData(offset: number, count: number, data: string): void { - console.warn('shimmed function XmlText.replaceData'); - } - - hasChildNodes(): Boolean { - throw new Error('shimmed function XmlText.hasChildNodes'); - } - - insertBefore(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlText.insertBefore'); - } - - replaceChild(newChild: IXmlNode, referenceChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlText.replaceChild'); - } - - removeChild(childNode: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlText.removeChild'); - } - - appendChild(newChild: IXmlNode): IXmlNode { - throw new Error('shimmed function XmlText.appendChild'); - } - - cloneNode(deep: Boolean): IXmlNode { - throw new Error('shimmed function XmlText.cloneNode'); - } - - normalize(): void { - console.warn('shimmed function XmlText.normalize'); - } - - selectSingleNode(xpath: string): IXmlNode { - throw new Error('shimmed function XmlText.selectSingleNode'); - } - - selectNodes(xpath: string): XmlNodeList { - throw new Error('shimmed function XmlText.selectNodes'); - } - - selectSingleNodeNS(xpath: string, namespaces: any): IXmlNode { - throw new Error('shimmed function XmlText.selectSingleNodeNS'); - } - - selectNodesNS(xpath: string, namespaces: any): XmlNodeList { - throw new Error('shimmed function XmlText.selectNodesNS'); - } - - getXml(): string { - throw new Error('shimmed function XmlText.getXml'); - } - - } - } - export namespace Xsl { - export class XsltProcessor implements IXsltProcessor, IXsltProcessor2 { - // constructor(document: Dom.XmlDocument); - constructor(document: Dom.XmlDocument) {} - - transformToString(inputNode: Dom.IXmlNode): string { - throw new Error('shimmed function XsltProcessor.transformToString'); - } - - transformToDocument(inputNode: Dom.IXmlNode): Dom.XmlDocument { - throw new Error('shimmed function XsltProcessor.transformToDocument'); - } - - } - } - } - } - export namespace Devices { - export namespace Adc { - export class AdcChannel implements IAdcChannel, Foundation.IClosable { - controller: AdcController; - - readValue(): number { - throw new Error('shimmed function AdcChannel.readValue'); - } - - readRatio(): number { - throw new Error('shimmed function AdcChannel.readRatio'); - } - - close(): void { - console.warn('shimmed function AdcChannel.close'); - } - - } - export enum AdcChannelMode { - singleEnded, - differential, - } - export class AdcController implements IAdcController { - channelMode: AdcChannelMode; - channelCount: number; - maxValue: number; - minValue: number; - resolutionInBits: number; - - isChannelModeSupported(channelMode: AdcChannelMode): Boolean { - throw new Error('shimmed function AdcController.isChannelModeSupported'); - } - - openChannel(channelNumber: number): AdcChannel { - throw new Error('shimmed function AdcController.openChannel'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AdcController.getDefaultAsync'); - } - - static getControllersAsync(provider: Provider.IAdcProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function AdcController.getControllersAsync'); - } - - } - export namespace Provider { - export interface IAdcControllerProvider { - channelCount: number; - channelMode: ProviderAdcChannelMode; - maxValue: number; - minValue: number; - resolutionInBits: number; - isChannelModeSupported(channelMode: ProviderAdcChannelMode): Boolean; - acquireChannel(channel: number): void; - releaseChannel(channel: number): void; - readValue(channelNumber: number): number; - } - export interface IAdcProvider { - getControllers(): IAdcControllerProvider[]; - } - export enum ProviderAdcChannelMode { - singleEnded, - differential, - } - } - } - export namespace AllJoyn { - export class AllJoynAboutData implements IAllJoynAboutData { - defaultDescription: string; - defaultAppName: string; - dateOfManufacture: Date | null; - defaultManufacturer: string; - appId: string; - supportUrl: Foundation.Uri; - softwareVersion: string; - modelNumber: string; - isEnabled: Boolean; - appNames: string[]; - manufacturers: string[]; - descriptions: string[]; - - } - export class AllJoynAboutDataView implements IAllJoynAboutDataView { - ajsoftwareVersion: string; - appId: string; - appName: string; - dateOfManufacture: Date | null; - defaultLanguage: Globalization.Language; - description: string; - deviceId: string; - deviceName: string; - hardwareVersion: string; - manufacturer: string; - modelNumber: string; - properties: string[]; - softwareVersion: string; - status: number; - supportUrl: Foundation.Uri; - supportedLanguages: Globalization.Language[]; - - static getDataBySessionPortAsync(uniqueName: string, busAttachment: AllJoynBusAttachment, sessionPort: number): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynAboutDataView.getDataBySessionPortAsync'); - } - - static getDataBySessionPortAsync_1(uniqueName: string, busAttachment: AllJoynBusAttachment, sessionPort: number, language: Globalization.Language): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynAboutDataView.getDataBySessionPortAsync_1'); - } - - } - export class AllJoynAcceptSessionJoinerEventArgs implements IAllJoynAcceptSessionJoinerEventArgs { - // constructor(uniqueName: string, sessionPort: number, trafficType: AllJoynTrafficType, proximity: number, acceptSessionJoiner: IAllJoynAcceptSessionJoiner); - constructor(uniqueName: string, sessionPort: number, trafficType: AllJoynTrafficType, proximity: number, acceptSessionJoiner: IAllJoynAcceptSessionJoiner) {} - - sameNetwork: Boolean; - samePhysicalNode: Boolean; - sessionPort: number; - trafficType: AllJoynTrafficType; - uniqueName: string; - - accept(): void { - console.warn('shimmed function AllJoynAcceptSessionJoinerEventArgs.accept'); - } - - } - export class AllJoynAuthenticationCompleteEventArgs implements IAllJoynAuthenticationCompleteEventArgs { - authenticationMechanism: AllJoynAuthenticationMechanism; - peerUniqueName: string; - succeeded: Boolean; - - } - export enum AllJoynAuthenticationMechanism { - none, - srpAnonymous, - srpLogon, - ecdheNull, - ecdhePsk, - ecdheEcdsa, - ecdheSpeke, - } - export class AllJoynBusAttachment implements IAllJoynBusAttachment, IAllJoynBusAttachment2 { - // constructor(connectionSpecification: string); - // constructor(); - constructor(connectionSpecification: string) {} - - aboutData: AllJoynAboutData; - authenticationMechanisms: AllJoynAuthenticationMechanism[]; - connectionSpecification: string; - state: AllJoynBusAttachmentState; - uniqueName: string; - - pingAsync(uniqueName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynBusAttachment.pingAsync'); - } - - connect(): void { - console.warn('shimmed function AllJoynBusAttachment.connect'); - } - - disconnect(): void { - console.warn('shimmed function AllJoynBusAttachment.disconnect'); - } - - getAboutDataAsync(serviceInfo: AllJoynServiceInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynBusAttachment.getAboutDataAsync'); - } - - getAboutDataAsync_1(serviceInfo: AllJoynServiceInfo, language: Globalization.Language): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynBusAttachment.getAboutDataAsync_1'); - } - - static getDefault(): AllJoynBusAttachment { - throw new Error('shimmed function AllJoynBusAttachment.getDefault'); - } - - static getWatcher(requiredInterfaces: Foundation.Collections.IIterable): Enumeration.DeviceWatcher { - throw new Error('shimmed function AllJoynBusAttachment.getWatcher'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AllJoynBusAttachment::addEventListener: ${name}`); - switch (name) { - case "authenticationcomplete": // Foundation.TypedEventHandler - case "credentialsrequested": // Foundation.TypedEventHandler - case "credentialsverificationrequested": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - case "acceptsessionjoinerrequested": // Foundation.TypedEventHandler - case "sessionjoined": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AllJoynBusAttachmentState { - disconnected, - connecting, - connected, - disconnecting, - } - export class AllJoynBusAttachmentStateChangedEventArgs implements IAllJoynBusAttachmentStateChangedEventArgs { - state: AllJoynBusAttachmentState; - status: number; - - } - export class AllJoynBusObject implements IAllJoynBusObject { - // constructor(objectPath: string); - // constructor(objectPath: string, busAttachment: AllJoynBusAttachment); - // constructor(); - constructor(objectPath: string, busAttachment: AllJoynBusAttachment) {} - - busAttachment: AllJoynBusAttachment; - session: AllJoynSession; - - start(): void { - console.warn('shimmed function AllJoynBusObject.start'); - } - - stop(): void { - console.warn('shimmed function AllJoynBusObject.stop'); - } - - addProducer(producer: IAllJoynProducer): void { - console.warn('shimmed function AllJoynBusObject.addProducer'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AllJoynBusObject::addEventListener: ${name}`); - switch (name) { - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export class AllJoynBusObjectStoppedEventArgs implements IAllJoynBusObjectStoppedEventArgs { - // constructor(status: number); - constructor(status: number) {} - - status: number; - - } - export class AllJoynCredentials implements IAllJoynCredentials { - timeout: number; - passwordCredential: Security.Credentials.PasswordCredential; - certificate: Security.Cryptography.Certificates.Certificate; - authenticationMechanism: AllJoynAuthenticationMechanism; - - } - export class AllJoynCredentialsRequestedEventArgs implements IAllJoynCredentialsRequestedEventArgs { - attemptCount: number; - credentials: AllJoynCredentials; - peerUniqueName: string; - requestedUserName: string; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AllJoynCredentialsRequestedEventArgs.getDeferral'); - } - - } - export class AllJoynCredentialsVerificationRequestedEventArgs implements IAllJoynCredentialsVerificationRequestedEventArgs { - authenticationMechanism: AllJoynAuthenticationMechanism; - peerCertificate: Security.Cryptography.Certificates.Certificate; - peerCertificateErrorSeverity: Networking.Sockets.SocketSslErrorSeverity; - peerCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - peerIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - peerUniqueName: string; - - accept(): void { - console.warn('shimmed function AllJoynCredentialsVerificationRequestedEventArgs.accept'); - } - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AllJoynCredentialsVerificationRequestedEventArgs.getDeferral'); - } - - } - export class AllJoynMessageInfo implements IAllJoynMessageInfo { - // constructor(senderUniqueName: string); - constructor(senderUniqueName: string) {} - - senderUniqueName: string; - - } - export class AllJoynProducerStoppedEventArgs implements IAllJoynProducerStoppedEventArgs { - // constructor(status: number); - constructor(status: number) {} - - status: number; - - } - export class AllJoynServiceInfo implements IAllJoynServiceInfo { - // constructor(uniqueName: string, objectPath: string, sessionPort: number); - constructor(uniqueName: string, objectPath: string, sessionPort: number) {} - - objectPath: string; - sessionPort: number; - uniqueName: string; - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynServiceInfo.fromIdAsync'); - } - - } - export class AllJoynServiceInfoRemovedEventArgs implements IAllJoynServiceInfoRemovedEventArgs { - // constructor(uniqueName: string); - constructor(uniqueName: string) {} - - uniqueName: string; - - } - export class AllJoynSession implements IAllJoynSession { - id: number; - status: number; - - removeMemberAsync(uniqueName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynSession.removeMemberAsync'); - } - - static getFromServiceInfoAsync(serviceInfo: AllJoynServiceInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynSession.getFromServiceInfoAsync'); - } - - static getFromServiceInfoAsync_1(serviceInfo: AllJoynServiceInfo, busAttachment: AllJoynBusAttachment): Foundation.IAsyncOperation { - throw new Error('shimmed function AllJoynSession.getFromServiceInfoAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AllJoynSession::addEventListener: ${name}`); - switch (name) { - case "lost": // Foundation.TypedEventHandler - case "memberadded": // Foundation.TypedEventHandler - case "memberremoved": // Foundation.TypedEventHandler - break; - } - - } - } - export class AllJoynSessionJoinedEventArgs implements IAllJoynSessionJoinedEventArgs { - // constructor(session: AllJoynSession); - constructor(session: AllJoynSession) {} - - session: AllJoynSession; - - } - export class AllJoynSessionLostEventArgs implements IAllJoynSessionLostEventArgs { - // constructor(reason: AllJoynSessionLostReason); - constructor(reason: AllJoynSessionLostReason) {} - - reason: AllJoynSessionLostReason; - - } - export enum AllJoynSessionLostReason { - none, - producerLeftSession, - producerClosedAbruptly, - removedByProducer, - linkTimeout, - other, - } - export class AllJoynSessionMemberAddedEventArgs implements IAllJoynSessionMemberAddedEventArgs { - // constructor(uniqueName: string); - constructor(uniqueName: string) {} - - uniqueName: string; - - } - export class AllJoynSessionMemberRemovedEventArgs implements IAllJoynSessionMemberRemovedEventArgs { - // constructor(uniqueName: string); - constructor(uniqueName: string) {} - - uniqueName: string; - - } - export class AllJoynStatus { - static authenticationFailed: number = 4100; - static authenticationRejectedByUser: number = 4101; - static connectionRefused: number = 27; - static fail: number = 1; - static insufficientSecurity: number = 4121; - static invalidArgument1: number = 12; - static invalidArgument2: number = 13; - static invalidArgument3: number = 14; - static invalidArgument4: number = 15; - static invalidArgument5: number = 16; - static invalidArgument6: number = 17; - static invalidArgument7: number = 18; - static invalidArgument8: number = 19; - static ok: number = 0; - static operationTimedOut: number = 10; - static otherEndClosed: number = 11; - static sslConnectFailed: number = 4106; - static sslIdentityVerificationFailed: number = 4107; - - } - export enum AllJoynTrafficType { - unknown, - messages, - rawUnreliable, - rawReliable = 4, - } - export class AllJoynWatcherStoppedEventArgs implements IAllJoynWatcherStoppedEventArgs { - // constructor(status: number); - constructor(status: number) {} - - status: number; - - } - export interface IAllJoynAcceptSessionJoiner { - accept(): void; - } - export interface IAllJoynProducer { - setBusObject(busObject: AllJoynBusObject): void; - } - } - export namespace Background { - export class DeviceServicingDetails implements IDeviceServicingDetails { - __arguments: string; - deviceId: string; - expectedDuration: number; - - } - export class DeviceUseDetails implements IDeviceUseDetails { - __arguments: string; - deviceId: string; - - } - } - export namespace Bluetooth { - export namespace Advertisement { - export class BluetoothLEAdvertisement implements IBluetoothLEAdvertisement { - // constructor(); - localName: string = ''; - flags: BluetoothLEAdvertisementFlags | null; - dataSections: BluetoothLEAdvertisementDataSection[] = [ ]; - manufacturerData: BluetoothLEManufacturerData[] = [ ]; - serviceUuids: string[] = [ ]; - - getManufacturerDataByCompanyId(companyId: number): BluetoothLEManufacturerData[] { - throw new Error('shimmed function BluetoothLEAdvertisement.getManufacturerDataByCompanyId'); - } - - getSectionsByType(type: number): BluetoothLEAdvertisementDataSection[] { - throw new Error('shimmed function BluetoothLEAdvertisement.getSectionsByType'); - } - - } - export class BluetoothLEAdvertisementBytePattern implements IBluetoothLEAdvertisementBytePattern { - // constructor(); - // constructor(dataType: number, offset: number, data: Storage.Streams.IBuffer); - constructor(dataType: number, offset: number, data: Storage.Streams.IBuffer) {} - - offset: number = 0; - dataType: number = 0; - data: Storage.Streams.IBuffer = null; - - } - export class BluetoothLEAdvertisementDataSection implements IBluetoothLEAdvertisementDataSection { - // constructor(); - // constructor(dataType: number, data: Storage.Streams.IBuffer); - constructor(dataType: number, data: Storage.Streams.IBuffer) {} - - dataType: number = 0; - data: Storage.Streams.IBuffer = null; - - } - export class BluetoothLEAdvertisementDataTypes { - static advertisingInterval: number = 26; - static appearance: number = 25; - static completeLocalName: number = 9; - static completeService128BitUuids: number = 7; - static completeService16BitUuids: number = 3; - static completeService32BitUuids: number = 5; - static flags: number = 1; - static incompleteService128BitUuids: number = 6; - static incompleteService16BitUuids: number = 2; - static incompleteService32BitUuids: number = 4; - static manufacturerSpecificData: number = 255; - static publicTargetAddress: number = 23; - static randomTargetAddress: number = 24; - static serviceData128BitUuids: number = 33; - static serviceData16BitUuids: number = 22; - static serviceData32BitUuids: number = 32; - static serviceSolicitation128BitUuids: number = 21; - static serviceSolicitation16BitUuids: number = 20; - static serviceSolicitation32BitUuids: number = 31; - static shortenedLocalName: number = 8; - static slaveConnectionIntervalRange: number = 18; - static txPowerLevel: number = 10; - - } - export class BluetoothLEAdvertisementFilter implements IBluetoothLEAdvertisementFilter { - // constructor(); - advertisement: BluetoothLEAdvertisement = null; - bytePatterns: BluetoothLEAdvertisementBytePattern[] = [ ]; - - } - export enum BluetoothLEAdvertisementFlags { - none, - limitedDiscoverableMode, - generalDiscoverableMode, - classicNotSupported = 4, - dualModeControllerCapable = 8, - dualModeHostCapable = 16, - } - export class BluetoothLEAdvertisementPublisher implements IBluetoothLEAdvertisementPublisher { - // constructor(); - // constructor(advertisement: BluetoothLEAdvertisement); - constructor(advertisement: BluetoothLEAdvertisement) {} - - advertisement: BluetoothLEAdvertisement = null; - status: BluetoothLEAdvertisementPublisherStatus = BluetoothLEAdvertisementPublisherStatus.created; - - start(): void { - console.warn('shimmed function BluetoothLEAdvertisementPublisher.start'); - } - - stop(): void { - console.warn('shimmed function BluetoothLEAdvertisementPublisher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BluetoothLEAdvertisementPublisher::addEventListener: ${name}`); - switch (name) { - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum BluetoothLEAdvertisementPublisherStatus { - created, - waiting, - started, - stopping, - stopped, - aborted, - } - export class BluetoothLEAdvertisementPublisherStatusChangedEventArgs implements IBluetoothLEAdvertisementPublisherStatusChangedEventArgs { - error: BluetoothError; - status: BluetoothLEAdvertisementPublisherStatus; - - } - export class BluetoothLEAdvertisementReceivedEventArgs implements IBluetoothLEAdvertisementReceivedEventArgs { - advertisement: BluetoothLEAdvertisement; - advertisementType: BluetoothLEAdvertisementType; - bluetoothAddress: number; - rawSignalStrengthInDBm: number; - timestamp: Date; - - } - export enum BluetoothLEAdvertisementType { - connectableUndirected, - connectableDirected, - scannableUndirected, - nonConnectableUndirected, - scanResponse, - } - export class BluetoothLEAdvertisementWatcher implements IBluetoothLEAdvertisementWatcher { - // constructor(); - // constructor(advertisementFilter: BluetoothLEAdvertisementFilter); - constructor(advertisementFilter: BluetoothLEAdvertisementFilter) {} - - signalStrengthFilter: BluetoothSignalStrengthFilter = null; - scanningMode: BluetoothLEScanningMode = BluetoothLEScanningMode.passive; - advertisementFilter: BluetoothLEAdvertisementFilter = null; - maxOutOfRangeTimeout: number = 60000; - maxSamplingInterval: number = 25500; - minOutOfRangeTimeout: number = 1000; - minSamplingInterval: number = 100; - status: BluetoothLEAdvertisementWatcherStatus = BluetoothLEAdvertisementWatcherStatus.created; - - start(): void { - console.warn('shimmed function BluetoothLEAdvertisementWatcher.start'); - } - - stop(): void { - console.warn('shimmed function BluetoothLEAdvertisementWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BluetoothLEAdvertisementWatcher::addEventListener: ${name}`); - switch (name) { - case "received": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export enum BluetoothLEAdvertisementWatcherStatus { - created, - started, - stopping, - stopped, - aborted, - } - export class BluetoothLEAdvertisementWatcherStoppedEventArgs implements IBluetoothLEAdvertisementWatcherStoppedEventArgs { - error: BluetoothError; - - } - export class BluetoothLEManufacturerData implements IBluetoothLEManufacturerData { - // constructor(); - // constructor(companyId: number, data: Storage.Streams.IBuffer); - constructor(companyId: number, data: Storage.Streams.IBuffer) {} - - data: Storage.Streams.IBuffer = null; - companyId: number = 0; - - } - export enum BluetoothLEScanningMode { - passive, - active, - } - } - export namespace Background { - export enum BluetoothEventTriggeringMode { - serial, - batch, - keepLatest, - } - export class BluetoothLEAdvertisementPublisherTriggerDetails implements IBluetoothLEAdvertisementPublisherTriggerDetails { - error: BluetoothError; - status: Advertisement.BluetoothLEAdvertisementPublisherStatus; - - } - export class BluetoothLEAdvertisementWatcherTriggerDetails implements IBluetoothLEAdvertisementWatcherTriggerDetails { - advertisements: Advertisement.BluetoothLEAdvertisementReceivedEventArgs[]; - error: BluetoothError; - signalStrengthFilter: BluetoothSignalStrengthFilter; - - } - export class GattCharacteristicNotificationTriggerDetails implements IGattCharacteristicNotificationTriggerDetails, IGattCharacteristicNotificationTriggerDetails2 { - characteristic: GenericAttributeProfile.GattCharacteristic; - value: Storage.Streams.IBuffer; - error: BluetoothError; - eventTriggeringMode: BluetoothEventTriggeringMode; - valueChangedEvents: GenericAttributeProfile.GattValueChangedEventArgs[]; - - } - export class GattServiceProviderConnection implements IGattServiceProviderConnection { - service: GenericAttributeProfile.GattLocalService; - triggerId: string; - static allServices: string[] = [ ]; - - start(): void { - console.warn('shimmed function GattServiceProviderConnection.start'); - } - - } - export class GattServiceProviderTriggerDetails implements IGattServiceProviderTriggerDetails { - connection: GattServiceProviderConnection; - - } - export class RfcommConnectionTriggerDetails implements IRfcommConnectionTriggerDetails { - incoming: Boolean; - remoteDevice: BluetoothDevice; - socket: Networking.Sockets.StreamSocket; - - } - export class RfcommInboundConnectionInformation implements IRfcommInboundConnectionInformation { - serviceCapabilities: BluetoothServiceCapabilities; - sdpRecord: Storage.Streams.IBuffer; - localServiceId: Rfcomm.RfcommServiceId; - - } - export class RfcommOutboundConnectionInformation implements IRfcommOutboundConnectionInformation { - remoteServiceId: Rfcomm.RfcommServiceId; - - } - } - export class BluetoothAdapter implements IBluetoothAdapter, IBluetoothAdapter2 { - bluetoothAddress: number; - deviceId: string; - isAdvertisementOffloadSupported: Boolean; - isCentralRoleSupported: Boolean; - isClassicSupported: Boolean; - isLowEnergySupported: Boolean; - isPeripheralRoleSupported: Boolean; - areClassicSecureConnectionsSupported: Boolean; - areLowEnergySecureConnectionsSupported: Boolean; - - getRadioAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothAdapter.getRadioAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function BluetoothAdapter.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothAdapter.fromIdAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothAdapter.getDefaultAsync'); - } - - } - export enum BluetoothAddressType { - public, - random, - unspecified, - } - export enum BluetoothCacheMode { - cached, - uncached, - } - export class BluetoothClassOfDevice implements IBluetoothClassOfDevice { - majorClass: BluetoothMajorClass; - minorClass: BluetoothMinorClass; - rawValue: number; - serviceCapabilities: BluetoothServiceCapabilities; - - static fromRawValue(rawValue: number): BluetoothClassOfDevice { - throw new Error('shimmed function BluetoothClassOfDevice.fromRawValue'); - } - - static fromParts(majorClass: BluetoothMajorClass, minorClass: BluetoothMinorClass, serviceCapabilities: BluetoothServiceCapabilities): BluetoothClassOfDevice { - throw new Error('shimmed function BluetoothClassOfDevice.fromParts'); - } - - } - export enum BluetoothConnectionStatus { - disconnected, - connected, - } - export class BluetoothDevice implements IBluetoothDevice, Foundation.IClosable, IBluetoothDevice2, IBluetoothDevice3, IBluetoothDevice4, IBluetoothDevice5 { - bluetoothAddress: number; - classOfDevice: BluetoothClassOfDevice; - connectionStatus: BluetoothConnectionStatus; - deviceId: string; - hostName: Networking.HostName; - name: string; - rfcommServices: Rfcomm.RfcommDeviceService[]; - sdpRecords: Storage.Streams.IBuffer[]; - deviceInformation: Enumeration.DeviceInformation; - deviceAccessInformation: Enumeration.DeviceAccessInformation; - bluetoothDeviceId: BluetoothDeviceId; - wasSecureConnectionUsedForPairing: Boolean; - - close(): void { - console.warn('shimmed function BluetoothDevice.close'); - } - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.requestAccessAsync'); - } - - getRfcommServicesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.getRfcommServicesAsync'); - } - - getRfcommServicesAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.getRfcommServicesAsync_1'); - } - - getRfcommServicesForIdAsync(serviceId: Rfcomm.RfcommServiceId): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.getRfcommServicesForIdAsync'); - } - - getRfcommServicesForIdAsync_1(serviceId: Rfcomm.RfcommServiceId, cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.getRfcommServicesForIdAsync_1'); - } - - static getDeviceSelectorFromPairingState(pairingState: Boolean): string { - throw new Error('shimmed function BluetoothDevice.getDeviceSelectorFromPairingState'); - } - - static getDeviceSelectorFromConnectionStatus(connectionStatus: BluetoothConnectionStatus): string { - throw new Error('shimmed function BluetoothDevice.getDeviceSelectorFromConnectionStatus'); - } - - static getDeviceSelectorFromDeviceName(deviceName: string): string { - throw new Error('shimmed function BluetoothDevice.getDeviceSelectorFromDeviceName'); - } - - static getDeviceSelectorFromBluetoothAddress(bluetoothAddress: number): string { - throw new Error('shimmed function BluetoothDevice.getDeviceSelectorFromBluetoothAddress'); - } - - static getDeviceSelectorFromClassOfDevice(classOfDevice: BluetoothClassOfDevice): string { - throw new Error('shimmed function BluetoothDevice.getDeviceSelectorFromClassOfDevice'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.fromIdAsync'); - } - - static fromHostNameAsync(hostName: Networking.HostName): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.fromHostNameAsync'); - } - - static fromBluetoothAddressAsync(address: number): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothDevice.fromBluetoothAddressAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function BluetoothDevice.getDeviceSelector'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BluetoothDevice::addEventListener: ${name}`); - switch (name) { - case "connectionstatuschanged": // Foundation.TypedEventHandler - case "namechanged": // Foundation.TypedEventHandler - case "sdprecordschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class BluetoothDeviceId implements IBluetoothDeviceId { - id: string; - isClassicDevice: Boolean; - isLowEnergyDevice: Boolean; - - static fromId(deviceId: string): BluetoothDeviceId { - throw new Error('shimmed function BluetoothDeviceId.fromId'); - } - - } - export enum BluetoothError { - success, - radioNotAvailable, - resourceInUse, - deviceNotConnected, - otherError, - disabledByPolicy, - notSupported, - disabledByUser, - consentRequired, - transportNotSupported, - } - export class BluetoothLEAppearance implements IBluetoothLEAppearance { - category: number; - rawValue: number; - subCategory: number; - - static fromRawValue(rawValue: number): BluetoothLEAppearance { - throw new Error('shimmed function BluetoothLEAppearance.fromRawValue'); - } - - static fromParts(appearanceCategory: number, appearanceSubCategory: number): BluetoothLEAppearance { - throw new Error('shimmed function BluetoothLEAppearance.fromParts'); - } - - } - export class BluetoothLEAppearanceCategories { - static barcodeScanner: number = 11; - static bloodPressure: number = 14; - static clock: number = 4; - static computer: number = 2; - static cycling: number = 18; - static display: number = 5; - static eyeGlasses: number = 7; - static glucoseMeter: number = 16; - static heartRate: number = 13; - static humanInterfaceDevice: number = 15; - static keyring: number = 9; - static mediaPlayer: number = 10; - static outdoorSportActivity: number = 81; - static phone: number = 1; - static pulseOximeter: number = 49; - static remoteControl: number = 6; - static runningWalking: number = 17; - static tag: number = 8; - static thermometer: number = 12; - static uncategorized: number = 0; - static watch: number = 3; - static weightScale: number = 50; - - } - export class BluetoothLEAppearanceSubcategories { - static barcodeScanner: number = 8; - static bloodPressureArm: number = 1; - static bloodPressureWrist: number = 2; - static cardReader: number = 6; - static cyclingCadenceSensor: number = 3; - static cyclingComputer: number = 1; - static cyclingPowerSensor: number = 4; - static cyclingSpeedCadenceSensor: number = 5; - static cyclingSpeedSensor: number = 2; - static digitalPen: number = 7; - static digitizerTablet: number = 5; - static gamepad: number = 4; - static generic: number = 0; - static heartRateBelt: number = 1; - static joystick: number = 3; - static keyboard: number = 1; - static locationDisplay: number = 1; - static locationNavigationDisplay: number = 2; - static locationNavigationPod: number = 4; - static locationPod: number = 3; - static mouse: number = 2; - static oximeterFingertip: number = 1; - static oximeterWristWorn: number = 2; - static runningWalkingInShoe: number = 1; - static runningWalkingOnHip: number = 3; - static runningWalkingOnShoe: number = 2; - static sportsWatch: number = 1; - static thermometerEar: number = 1; - - } - export class BluetoothLEDevice implements IBluetoothLEDevice, Foundation.IClosable, IBluetoothLEDevice2, IBluetoothLEDevice3, IBluetoothLEDevice4, IBluetoothLEDevice5 { - bluetoothAddress: number; - connectionStatus: BluetoothConnectionStatus; - deviceId: string; - gattServices: GenericAttributeProfile.GattDeviceService[]; - name: string; - appearance: BluetoothLEAppearance; - bluetoothAddressType: BluetoothAddressType; - deviceInformation: Enumeration.DeviceInformation; - deviceAccessInformation: Enumeration.DeviceAccessInformation; - bluetoothDeviceId: BluetoothDeviceId; - wasSecureConnectionUsedForPairing: Boolean; - - getGattService(serviceUuid: string): GenericAttributeProfile.GattDeviceService { - throw new Error('shimmed function BluetoothLEDevice.getGattService'); - } - - close(): void { - console.warn('shimmed function BluetoothLEDevice.close'); - } - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.requestAccessAsync'); - } - - getGattServicesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.getGattServicesAsync'); - } - - getGattServicesAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.getGattServicesAsync_1'); - } - - getGattServicesForUuidAsync(serviceUuid: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.getGattServicesForUuidAsync'); - } - - getGattServicesForUuidAsync_1(serviceUuid: string, cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.getGattServicesForUuidAsync_1'); - } - - static getDeviceSelectorFromPairingState(pairingState: Boolean): string { - throw new Error('shimmed function BluetoothLEDevice.getDeviceSelectorFromPairingState'); - } - - static getDeviceSelectorFromConnectionStatus(connectionStatus: BluetoothConnectionStatus): string { - throw new Error('shimmed function BluetoothLEDevice.getDeviceSelectorFromConnectionStatus'); - } - - static getDeviceSelectorFromDeviceName(deviceName: string): string { - throw new Error('shimmed function BluetoothLEDevice.getDeviceSelectorFromDeviceName'); - } - - static getDeviceSelectorFromBluetoothAddress(bluetoothAddress: number): string { - throw new Error('shimmed function BluetoothLEDevice.getDeviceSelectorFromBluetoothAddress'); - } - - static getDeviceSelectorFromBluetoothAddress_1(bluetoothAddress: number, bluetoothAddressType: BluetoothAddressType): string { - throw new Error('shimmed function BluetoothLEDevice.getDeviceSelectorFromBluetoothAddress_1'); - } - - static getDeviceSelectorFromAppearance(appearance: BluetoothLEAppearance): string { - throw new Error('shimmed function BluetoothLEDevice.getDeviceSelectorFromAppearance'); - } - - static fromBluetoothAddressAsync(bluetoothAddress: number, bluetoothAddressType: BluetoothAddressType): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.fromBluetoothAddressAsync'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.fromIdAsync'); - } - - static fromBluetoothAddressAsync_1(bluetoothAddress: number): Foundation.IAsyncOperation { - throw new Error('shimmed function BluetoothLEDevice.fromBluetoothAddressAsync_1'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function BluetoothLEDevice.getDeviceSelector'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BluetoothLEDevice::addEventListener: ${name}`); - switch (name) { - case "connectionstatuschanged": // Foundation.TypedEventHandler - case "gattserviceschanged": // Foundation.TypedEventHandler - case "namechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum BluetoothMajorClass { - miscellaneous, - computer, - phone, - networkAccessPoint, - audioVideo, - peripheral, - imaging, - wearable, - toy, - health, - } - export enum BluetoothMinorClass { - uncategorized, - computerDesktop, - computerServer, - computerLaptop, - computerHandheld, - computerPalmSize, - computerWearable, - computerTablet, - phoneCellular = 1, - phoneCordless, - phoneSmartPhone, - phoneWired, - phoneIsdn, - networkFullyAvailable = 0, - networkUsed01To17Percent = 8, - networkUsed17To33Percent = 16, - networkUsed33To50Percent = 24, - networkUsed50To67Percent = 32, - networkUsed67To83Percent = 40, - networkUsed83To99Percent = 48, - networkNoServiceAvailable = 56, - audioVideoWearableHeadset = 1, - audioVideoHandsFree, - audioVideoMicrophone = 4, - audioVideoLoudspeaker, - audioVideoHeadphones, - audioVideoPortableAudio, - audioVideoCarAudio, - audioVideoSetTopBox, - audioVideoHifiAudioDevice, - audioVideoVcr, - audioVideoVideoCamera, - audioVideoCamcorder, - audioVideoVideoMonitor, - audioVideoVideoDisplayAndLoudspeaker, - audioVideoVideoConferencing, - audioVideoGamingOrToy = 18, - peripheralJoystick = 1, - peripheralGamepad, - peripheralRemoteControl, - peripheralSensing, - peripheralDigitizerTablet, - peripheralCardReader, - peripheralDigitalPen, - peripheralHandheldScanner, - peripheralHandheldGesture, - wearableWristwatch = 1, - wearablePager, - wearableJacket, - wearableHelmet, - wearableGlasses, - toyRobot = 1, - toyVehicle, - toyDoll, - toyController, - toyGame, - healthBloodPressureMonitor = 1, - healthThermometer, - healthWeighingScale, - healthGlucoseMeter, - healthPulseOximeter, - healthHeartRateMonitor, - healthHealthDataDisplay, - healthStepCounter, - healthBodyCompositionAnalyzer, - healthPeakFlowMonitor, - healthMedicationMonitor, - healthKneeProsthesis, - healthAnkleProsthesis, - healthGenericHealthManager, - healthPersonalMobilityDevice, - } - export enum BluetoothServiceCapabilities { - none, - limitedDiscoverableMode, - positioningService = 8, - networkingService = 16, - renderingService = 32, - capturingService = 64, - objectTransferService = 128, - audioService = 256, - telephoneService = 512, - informationService = 1024, - } - export class BluetoothSignalStrengthFilter implements IBluetoothSignalStrengthFilter { - // constructor(); - samplingInterval: number | null; - outOfRangeTimeout: number | null; - outOfRangeThresholdInDBm: number | null; - inRangeThresholdInDBm: number | null; - - } - export class BluetoothUuidHelper { - static fromShortId(shortId: number): string { - throw new Error('shimmed function BluetoothUuidHelper.fromShortId'); - } - - static tryGetShortId(uuid: string): number | null { - throw new Error('shimmed function BluetoothUuidHelper.tryGetShortId'); - } - - } - export namespace GenericAttributeProfile { - export class GattCharacteristic implements IGattCharacteristic, IGattCharacteristic2, IGattCharacteristic3 { - protectionLevel: GattProtectionLevel; - attributeHandle: number; - characteristicProperties: GattCharacteristicProperties; - presentationFormats: GattPresentationFormat[]; - userDescription: string; - uuid: string; - service: GattDeviceService; - - getDescriptors(descriptorUuid: string): GattDescriptor[] { - throw new Error('shimmed function GattCharacteristic.getDescriptors'); - } - - readValueAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.readValueAsync'); - } - - readValueAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.readValueAsync_1'); - } - - writeValueAsync(value: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.writeValueAsync'); - } - - writeValueAsync_1(value: Storage.Streams.IBuffer, writeOption: GattWriteOption): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.writeValueAsync_1'); - } - - readClientCharacteristicConfigurationDescriptorAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.readClientCharacteristicConfigurationDescriptorAsync'); - } - - writeClientCharacteristicConfigurationDescriptorAsync(clientCharacteristicConfigurationDescriptorValue: GattClientCharacteristicConfigurationDescriptorValue): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.writeClientCharacteristicConfigurationDescriptorAsync'); - } - - getAllDescriptors(): GattDescriptor[] { - throw new Error('shimmed function GattCharacteristic.getAllDescriptors'); - } - - getDescriptorsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.getDescriptorsAsync'); - } - - getDescriptorsAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.getDescriptorsAsync_1'); - } - - getDescriptorsForUuidAsync(descriptorUuid: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.getDescriptorsForUuidAsync'); - } - - getDescriptorsForUuidAsync_1(descriptorUuid: string, cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.getDescriptorsForUuidAsync_1'); - } - - writeValueWithResultAsync(value: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.writeValueWithResultAsync'); - } - - writeValueWithResultAsync_1(value: Storage.Streams.IBuffer, writeOption: GattWriteOption): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.writeValueWithResultAsync_1'); - } - - writeClientCharacteristicConfigurationDescriptorWithResultAsync(clientCharacteristicConfigurationDescriptorValue: GattClientCharacteristicConfigurationDescriptorValue): Foundation.IAsyncOperation { - throw new Error('shimmed function GattCharacteristic.writeClientCharacteristicConfigurationDescriptorWithResultAsync'); - } - - static convertShortIdToUuid(shortId: number): string { - throw new Error('shimmed function GattCharacteristic.convertShortIdToUuid'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GattCharacteristic::addEventListener: ${name}`); - switch (name) { - case "valuechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GattCharacteristicProperties { - none, - broadcast, - read, - writeWithoutResponse = 4, - write = 8, - notify = 16, - indicate = 32, - authenticatedSignedWrites = 64, - extendedProperties = 128, - reliableWrites = 256, - writableAuxiliaries = 512, - } - export class GattCharacteristicsResult implements IGattCharacteristicsResult { - characteristics: GattCharacteristic[]; - protocolError: number | null; - status: GattCommunicationStatus; - - } - export class GattCharacteristicUuids { - static batteryLevel: string = '00002a19-0000-1000-8000-00805f9b34fb'; - static bloodPressureFeature: string = '00002a49-0000-1000-8000-00805f9b34fb'; - static bloodPressureMeasurement: string = '00002a35-0000-1000-8000-00805f9b34fb'; - static bodySensorLocation: string = '00002a38-0000-1000-8000-00805f9b34fb'; - static cscFeature: string = '00002a5c-0000-1000-8000-00805f9b34fb'; - static cscMeasurement: string = '00002a5b-0000-1000-8000-00805f9b34fb'; - static glucoseFeature: string = '00002a51-0000-1000-8000-00805f9b34fb'; - static glucoseMeasurement: string = '00002a18-0000-1000-8000-00805f9b34fb'; - static glucoseMeasurementContext: string = '00002a34-0000-1000-8000-00805f9b34fb'; - static heartRateControlPoint: string = '00002a39-0000-1000-8000-00805f9b34fb'; - static heartRateMeasurement: string = '00002a37-0000-1000-8000-00805f9b34fb'; - static intermediateCuffPressure: string = '00002a36-0000-1000-8000-00805f9b34fb'; - static intermediateTemperature: string = '00002a1e-0000-1000-8000-00805f9b34fb'; - static measurementInterval: string = '00002a21-0000-1000-8000-00805f9b34fb'; - static recordAccessControlPoint: string = '00002a52-0000-1000-8000-00805f9b34fb'; - static rscFeature: string = '00002a54-0000-1000-8000-00805f9b34fb'; - static rscMeasurement: string = '00002a53-0000-1000-8000-00805f9b34fb'; - static sccontrolPoint: string = '00002a55-0000-1000-8000-00805f9b34fb'; - static sensorLocation: string = '00002a5d-0000-1000-8000-00805f9b34fb'; - static temperatureMeasurement: string = '00002a1c-0000-1000-8000-00805f9b34fb'; - static temperatureType: string = '00002a1d-0000-1000-8000-00805f9b34fb'; - static lnFeature: string = '00002a6a-0000-1000-8000-00805f9b34fb'; - static alertCategoryId: string = '00002a43-0000-1000-8000-00805f9b34fb'; - static alertCategoryIdBitMask: string = '00002a42-0000-1000-8000-00805f9b34fb'; - static alertLevel: string = '00002a06-0000-1000-8000-00805f9b34fb'; - static alertNotificationControlPoint: string = '00002a44-0000-1000-8000-00805f9b34fb'; - static alertStatus: string = '00002a3f-0000-1000-8000-00805f9b34fb'; - static bootKeyboardInputReport: string = '00002a22-0000-1000-8000-00805f9b34fb'; - static bootKeyboardOutputReport: string = '00002a32-0000-1000-8000-00805f9b34fb'; - static bootMouseInputReport: string = '00002a33-0000-1000-8000-00805f9b34fb'; - static currentTime: string = '00002a2b-0000-1000-8000-00805f9b34fb'; - static cyclingPowerControlPoint: string = '00002a66-0000-1000-8000-00805f9b34fb'; - static cyclingPowerFeature: string = '00002a65-0000-1000-8000-00805f9b34fb'; - static cyclingPowerMeasurement: string = '00002a63-0000-1000-8000-00805f9b34fb'; - static cyclingPowerVector: string = '00002a64-0000-1000-8000-00805f9b34fb'; - static dateTime: string = '00002a08-0000-1000-8000-00805f9b34fb'; - static dayDateTime: string = '00002a0a-0000-1000-8000-00805f9b34fb'; - static dayOfWeek: string = '00002a09-0000-1000-8000-00805f9b34fb'; - static dstOffset: string = '00002a0d-0000-1000-8000-00805f9b34fb'; - static exactTime256: string = '00002a0c-0000-1000-8000-00805f9b34fb'; - static firmwareRevisionString: string = '00002a26-0000-1000-8000-00805f9b34fb'; - static gapAppearance: string = '00002a01-0000-1000-8000-00805f9b34fb'; - static gapDeviceName: string = '00002a00-0000-1000-8000-00805f9b34fb'; - static gapPeripheralPreferredConnectionParameters: string = '00002a04-0000-1000-8000-00805f9b34fb'; - static gapPeripheralPrivacyFlag: string = '00002a02-0000-1000-8000-00805f9b34fb'; - static gapReconnectionAddress: string = '00002a03-0000-1000-8000-00805f9b34fb'; - static gattServiceChanged: string = '00002a05-0000-1000-8000-00805f9b34fb'; - static hardwareRevisionString: string = '00002a27-0000-1000-8000-00805f9b34fb'; - static hidControlPoint: string = '00002a4c-0000-1000-8000-00805f9b34fb'; - static hidInformation: string = '00002a4a-0000-1000-8000-00805f9b34fb'; - static ieee1107320601RegulatoryCertificationDataList: string = '00002a2a-0000-1000-8000-00805f9b34fb'; - static lnControlPoint: string = '00002a6b-0000-1000-8000-00805f9b34fb'; - static localTimeInformation: string = '00002a0f-0000-1000-8000-00805f9b34fb'; - static locationAndSpeed: string = '00002a67-0000-1000-8000-00805f9b34fb'; - static manufacturerNameString: string = '00002a29-0000-1000-8000-00805f9b34fb'; - static modelNumberString: string = '00002a24-0000-1000-8000-00805f9b34fb'; - static navigation: string = '00002a68-0000-1000-8000-00805f9b34fb'; - static newAlert: string = '00002a46-0000-1000-8000-00805f9b34fb'; - static pnpId: string = '00002a50-0000-1000-8000-00805f9b34fb'; - static positionQuality: string = '00002a69-0000-1000-8000-00805f9b34fb'; - static protocolMode: string = '00002a4e-0000-1000-8000-00805f9b34fb'; - static referenceTimeInformation: string = '00002a14-0000-1000-8000-00805f9b34fb'; - static report: string = '00002a4d-0000-1000-8000-00805f9b34fb'; - static reportMap: string = '00002a4b-0000-1000-8000-00805f9b34fb'; - static ringerControlPoint: string = '00002a40-0000-1000-8000-00805f9b34fb'; - static ringerSetting: string = '00002a41-0000-1000-8000-00805f9b34fb'; - static scanIntervalWindow: string = '00002a4f-0000-1000-8000-00805f9b34fb'; - static scanRefresh: string = '00002a31-0000-1000-8000-00805f9b34fb'; - static serialNumberString: string = '00002a25-0000-1000-8000-00805f9b34fb'; - static softwareRevisionString: string = '00002a28-0000-1000-8000-00805f9b34fb'; - static supportUnreadAlertCategory: string = '00002a48-0000-1000-8000-00805f9b34fb'; - static supportedNewAlertCategory: string = '00002a47-0000-1000-8000-00805f9b34fb'; - static systemId: string = '00002a23-0000-1000-8000-00805f9b34fb'; - static timeAccuracy: string = '00002a12-0000-1000-8000-00805f9b34fb'; - static timeSource: string = '00002a13-0000-1000-8000-00805f9b34fb'; - static timeUpdateControlPoint: string = '00002a16-0000-1000-8000-00805f9b34fb'; - static timeUpdateState: string = '00002a17-0000-1000-8000-00805f9b34fb'; - static timeWithDst: string = '00002a11-0000-1000-8000-00805f9b34fb'; - static timeZone: string = '00002a0e-0000-1000-8000-00805f9b34fb'; - static txPowerLevel: string = '00002a07-0000-1000-8000-00805f9b34fb'; - static unreadAlertStatus: string = '00002a45-0000-1000-8000-00805f9b34fb'; - - } - export enum GattClientCharacteristicConfigurationDescriptorValue { - none, - notify, - indicate, - } - export class GattClientNotificationResult implements IGattClientNotificationResult, IGattClientNotificationResult2 { - protocolError: number | null; - status: GattCommunicationStatus; - subscribedClient: GattSubscribedClient; - bytesSent: number; - - } - export enum GattCommunicationStatus { - success, - unreachable, - protocolError, - accessDenied, - } - export class GattDescriptor implements IGattDescriptor, IGattDescriptor2 { - protectionLevel: GattProtectionLevel; - attributeHandle: number; - uuid: string; - - readValueAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDescriptor.readValueAsync'); - } - - readValueAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDescriptor.readValueAsync_1'); - } - - writeValueAsync(value: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDescriptor.writeValueAsync'); - } - - writeValueWithResultAsync(value: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDescriptor.writeValueWithResultAsync'); - } - - static convertShortIdToUuid(shortId: number): string { - throw new Error('shimmed function GattDescriptor.convertShortIdToUuid'); - } - - } - export class GattDescriptorsResult implements IGattDescriptorsResult { - descriptors: GattDescriptor[]; - protocolError: number | null; - status: GattCommunicationStatus; - - } - export class GattDescriptorUuids { - static characteristicAggregateFormat: string = '00002905-0000-1000-8000-00805f9b34fb'; - static characteristicExtendedProperties: string = '00002900-0000-1000-8000-00805f9b34fb'; - static characteristicPresentationFormat: string = '00002904-0000-1000-8000-00805f9b34fb'; - static characteristicUserDescription: string = '00002901-0000-1000-8000-00805f9b34fb'; - static clientCharacteristicConfiguration: string = '00002902-0000-1000-8000-00805f9b34fb'; - static serverCharacteristicConfiguration: string = '00002903-0000-1000-8000-00805f9b34fb'; - - } - export class GattDeviceService implements IGattDeviceService, Foundation.IClosable, IGattDeviceService2, IGattDeviceService3 { - attributeHandle: number; - deviceId: string; - uuid: string; - device: BluetoothLEDevice; - parentServices: GattDeviceService[]; - deviceAccessInformation: Enumeration.DeviceAccessInformation; - session: GattSession; - sharingMode: GattSharingMode; - - getCharacteristics(characteristicUuid: string): GattCharacteristic[] { - throw new Error('shimmed function GattDeviceService.getCharacteristics'); - } - - getIncludedServices(serviceUuid: string): GattDeviceService[] { - throw new Error('shimmed function GattDeviceService.getIncludedServices'); - } - - close(): void { - console.warn('shimmed function GattDeviceService.close'); - } - - getAllCharacteristics(): GattCharacteristic[] { - throw new Error('shimmed function GattDeviceService.getAllCharacteristics'); - } - - getAllIncludedServices(): GattDeviceService[] { - throw new Error('shimmed function GattDeviceService.getAllIncludedServices'); - } - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.requestAccessAsync'); - } - - openAsync(sharingMode: GattSharingMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.openAsync'); - } - - getCharacteristicsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getCharacteristicsAsync'); - } - - getCharacteristicsAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getCharacteristicsAsync_1'); - } - - getCharacteristicsForUuidAsync(characteristicUuid: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getCharacteristicsForUuidAsync'); - } - - getCharacteristicsForUuidAsync_1(characteristicUuid: string, cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getCharacteristicsForUuidAsync_1'); - } - - getIncludedServicesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getIncludedServicesAsync'); - } - - getIncludedServicesAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getIncludedServicesAsync_1'); - } - - getIncludedServicesForUuidAsync(serviceUuid: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getIncludedServicesForUuidAsync'); - } - - getIncludedServicesForUuidAsync_1(serviceUuid: string, cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.getIncludedServicesForUuidAsync_1'); - } - - static fromIdAsync(deviceId: string, sharingMode: GattSharingMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.fromIdAsync'); - } - - static getDeviceSelectorForBluetoothDeviceId(bluetoothDeviceId: BluetoothDeviceId): string { - throw new Error('shimmed function GattDeviceService.getDeviceSelectorForBluetoothDeviceId'); - } - - static getDeviceSelectorForBluetoothDeviceId_1(bluetoothDeviceId: BluetoothDeviceId, cacheMode: BluetoothCacheMode): string { - throw new Error('shimmed function GattDeviceService.getDeviceSelectorForBluetoothDeviceId_1'); - } - - static getDeviceSelectorForBluetoothDeviceIdAndUuid(bluetoothDeviceId: BluetoothDeviceId, serviceUuid: string): string { - throw new Error('shimmed function GattDeviceService.getDeviceSelectorForBluetoothDeviceIdAndUuid'); - } - - static getDeviceSelectorForBluetoothDeviceIdAndUuid_1(bluetoothDeviceId: BluetoothDeviceId, serviceUuid: string, cacheMode: BluetoothCacheMode): string { - throw new Error('shimmed function GattDeviceService.getDeviceSelectorForBluetoothDeviceIdAndUuid_1'); - } - - static fromIdAsync_1(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GattDeviceService.fromIdAsync_1'); - } - - static getDeviceSelectorFromUuid(serviceUuid: string): string { - throw new Error('shimmed function GattDeviceService.getDeviceSelectorFromUuid'); - } - - static getDeviceSelectorFromShortId(serviceShortId: number): string { - throw new Error('shimmed function GattDeviceService.getDeviceSelectorFromShortId'); - } - - static convertShortIdToUuid(shortId: number): string { - throw new Error('shimmed function GattDeviceService.convertShortIdToUuid'); - } - - } - export class GattDeviceServicesResult implements IGattDeviceServicesResult { - protocolError: number | null; - services: GattDeviceService[]; - status: GattCommunicationStatus; - - } - export class GattLocalCharacteristic implements IGattLocalCharacteristic { - characteristicProperties: GattCharacteristicProperties; - descriptors: GattLocalDescriptor[]; - presentationFormats: GattPresentationFormat[]; - readProtectionLevel: GattProtectionLevel; - staticValue: Storage.Streams.IBuffer; - subscribedClients: GattSubscribedClient[]; - userDescription: string; - uuid: string; - writeProtectionLevel: GattProtectionLevel; - - createDescriptorAsync(descriptorUuid: string, parameters: GattLocalDescriptorParameters): Foundation.IAsyncOperation { - throw new Error('shimmed function GattLocalCharacteristic.createDescriptorAsync'); - } - - notifyValueAsync(value: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function GattLocalCharacteristic.notifyValueAsync'); - } - - notifyValueAsync_1(value: Storage.Streams.IBuffer, subscribedClient: GattSubscribedClient): Foundation.IAsyncOperation { - throw new Error('shimmed function GattLocalCharacteristic.notifyValueAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GattLocalCharacteristic::addEventListener: ${name}`); - switch (name) { - case "readrequested": // Foundation.TypedEventHandler - case "subscribedclientschanged": // Foundation.TypedEventHandler - case "writerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GattLocalCharacteristicParameters implements IGattLocalCharacteristicParameters { - // constructor(); - writeProtectionLevel: GattProtectionLevel = GattProtectionLevel.plain; - userDescription: string = ''; - staticValue: Storage.Streams.IBuffer; - readProtectionLevel: GattProtectionLevel = GattProtectionLevel.plain; - characteristicProperties: GattCharacteristicProperties = GattCharacteristicProperties.none; - presentationFormats: GattPresentationFormat[] = [ ]; - - } - export class GattLocalCharacteristicResult implements IGattLocalCharacteristicResult { - characteristic: GattLocalCharacteristic; - error: BluetoothError; - - } - export class GattLocalDescriptor implements IGattLocalDescriptor { - readProtectionLevel: GattProtectionLevel; - staticValue: Storage.Streams.IBuffer; - uuid: string; - writeProtectionLevel: GattProtectionLevel; - - addEventListener(name: string, handler: Function) { - console.warn(`GattLocalDescriptor::addEventListener: ${name}`); - switch (name) { - case "readrequested": // Foundation.TypedEventHandler - case "writerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GattLocalDescriptorParameters implements IGattLocalDescriptorParameters { - // constructor(); - writeProtectionLevel: GattProtectionLevel = GattProtectionLevel.plain; - staticValue: Storage.Streams.IBuffer; - readProtectionLevel: GattProtectionLevel = GattProtectionLevel.plain; - - } - export class GattLocalDescriptorResult implements IGattLocalDescriptorResult { - descriptor: GattLocalDescriptor; - error: BluetoothError; - - } - export class GattLocalService implements IGattLocalService { - characteristics: GattLocalCharacteristic[]; - uuid: string; - - createCharacteristicAsync(characteristicUuid: string, parameters: GattLocalCharacteristicParameters): Foundation.IAsyncOperation { - throw new Error('shimmed function GattLocalService.createCharacteristicAsync'); - } - - } - export enum GattOpenStatus { - unspecified, - success, - alreadyOpened, - notFound, - sharingViolation, - accessDenied, - } - export class GattPresentationFormat implements IGattPresentationFormat { - description: number; - exponent: number; - formatType: number; - namespace: number; - unit: number; - static bluetoothSigAssignedNumbers: number = 1; - - static fromParts(formatType: number, exponent: number, unit: number, namespaceId: number, description: number): GattPresentationFormat { - throw new Error('shimmed function GattPresentationFormat.fromParts'); - } - - } - export class GattPresentationFormatTypes { - static bit2: number = 2; - static boolean: number = 1; - static duint16: number = 24; - static float: number = 23; - static float32: number = 20; - static float64: number = 21; - static nibble: number = 3; - static sfloat: number = 22; - static sint12: number = 13; - static sint128: number = 19; - static sint16: number = 14; - static sint24: number = 15; - static sint32: number = 16; - static sint48: number = 17; - static sint64: number = 18; - static sint8: number = 12; - static struct: number = 27; - static uint12: number = 5; - static uint128: number = 11; - static uint16: number = 6; - static uint24: number = 7; - static uint32: number = 8; - static uint48: number = 9; - static uint64: number = 10; - static uint8: number = 4; - static utf16: number = 26; - static utf8: number = 25; - - } - export enum GattProtectionLevel { - plain, - authenticationRequired, - encryptionRequired, - encryptionAndAuthenticationRequired, - } - export class GattProtocolError { - static attributeNotFound: number = 10; - static attributeNotLong: number = 11; - static insufficientAuthentication: number = 5; - static insufficientAuthorization: number = 8; - static insufficientEncryption: number = 15; - static insufficientEncryptionKeySize: number = 12; - static insufficientResources: number = 17; - static invalidAttributeValueLength: number = 13; - static invalidHandle: number = 1; - static invalidOffset: number = 7; - static invalidPdu: number = 4; - static prepareQueueFull: number = 9; - static readNotPermitted: number = 2; - static requestNotSupported: number = 6; - static unlikelyError: number = 14; - static unsupportedGroupType: number = 15; - static writeNotPermitted: number = 3; - - } - export class GattReadClientCharacteristicConfigurationDescriptorResult implements IGattReadClientCharacteristicConfigurationDescriptorResult, IGattReadClientCharacteristicConfigurationDescriptorResult2 { - clientCharacteristicConfigurationDescriptor: GattClientCharacteristicConfigurationDescriptorValue; - status: GattCommunicationStatus; - protocolError: number | null; - - } - export class GattReadRequest implements IGattReadRequest { - length: number; - offset: number; - state: GattRequestState; - - respondWithValue(value: Storage.Streams.IBuffer): void { - console.warn('shimmed function GattReadRequest.respondWithValue'); - } - - respondWithProtocolError(protocolError: number): void { - console.warn('shimmed function GattReadRequest.respondWithProtocolError'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GattReadRequest::addEventListener: ${name}`); - switch (name) { - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class GattReadRequestedEventArgs implements IGattReadRequestedEventArgs { - session: GattSession; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function GattReadRequestedEventArgs.getDeferral'); - } - - getRequestAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattReadRequestedEventArgs.getRequestAsync'); - } - - } - export class GattReadResult implements IGattReadResult, IGattReadResult2 { - status: GattCommunicationStatus; - value: Storage.Streams.IBuffer; - protocolError: number | null; - - } - export class GattReliableWriteTransaction implements IGattReliableWriteTransaction, IGattReliableWriteTransaction2 { - // constructor(); - writeValue(characteristic: GattCharacteristic, value: Storage.Streams.IBuffer): void { - console.warn('shimmed function GattReliableWriteTransaction.writeValue'); - } - - commitAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattReliableWriteTransaction.commitAsync'); - } - - commitWithResultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattReliableWriteTransaction.commitWithResultAsync'); - } - - } - export enum GattRequestState { - pending, - completed, - canceled, - } - export class GattRequestStateChangedEventArgs implements IGattRequestStateChangedEventArgs { - error: BluetoothError; - state: GattRequestState; - - } - export class GattServiceProvider implements IGattServiceProvider { - advertisementStatus: GattServiceProviderAdvertisementStatus; - service: GattLocalService; - - startAdvertising(): void { - console.warn('shimmed function GattServiceProvider.startAdvertising'); - } - - startAdvertising_1(parameters: GattServiceProviderAdvertisingParameters): void { - console.warn('shimmed function GattServiceProvider.startAdvertising_1'); - } - - stopAdvertising(): void { - console.warn('shimmed function GattServiceProvider.stopAdvertising'); - } - - static createAsync(serviceUuid: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GattServiceProvider.createAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GattServiceProvider::addEventListener: ${name}`); - switch (name) { - case "advertisementstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GattServiceProviderAdvertisementStatus { - created, - stopped, - started, - aborted, - startedWithoutAllAdvertisementData, - } - export class GattServiceProviderAdvertisementStatusChangedEventArgs implements IGattServiceProviderAdvertisementStatusChangedEventArgs { - error: BluetoothError; - status: GattServiceProviderAdvertisementStatus; - - } - export class GattServiceProviderAdvertisingParameters implements IGattServiceProviderAdvertisingParameters, IGattServiceProviderAdvertisingParameters2 { - // constructor(); - isDiscoverable: Boolean = false; - isConnectable: Boolean = false; - serviceData: Storage.Streams.IBuffer; - - } - export class GattServiceProviderResult implements IGattServiceProviderResult { - error: BluetoothError; - serviceProvider: GattServiceProvider; - - } - export class GattServiceUuids { - static cyclingSpeedAndCadence: string = '00001816-0000-1000-8000-00805f9b34fb'; - static battery: string = '0000180f-0000-1000-8000-00805f9b34fb'; - static bloodPressure: string = '00001810-0000-1000-8000-00805f9b34fb'; - static genericAccess: string = '00001800-0000-1000-8000-00805f9b34fb'; - static genericAttribute: string = '00001801-0000-1000-8000-00805f9b34fb'; - static glucose: string = '00001808-0000-1000-8000-00805f9b34fb'; - static healthThermometer: string = '00001809-0000-1000-8000-00805f9b34fb'; - static heartRate: string = '0000180d-0000-1000-8000-00805f9b34fb'; - static runningSpeedAndCadence: string = '00001814-0000-1000-8000-00805f9b34fb'; - static nextDstChange: string = '00001807-0000-1000-8000-00805f9b34fb'; - static alertNotification: string = '00001811-0000-1000-8000-00805f9b34fb'; - static currentTime: string = '00001805-0000-1000-8000-00805f9b34fb'; - static cyclingPower: string = '00001818-0000-1000-8000-00805f9b34fb'; - static deviceInformation: string = '0000180a-0000-1000-8000-00805f9b34fb'; - static humanInterfaceDevice: string = '00001812-0000-1000-8000-00805f9b34fb'; - static immediateAlert: string = '00001802-0000-1000-8000-00805f9b34fb'; - static linkLoss: string = '00001803-0000-1000-8000-00805f9b34fb'; - static locationAndNavigation: string = '00001819-0000-1000-8000-00805f9b34fb'; - static phoneAlertStatus: string = '0000180e-0000-1000-8000-00805f9b34fb'; - static referenceTimeUpdate: string = '00001806-0000-1000-8000-00805f9b34fb'; - static scanParameters: string = '00001813-0000-1000-8000-00805f9b34fb'; - static txPower: string = '00001804-0000-1000-8000-00805f9b34fb'; - - } - export class GattSession implements IGattSession, Foundation.IClosable { - maintainConnection: Boolean; - canMaintainConnection: Boolean; - deviceId: BluetoothDeviceId; - maxPduSize: number; - sessionStatus: GattSessionStatus; - - close(): void { - console.warn('shimmed function GattSession.close'); - } - - static fromDeviceIdAsync(deviceId: BluetoothDeviceId): Foundation.IAsyncOperation { - throw new Error('shimmed function GattSession.fromDeviceIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GattSession::addEventListener: ${name}`); - switch (name) { - case "maxpdusizechanged": // Foundation.TypedEventHandler - case "sessionstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GattSessionStatus { - closed, - active, - } - export class GattSessionStatusChangedEventArgs implements IGattSessionStatusChangedEventArgs { - error: BluetoothError; - status: GattSessionStatus; - - } - export enum GattSharingMode { - unspecified, - exclusive, - sharedReadOnly, - sharedReadAndWrite, - } - export class GattSubscribedClient implements IGattSubscribedClient { - maxNotificationSize: number; - session: GattSession; - - addEventListener(name: string, handler: Function) { - console.warn(`GattSubscribedClient::addEventListener: ${name}`); - switch (name) { - case "maxnotificationsizechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class GattValueChangedEventArgs implements IGattValueChangedEventArgs { - characteristicValue: Storage.Streams.IBuffer; - timestamp: Date; - - } - export enum GattWriteOption { - writeWithResponse, - writeWithoutResponse, - } - export class GattWriteRequest implements IGattWriteRequest { - offset: number; - option: GattWriteOption; - state: GattRequestState; - value: Storage.Streams.IBuffer; - - respond(): void { - console.warn('shimmed function GattWriteRequest.respond'); - } - - respondWithProtocolError(protocolError: number): void { - console.warn('shimmed function GattWriteRequest.respondWithProtocolError'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GattWriteRequest::addEventListener: ${name}`); - switch (name) { - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class GattWriteRequestedEventArgs implements IGattWriteRequestedEventArgs { - session: GattSession; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function GattWriteRequestedEventArgs.getDeferral'); - } - - getRequestAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GattWriteRequestedEventArgs.getRequestAsync'); - } - - } - export class GattWriteResult implements IGattWriteResult { - protocolError: number | null; - status: GattCommunicationStatus; - - } - } - export namespace Rfcomm { - export class RfcommDeviceService implements IRfcommDeviceService, IRfcommDeviceService2, Foundation.IClosable, IRfcommDeviceService3 { - connectionHostName: Networking.HostName; - connectionServiceName: string; - maxProtectionLevel: Networking.Sockets.SocketProtectionLevel; - protectionLevel: Networking.Sockets.SocketProtectionLevel; - serviceId: RfcommServiceId; - device: BluetoothDevice; - deviceAccessInformation: Enumeration.DeviceAccessInformation; - - getSdpRawAttributesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RfcommDeviceService.getSdpRawAttributesAsync'); - } - - getSdpRawAttributesAsync_1(cacheMode: BluetoothCacheMode): Foundation.IAsyncOperation { - throw new Error('shimmed function RfcommDeviceService.getSdpRawAttributesAsync_1'); - } - - close(): void { - console.warn('shimmed function RfcommDeviceService.close'); - } - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RfcommDeviceService.requestAccessAsync'); - } - - static getDeviceSelectorForBluetoothDevice(bluetoothDevice: BluetoothDevice): string { - throw new Error('shimmed function RfcommDeviceService.getDeviceSelectorForBluetoothDevice'); - } - - static getDeviceSelectorForBluetoothDevice_1(bluetoothDevice: BluetoothDevice, cacheMode: BluetoothCacheMode): string { - throw new Error('shimmed function RfcommDeviceService.getDeviceSelectorForBluetoothDevice_1'); - } - - static getDeviceSelectorForBluetoothDeviceAndServiceId(bluetoothDevice: BluetoothDevice, serviceId: RfcommServiceId): string { - throw new Error('shimmed function RfcommDeviceService.getDeviceSelectorForBluetoothDeviceAndServiceId'); - } - - static getDeviceSelectorForBluetoothDeviceAndServiceId_1(bluetoothDevice: BluetoothDevice, serviceId: RfcommServiceId, cacheMode: BluetoothCacheMode): string { - throw new Error('shimmed function RfcommDeviceService.getDeviceSelectorForBluetoothDeviceAndServiceId_1'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function RfcommDeviceService.fromIdAsync'); - } - - static getDeviceSelector(serviceId: RfcommServiceId): string { - throw new Error('shimmed function RfcommDeviceService.getDeviceSelector'); - } - - } - export class RfcommDeviceServicesResult implements IRfcommDeviceServicesResult { - error: BluetoothError; - services: RfcommDeviceService[]; - - } - export class RfcommServiceId implements IRfcommServiceId { - uuid: string; - static genericFileTransfer: RfcommServiceId = null; - static obexFileTransfer: RfcommServiceId = null; - static obexObjectPush: RfcommServiceId = null; - static phoneBookAccessPce: RfcommServiceId = null; - static phoneBookAccessPse: RfcommServiceId = null; - static serialPort: RfcommServiceId = null; - - asShortId(): number { - throw new Error('shimmed function RfcommServiceId.asShortId'); - } - - asString(): string { - throw new Error('shimmed function RfcommServiceId.asString'); - } - - static fromUuid(uuid: string): RfcommServiceId { - throw new Error('shimmed function RfcommServiceId.fromUuid'); - } - - static fromShortId(shortId: number): RfcommServiceId { - throw new Error('shimmed function RfcommServiceId.fromShortId'); - } - - } - export class RfcommServiceProvider implements IRfcommServiceProvider, IRfcommServiceProvider2 { - sdpRawAttributes: number[]; - serviceId: RfcommServiceId; - - startAdvertising(listener: Networking.Sockets.StreamSocketListener): void { - console.warn('shimmed function RfcommServiceProvider.startAdvertising'); - } - - stopAdvertising(): void { - console.warn('shimmed function RfcommServiceProvider.stopAdvertising'); - } - - startAdvertising_1(listener: Networking.Sockets.StreamSocketListener, radioDiscoverable: Boolean): void { - console.warn('shimmed function RfcommServiceProvider.startAdvertising_1'); - } - - static createAsync(serviceId: RfcommServiceId): Foundation.IAsyncOperation { - throw new Error('shimmed function RfcommServiceProvider.createAsync'); - } - - } - } - } - export namespace Custom { - export class CustomDevice implements ICustomDevice { - inputStream: Storage.Streams.IInputStream; - outputStream: Storage.Streams.IOutputStream; - - sendIOControlAsync(ioControlCode: IIOControlCode, inputBuffer: Storage.Streams.IBuffer, outputBuffer: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function CustomDevice.sendIOControlAsync'); - } - - trySendIOControlAsync(ioControlCode: IIOControlCode, inputBuffer: Storage.Streams.IBuffer, outputBuffer: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function CustomDevice.trySendIOControlAsync'); - } - - static getDeviceSelector(classGuid: string): string { - throw new Error('shimmed function CustomDevice.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string, desiredAccess: DeviceAccessMode, sharingMode: DeviceSharingMode): Foundation.IAsyncOperation { - throw new Error('shimmed function CustomDevice.fromIdAsync'); - } - - } - export interface CustomDeviceContract { - } - export enum DeviceAccessMode { - read, - write, - readWrite, - } - export enum DeviceSharingMode { - shared, - exclusive, - } - export interface IIOControlCode { - accessMode: IOControlAccessMode; - bufferingMethod: IOControlBufferingMethod; - controlCode: number; - deviceType: number; - __function: number; - } - export enum IOControlAccessMode { - any, - read, - write, - readWrite, - } - export enum IOControlBufferingMethod { - buffered, - directInput, - directOutput, - neither, - } - export class IOControlCode implements IIOControlCode { - // constructor(deviceType: number, __function: number, accessMode: IOControlAccessMode, bufferingMethod: IOControlBufferingMethod); - constructor(deviceType: number, __function: number, accessMode: IOControlAccessMode, bufferingMethod: IOControlBufferingMethod) {} - - accessMode: IOControlAccessMode; - bufferingMethod: IOControlBufferingMethod; - controlCode: number; - deviceType: number; - __function: number; - - } - export class KnownDeviceTypes { - static unknown: number = 34; - - } - } - export interface DevicesLowLevelContract { - } - export namespace Display { - export namespace Core { - export class DisplayAdapter implements IDisplayAdapter { - deviceInterfacePath: string; - id: Graphics.DisplayAdapterId; - pciDeviceId: number; - pciRevision: number; - pciSubSystemId: number; - pciVendorId: number; - properties: string[]; - sourceCount: number; - - static fromId(id: Graphics.DisplayAdapterId): DisplayAdapter { - throw new Error('shimmed function DisplayAdapter.fromId'); - } - - } - export enum DisplayBitsPerChannel { - none, - bpc6, - bpc8, - bpc10 = 4, - bpc12 = 8, - bpc14 = 16, - bpc16 = 32, - } - export class DisplayDevice implements IDisplayDevice { - createScanoutSource(target: DisplayTarget): DisplaySource { - throw new Error('shimmed function DisplayDevice.createScanoutSource'); - } - - createPrimary(target: DisplayTarget, desc: DisplayPrimaryDescription): DisplaySurface { - throw new Error('shimmed function DisplayDevice.createPrimary'); - } - - createTaskPool(): DisplayTaskPool { - throw new Error('shimmed function DisplayDevice.createTaskPool'); - } - - createPeriodicFence(target: DisplayTarget, offsetFromVBlank: number): DisplayFence { - throw new Error('shimmed function DisplayDevice.createPeriodicFence'); - } - - waitForVBlank(source: DisplaySource): void { - console.warn('shimmed function DisplayDevice.waitForVBlank'); - } - - createSimpleScanout(pSource: DisplaySource, pSurface: DisplaySurface, subResourceIndex: number, syncInterval: number): DisplayScanout { - throw new Error('shimmed function DisplayDevice.createSimpleScanout'); - } - - isCapabilitySupported(capability: DisplayDeviceCapability): Boolean { - throw new Error('shimmed function DisplayDevice.isCapabilitySupported'); - } - - } - export enum DisplayDeviceCapability { - flipOverride, - } - export class DisplayFence implements IDisplayFence { - } - export class DisplayManager implements IDisplayManager, Foundation.IClosable { - getCurrentTargets(): DisplayTarget[] { - throw new Error('shimmed function DisplayManager.getCurrentTargets'); - } - - getCurrentAdapters(): DisplayAdapter[] { - throw new Error('shimmed function DisplayManager.getCurrentAdapters'); - } - - tryAcquireTarget(target: DisplayTarget): DisplayManagerResult { - throw new Error('shimmed function DisplayManager.tryAcquireTarget'); - } - - releaseTarget(target: DisplayTarget): void { - console.warn('shimmed function DisplayManager.releaseTarget'); - } - - tryReadCurrentStateForAllTargets(): DisplayManagerResultWithState { - throw new Error('shimmed function DisplayManager.tryReadCurrentStateForAllTargets'); - } - - tryAcquireTargetsAndReadCurrentState(targets: Foundation.Collections.IIterable): DisplayManagerResultWithState { - throw new Error('shimmed function DisplayManager.tryAcquireTargetsAndReadCurrentState'); - } - - tryAcquireTargetsAndCreateEmptyState(targets: Foundation.Collections.IIterable): DisplayManagerResultWithState { - throw new Error('shimmed function DisplayManager.tryAcquireTargetsAndCreateEmptyState'); - } - - tryAcquireTargetsAndCreateSubstate(existingState: DisplayState, targets: Foundation.Collections.IIterable): DisplayManagerResultWithState { - throw new Error('shimmed function DisplayManager.tryAcquireTargetsAndCreateSubstate'); - } - - createDisplayDevice(adapter: DisplayAdapter): DisplayDevice { - throw new Error('shimmed function DisplayManager.createDisplayDevice'); - } - - start(): void { - console.warn('shimmed function DisplayManager.start'); - } - - stop(): void { - console.warn('shimmed function DisplayManager.stop'); - } - - close(): void { - console.warn('shimmed function DisplayManager.close'); - } - - static create(options: DisplayManagerOptions): DisplayManager { - throw new Error('shimmed function DisplayManager.create'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DisplayManager::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - case "disabled": // Foundation.TypedEventHandler - case "enabled": // Foundation.TypedEventHandler - case "pathsfailedorinvalidated": // Foundation.TypedEventHandler - break; - } - - } - } - export class DisplayManagerChangedEventArgs implements IDisplayManagerChangedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function DisplayManagerChangedEventArgs.getDeferral'); - } - - } - export class DisplayManagerDisabledEventArgs implements IDisplayManagerDisabledEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function DisplayManagerDisabledEventArgs.getDeferral'); - } - - } - export class DisplayManagerEnabledEventArgs implements IDisplayManagerEnabledEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function DisplayManagerEnabledEventArgs.getDeferral'); - } - - } - export enum DisplayManagerOptions { - none, - enforceSourceOwnership, - } - export class DisplayManagerPathsFailedOrInvalidatedEventArgs implements IDisplayManagerPathsFailedOrInvalidatedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function DisplayManagerPathsFailedOrInvalidatedEventArgs.getDeferral'); - } - - } - export enum DisplayManagerResult { - success, - unknownFailure, - targetAccessDenied, - targetStale, - remoteSessionNotSupported, - } - export class DisplayManagerResultWithState implements IDisplayManagerResultWithState { - errorCode: DisplayManagerResult; - extendedErrorCode: number; - state: DisplayState; - - } - export class DisplayModeInfo implements IDisplayModeInfo { - isInterlaced: Boolean; - isStereo: Boolean; - presentationRate: DisplayPresentationRate; - properties: string[]; - sourcePixelFormat: Graphics.DirectX.DirectXPixelFormat; - sourceResolution: Graphics.SizeInt32; - targetResolution: Graphics.SizeInt32; - - getWireFormatSupportedBitsPerChannel(encoding: DisplayWireFormatPixelEncoding): DisplayBitsPerChannel { - throw new Error('shimmed function DisplayModeInfo.getWireFormatSupportedBitsPerChannel'); - } - - isWireFormatSupported(wireFormat: DisplayWireFormat): Boolean { - throw new Error('shimmed function DisplayModeInfo.isWireFormatSupported'); - } - - } - export enum DisplayModeQueryOptions { - none, - onlyPreferredResolution, - } - export class DisplayPath implements IDisplayPath { - wireFormat: DisplayWireFormat; - targetResolution: Graphics.SizeInt32 | null; - sourceResolution: Graphics.SizeInt32 | null; - sourcePixelFormat: Graphics.DirectX.DirectXPixelFormat; - scaling: DisplayPathScaling; - rotation: DisplayRotation; - presentationRate: DisplayPresentationRate | null; - isStereo: Boolean; - isInterlaced: Boolean | null; - properties: string[]; - status: DisplayPathStatus; - target: DisplayTarget; - view: DisplayView; - - findModes(flags: DisplayModeQueryOptions): DisplayModeInfo[] { - throw new Error('shimmed function DisplayPath.findModes'); - } - - applyPropertiesFromMode(modeResult: DisplayModeInfo): void { - console.warn('shimmed function DisplayPath.applyPropertiesFromMode'); - } - - } - export enum DisplayPathScaling { - identity, - centered, - stretched, - aspectRatioStretched, - custom, - driverPreferred, - } - export enum DisplayPathStatus { - unknown, - succeeded, - pending, - failed, - failedAsync, - invalidatedAsync, - } - export interface DisplayPresentationRate { - verticalSyncRate: Foundation.Numerics.Rational; - verticalSyncsPerPresentation: number; - } - export class DisplayPrimaryDescription implements IDisplayPrimaryDescription { - // constructor(width: number, height: number, pixelFormat: Graphics.DirectX.DirectXPixelFormat, colorSpace: Graphics.DirectX.DirectXColorSpace, isStereo: Boolean, multisampleDescription: Graphics.DirectX.Direct3D11.Direct3DMultisampleDescription); - constructor(width: number, height: number, pixelFormat: Graphics.DirectX.DirectXPixelFormat, colorSpace: Graphics.DirectX.DirectXColorSpace, isStereo: Boolean, multisampleDescription: Graphics.DirectX.Direct3D11.Direct3DMultisampleDescription) {} - - colorSpace: Graphics.DirectX.DirectXColorSpace; - format: Graphics.DirectX.DirectXPixelFormat; - height: number; - isStereo: Boolean; - multisampleDescription: Graphics.DirectX.Direct3D11.Direct3DMultisampleDescription; - properties: string[]; - width: number; - - static createWithProperties(extraProperties: Foundation.Collections.IIterable>, width: number, height: number, pixelFormat: Graphics.DirectX.DirectXPixelFormat, colorSpace: Graphics.DirectX.DirectXColorSpace, isStereo: Boolean, multisampleDescription: Graphics.DirectX.Direct3D11.Direct3DMultisampleDescription): DisplayPrimaryDescription { - throw new Error('shimmed function DisplayPrimaryDescription.createWithProperties'); - } - - } - export enum DisplayRotation { - none, - clockwise90Degrees, - clockwise180Degrees, - clockwise270Degrees, - } - export class DisplayScanout implements IDisplayScanout { - } - export class DisplaySource implements IDisplaySource { - adapterId: Graphics.DisplayAdapterId; - sourceId: number; - - getMetadata(key: string): Storage.Streams.IBuffer { - throw new Error('shimmed function DisplaySource.getMetadata'); - } - - } - export class DisplayState implements IDisplayState { - isReadOnly: Boolean; - isStale: Boolean; - properties: string[]; - targets: DisplayTarget[]; - views: DisplayView[]; - - connectTarget(target: DisplayTarget): DisplayPath { - throw new Error('shimmed function DisplayState.connectTarget'); - } - - connectTarget_1(target: DisplayTarget, view: DisplayView): DisplayPath { - throw new Error('shimmed function DisplayState.connectTarget_1'); - } - - canConnectTargetToView(target: DisplayTarget, view: DisplayView): Boolean { - throw new Error('shimmed function DisplayState.canConnectTargetToView'); - } - - getViewForTarget(target: DisplayTarget): DisplayView { - throw new Error('shimmed function DisplayState.getViewForTarget'); - } - - getPathForTarget(target: DisplayTarget): DisplayPath { - throw new Error('shimmed function DisplayState.getPathForTarget'); - } - - disconnectTarget(target: DisplayTarget): void { - console.warn('shimmed function DisplayState.disconnectTarget'); - } - - tryFunctionalize(options: DisplayStateFunctionalizeOptions): DisplayStateOperationResult { - throw new Error('shimmed function DisplayState.tryFunctionalize'); - } - - tryApply(options: DisplayStateApplyOptions): DisplayStateOperationResult { - throw new Error('shimmed function DisplayState.tryApply'); - } - - } - export enum DisplayStateApplyOptions { - none, - failIfStateChanged, - forceReapply, - forceModeEnumeration = 4, - } - export enum DisplayStateFunctionalizeOptions { - none, - failIfStateChanged, - validateTopologyOnly, - } - export class DisplayStateOperationResult implements IDisplayStateOperationResult { - extendedErrorCode: number; - status: DisplayStateOperationStatus; - - } - export enum DisplayStateOperationStatus { - success, - partialFailure, - unknownFailure, - targetOwnershipLost, - systemStateChanged, - tooManyPathsForAdapter, - modesNotSupported, - remoteSessionNotSupported, - } - export class DisplaySurface implements IDisplaySurface { - } - export class DisplayTarget implements IDisplayTarget { - adapter: DisplayAdapter; - adapterRelativeId: number; - deviceInterfacePath: string; - isConnected: Boolean; - isStale: Boolean; - isVirtualModeEnabled: Boolean; - isVirtualTopologyEnabled: Boolean; - monitorPersistence: DisplayTargetPersistence; - properties: string[]; - stableMonitorId: string; - usageKind: DisplayMonitorUsageKind; - - tryGetMonitor(): DisplayMonitor { - throw new Error('shimmed function DisplayTarget.tryGetMonitor'); - } - - isSame(otherTarget: DisplayTarget): Boolean { - throw new Error('shimmed function DisplayTarget.isSame'); - } - - isEqual(otherTarget: DisplayTarget): Boolean { - throw new Error('shimmed function DisplayTarget.isEqual'); - } - - } - export enum DisplayTargetPersistence { - none, - bootPersisted, - temporaryPersisted, - pathPersisted, - } - export class DisplayTask implements IDisplayTask { - setScanout(scanout: DisplayScanout): void { - console.warn('shimmed function DisplayTask.setScanout'); - } - - setWait(readyFence: DisplayFence, readyFenceValue: number): void { - console.warn('shimmed function DisplayTask.setWait'); - } - - } - export class DisplayTaskPool implements IDisplayTaskPool { - createTask(): DisplayTask { - throw new Error('shimmed function DisplayTaskPool.createTask'); - } - - executeTask(task: DisplayTask): void { - console.warn('shimmed function DisplayTaskPool.executeTask'); - } - - } - export enum DisplayTaskSignalKind { - onPresentFlipAway, - } - export class DisplayView implements IDisplayView { - contentResolution: Graphics.SizeInt32 | null; - paths: DisplayPath[]; - properties: string[]; - - setPrimaryPath(path: DisplayPath): void { - console.warn('shimmed function DisplayView.setPrimaryPath'); - } - - } - export class DisplayWireFormat implements IDisplayWireFormat { - // constructor(pixelEncoding: DisplayWireFormatPixelEncoding, bitsPerChannel: number, colorSpace: DisplayWireFormatColorSpace, eotf: DisplayWireFormatEotf, hdrMetadata: DisplayWireFormatHdrMetadata); - constructor(pixelEncoding: DisplayWireFormatPixelEncoding, bitsPerChannel: number, colorSpace: DisplayWireFormatColorSpace, eotf: DisplayWireFormatEotf, hdrMetadata: DisplayWireFormatHdrMetadata) {} - - bitsPerChannel: number; - colorSpace: DisplayWireFormatColorSpace; - eotf: DisplayWireFormatEotf; - hdrMetadata: DisplayWireFormatHdrMetadata; - pixelEncoding: DisplayWireFormatPixelEncoding; - properties: string[]; - - static createWithProperties(extraProperties: Foundation.Collections.IIterable>, pixelEncoding: DisplayWireFormatPixelEncoding, bitsPerChannel: number, colorSpace: DisplayWireFormatColorSpace, eotf: DisplayWireFormatEotf, hdrMetadata: DisplayWireFormatHdrMetadata): DisplayWireFormat { - throw new Error('shimmed function DisplayWireFormat.createWithProperties'); - } - - } - export enum DisplayWireFormatColorSpace { - bt709, - bt2020, - profileDefinedWideColorGamut, - } - export enum DisplayWireFormatEotf { - sdr, - hdrSmpte2084, - } - export enum DisplayWireFormatHdrMetadata { - none, - hdr10, - hdr10Plus, - dolbyVisionLowLatency, - } - export enum DisplayWireFormatPixelEncoding { - rgb444, - ycc444, - ycc422, - ycc420, - intensity, - } - } - export class DisplayMonitor implements IDisplayMonitor { - bluePrimary: Foundation.Point; - connectionKind: DisplayMonitorConnectionKind; - deviceId: string; - displayAdapterDeviceId: string; - displayAdapterId: Graphics.DisplayAdapterId; - displayAdapterTargetId: number; - displayName: string; - greenPrimary: Foundation.Point; - maxAverageFullFrameLuminanceInNits: number; - maxLuminanceInNits: number; - minLuminanceInNits: number; - nativeResolutionInRawPixels: Graphics.SizeInt32; - physicalConnector: DisplayMonitorPhysicalConnectorKind; - physicalSizeInInches: Foundation.Size | null; - rawDpiX: number; - rawDpiY: number; - redPrimary: Foundation.Point; - usageKind: DisplayMonitorUsageKind; - whitePoint: Foundation.Point; - - getDescriptor(descriptorKind: DisplayMonitorDescriptorKind): number[] { - throw new Error('shimmed function DisplayMonitor.getDescriptor'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function DisplayMonitor.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DisplayMonitor.fromIdAsync'); - } - - static fromInterfaceIdAsync(deviceInterfaceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DisplayMonitor.fromInterfaceIdAsync'); - } - - } - export enum DisplayMonitorConnectionKind { - internal, - wired, - wireless, - virtual, - } - export enum DisplayMonitorDescriptorKind { - edid, - displayId, - } - export enum DisplayMonitorPhysicalConnectorKind { - unknown, - hd15, - analogTV, - dvi, - hdmi, - lvds, - sdi, - displayPort, - } - export enum DisplayMonitorUsageKind { - standard, - headMounted, - specialPurpose, - } - } - export namespace Enumeration { - export class DeviceAccessChangedEventArgs implements IDeviceAccessChangedEventArgs, IDeviceAccessChangedEventArgs2 { - status: DeviceAccessStatus; - id: string; - - } - export class DeviceAccessInformation implements IDeviceAccessInformation { - currentStatus: DeviceAccessStatus; - - static createFromId(deviceId: string): DeviceAccessInformation { - throw new Error('shimmed function DeviceAccessInformation.createFromId'); - } - - static createFromDeviceClassId(deviceClassId: string): DeviceAccessInformation { - throw new Error('shimmed function DeviceAccessInformation.createFromDeviceClassId'); - } - - static createFromDeviceClass(deviceClass: DeviceClass): DeviceAccessInformation { - throw new Error('shimmed function DeviceAccessInformation.createFromDeviceClass'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DeviceAccessInformation::addEventListener: ${name}`); - switch (name) { - case "accesschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum DeviceAccessStatus { - unspecified, - allowed, - deniedByUser, - deniedBySystem, - } - export enum DeviceClass { - all, - audioCapture, - audioRender, - portableStorageDevice, - videoCapture, - imageScanner, - location, - } - export class DeviceConnectionChangeTriggerDetails implements IDeviceConnectionChangeTriggerDetails { - deviceId: string; - - } - export class DeviceDisconnectButtonClickedEventArgs implements IDeviceDisconnectButtonClickedEventArgs { - device: DeviceInformation; - - } - export class DeviceInformation implements IDeviceInformation, IDeviceInformation2 { - enclosureLocation: EnclosureLocation; - id: string; - isDefault: Boolean; - isEnabled: Boolean; - name: string; - properties: string[]; - kind: DeviceInformationKind; - pairing: DeviceInformationPairing; - - update(updateInfo: DeviceInformationUpdate): void { - console.warn('shimmed function DeviceInformation.update'); - } - - getThumbnailAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.getThumbnailAsync'); - } - - getGlyphThumbnailAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.getGlyphThumbnailAsync'); - } - - static getAqsFilterFromDeviceClass(deviceClass: DeviceClass): string { - throw new Error('shimmed function DeviceInformation.getAqsFilterFromDeviceClass'); - } - - static createFromIdAsync(deviceId: string, additionalProperties: Foundation.Collections.IIterable, kind: DeviceInformationKind): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.createFromIdAsync'); - } - - static findAllAsync(aqsFilter: string, additionalProperties: Foundation.Collections.IIterable, kind: DeviceInformationKind): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.findAllAsync'); - } - - static createWatcher(aqsFilter: string, additionalProperties: Foundation.Collections.IIterable, kind: DeviceInformationKind): DeviceWatcher { - throw new Error('shimmed function DeviceInformation.createWatcher'); - } - - static createFromIdAsync_1(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.createFromIdAsync_1'); - } - - static createFromIdAsync_2(deviceId: string, additionalProperties: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.createFromIdAsync_2'); - } - - static findAllAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.findAllAsync_1'); - } - - static findAllAsync_2(deviceClass: DeviceClass): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.findAllAsync_2'); - } - - static findAllAsync_3(aqsFilter: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.findAllAsync_3'); - } - - static findAllAsync_4(aqsFilter: string, additionalProperties: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformation.findAllAsync_4'); - } - - static createWatcher_1(): DeviceWatcher { - throw new Error('shimmed function DeviceInformation.createWatcher_1'); - } - - static createWatcher_2(deviceClass: DeviceClass): DeviceWatcher { - throw new Error('shimmed function DeviceInformation.createWatcher_2'); - } - - static createWatcher_3(aqsFilter: string): DeviceWatcher { - throw new Error('shimmed function DeviceInformation.createWatcher_3'); - } - - static createWatcher_4(aqsFilter: string, additionalProperties: Foundation.Collections.IIterable): DeviceWatcher { - throw new Error('shimmed function DeviceInformation.createWatcher_4'); - } - - } - export class DeviceInformationCollection implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): DeviceInformation { - throw new Error('shimmed function DeviceInformationCollection.getAt'); - } - - indexOf(value: DeviceInformation): { returnValue: Boolean, index: number } { - throw new Error('shimmed function DeviceInformationCollection.indexOf'); - } - - getMany(startIndex: number, items: DeviceInformation[]): number { - throw new Error('shimmed function DeviceInformationCollection.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function DeviceInformationCollection.first'); - } - - } - export class DeviceInformationCustomPairing implements IDeviceInformationCustomPairing { - pairAsync(pairingKindsSupported: DevicePairingKinds): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformationCustomPairing.pairAsync'); - } - - pairAsync_1(pairingKindsSupported: DevicePairingKinds, minProtectionLevel: DevicePairingProtectionLevel): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformationCustomPairing.pairAsync_1'); - } - - pairAsync_2(pairingKindsSupported: DevicePairingKinds, minProtectionLevel: DevicePairingProtectionLevel, devicePairingSettings: IDevicePairingSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformationCustomPairing.pairAsync_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DeviceInformationCustomPairing::addEventListener: ${name}`); - switch (name) { - case "pairingrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum DeviceInformationKind { - unknown, - deviceInterface, - deviceContainer, - device, - deviceInterfaceClass, - associationEndpoint, - associationEndpointContainer, - associationEndpointService, - devicePanel, - } - export class DeviceInformationPairing implements IDeviceInformationPairing, IDeviceInformationPairing2 { - canPair: Boolean; - isPaired: Boolean; - custom: DeviceInformationCustomPairing; - protectionLevel: DevicePairingProtectionLevel; - - pairAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformationPairing.pairAsync'); - } - - pairAsync_1(minProtectionLevel: DevicePairingProtectionLevel): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformationPairing.pairAsync_1'); - } - - pairAsync_2(minProtectionLevel: DevicePairingProtectionLevel, devicePairingSettings: IDevicePairingSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformationPairing.pairAsync_2'); - } - - unpairAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceInformationPairing.unpairAsync'); - } - - static tryRegisterForAllInboundPairingRequestsWithProtectionLevel(pairingKindsSupported: DevicePairingKinds, minProtectionLevel: DevicePairingProtectionLevel): Boolean { - throw new Error('shimmed function DeviceInformationPairing.tryRegisterForAllInboundPairingRequestsWithProtectionLevel'); - } - - static tryRegisterForAllInboundPairingRequests(pairingKindsSupported: DevicePairingKinds): Boolean { - throw new Error('shimmed function DeviceInformationPairing.tryRegisterForAllInboundPairingRequests'); - } - - } - export class DeviceInformationUpdate implements IDeviceInformationUpdate, IDeviceInformationUpdate2 { - id: string; - properties: string[]; - kind: DeviceInformationKind; - - } - export enum DevicePairingKinds { - none, - confirmOnly, - displayPin, - providePin = 4, - confirmPinMatch = 8, - providePasswordCredential = 16, - } - export enum DevicePairingProtectionLevel { - default, - none, - encryption, - encryptionAndAuthentication, - } - export class DevicePairingRequestedEventArgs implements IDevicePairingRequestedEventArgs, IDevicePairingRequestedEventArgs2 { - deviceInformation: DeviceInformation; - pairingKind: DevicePairingKinds; - pin: string; - - accept(): void { - console.warn('shimmed function DevicePairingRequestedEventArgs.accept'); - } - - accept_1(pin: string): void { - console.warn('shimmed function DevicePairingRequestedEventArgs.accept_1'); - } - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function DevicePairingRequestedEventArgs.getDeferral'); - } - - acceptWithPasswordCredential(passwordCredential: Security.Credentials.PasswordCredential): void { - console.warn('shimmed function DevicePairingRequestedEventArgs.acceptWithPasswordCredential'); - } - - } - export class DevicePairingResult implements IDevicePairingResult { - protectionLevelUsed: DevicePairingProtectionLevel; - status: DevicePairingResultStatus; - - } - export enum DevicePairingResultStatus { - paired, - notReadyToPair, - notPaired, - alreadyPaired, - connectionRejected, - tooManyConnections, - hardwareFailure, - authenticationTimeout, - authenticationNotAllowed, - authenticationFailure, - noSupportedProfiles, - protectionLevelCouldNotBeMet, - accessDenied, - invalidCeremonyData, - pairingCanceled, - operationAlreadyInProgress, - requiredHandlerNotRegistered, - rejectedByHandler, - remoteDeviceHasAssociation, - failed, - } - export class DevicePicker implements IDevicePicker { - // constructor(); - appearance: DevicePickerAppearance = null; - filter: DevicePickerFilter = null; - requestedProperties: string[] = [ ]; - - show(selection: Foundation.Rect): void { - console.warn('shimmed function DevicePicker.show'); - } - - show_1(selection: Foundation.Rect, placement: UI.Popups.Placement): void { - console.warn('shimmed function DevicePicker.show_1'); - } - - pickSingleDeviceAsync(selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function DevicePicker.pickSingleDeviceAsync'); - } - - pickSingleDeviceAsync_1(selection: Foundation.Rect, placement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function DevicePicker.pickSingleDeviceAsync_1'); - } - - hide(): void { - console.warn('shimmed function DevicePicker.hide'); - } - - setDisplayStatus(device: DeviceInformation, status: string, options: DevicePickerDisplayStatusOptions): void { - console.warn('shimmed function DevicePicker.setDisplayStatus'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DevicePicker::addEventListener: ${name}`); - switch (name) { - case "devicepickerdismissed": // Foundation.TypedEventHandler - case "deviceselected": // Foundation.TypedEventHandler - case "disconnectbuttonclicked": // Foundation.TypedEventHandler - break; - } - - } - } - export class DevicePickerAppearance implements IDevicePickerAppearance { - title: string; - selectedForegroundColor: UI.Color; - selectedBackgroundColor: UI.Color; - selectedAccentColor: UI.Color; - foregroundColor: UI.Color; - backgroundColor: UI.Color; - accentColor: UI.Color; - - } - export enum DevicePickerDisplayStatusOptions { - none, - showProgress, - showDisconnectButton, - showRetryButton = 4, - } - export class DevicePickerFilter implements IDevicePickerFilter { - supportedDeviceClasses: DeviceClass[]; - supportedDeviceSelectors: string[]; - - } - export class DeviceSelectedEventArgs implements IDeviceSelectedEventArgs { - selectedDevice: DeviceInformation; - - } - export class DeviceThumbnail implements Storage.Streams.IRandomAccessStreamWithContentType, Storage.Streams.IRandomAccessStream, Foundation.IClosable, Storage.Streams.IInputStream, Storage.Streams.IOutputStream, Storage.Streams.IContentTypeProvider { - contentType: string; - size: number; - canRead: Boolean; - canWrite: Boolean; - position: number; - - getInputStreamAt(position: number): Storage.Streams.IInputStream { - throw new Error('shimmed function DeviceThumbnail.getInputStreamAt'); - } - - getOutputStreamAt(position: number): Storage.Streams.IOutputStream { - throw new Error('shimmed function DeviceThumbnail.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function DeviceThumbnail.seek'); - } - - cloneStream(): Storage.Streams.IRandomAccessStream { - throw new Error('shimmed function DeviceThumbnail.cloneStream'); - } - - close(): void { - console.warn('shimmed function DeviceThumbnail.close'); - } - - readAsync(buffer: Storage.Streams.IBuffer, count: number, options: Storage.Streams.InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function DeviceThumbnail.readAsync'); - } - - writeAsync(buffer: Storage.Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function DeviceThumbnail.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DeviceThumbnail.flushAsync'); - } - - } - export class DeviceUnpairingResult implements IDeviceUnpairingResult { - status: DeviceUnpairingResultStatus; - - } - export enum DeviceUnpairingResultStatus { - unpaired, - alreadyUnpaired, - operationAlreadyInProgress, - accessDenied, - failed, - } - export class DeviceWatcher implements IDeviceWatcher, IDeviceWatcher2 { - status: DeviceWatcherStatus; - - start(): void { - console.warn('shimmed function DeviceWatcher.start'); - } - - stop(): void { - console.warn('shimmed function DeviceWatcher.stop'); - } - - getBackgroundTrigger(requestedEventKinds: Foundation.Collections.IIterable): ApplicationModel.Background.DeviceWatcherTrigger { - throw new Error('shimmed function DeviceWatcher.getBackgroundTrigger'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DeviceWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export class DeviceWatcherEvent implements IDeviceWatcherEvent { - deviceInformation: DeviceInformation; - deviceInformationUpdate: DeviceInformationUpdate; - kind: DeviceWatcherEventKind; - - } - export enum DeviceWatcherEventKind { - add, - update, - remove, - } - export enum DeviceWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export class DeviceWatcherTriggerDetails implements IDeviceWatcherTriggerDetails { - deviceWatcherEvents: DeviceWatcherEvent[]; - - } - export class EnclosureLocation implements IEnclosureLocation, IEnclosureLocation2 { - inDock: Boolean; - inLid: Boolean; - panel: Panel; - rotationAngleInDegreesClockwise: number; - - } - export interface IDevicePairingSettings { - } - export enum Panel { - unknown, - front, - back, - top, - bottom, - left, - right, - } - export namespace Pnp { - export class PnpObject implements IPnpObject { - id: string; - properties: string[]; - type: PnpObjectType; - - update(updateInfo: PnpObjectUpdate): void { - console.warn('shimmed function PnpObject.update'); - } - - static createFromIdAsync(type: PnpObjectType, id: string, requestedProperties: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function PnpObject.createFromIdAsync'); - } - - static findAllAsync(type: PnpObjectType, requestedProperties: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function PnpObject.findAllAsync'); - } - - static findAllAsync_1(type: PnpObjectType, requestedProperties: Foundation.Collections.IIterable, aqsFilter: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PnpObject.findAllAsync_1'); - } - - static createWatcher(type: PnpObjectType, requestedProperties: Foundation.Collections.IIterable): PnpObjectWatcher { - throw new Error('shimmed function PnpObject.createWatcher'); - } - - static createWatcher_1(type: PnpObjectType, requestedProperties: Foundation.Collections.IIterable, aqsFilter: string): PnpObjectWatcher { - throw new Error('shimmed function PnpObject.createWatcher_1'); - } - - } - export class PnpObjectCollection implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): PnpObject { - throw new Error('shimmed function PnpObjectCollection.getAt'); - } - - indexOf(value: PnpObject): { returnValue: Boolean, index: number } { - throw new Error('shimmed function PnpObjectCollection.indexOf'); - } - - getMany(startIndex: number, items: PnpObject[]): number { - throw new Error('shimmed function PnpObjectCollection.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PnpObjectCollection.first'); - } - - } - export enum PnpObjectType { - unknown, - deviceInterface, - deviceContainer, - device, - deviceInterfaceClass, - associationEndpoint, - associationEndpointContainer, - associationEndpointService, - devicePanel, - } - export class PnpObjectUpdate implements IPnpObjectUpdate { - id: string; - properties: string[]; - type: PnpObjectType; - - } - export class PnpObjectWatcher implements IPnpObjectWatcher { - status: DeviceWatcherStatus; - - start(): void { - console.warn('shimmed function PnpObjectWatcher.start'); - } - - stop(): void { - console.warn('shimmed function PnpObjectWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PnpObjectWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - } - } - export namespace Geolocation { - export enum AltitudeReferenceSystem { - unspecified, - terrain, - ellipsoid, - geoid, - surface, - } - export interface BasicGeoposition { - latitude: number; - longitude: number; - altitude: number; - } - export class CivicAddress implements ICivicAddress { - city: string; - country: string; - postalCode: string; - state: string; - timestamp: Date; - - } - export class GeoboundingBox implements IGeoboundingBox, IGeoshape { - // constructor(northwestCorner: BasicGeoposition, southeastCorner: BasicGeoposition); - // constructor(northwestCorner: BasicGeoposition, southeastCorner: BasicGeoposition, altitudeReferenceSystem: AltitudeReferenceSystem); - // constructor(northwestCorner: BasicGeoposition, southeastCorner: BasicGeoposition, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number); - constructor(northwestCorner: BasicGeoposition, southeastCorner: BasicGeoposition, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number) {} - - center: BasicGeoposition; - maxAltitude: number; - minAltitude: number; - northwestCorner: BasicGeoposition; - southeastCorner: BasicGeoposition; - altitudeReferenceSystem: AltitudeReferenceSystem; - geoshapeType: GeoshapeType; - spatialReferenceId: number; - - static tryCompute(positions: Foundation.Collections.IIterable): GeoboundingBox { - throw new Error('shimmed function GeoboundingBox.tryCompute'); - } - - static tryCompute_1(positions: Foundation.Collections.IIterable, altitudeRefSystem: AltitudeReferenceSystem): GeoboundingBox { - throw new Error('shimmed function GeoboundingBox.tryCompute_1'); - } - - static tryCompute_2(positions: Foundation.Collections.IIterable, altitudeRefSystem: AltitudeReferenceSystem, spatialReferenceId: number): GeoboundingBox { - throw new Error('shimmed function GeoboundingBox.tryCompute_2'); - } - - } - export class Geocircle implements IGeocircle, IGeoshape { - // constructor(position: BasicGeoposition, radius: number); - // constructor(position: BasicGeoposition, radius: number, altitudeReferenceSystem: AltitudeReferenceSystem); - // constructor(position: BasicGeoposition, radius: number, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number); - constructor(position: BasicGeoposition, radius: number, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number) {} - - center: BasicGeoposition; - radius: number; - altitudeReferenceSystem: AltitudeReferenceSystem; - geoshapeType: GeoshapeType; - spatialReferenceId: number; - - } - export class Geocoordinate implements IGeocoordinate, IGeocoordinateWithPositionData, IGeocoordinateWithPoint, IGeocoordinateWithPositionSourceTimestamp { - accuracy: number; - altitude: number | null; - altitudeAccuracy: number | null; - heading: number | null; - latitude: number; - longitude: number; - speed: number | null; - timestamp: Date; - point: Geopoint; - positionSource: PositionSource; - satelliteData: GeocoordinateSatelliteData; - positionSourceTimestamp: Date | null; - - } - export class GeocoordinateSatelliteData implements IGeocoordinateSatelliteData { - horizontalDilutionOfPrecision: number | null; - positionDilutionOfPrecision: number | null; - verticalDilutionOfPrecision: number | null; - - } - export namespace Geofencing { - export class Geofence implements IGeofence { - // constructor(id: string, geoshape: IGeoshape); - // constructor(id: string, geoshape: IGeoshape, monitoredStates: MonitoredGeofenceStates, singleUse: Boolean); - // constructor(id: string, geoshape: IGeoshape, monitoredStates: MonitoredGeofenceStates, singleUse: Boolean, dwellTime: number); - // constructor(id: string, geoshape: IGeoshape, monitoredStates: MonitoredGeofenceStates, singleUse: Boolean, dwellTime: number, startTime: Date, duration: number); - constructor(id: string, geoshape: IGeoshape, monitoredStates: MonitoredGeofenceStates, singleUse: Boolean, dwellTime: number, startTime: Date, duration: number) {} - - duration: number; - dwellTime: number; - geoshape: IGeoshape; - id: string; - monitoredStates: MonitoredGeofenceStates; - singleUse: Boolean; - startTime: Date; - - } - export class GeofenceMonitor implements IGeofenceMonitor { - geofences: Geofence[]; - lastKnownGeoposition: Geoposition; - status: GeofenceMonitorStatus; - static current: GeofenceMonitor; - - readReports(): GeofenceStateChangeReport[] { - throw new Error('shimmed function GeofenceMonitor.readReports'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GeofenceMonitor::addEventListener: ${name}`); - switch (name) { - case "geofencestatechanged": // Foundation.TypedEventHandler - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GeofenceMonitorStatus { - ready, - initializing, - noData, - disabled, - notInitialized, - notAvailable, - } - export enum GeofenceRemovalReason { - used, - expired, - } - export enum GeofenceState { - none, - entered, - exited, - removed = 4, - } - export class GeofenceStateChangeReport implements IGeofenceStateChangeReport { - geofence: Geofence; - geoposition: Geoposition; - newState: GeofenceState; - removalReason: GeofenceRemovalReason; - - } - export enum MonitoredGeofenceStates { - none, - entered, - exited, - removed = 4, - } - } - export enum GeolocationAccessStatus { - unspecified, - allowed, - denied, - } - export class Geolocator implements IGeolocator, IGeolocatorWithScalarAccuracy, IGeolocator2 { - // constructor(); - reportInterval: number = 1000; - movementThreshold: number = 0; - desiredAccuracy: PositionAccuracy = PositionAccuracy.default; - locationStatus: PositionStatus = PositionStatus.notInitialized; - desiredAccuracyInMeters: number | null = null; - static defaultGeoposition: BasicGeoposition | null; - static isDefaultGeopositionRecommended: Boolean; - - getGeopositionAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Geolocator.getGeopositionAsync'); - } - - getGeopositionAsync_1(maximumAge: number, timeout: number): Foundation.IAsyncOperation { - throw new Error('shimmed function Geolocator.getGeopositionAsync_1'); - } - - allowFallbackToConsentlessPositions(): void { - console.warn('shimmed function Geolocator.allowFallbackToConsentlessPositions'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Geolocator.requestAccessAsync'); - } - - static getGeopositionHistoryAsync(startTime: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function Geolocator.getGeopositionHistoryAsync'); - } - - static getGeopositionHistoryAsync_1(startTime: Date, duration: number): Foundation.IAsyncOperation { - throw new Error('shimmed function Geolocator.getGeopositionHistoryAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Geolocator::addEventListener: ${name}`); - switch (name) { - case "positionchanged": // Foundation.TypedEventHandler - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class Geopath implements IGeopath, IGeoshape { - // constructor(positions: Foundation.Collections.IIterable); - // constructor(positions: Foundation.Collections.IIterable, altitudeReferenceSystem: AltitudeReferenceSystem); - // constructor(positions: Foundation.Collections.IIterable, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number); - constructor(positions: Foundation.Collections.IIterable, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number) {} - - positions: BasicGeoposition[]; - altitudeReferenceSystem: AltitudeReferenceSystem; - geoshapeType: GeoshapeType; - spatialReferenceId: number; - - } - export class Geopoint implements IGeopoint, IGeoshape { - // constructor(position: BasicGeoposition); - // constructor(position: BasicGeoposition, altitudeReferenceSystem: AltitudeReferenceSystem); - // constructor(position: BasicGeoposition, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number); - constructor(position: BasicGeoposition, altitudeReferenceSystem: AltitudeReferenceSystem, spatialReferenceId: number) {} - - position: BasicGeoposition; - altitudeReferenceSystem: AltitudeReferenceSystem; - geoshapeType: GeoshapeType; - spatialReferenceId: number; - - } - export class Geoposition implements IGeoposition, IGeoposition2 { - civicAddress: CivicAddress; - coordinate: Geocoordinate; - venueData: VenueData; - - } - export enum GeoshapeType { - geopoint, - geocircle, - geopath, - geoboundingBox, - } - export class Geovisit implements IGeovisit { - position: Geoposition; - stateChange: VisitStateChange; - timestamp: Date; - - } - export class GeovisitMonitor implements IGeovisitMonitor { - // constructor(); - monitoringScope: VisitMonitoringScope = VisitMonitoringScope.venue; - - start(value: VisitMonitoringScope): void { - console.warn('shimmed function GeovisitMonitor.start'); - } - - stop(): void { - console.warn('shimmed function GeovisitMonitor.stop'); - } - - static getLastReportAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GeovisitMonitor.getLastReportAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GeovisitMonitor::addEventListener: ${name}`); - switch (name) { - case "visitstatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class GeovisitStateChangedEventArgs implements IGeovisitStateChangedEventArgs { - visit: Geovisit; - - } - export class GeovisitTriggerDetails implements IGeovisitTriggerDetails { - readReports(): Geovisit[] { - throw new Error('shimmed function GeovisitTriggerDetails.readReports'); - } - - } - export interface IGeoshape { - altitudeReferenceSystem: AltitudeReferenceSystem; - geoshapeType: GeoshapeType; - spatialReferenceId: number; - } - export enum PositionAccuracy { - default, - high, - } - export class PositionChangedEventArgs implements IPositionChangedEventArgs { - position: Geoposition; - - } - export enum PositionSource { - cellular, - satellite, - wiFi, - ipaddress, - unknown, - default, - obfuscated, - } - export enum PositionStatus { - ready, - initializing, - noData, - disabled, - notInitialized, - notAvailable, - } - export class StatusChangedEventArgs implements IStatusChangedEventArgs { - status: PositionStatus; - - } - export class VenueData implements IVenueData { - id: string; - level: string; - - } - export enum VisitMonitoringScope { - venue, - city, - } - export enum VisitStateChange { - trackingLost, - arrived, - departed, - otherMovement, - } - } - export namespace Gpio { - export interface GpioChangeCount { - count: number; - relativeTime: number; - } - export class GpioChangeCounter implements IGpioChangeCounter, Foundation.IClosable { - // constructor(pin: GpioPin); - constructor(pin: GpioPin) {} - - polarity: GpioChangePolarity; - isStarted: Boolean; - - start(): void { - console.warn('shimmed function GpioChangeCounter.start'); - } - - stop(): void { - console.warn('shimmed function GpioChangeCounter.stop'); - } - - read(): GpioChangeCount { - throw new Error('shimmed function GpioChangeCounter.read'); - } - - reset(): GpioChangeCount { - throw new Error('shimmed function GpioChangeCounter.reset'); - } - - close(): void { - console.warn('shimmed function GpioChangeCounter.close'); - } - - } - export enum GpioChangePolarity { - falling, - rising, - both, - } - export class GpioChangeReader implements IGpioChangeReader, Foundation.IClosable { - // constructor(pin: GpioPin); - // constructor(pin: GpioPin, minCapacity: number); - constructor(pin: GpioPin, minCapacity: number) {} - - polarity: GpioChangePolarity; - capacity: number; - isEmpty: Boolean; - isOverflowed: Boolean; - isStarted: Boolean; - length: number; - - start(): void { - console.warn('shimmed function GpioChangeReader.start'); - } - - stop(): void { - console.warn('shimmed function GpioChangeReader.stop'); - } - - clear(): void { - console.warn('shimmed function GpioChangeReader.clear'); - } - - getNextItem(): GpioChangeRecord { - throw new Error('shimmed function GpioChangeReader.getNextItem'); - } - - peekNextItem(): GpioChangeRecord { - throw new Error('shimmed function GpioChangeReader.peekNextItem'); - } - - getAllItems(): GpioChangeRecord[] { - throw new Error('shimmed function GpioChangeReader.getAllItems'); - } - - waitForItemsAsync(count: number): Foundation.IAsyncAction { - throw new Error('shimmed function GpioChangeReader.waitForItemsAsync'); - } - - close(): void { - console.warn('shimmed function GpioChangeReader.close'); - } - - } - export interface GpioChangeRecord { - relativeTime: number; - edge: GpioPinEdge; - } - export class GpioController implements IGpioController { - pinCount: number; - - openPin(pinNumber: number): GpioPin { - throw new Error('shimmed function GpioController.openPin'); - } - - openPin_1(pinNumber: number, sharingMode: GpioSharingMode): GpioPin { - throw new Error('shimmed function GpioController.openPin_1'); - } - - tryOpenPin(pinNumber: number, sharingMode: GpioSharingMode): { returnValue: Boolean, pin: GpioPin, openStatus: GpioOpenStatus } { - throw new Error('shimmed function GpioController.tryOpenPin'); - } - - static getControllersAsync(provider: Provider.IGpioProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function GpioController.getControllersAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GpioController.getDefaultAsync'); - } - - static getDefault(): GpioController { - throw new Error('shimmed function GpioController.getDefault'); - } - - } - export enum GpioOpenStatus { - pinOpened, - pinUnavailable, - sharingViolation, - muxingConflict, - unknownError, - } - export class GpioPin implements IGpioPin, Foundation.IClosable { - debounceTimeout: number; - pinNumber: number; - sharingMode: GpioSharingMode; - - isDriveModeSupported(driveMode: GpioPinDriveMode): Boolean { - throw new Error('shimmed function GpioPin.isDriveModeSupported'); - } - - getDriveMode(): GpioPinDriveMode { - throw new Error('shimmed function GpioPin.getDriveMode'); - } - - setDriveMode(value: GpioPinDriveMode): void { - console.warn('shimmed function GpioPin.setDriveMode'); - } - - write(value: GpioPinValue): void { - console.warn('shimmed function GpioPin.write'); - } - - read(): GpioPinValue { - throw new Error('shimmed function GpioPin.read'); - } - - close(): void { - console.warn('shimmed function GpioPin.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GpioPin::addEventListener: ${name}`); - switch (name) { - case "valuechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GpioPinDriveMode { - input, - output, - inputPullUp, - inputPullDown, - outputOpenDrain, - outputOpenDrainPullUp, - outputOpenSource, - outputOpenSourcePullDown, - } - export enum GpioPinEdge { - fallingEdge, - risingEdge, - } - export enum GpioPinValue { - low, - high, - } - export class GpioPinValueChangedEventArgs implements IGpioPinValueChangedEventArgs { - edge: GpioPinEdge; - - } - export enum GpioSharingMode { - exclusive, - sharedReadOnly, - } - export namespace Provider { - export class GpioPinProviderValueChangedEventArgs implements IGpioPinProviderValueChangedEventArgs { - // constructor(edge: ProviderGpioPinEdge); - constructor(edge: ProviderGpioPinEdge) {} - - edge: ProviderGpioPinEdge; - - } - export interface IGpioControllerProvider { - pinCount: number; - openPinProvider(pin: number, sharingMode: ProviderGpioSharingMode): IGpioPinProvider; - } - export interface IGpioPinProvider { - debounceTimeout: number; - pinNumber: number; - sharingMode: ProviderGpioSharingMode; - isDriveModeSupported(driveMode: ProviderGpioPinDriveMode): Boolean; - getDriveMode(): ProviderGpioPinDriveMode; - setDriveMode(value: ProviderGpioPinDriveMode): void; - write(value: ProviderGpioPinValue): void; - read(): ProviderGpioPinValue; - } - export interface IGpioProvider { - getControllers(): IGpioControllerProvider[]; - } - export enum ProviderGpioPinDriveMode { - input, - output, - inputPullUp, - inputPullDown, - outputOpenDrain, - outputOpenDrainPullUp, - outputOpenSource, - outputOpenSourcePullDown, - } - export enum ProviderGpioPinEdge { - fallingEdge, - risingEdge, - } - export enum ProviderGpioPinValue { - low, - high, - } - export enum ProviderGpioSharingMode { - exclusive, - sharedReadOnly, - } - } - } - export namespace Haptics { - export class KnownSimpleHapticsControllerWaveforms { - static buzzContinuous: number = 4100; - static click: number = 4099; - static press: number = 4102; - static release: number = 4103; - static rumbleContinuous: number = 4101; - - } - export class SimpleHapticsController implements ISimpleHapticsController { - id: string; - isIntensitySupported: Boolean; - isPlayCountSupported: Boolean; - isPlayDurationSupported: Boolean; - isReplayPauseIntervalSupported: Boolean; - supportedFeedback: SimpleHapticsControllerFeedback[]; - - stopFeedback(): void { - console.warn('shimmed function SimpleHapticsController.stopFeedback'); - } - - sendHapticFeedback(feedback: SimpleHapticsControllerFeedback): void { - console.warn('shimmed function SimpleHapticsController.sendHapticFeedback'); - } - - sendHapticFeedback_1(feedback: SimpleHapticsControllerFeedback, intensity: number): void { - console.warn('shimmed function SimpleHapticsController.sendHapticFeedback_1'); - } - - sendHapticFeedbackForDuration(feedback: SimpleHapticsControllerFeedback, intensity: number, playDuration: number): void { - console.warn('shimmed function SimpleHapticsController.sendHapticFeedbackForDuration'); - } - - sendHapticFeedbackForPlayCount(feedback: SimpleHapticsControllerFeedback, intensity: number, playCount: number, replayPauseInterval: number): void { - console.warn('shimmed function SimpleHapticsController.sendHapticFeedbackForPlayCount'); - } - - } - export class SimpleHapticsControllerFeedback implements ISimpleHapticsControllerFeedback { - duration: number; - waveform: number; - - } - export enum VibrationAccessStatus { - allowed, - deniedByUser, - deniedBySystem, - deniedByEnergySaver, - } - export class VibrationDevice implements IVibrationDevice { - id: string; - simpleHapticsController: SimpleHapticsController; - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function VibrationDevice.requestAccessAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function VibrationDevice.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function VibrationDevice.fromIdAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function VibrationDevice.getDefaultAsync'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function VibrationDevice.findAllAsync'); - } - - } - } - export namespace HumanInterfaceDevice { - export class HidBooleanControl implements IHidBooleanControl { - isActive: Boolean; - controlDescription: HidBooleanControlDescription; - id: number; - usageId: number; - usagePage: number; - - } - export class HidBooleanControlDescription implements IHidBooleanControlDescription, IHidBooleanControlDescription2 { - id: number; - parentCollections: HidCollection[]; - reportId: number; - reportType: HidReportType; - usageId: number; - usagePage: number; - isAbsolute: Boolean; - - } - export class HidCollection implements IHidCollection { - id: number; - type: HidCollectionType; - usageId: number; - usagePage: number; - - } - export enum HidCollectionType { - physical, - application, - logical, - report, - namedArray, - usageSwitch, - usageModifier, - other, - } - export class HidDevice implements IHidDevice, Foundation.IClosable { - productId: number; - usageId: number; - usagePage: number; - vendorId: number; - version: number; - - getInputReportAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function HidDevice.getInputReportAsync'); - } - - getInputReportAsync_1(reportId: number): Foundation.IAsyncOperation { - throw new Error('shimmed function HidDevice.getInputReportAsync_1'); - } - - getFeatureReportAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function HidDevice.getFeatureReportAsync'); - } - - getFeatureReportAsync_1(reportId: number): Foundation.IAsyncOperation { - throw new Error('shimmed function HidDevice.getFeatureReportAsync_1'); - } - - createOutputReport(): HidOutputReport { - throw new Error('shimmed function HidDevice.createOutputReport'); - } - - createOutputReport_1(reportId: number): HidOutputReport { - throw new Error('shimmed function HidDevice.createOutputReport_1'); - } - - createFeatureReport(): HidFeatureReport { - throw new Error('shimmed function HidDevice.createFeatureReport'); - } - - createFeatureReport_1(reportId: number): HidFeatureReport { - throw new Error('shimmed function HidDevice.createFeatureReport_1'); - } - - sendOutputReportAsync(outputReport: HidOutputReport): Foundation.IAsyncOperation { - throw new Error('shimmed function HidDevice.sendOutputReportAsync'); - } - - sendFeatureReportAsync(featureReport: HidFeatureReport): Foundation.IAsyncOperation { - throw new Error('shimmed function HidDevice.sendFeatureReportAsync'); - } - - getBooleanControlDescriptions(reportType: HidReportType, usagePage: number, usageId: number): HidBooleanControlDescription[] { - throw new Error('shimmed function HidDevice.getBooleanControlDescriptions'); - } - - getNumericControlDescriptions(reportType: HidReportType, usagePage: number, usageId: number): HidNumericControlDescription[] { - throw new Error('shimmed function HidDevice.getNumericControlDescriptions'); - } - - close(): void { - console.warn('shimmed function HidDevice.close'); - } - - static getDeviceSelector(usagePage: number, usageId: number): string { - throw new Error('shimmed function HidDevice.getDeviceSelector'); - } - - static getDeviceSelector_1(usagePage: number, usageId: number, vendorId: number, productId: number): string { - throw new Error('shimmed function HidDevice.getDeviceSelector_1'); - } - - static fromIdAsync(deviceId: string, accessMode: Storage.FileAccessMode): Foundation.IAsyncOperation { - throw new Error('shimmed function HidDevice.fromIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HidDevice::addEventListener: ${name}`); - switch (name) { - case "inputreportreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class HidFeatureReport implements IHidFeatureReport { - data: Storage.Streams.IBuffer; - id: number; - - getBooleanControl(usagePage: number, usageId: number): HidBooleanControl { - throw new Error('shimmed function HidFeatureReport.getBooleanControl'); - } - - getBooleanControlByDescription(controlDescription: HidBooleanControlDescription): HidBooleanControl { - throw new Error('shimmed function HidFeatureReport.getBooleanControlByDescription'); - } - - getNumericControl(usagePage: number, usageId: number): HidNumericControl { - throw new Error('shimmed function HidFeatureReport.getNumericControl'); - } - - getNumericControlByDescription(controlDescription: HidNumericControlDescription): HidNumericControl { - throw new Error('shimmed function HidFeatureReport.getNumericControlByDescription'); - } - - } - export class HidInputReport implements IHidInputReport { - activatedBooleanControls: HidBooleanControl[]; - data: Storage.Streams.IBuffer; - id: number; - transitionedBooleanControls: HidBooleanControl[]; - - getBooleanControl(usagePage: number, usageId: number): HidBooleanControl { - throw new Error('shimmed function HidInputReport.getBooleanControl'); - } - - getBooleanControlByDescription(controlDescription: HidBooleanControlDescription): HidBooleanControl { - throw new Error('shimmed function HidInputReport.getBooleanControlByDescription'); - } - - getNumericControl(usagePage: number, usageId: number): HidNumericControl { - throw new Error('shimmed function HidInputReport.getNumericControl'); - } - - getNumericControlByDescription(controlDescription: HidNumericControlDescription): HidNumericControl { - throw new Error('shimmed function HidInputReport.getNumericControlByDescription'); - } - - } - export class HidInputReportReceivedEventArgs implements IHidInputReportReceivedEventArgs { - report: HidInputReport; - - } - export class HidNumericControl implements IHidNumericControl { - value: number; - scaledValue: number; - controlDescription: HidNumericControlDescription; - id: number; - isGrouped: Boolean; - usageId: number; - usagePage: number; - - } - export class HidNumericControlDescription implements IHidNumericControlDescription { - hasNull: Boolean; - id: number; - isAbsolute: Boolean; - logicalMaximum: number; - logicalMinimum: number; - parentCollections: HidCollection[]; - physicalMaximum: number; - physicalMinimum: number; - reportCount: number; - reportId: number; - reportSize: number; - reportType: HidReportType; - unit: number; - unitExponent: number; - usageId: number; - usagePage: number; - - } - export class HidOutputReport implements IHidOutputReport { - data: Storage.Streams.IBuffer; - id: number; - - getBooleanControl(usagePage: number, usageId: number): HidBooleanControl { - throw new Error('shimmed function HidOutputReport.getBooleanControl'); - } - - getBooleanControlByDescription(controlDescription: HidBooleanControlDescription): HidBooleanControl { - throw new Error('shimmed function HidOutputReport.getBooleanControlByDescription'); - } - - getNumericControl(usagePage: number, usageId: number): HidNumericControl { - throw new Error('shimmed function HidOutputReport.getNumericControl'); - } - - getNumericControlByDescription(controlDescription: HidNumericControlDescription): HidNumericControl { - throw new Error('shimmed function HidOutputReport.getNumericControlByDescription'); - } - - } - export enum HidReportType { - input, - output, - feature, - } - } - export namespace I2c { - export enum I2cBusSpeed { - standardMode, - fastMode, - } - export class I2cConnectionSettings implements II2cConnectionSettings { - // constructor(slaveAddress: number); - constructor(slaveAddress: number) {} - - slaveAddress: number; - sharingMode: I2cSharingMode; - busSpeed: I2cBusSpeed; - - } - export class I2cController implements II2cController { - getDevice(settings: I2cConnectionSettings): I2cDevice { - throw new Error('shimmed function I2cController.getDevice'); - } - - static getControllersAsync(provider: Provider.II2cProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function I2cController.getControllersAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function I2cController.getDefaultAsync'); - } - - } - export class I2cDevice implements II2cDevice, Foundation.IClosable { - connectionSettings: I2cConnectionSettings; - deviceId: string; - - write(buffer: number[]): void { - console.warn('shimmed function I2cDevice.write'); - } - - writePartial(buffer: number[]): I2cTransferResult { - throw new Error('shimmed function I2cDevice.writePartial'); - } - - read(buffer: number[]): void { - console.warn('shimmed function I2cDevice.read'); - } - - readPartial(buffer: number[]): I2cTransferResult { - throw new Error('shimmed function I2cDevice.readPartial'); - } - - writeRead(writeBuffer: number[], readBuffer: number[]): void { - console.warn('shimmed function I2cDevice.writeRead'); - } - - writeReadPartial(writeBuffer: number[], readBuffer: number[]): I2cTransferResult { - throw new Error('shimmed function I2cDevice.writeReadPartial'); - } - - close(): void { - console.warn('shimmed function I2cDevice.close'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function I2cDevice.getDeviceSelector'); - } - - static getDeviceSelector_1(friendlyName: string): string { - throw new Error('shimmed function I2cDevice.getDeviceSelector_1'); - } - - static fromIdAsync(deviceId: string, settings: I2cConnectionSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function I2cDevice.fromIdAsync'); - } - - } - export enum I2cSharingMode { - exclusive, - shared, - } - export interface I2cTransferResult { - status: I2cTransferStatus; - bytesTransferred: number; - } - export enum I2cTransferStatus { - fullTransfer, - partialTransfer, - slaveAddressNotAcknowledged, - clockStretchTimeout, - unknownError, - } - export interface II2cDeviceStatics { - getDeviceSelector(): string; - getDeviceSelector_1(friendlyName: string): string; - fromIdAsync(deviceId: string, settings: I2cConnectionSettings): Foundation.IAsyncOperation; - } - export namespace Provider { - export interface II2cControllerProvider { - getDeviceProvider(settings: ProviderI2cConnectionSettings): II2cDeviceProvider; - } - export interface II2cDeviceProvider extends Foundation.IClosable { - deviceId: string; - write(buffer: number[]): void; - writePartial(buffer: number[]): ProviderI2cTransferResult; - read(buffer: number[]): void; - readPartial(buffer: number[]): ProviderI2cTransferResult; - writeRead(writeBuffer: number[], readBuffer: number[]): void; - writeReadPartial(writeBuffer: number[], readBuffer: number[]): ProviderI2cTransferResult; - } - export interface II2cProvider { - getControllersAsync(): Foundation.IAsyncOperation; - } - export enum ProviderI2cBusSpeed { - standardMode, - fastMode, - } - export class ProviderI2cConnectionSettings implements IProviderI2cConnectionSettings { - slaveAddress: number; - sharingMode: ProviderI2cSharingMode; - busSpeed: ProviderI2cBusSpeed; - - } - export enum ProviderI2cSharingMode { - exclusive, - shared, - } - export interface ProviderI2cTransferResult { - status: ProviderI2cTransferStatus; - bytesTransferred: number; - } - export enum ProviderI2cTransferStatus { - fullTransfer, - partialTransfer, - slaveAddressNotAcknowledged, - } - } - } - export interface ILowLevelDevicesAggregateProvider { - adcControllerProvider: Adc.Provider.IAdcControllerProvider; - gpioControllerProvider: Gpio.Provider.IGpioControllerProvider; - i2cControllerProvider: I2c.Provider.II2cControllerProvider; - pwmControllerProvider: Pwm.Provider.IPwmControllerProvider; - spiControllerProvider: Spi.Provider.ISpiControllerProvider; - } - export namespace Input { - export class KeyboardCapabilities implements IKeyboardCapabilities { - // constructor(); - keyboardPresent: number = 1; - - } - export class MouseCapabilities implements IMouseCapabilities { - // constructor(); - horizontalWheelPresent: number = 0; - mousePresent: number = 1; - numberOfButtons: number = 16; - swapButtons: number = 0; - verticalWheelPresent: number = 1; - - } - export interface MouseDelta { - x: number; - y: number; - } - export class MouseDevice implements IMouseDevice { - static getForCurrentView(): MouseDevice { - throw new Error('shimmed function MouseDevice.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MouseDevice::addEventListener: ${name}`); - switch (name) { - case "mousemoved": // Foundation.TypedEventHandler - break; - } - - } - } - export class MouseEventArgs implements IMouseEventArgs { - mouseDelta: MouseDelta; - - } - export class PenDevice implements IPenDevice { - penId: string; - - static getFromPointerId(pointerId: number): PenDevice { - throw new Error('shimmed function PenDevice.getFromPointerId'); - } - - } - export class PointerDevice implements IPointerDevice, IPointerDevice2 { - isIntegrated: Boolean; - maxContacts: number; - physicalDeviceRect: Foundation.Rect; - pointerDeviceType: PointerDeviceType; - screenRect: Foundation.Rect; - supportedUsages: PointerDeviceUsage[]; - maxPointersWithZDistance: number; - - static getPointerDevice(pointerId: number): PointerDevice { - throw new Error('shimmed function PointerDevice.getPointerDevice'); - } - - static getPointerDevices(): PointerDevice[] { - throw new Error('shimmed function PointerDevice.getPointerDevices'); - } - - } - export enum PointerDeviceType { - touch, - pen, - mouse, - } - export interface PointerDeviceUsage { - usagePage: number; - usage: number; - minLogical: number; - maxLogical: number; - minPhysical: number; - maxPhysical: number; - unit: number; - physicalMultiplier: number; - } - export namespace Preview { - export enum GazeDeviceConfigurationStatePreview { - unknown, - ready, - configuring, - screenSetupNeeded, - userCalibrationNeeded, - } - export class GazeDevicePreview implements IGazeDevicePreview { - canTrackEyes: Boolean; - canTrackHead: Boolean; - configurationState: GazeDeviceConfigurationStatePreview; - id: number; - - requestCalibrationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GazeDevicePreview.requestCalibrationAsync'); - } - - getNumericControlDescriptions(usagePage: number, usageId: number): HumanInterfaceDevice.HidNumericControlDescription[] { - throw new Error('shimmed function GazeDevicePreview.getNumericControlDescriptions'); - } - - getBooleanControlDescriptions(usagePage: number, usageId: number): HumanInterfaceDevice.HidBooleanControlDescription[] { - throw new Error('shimmed function GazeDevicePreview.getBooleanControlDescriptions'); - } - - } - export class GazeDeviceWatcherAddedPreviewEventArgs implements IGazeDeviceWatcherAddedPreviewEventArgs { - device: GazeDevicePreview; - - } - export class GazeDeviceWatcherPreview implements IGazeDeviceWatcherPreview { - start(): void { - console.warn('shimmed function GazeDeviceWatcherPreview.start'); - } - - stop(): void { - console.warn('shimmed function GazeDeviceWatcherPreview.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GazeDeviceWatcherPreview::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export class GazeDeviceWatcherRemovedPreviewEventArgs implements IGazeDeviceWatcherRemovedPreviewEventArgs { - device: GazeDevicePreview; - - } - export class GazeDeviceWatcherUpdatedPreviewEventArgs implements IGazeDeviceWatcherUpdatedPreviewEventArgs { - device: GazeDevicePreview; - - } - export class GazeEnteredPreviewEventArgs implements IGazeEnteredPreviewEventArgs { - handled: Boolean; - currentPoint: GazePointPreview; - - } - export class GazeExitedPreviewEventArgs implements IGazeExitedPreviewEventArgs { - handled: Boolean; - currentPoint: GazePointPreview; - - } - export class GazeInputSourcePreview implements IGazeInputSourcePreview { - static getForCurrentView(): GazeInputSourcePreview { - throw new Error('shimmed function GazeInputSourcePreview.getForCurrentView'); - } - - static createWatcher(): GazeDeviceWatcherPreview { - throw new Error('shimmed function GazeInputSourcePreview.createWatcher'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GazeInputSourcePreview::addEventListener: ${name}`); - switch (name) { - case "gazeentered": // Foundation.TypedEventHandler - case "gazeexited": // Foundation.TypedEventHandler - case "gazemoved": // Foundation.TypedEventHandler - break; - } - - } - } - export class GazeMovedPreviewEventArgs implements IGazeMovedPreviewEventArgs { - handled: Boolean; - currentPoint: GazePointPreview; - - getIntermediatePoints(): GazePointPreview[] { - throw new Error('shimmed function GazeMovedPreviewEventArgs.getIntermediatePoints'); - } - - } - export class GazePointPreview implements IGazePointPreview { - eyeGazePosition: Foundation.Point | null; - headGazePosition: Foundation.Point | null; - hidInputReport: HumanInterfaceDevice.HidInputReport; - sourceDevice: GazeDevicePreview; - timestamp: number; - - } - } - export class TouchCapabilities implements ITouchCapabilities { - // constructor(); - contacts: number = 0; - touchPresent: number = 0; - - } - } - export namespace Lights { - export namespace Effects { - export interface ILampArrayEffect { - zindex: number; - } - export class LampArrayBitmapEffect implements ILampArrayBitmapEffect, ILampArrayEffect { - // constructor(lampArray: LampArray, lampIndexes: number[]); - constructor(lampArray: LampArray, lampIndexes: number[]) {} - - updateInterval: number; - startDelay: number; - duration: number; - suggestedBitmapSize: Foundation.Size; - zindex: number; - - addEventListener(name: string, handler: Function) { - console.warn(`LampArrayBitmapEffect::addEventListener: ${name}`); - switch (name) { - case "bitmaprequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class LampArrayBitmapRequestedEventArgs implements ILampArrayBitmapRequestedEventArgs { - sinceStarted: number; - - updateBitmap(bitmap: Graphics.Imaging.SoftwareBitmap): void { - console.warn('shimmed function LampArrayBitmapRequestedEventArgs.updateBitmap'); - } - - } - export class LampArrayBlinkEffect implements ILampArrayBlinkEffect, ILampArrayEffect { - // constructor(lampArray: LampArray, lampIndexes: number[]); - constructor(lampArray: LampArray, lampIndexes: number[]) {} - - sustainDuration: number; - startDelay: number; - repetitionMode: LampArrayRepetitionMode; - repetitionDelay: number; - occurrences: number; - decayDuration: number; - color: UI.Color; - attackDuration: number; - zindex: number; - - } - export class LampArrayColorRampEffect implements ILampArrayColorRampEffect, ILampArrayEffect { - // constructor(lampArray: LampArray, lampIndexes: number[]); - constructor(lampArray: LampArray, lampIndexes: number[]) {} - - startDelay: number; - rampDuration: number; - completionBehavior: LampArrayEffectCompletionBehavior; - color: UI.Color; - zindex: number; - - } - export class LampArrayCustomEffect implements ILampArrayCustomEffect, ILampArrayEffect { - // constructor(lampArray: LampArray, lampIndexes: number[]); - constructor(lampArray: LampArray, lampIndexes: number[]) {} - - updateInterval: number; - duration: number; - zindex: number; - - addEventListener(name: string, handler: Function) { - console.warn(`LampArrayCustomEffect::addEventListener: ${name}`); - switch (name) { - case "updaterequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum LampArrayEffectCompletionBehavior { - clearState, - keepState, - } - export class LampArrayEffectPlaylist implements ILampArrayEffectPlaylist, Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - // constructor(); - repetitionMode: LampArrayRepetitionMode = LampArrayRepetitionMode.occurrences; - occurrences: number = 1; - effectStartMode: LampArrayEffectStartMode = LampArrayEffectStartMode.sequential; - size: number; - - append(effect: ILampArrayEffect): void { - console.warn('shimmed function LampArrayEffectPlaylist.append'); - } - - overrideZIndex(zIndex: number): void { - console.warn('shimmed function LampArrayEffectPlaylist.overrideZIndex'); - } - - start(): void { - console.warn('shimmed function LampArrayEffectPlaylist.start'); - } - - stop(): void { - console.warn('shimmed function LampArrayEffectPlaylist.stop'); - } - - pause(): void { - console.warn('shimmed function LampArrayEffectPlaylist.pause'); - } - - getAt(index: number): ILampArrayEffect { - throw new Error('shimmed function LampArrayEffectPlaylist.getAt'); - } - - indexOf(value: ILampArrayEffect): { returnValue: Boolean, index: number } { - throw new Error('shimmed function LampArrayEffectPlaylist.indexOf'); - } - - getMany(startIndex: number, items: ILampArrayEffect[]): number { - throw new Error('shimmed function LampArrayEffectPlaylist.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function LampArrayEffectPlaylist.first'); - } - - static startAll(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function LampArrayEffectPlaylist.startAll'); - } - - static stopAll(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function LampArrayEffectPlaylist.stopAll'); - } - - static pauseAll(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function LampArrayEffectPlaylist.pauseAll'); - } - - } - export enum LampArrayEffectStartMode { - sequential, - simultaneous, - } - export enum LampArrayRepetitionMode { - occurrences, - forever, - } - export class LampArraySolidEffect implements ILampArraySolidEffect, ILampArrayEffect { - // constructor(lampArray: LampArray, lampIndexes: number[]); - constructor(lampArray: LampArray, lampIndexes: number[]) {} - - zindex: number; - startDelay: number; - duration: number; - completionBehavior: LampArrayEffectCompletionBehavior; - color: UI.Color; - - } - export class LampArrayUpdateRequestedEventArgs implements ILampArrayUpdateRequestedEventArgs { - sinceStarted: number; - - setColor(desiredColor: UI.Color): void { - console.warn('shimmed function LampArrayUpdateRequestedEventArgs.setColor'); - } - - setColorForIndex(lampIndex: number, desiredColor: UI.Color): void { - console.warn('shimmed function LampArrayUpdateRequestedEventArgs.setColorForIndex'); - } - - setSingleColorForIndices(desiredColor: UI.Color, lampIndexes: number[]): void { - console.warn('shimmed function LampArrayUpdateRequestedEventArgs.setSingleColorForIndices'); - } - - setColorsForIndices(desiredColors: UI.Color[], lampIndexes: number[]): void { - console.warn('shimmed function LampArrayUpdateRequestedEventArgs.setColorsForIndices'); - } - - } - } - export class Lamp implements ILamp, Foundation.IClosable { - isEnabled: Boolean; - color: UI.Color; - brightnessLevel: number; - deviceId: string; - isColorSettable: Boolean; - - close(): void { - console.warn('shimmed function Lamp.close'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Lamp.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Lamp.fromIdAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Lamp.getDefaultAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Lamp::addEventListener: ${name}`); - switch (name) { - case "availabilitychanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class LampArray implements ILampArray { - isEnabled: Boolean; - brightnessLevel: number; - boundingBox: Foundation.Numerics.Vector3; - deviceId: string; - hardwareProductId: number; - hardwareVendorId: number; - hardwareVersion: number; - isConnected: Boolean; - lampArrayKind: LampArrayKind; - lampCount: number; - minUpdateInterval: number; - supportsVirtualKeys: Boolean; - - getLampInfo(lampIndex: number): LampInfo { - throw new Error('shimmed function LampArray.getLampInfo'); - } - - getIndicesForKey(key: System.VirtualKey): number[] { - throw new Error('shimmed function LampArray.getIndicesForKey'); - } - - getIndicesForPurposes(purposes: LampPurposes): number[] { - throw new Error('shimmed function LampArray.getIndicesForPurposes'); - } - - setColor(desiredColor: UI.Color): void { - console.warn('shimmed function LampArray.setColor'); - } - - setColorForIndex(lampIndex: number, desiredColor: UI.Color): void { - console.warn('shimmed function LampArray.setColorForIndex'); - } - - setSingleColorForIndices(desiredColor: UI.Color, lampIndexes: number[]): void { - console.warn('shimmed function LampArray.setSingleColorForIndices'); - } - - setColorsForIndices(desiredColors: UI.Color[], lampIndexes: number[]): void { - console.warn('shimmed function LampArray.setColorsForIndices'); - } - - setColorsForKey(desiredColor: UI.Color, key: System.VirtualKey): void { - console.warn('shimmed function LampArray.setColorsForKey'); - } - - setColorsForKeys(desiredColors: UI.Color[], keys: System.VirtualKey[]): void { - console.warn('shimmed function LampArray.setColorsForKeys'); - } - - setColorsForPurposes(desiredColor: UI.Color, purposes: LampPurposes): void { - console.warn('shimmed function LampArray.setColorsForPurposes'); - } - - sendMessageAsync(messageId: number, message: Storage.Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function LampArray.sendMessageAsync'); - } - - requestMessageAsync(messageId: number): Foundation.IAsyncOperation { - throw new Error('shimmed function LampArray.requestMessageAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function LampArray.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LampArray.fromIdAsync'); - } - - } - export enum LampArrayKind { - undefined, - keyboard, - mouse, - gameController, - peripheral, - scene, - notification, - chassis, - wearable, - furniture, - art, - } - export class LampAvailabilityChangedEventArgs implements ILampAvailabilityChangedEventArgs { - isAvailable: Boolean; - - } - export class LampInfo implements ILampInfo { - blueLevelCount: number; - fixedColor: UI.Color | null; - gainLevelCount: number; - greenLevelCount: number; - index: number; - position: Foundation.Numerics.Vector3; - purposes: LampPurposes; - redLevelCount: number; - updateLatency: number; - - getNearestSupportedColor(desiredColor: UI.Color): UI.Color { - throw new Error('shimmed function LampInfo.getNearestSupportedColor'); - } - - } - export enum LampPurposes { - undefined, - control, - accent, - branding = 4, - status = 8, - illumination = 16, - presentation = 32, - } - } - export class LowLevelDevicesAggregateProvider implements ILowLevelDevicesAggregateProvider { - // constructor(adc: Adc.Provider.IAdcControllerProvider, pwm: Pwm.Provider.IPwmControllerProvider, gpio: Gpio.Provider.IGpioControllerProvider, i2c: I2c.Provider.II2cControllerProvider, spi: Spi.Provider.ISpiControllerProvider); - constructor(adc: Adc.Provider.IAdcControllerProvider, pwm: Pwm.Provider.IPwmControllerProvider, gpio: Gpio.Provider.IGpioControllerProvider, i2c: I2c.Provider.II2cControllerProvider, spi: Spi.Provider.ISpiControllerProvider) {} - - adcControllerProvider: Adc.Provider.IAdcControllerProvider; - gpioControllerProvider: Gpio.Provider.IGpioControllerProvider; - i2cControllerProvider: I2c.Provider.II2cControllerProvider; - pwmControllerProvider: Pwm.Provider.IPwmControllerProvider; - spiControllerProvider: Spi.Provider.ISpiControllerProvider; - - } - export class LowLevelDevicesController implements ILowLevelDevicesController { - static defaultProvider: ILowLevelDevicesAggregateProvider; - - } - export namespace Midi { - export interface IMidiMessage { - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - } - export interface IMidiOutPort extends Foundation.IClosable { - deviceId: string; - sendMessage(midiMessage: IMidiMessage): void; - sendBuffer(midiData: Storage.Streams.IBuffer): void; - } - export class MidiActiveSensingMessage implements IMidiMessage { - // constructor(); - rawData: Storage.Streams.IBuffer = null; - timestamp: number = 0; - type: MidiMessageType = MidiMessageType.activeSensing; - - } - export class MidiChannelPressureMessage implements IMidiChannelPressureMessage, IMidiMessage { - // constructor(channel: number, pressure: number); - constructor(channel: number, pressure: number) {} - - channel: number; - pressure: number; - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - - } - export class MidiContinueMessage implements IMidiMessage { - // constructor(); - rawData: Storage.Streams.IBuffer = null; - timestamp: number = 0; - type: MidiMessageType = MidiMessageType.continue; - - } - export class MidiControlChangeMessage implements IMidiControlChangeMessage, IMidiMessage { - // constructor(channel: number, controller: number, controlValue: number); - constructor(channel: number, controller: number, controlValue: number) {} - - channel: number; - controlValue: number; - controller: number; - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - - } - export class MidiInPort implements IMidiInPort, Foundation.IClosable { - deviceId: string; - - close(): void { - console.warn('shimmed function MidiInPort.close'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MidiInPort.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function MidiInPort.getDeviceSelector'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MidiInPort::addEventListener: ${name}`); - switch (name) { - case "messagereceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class MidiMessageReceivedEventArgs implements IMidiMessageReceivedEventArgs { - message: IMidiMessage; - - } - export enum MidiMessageType { - none, - noteOff = 128, - noteOn = 144, - polyphonicKeyPressure = 160, - controlChange = 176, - programChange = 192, - channelPressure = 208, - pitchBendChange = 224, - systemExclusive = 240, - midiTimeCode, - songPositionPointer, - songSelect, - tuneRequest = 246, - endSystemExclusive, - timingClock, - start = 250, - continue, - stop, - activeSensing = 254, - systemReset, - } - export class MidiNoteOffMessage implements IMidiNoteOffMessage, IMidiMessage { - // constructor(channel: number, note: number, velocity: number); - constructor(channel: number, note: number, velocity: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - channel: number; - note: number; - velocity: number; - - } - export class MidiNoteOnMessage implements IMidiNoteOnMessage, IMidiMessage { - // constructor(channel: number, note: number, velocity: number); - constructor(channel: number, note: number, velocity: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - channel: number; - note: number; - velocity: number; - - } - export class MidiOutPort implements IMidiOutPort, Foundation.IClosable { - deviceId: string; - - sendMessage(midiMessage: IMidiMessage): void { - console.warn('shimmed function MidiOutPort.sendMessage'); - } - - sendBuffer(midiData: Storage.Streams.IBuffer): void { - console.warn('shimmed function MidiOutPort.sendBuffer'); - } - - close(): void { - console.warn('shimmed function MidiOutPort.close'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MidiOutPort.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function MidiOutPort.getDeviceSelector'); - } - - } - export class MidiPitchBendChangeMessage implements IMidiPitchBendChangeMessage, IMidiMessage { - // constructor(channel: number, bend: number); - constructor(channel: number, bend: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - bend: number; - channel: number; - - } - export class MidiPolyphonicKeyPressureMessage implements IMidiPolyphonicKeyPressureMessage, IMidiMessage { - // constructor(channel: number, note: number, pressure: number); - constructor(channel: number, note: number, pressure: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - channel: number; - note: number; - pressure: number; - - } - export class MidiProgramChangeMessage implements IMidiProgramChangeMessage, IMidiMessage { - // constructor(channel: number, program: number); - constructor(channel: number, program: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - channel: number; - program: number; - - } - export class MidiSongPositionPointerMessage implements IMidiSongPositionPointerMessage, IMidiMessage { - // constructor(beats: number); - constructor(beats: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - beats: number; - - } - export class MidiSongSelectMessage implements IMidiSongSelectMessage, IMidiMessage { - // constructor(song: number); - constructor(song: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - song: number; - - } - export class MidiStartMessage implements IMidiMessage { - // constructor(); - rawData: Storage.Streams.IBuffer = null; - timestamp: number = 0; - type: MidiMessageType = MidiMessageType.start; - - } - export class MidiStopMessage implements IMidiMessage { - // constructor(); - rawData: Storage.Streams.IBuffer = null; - timestamp: number = 0; - type: MidiMessageType = MidiMessageType.stop; - - } - export class MidiSynthesizer implements IMidiSynthesizer, IMidiOutPort, Foundation.IClosable { - deviceId: string; - volume: number; - audioDevice: Enumeration.DeviceInformation; - - sendMessage(midiMessage: IMidiMessage): void { - console.warn('shimmed function MidiSynthesizer.sendMessage'); - } - - sendBuffer(midiData: Storage.Streams.IBuffer): void { - console.warn('shimmed function MidiSynthesizer.sendBuffer'); - } - - close(): void { - console.warn('shimmed function MidiSynthesizer.close'); - } - - static createAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MidiSynthesizer.createAsync'); - } - - static createAsync_1(audioDevice: Enumeration.DeviceInformation): Foundation.IAsyncOperation { - throw new Error('shimmed function MidiSynthesizer.createAsync_1'); - } - - static isSynthesizer(midiDevice: Enumeration.DeviceInformation): Boolean { - throw new Error('shimmed function MidiSynthesizer.isSynthesizer'); - } - - } - export class MidiSystemExclusiveMessage implements IMidiMessage { - // constructor(rawData: Storage.Streams.IBuffer); - constructor(rawData: Storage.Streams.IBuffer) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - - } - export class MidiSystemResetMessage implements IMidiMessage { - // constructor(); - rawData: Storage.Streams.IBuffer = null; - timestamp: number = 0; - type: MidiMessageType = MidiMessageType.systemReset; - - } - export class MidiTimeCodeMessage implements IMidiTimeCodeMessage, IMidiMessage { - // constructor(frameType: number, values: number); - constructor(frameType: number, values: number) {} - - rawData: Storage.Streams.IBuffer; - timestamp: number; - type: MidiMessageType; - frameType: number; - values: number; - - } - export class MidiTimingClockMessage implements IMidiMessage { - // constructor(); - rawData: Storage.Streams.IBuffer = null; - timestamp: number = 0; - type: MidiMessageType = MidiMessageType.timingClock; - - } - export class MidiTuneRequestMessage implements IMidiMessage { - // constructor(); - rawData: Storage.Streams.IBuffer = null; - timestamp: number = 0; - type: MidiMessageType = MidiMessageType.tuneRequest; - - } - } - export namespace Perception { - export class KnownCameraIntrinsicsProperties { - static focalLength: string = 'Windows.KnownCameraIntrinsicsProperties.FocalLength'; - static principalPoint: string = 'Windows.KnownCameraIntrinsicsProperties.PrincipalPoint'; - static radialDistortion: string = 'Windows.KnownCameraIntrinsicsProperties.RadialDistortion'; - static tangentialDistortion: string = 'Windows.KnownCameraIntrinsicsProperties.TangentialDistortion'; - - } - export class KnownPerceptionColorFrameSourceProperties { - static autoExposureEnabled: string = 'Windows.KnownPerceptionColorFrameSourceProperties.AutoExposureEnabled'; - static exposure: string = 'Windows.KnownPerceptionColorFrameSourceProperties.Exposure'; - static exposureCompensation: string = 'Windows.KnownPerceptionColorFrameSourceProperties.ExposureCompensation'; - - } - export class KnownPerceptionDepthFrameSourceProperties { - static maxDepth: string = 'Windows.KnownPerceptionDepthFrameSourceProperties.MaxDepth'; - static minDepth: string = 'Windows.KnownPerceptionDepthFrameSourceProperties.MinDepth'; - - } - export class KnownPerceptionFrameSourceProperties { - static deviceModelVersion: string = 'Windows.KnownPerceptionFrameSourceProperties.DeviceModelVersion'; - static enclosureLocation: string = 'Windows.KnownPerceptionFrameSourceProperties.EnclosureLocation'; - static frameKind: string = 'Windows.KnownPerceptionFrameSourceProperties.FrameKind'; - static id: string = 'Windows.KnownPerceptionFrameSourceProperties.Id'; - static physicalDeviceIds: string = 'Windows.KnownPerceptionFrameSourceProperties.PhysicalDeviceIds'; - static deviceId: string = 'Windows.KnownPerceptionFrameSourceProperties.DeviceId'; - - } - export class KnownPerceptionInfraredFrameSourceProperties { - static activeIlluminationEnabled: string = 'Windows.KnownPerceptionInfraredFrameSourceProperties.ActiveIlluminationEnabled'; - static ambientSubtractionEnabled: string = 'Windows.KnownPerceptionInfraredFrameSourceProperties.AmbientSubtractionEnabled'; - static autoExposureEnabled: string = 'Windows.KnownPerceptionInfraredFrameSourceProperties.AutoExposureEnabled'; - static exposure: string = 'Windows.KnownPerceptionInfraredFrameSourceProperties.Exposure'; - static exposureCompensation: string = 'Windows.KnownPerceptionInfraredFrameSourceProperties.ExposureCompensation'; - static interleavedIlluminationEnabled: string = 'Windows.KnownPerceptionInfraredFrameSourceProperties.InterleavedIlluminationEnabled'; - static structureLightPatternEnabled: string = 'Windows.KnownPerceptionInfraredFrameSourceProperties.StructureLightPatternEnabled'; - - } - export class KnownPerceptionVideoFrameSourceProperties { - static availableVideoProfiles: string = 'Windows.KnownPerceptionVideoFrameSourceProperties.AvailableVideoProfiles'; - static cameraIntrinsics: string = 'Windows.KnownPerceptionVideoFrameSourceProperties.CameraIntrinsics'; - static isMirrored: string = 'Windows.KnownPerceptionVideoFrameSourceProperties.IsMirrored'; - static supportedVideoProfiles: string = 'Windows.KnownPerceptionVideoFrameSourceProperties.SupportedVideoProfiles'; - static videoProfile: string = 'Windows.KnownPerceptionVideoFrameSourceProperties.VideoProfile'; - - } - export class KnownPerceptionVideoProfileProperties { - static bitmapAlphaMode: string = 'Windows.KnownPerceptionVideoProfileProperties.BitmapAlphaMode'; - static bitmapPixelFormat: string = 'Windows.KnownPerceptionVideoProfileProperties.BitmapPixelFormat'; - static frameDuration: string = 'Windows.KnownPerceptionVideoProfileProperties.FrameDuration'; - static height: string = 'Windows.KnownPerceptionVideoProfileProperties.Height'; - static width: string = 'Windows.KnownPerceptionVideoProfileProperties.Width'; - - } - export class PerceptionColorFrame implements IPerceptionColorFrame, Foundation.IClosable { - videoFrame: Media.VideoFrame; - - close(): void { - console.warn('shimmed function PerceptionColorFrame.close'); - } - - } - export class PerceptionColorFrameArrivedEventArgs implements IPerceptionColorFrameArrivedEventArgs { - relativeTime: number; - - tryOpenFrame(): PerceptionColorFrame { - throw new Error('shimmed function PerceptionColorFrameArrivedEventArgs.tryOpenFrame'); - } - - } - export class PerceptionColorFrameReader implements IPerceptionColorFrameReader, Foundation.IClosable { - isPaused: Boolean; - source: PerceptionColorFrameSource; - - tryReadLatestFrame(): PerceptionColorFrame { - throw new Error('shimmed function PerceptionColorFrameReader.tryReadLatestFrame'); - } - - close(): void { - console.warn('shimmed function PerceptionColorFrameReader.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionColorFrameReader::addEventListener: ${name}`); - switch (name) { - case "framearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionColorFrameSource implements IPerceptionColorFrameSource, IPerceptionColorFrameSource2 { - active: Boolean; - available: Boolean; - availableVideoProfiles: PerceptionVideoProfile[]; - cameraIntrinsics: Media.Devices.Core.CameraIntrinsics; - deviceKind: string; - displayName: string; - id: string; - isControlled: Boolean; - properties: string[]; - supportedVideoProfiles: PerceptionVideoProfile[]; - videoProfile: PerceptionVideoProfile; - deviceId: string; - - acquireControlSession(): PerceptionControlSession { - throw new Error('shimmed function PerceptionColorFrameSource.acquireControlSession'); - } - - canControlIndependentlyFrom(targetId: string): Boolean { - throw new Error('shimmed function PerceptionColorFrameSource.canControlIndependentlyFrom'); - } - - isCorrelatedWith(targetId: string): Boolean { - throw new Error('shimmed function PerceptionColorFrameSource.isCorrelatedWith'); - } - - tryGetTransformTo(targetId: string): { returnValue: Boolean, result: Foundation.Numerics.Matrix4x4 } { - throw new Error('shimmed function PerceptionColorFrameSource.tryGetTransformTo'); - } - - tryGetDepthCorrelatedCameraIntrinsicsAsync(correlatedDepthFrameSource: PerceptionDepthFrameSource): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionColorFrameSource.tryGetDepthCorrelatedCameraIntrinsicsAsync'); - } - - tryGetDepthCorrelatedCoordinateMapperAsync(targetSourceId: string, correlatedDepthFrameSource: PerceptionDepthFrameSource): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionColorFrameSource.tryGetDepthCorrelatedCoordinateMapperAsync'); - } - - trySetVideoProfileAsync(controlSession: PerceptionControlSession, profile: PerceptionVideoProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionColorFrameSource.trySetVideoProfileAsync'); - } - - openReader(): PerceptionColorFrameReader { - throw new Error('shimmed function PerceptionColorFrameSource.openReader'); - } - - static createWatcher(): PerceptionColorFrameSourceWatcher { - throw new Error('shimmed function PerceptionColorFrameSource.createWatcher'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionColorFrameSource.findAllAsync'); - } - - static fromIdAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionColorFrameSource.fromIdAsync'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionColorFrameSource.requestAccessAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionColorFrameSource::addEventListener: ${name}`); - switch (name) { - case "activechanged": // Foundation.TypedEventHandler - case "availablechanged": // Foundation.TypedEventHandler - case "cameraintrinsicschanged": // Foundation.TypedEventHandler - case "propertieschanged": // Foundation.TypedEventHandler - case "videoprofilechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionColorFrameSourceAddedEventArgs implements IPerceptionColorFrameSourceAddedEventArgs { - frameSource: PerceptionColorFrameSource; - - } - export class PerceptionColorFrameSourceRemovedEventArgs implements IPerceptionColorFrameSourceRemovedEventArgs { - frameSource: PerceptionColorFrameSource; - - } - export class PerceptionColorFrameSourceWatcher implements IPerceptionColorFrameSourceWatcher { - status: Enumeration.DeviceWatcherStatus; - - start(): void { - console.warn('shimmed function PerceptionColorFrameSourceWatcher.start'); - } - - stop(): void { - console.warn('shimmed function PerceptionColorFrameSourceWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionColorFrameSourceWatcher::addEventListener: ${name}`); - switch (name) { - case "enumerationcompleted": // Foundation.TypedEventHandler - case "sourceadded": // Foundation.TypedEventHandler - case "sourceremoved": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionControlSession implements IPerceptionControlSession, Foundation.IClosable { - trySetPropertyAsync(name: string, value: any): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionControlSession.trySetPropertyAsync'); - } - - close(): void { - console.warn('shimmed function PerceptionControlSession.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionControlSession::addEventListener: ${name}`); - switch (name) { - case "controllost": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionDepthCorrelatedCameraIntrinsics implements IPerceptionDepthCorrelatedCameraIntrinsics { - unprojectPixelAtCorrelatedDepth(pixelCoordinate: Foundation.Point, depthFrame: PerceptionDepthFrame): Foundation.Numerics.Vector3 { - throw new Error('shimmed function PerceptionDepthCorrelatedCameraIntrinsics.unprojectPixelAtCorrelatedDepth'); - } - - unprojectPixelsAtCorrelatedDepth(sourceCoordinates: Foundation.Point[], depthFrame: PerceptionDepthFrame, results: Foundation.Numerics.Vector3[]): void { - console.warn('shimmed function PerceptionDepthCorrelatedCameraIntrinsics.unprojectPixelsAtCorrelatedDepth'); - } - - unprojectRegionPixelsAtCorrelatedDepthAsync(region: Foundation.Rect, depthFrame: PerceptionDepthFrame, results: Foundation.Numerics.Vector3[]): Foundation.IAsyncAction { - throw new Error('shimmed function PerceptionDepthCorrelatedCameraIntrinsics.unprojectRegionPixelsAtCorrelatedDepthAsync'); - } - - unprojectAllPixelsAtCorrelatedDepthAsync(depthFrame: PerceptionDepthFrame, results: Foundation.Numerics.Vector3[]): Foundation.IAsyncAction { - throw new Error('shimmed function PerceptionDepthCorrelatedCameraIntrinsics.unprojectAllPixelsAtCorrelatedDepthAsync'); - } - - } - export class PerceptionDepthCorrelatedCoordinateMapper implements IPerceptionDepthCorrelatedCoordinateMapper { - mapPixelToTarget(sourcePixelCoordinate: Foundation.Point, depthFrame: PerceptionDepthFrame): Foundation.Point { - throw new Error('shimmed function PerceptionDepthCorrelatedCoordinateMapper.mapPixelToTarget'); - } - - mapPixelsToTarget(sourceCoordinates: Foundation.Point[], depthFrame: PerceptionDepthFrame, results: Foundation.Point[]): void { - console.warn('shimmed function PerceptionDepthCorrelatedCoordinateMapper.mapPixelsToTarget'); - } - - mapRegionOfPixelsToTargetAsync(region: Foundation.Rect, depthFrame: PerceptionDepthFrame, targetCoordinates: Foundation.Point[]): Foundation.IAsyncAction { - throw new Error('shimmed function PerceptionDepthCorrelatedCoordinateMapper.mapRegionOfPixelsToTargetAsync'); - } - - mapAllPixelsToTargetAsync(depthFrame: PerceptionDepthFrame, targetCoordinates: Foundation.Point[]): Foundation.IAsyncAction { - throw new Error('shimmed function PerceptionDepthCorrelatedCoordinateMapper.mapAllPixelsToTargetAsync'); - } - - } - export class PerceptionDepthFrame implements IPerceptionDepthFrame, Foundation.IClosable { - videoFrame: Media.VideoFrame; - - close(): void { - console.warn('shimmed function PerceptionDepthFrame.close'); - } - - } - export class PerceptionDepthFrameArrivedEventArgs implements IPerceptionDepthFrameArrivedEventArgs { - relativeTime: number; - - tryOpenFrame(): PerceptionDepthFrame { - throw new Error('shimmed function PerceptionDepthFrameArrivedEventArgs.tryOpenFrame'); - } - - } - export class PerceptionDepthFrameReader implements IPerceptionDepthFrameReader, Foundation.IClosable { - isPaused: Boolean; - source: PerceptionDepthFrameSource; - - tryReadLatestFrame(): PerceptionDepthFrame { - throw new Error('shimmed function PerceptionDepthFrameReader.tryReadLatestFrame'); - } - - close(): void { - console.warn('shimmed function PerceptionDepthFrameReader.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionDepthFrameReader::addEventListener: ${name}`); - switch (name) { - case "framearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionDepthFrameSource implements IPerceptionDepthFrameSource, IPerceptionDepthFrameSource2 { - active: Boolean; - available: Boolean; - availableVideoProfiles: PerceptionVideoProfile[]; - cameraIntrinsics: Media.Devices.Core.CameraIntrinsics; - deviceKind: string; - displayName: string; - id: string; - isControlled: Boolean; - properties: string[]; - supportedVideoProfiles: PerceptionVideoProfile[]; - videoProfile: PerceptionVideoProfile; - deviceId: string; - - acquireControlSession(): PerceptionControlSession { - throw new Error('shimmed function PerceptionDepthFrameSource.acquireControlSession'); - } - - canControlIndependentlyFrom(targetId: string): Boolean { - throw new Error('shimmed function PerceptionDepthFrameSource.canControlIndependentlyFrom'); - } - - isCorrelatedWith(targetId: string): Boolean { - throw new Error('shimmed function PerceptionDepthFrameSource.isCorrelatedWith'); - } - - tryGetTransformTo(targetId: string): { returnValue: Boolean, result: Foundation.Numerics.Matrix4x4 } { - throw new Error('shimmed function PerceptionDepthFrameSource.tryGetTransformTo'); - } - - tryGetDepthCorrelatedCameraIntrinsicsAsync(target: PerceptionDepthFrameSource): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionDepthFrameSource.tryGetDepthCorrelatedCameraIntrinsicsAsync'); - } - - tryGetDepthCorrelatedCoordinateMapperAsync(targetId: string, depthFrameSourceToMapWith: PerceptionDepthFrameSource): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionDepthFrameSource.tryGetDepthCorrelatedCoordinateMapperAsync'); - } - - trySetVideoProfileAsync(controlSession: PerceptionControlSession, profile: PerceptionVideoProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionDepthFrameSource.trySetVideoProfileAsync'); - } - - openReader(): PerceptionDepthFrameReader { - throw new Error('shimmed function PerceptionDepthFrameSource.openReader'); - } - - static createWatcher(): PerceptionDepthFrameSourceWatcher { - throw new Error('shimmed function PerceptionDepthFrameSource.createWatcher'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionDepthFrameSource.findAllAsync'); - } - - static fromIdAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionDepthFrameSource.fromIdAsync'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionDepthFrameSource.requestAccessAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionDepthFrameSource::addEventListener: ${name}`); - switch (name) { - case "activechanged": // Foundation.TypedEventHandler - case "availablechanged": // Foundation.TypedEventHandler - case "cameraintrinsicschanged": // Foundation.TypedEventHandler - case "propertieschanged": // Foundation.TypedEventHandler - case "videoprofilechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionDepthFrameSourceAddedEventArgs implements IPerceptionDepthFrameSourceAddedEventArgs { - frameSource: PerceptionDepthFrameSource; - - } - export class PerceptionDepthFrameSourceRemovedEventArgs implements IPerceptionDepthFrameSourceRemovedEventArgs { - frameSource: PerceptionDepthFrameSource; - - } - export class PerceptionDepthFrameSourceWatcher implements IPerceptionDepthFrameSourceWatcher { - status: Enumeration.DeviceWatcherStatus; - - start(): void { - console.warn('shimmed function PerceptionDepthFrameSourceWatcher.start'); - } - - stop(): void { - console.warn('shimmed function PerceptionDepthFrameSourceWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionDepthFrameSourceWatcher::addEventListener: ${name}`); - switch (name) { - case "enumerationcompleted": // Foundation.TypedEventHandler - case "sourceadded": // Foundation.TypedEventHandler - case "sourceremoved": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PerceptionFrameSourceAccessStatus { - unspecified, - allowed, - deniedByUser, - deniedBySystem, - } - export class PerceptionFrameSourcePropertiesChangedEventArgs implements IPerceptionFrameSourcePropertiesChangedEventArgs { - collectionChange: Foundation.Collections.CollectionChange; - key: string; - - } - export class PerceptionFrameSourcePropertyChangeResult implements IPerceptionFrameSourcePropertyChangeResult { - newValue: any; - status: PerceptionFrameSourcePropertyChangeStatus; - - } - export enum PerceptionFrameSourcePropertyChangeStatus { - unknown, - accepted, - lostControl, - propertyNotSupported, - propertyReadOnly, - valueOutOfRange, - } - export class PerceptionInfraredFrame implements IPerceptionInfraredFrame, Foundation.IClosable { - videoFrame: Media.VideoFrame; - - close(): void { - console.warn('shimmed function PerceptionInfraredFrame.close'); - } - - } - export class PerceptionInfraredFrameArrivedEventArgs implements IPerceptionInfraredFrameArrivedEventArgs { - relativeTime: number; - - tryOpenFrame(): PerceptionInfraredFrame { - throw new Error('shimmed function PerceptionInfraredFrameArrivedEventArgs.tryOpenFrame'); - } - - } - export class PerceptionInfraredFrameReader implements IPerceptionInfraredFrameReader, Foundation.IClosable { - isPaused: Boolean; - source: PerceptionInfraredFrameSource; - - tryReadLatestFrame(): PerceptionInfraredFrame { - throw new Error('shimmed function PerceptionInfraredFrameReader.tryReadLatestFrame'); - } - - close(): void { - console.warn('shimmed function PerceptionInfraredFrameReader.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionInfraredFrameReader::addEventListener: ${name}`); - switch (name) { - case "framearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionInfraredFrameSource implements IPerceptionInfraredFrameSource, IPerceptionInfraredFrameSource2 { - active: Boolean; - available: Boolean; - availableVideoProfiles: PerceptionVideoProfile[]; - cameraIntrinsics: Media.Devices.Core.CameraIntrinsics; - deviceKind: string; - displayName: string; - id: string; - isControlled: Boolean; - properties: string[]; - supportedVideoProfiles: PerceptionVideoProfile[]; - videoProfile: PerceptionVideoProfile; - deviceId: string; - - acquireControlSession(): PerceptionControlSession { - throw new Error('shimmed function PerceptionInfraredFrameSource.acquireControlSession'); - } - - canControlIndependentlyFrom(targetId: string): Boolean { - throw new Error('shimmed function PerceptionInfraredFrameSource.canControlIndependentlyFrom'); - } - - isCorrelatedWith(targetId: string): Boolean { - throw new Error('shimmed function PerceptionInfraredFrameSource.isCorrelatedWith'); - } - - tryGetTransformTo(targetId: string): { returnValue: Boolean, result: Foundation.Numerics.Matrix4x4 } { - throw new Error('shimmed function PerceptionInfraredFrameSource.tryGetTransformTo'); - } - - tryGetDepthCorrelatedCameraIntrinsicsAsync(target: PerceptionDepthFrameSource): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionInfraredFrameSource.tryGetDepthCorrelatedCameraIntrinsicsAsync'); - } - - tryGetDepthCorrelatedCoordinateMapperAsync(targetId: string, depthFrameSourceToMapWith: PerceptionDepthFrameSource): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionInfraredFrameSource.tryGetDepthCorrelatedCoordinateMapperAsync'); - } - - trySetVideoProfileAsync(controlSession: PerceptionControlSession, profile: PerceptionVideoProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionInfraredFrameSource.trySetVideoProfileAsync'); - } - - openReader(): PerceptionInfraredFrameReader { - throw new Error('shimmed function PerceptionInfraredFrameSource.openReader'); - } - - static createWatcher(): PerceptionInfraredFrameSourceWatcher { - throw new Error('shimmed function PerceptionInfraredFrameSource.createWatcher'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionInfraredFrameSource.findAllAsync'); - } - - static fromIdAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionInfraredFrameSource.fromIdAsync'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PerceptionInfraredFrameSource.requestAccessAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionInfraredFrameSource::addEventListener: ${name}`); - switch (name) { - case "activechanged": // Foundation.TypedEventHandler - case "availablechanged": // Foundation.TypedEventHandler - case "cameraintrinsicschanged": // Foundation.TypedEventHandler - case "propertieschanged": // Foundation.TypedEventHandler - case "videoprofilechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionInfraredFrameSourceAddedEventArgs implements IPerceptionInfraredFrameSourceAddedEventArgs { - frameSource: PerceptionInfraredFrameSource; - - } - export class PerceptionInfraredFrameSourceRemovedEventArgs implements IPerceptionInfraredFrameSourceRemovedEventArgs { - frameSource: PerceptionInfraredFrameSource; - - } - export class PerceptionInfraredFrameSourceWatcher implements IPerceptionInfraredFrameSourceWatcher { - status: Enumeration.DeviceWatcherStatus; - - start(): void { - console.warn('shimmed function PerceptionInfraredFrameSourceWatcher.start'); - } - - stop(): void { - console.warn('shimmed function PerceptionInfraredFrameSourceWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PerceptionInfraredFrameSourceWatcher::addEventListener: ${name}`); - switch (name) { - case "enumerationcompleted": // Foundation.TypedEventHandler - case "sourceadded": // Foundation.TypedEventHandler - case "sourceremoved": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export class PerceptionVideoProfile implements IPerceptionVideoProfile { - bitmapAlphaMode: Graphics.Imaging.BitmapAlphaMode; - bitmapPixelFormat: Graphics.Imaging.BitmapPixelFormat; - frameDuration: number; - height: number; - width: number; - - isEqual(other: PerceptionVideoProfile): Boolean { - throw new Error('shimmed function PerceptionVideoProfile.isEqual'); - } - - } - export namespace Provider { - export interface IPerceptionFrameProvider extends Foundation.IClosable { - available: Boolean; - frameProviderInfo: PerceptionFrameProviderInfo; - properties: Foundation.Collections.IPropertySet; - start(): void; - stop(): void; - setProperty(value: PerceptionPropertyChangeRequest): void; - } - export interface IPerceptionFrameProviderManager extends Foundation.IClosable { - getFrameProvider(frameProviderInfo: PerceptionFrameProviderInfo): IPerceptionFrameProvider; - } - export class KnownPerceptionFrameKind { - static color: string = 'Windows.Provider.KnownPerceptionFrameKind.Color'; - static depth: string = 'Windows.Provider.KnownPerceptionFrameKind.Depth'; - static infrared: string = 'Windows.Provider.KnownPerceptionFrameKind.Infrared'; - - } - export class PerceptionControlGroup implements IPerceptionControlGroup { - // constructor(ids: Foundation.Collections.IIterable); - constructor(ids: Foundation.Collections.IIterable) {} - - frameProviderIds: string[]; - - } - export class PerceptionCorrelation implements IPerceptionCorrelation { - // constructor(targetId: string, position: Foundation.Numerics.Vector3, orientation: Foundation.Numerics.Quaternion); - constructor(targetId: string, position: Foundation.Numerics.Vector3, orientation: Foundation.Numerics.Quaternion) {} - - orientation: Foundation.Numerics.Quaternion; - position: Foundation.Numerics.Vector3; - targetId: string; - - } - export class PerceptionCorrelationGroup implements IPerceptionCorrelationGroup { - // constructor(relativeLocations: Foundation.Collections.IIterable); - constructor(relativeLocations: Foundation.Collections.IIterable) {} - - relativeLocations: PerceptionCorrelation[]; - - } - export class PerceptionFaceAuthenticationGroup implements IPerceptionFaceAuthenticationGroup { - // constructor(ids: Foundation.Collections.IIterable, startHandler: PerceptionStartFaceAuthenticationHandler, stopHandler: PerceptionStopFaceAuthenticationHandler); - constructor(ids: Foundation.Collections.IIterable, startHandler: PerceptionStartFaceAuthenticationHandler, stopHandler: PerceptionStopFaceAuthenticationHandler) {} - - frameProviderIds: string[]; - - } - export class PerceptionFrame implements IPerceptionFrame { - relativeTime: number; - frameData: Foundation.IMemoryBuffer; - properties: Foundation.Collections.ValueSet; - - } - export class PerceptionFrameProviderInfo implements IPerceptionFrameProviderInfo { - // constructor(); - id: string; - hidden: Boolean = false; - frameKind: string; - displayName: string; - deviceKind: string; - - } - export class PerceptionFrameProviderManagerService { - static registerFrameProviderInfo(manager: IPerceptionFrameProviderManager, frameProviderInfo: PerceptionFrameProviderInfo): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.registerFrameProviderInfo'); - } - - static unregisterFrameProviderInfo(manager: IPerceptionFrameProviderManager, frameProviderInfo: PerceptionFrameProviderInfo): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.unregisterFrameProviderInfo'); - } - - static registerFaceAuthenticationGroup(manager: IPerceptionFrameProviderManager, faceAuthenticationGroup: PerceptionFaceAuthenticationGroup): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.registerFaceAuthenticationGroup'); - } - - static unregisterFaceAuthenticationGroup(manager: IPerceptionFrameProviderManager, faceAuthenticationGroup: PerceptionFaceAuthenticationGroup): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.unregisterFaceAuthenticationGroup'); - } - - static registerControlGroup(manager: IPerceptionFrameProviderManager, controlGroup: PerceptionControlGroup): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.registerControlGroup'); - } - - static unregisterControlGroup(manager: IPerceptionFrameProviderManager, controlGroup: PerceptionControlGroup): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.unregisterControlGroup'); - } - - static registerCorrelationGroup(manager: IPerceptionFrameProviderManager, correlationGroup: PerceptionCorrelationGroup): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.registerCorrelationGroup'); - } - - static unregisterCorrelationGroup(manager: IPerceptionFrameProviderManager, correlationGroup: PerceptionCorrelationGroup): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.unregisterCorrelationGroup'); - } - - static updateAvailabilityForProvider(provider: IPerceptionFrameProvider, available: Boolean): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.updateAvailabilityForProvider'); - } - - static publishFrameForProvider(provider: IPerceptionFrameProvider, frame: PerceptionFrame): void { - console.warn('shimmed function PerceptionFrameProviderManagerService.publishFrameForProvider'); - } - - } - export class PerceptionPropertyChangeRequest implements IPerceptionPropertyChangeRequest { - status: PerceptionFrameSourcePropertyChangeStatus; - name: string; - value: any; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function PerceptionPropertyChangeRequest.getDeferral'); - } - - } - export type PerceptionStartFaceAuthenticationHandler = () => Boolean; - export type PerceptionStopFaceAuthenticationHandler = () => void; - export class PerceptionVideoFrameAllocator implements IPerceptionVideoFrameAllocator, Foundation.IClosable { - // constructor(maxOutstandingFrameCountForWrite: number, format: Graphics.Imaging.BitmapPixelFormat, resolution: Foundation.Size, alpha: Graphics.Imaging.BitmapAlphaMode); - constructor(maxOutstandingFrameCountForWrite: number, format: Graphics.Imaging.BitmapPixelFormat, resolution: Foundation.Size, alpha: Graphics.Imaging.BitmapAlphaMode) {} - - allocateFrame(): PerceptionFrame { - throw new Error('shimmed function PerceptionVideoFrameAllocator.allocateFrame'); - } - - copyFromVideoFrame(frame: Media.VideoFrame): PerceptionFrame { - throw new Error('shimmed function PerceptionVideoFrameAllocator.copyFromVideoFrame'); - } - - close(): void { - console.warn('shimmed function PerceptionVideoFrameAllocator.close'); - } - - } - } - } - export namespace PointOfService { - export class BarcodeScanner implements IBarcodeScanner, IBarcodeScanner2, Foundation.IClosable { - capabilities: BarcodeScannerCapabilities; - deviceId: string; - videoDeviceId: string; - - claimScannerAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScanner.claimScannerAsync'); - } - - checkHealthAsync(level: UnifiedPosHealthCheckLevel): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScanner.checkHealthAsync'); - } - - getSupportedSymbologiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScanner.getSupportedSymbologiesAsync'); - } - - isSymbologySupportedAsync(barcodeSymbology: number): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScanner.isSymbologySupportedAsync'); - } - - retrieveStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScanner.retrieveStatisticsAsync'); - } - - getSupportedProfiles(): string[] { - throw new Error('shimmed function BarcodeScanner.getSupportedProfiles'); - } - - isProfileSupported(profile: string): Boolean { - throw new Error('shimmed function BarcodeScanner.isProfileSupported'); - } - - close(): void { - console.warn('shimmed function BarcodeScanner.close'); - } - - static getDeviceSelector(connectionTypes: PosConnectionTypes): string { - throw new Error('shimmed function BarcodeScanner.getDeviceSelector'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScanner.getDefaultAsync'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScanner.fromIdAsync'); - } - - static getDeviceSelector_1(): string { - throw new Error('shimmed function BarcodeScanner.getDeviceSelector_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BarcodeScanner::addEventListener: ${name}`); - switch (name) { - case "statusupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export class BarcodeScannerCapabilities implements IBarcodeScannerCapabilities, IBarcodeScannerCapabilities1, IBarcodeScannerCapabilities2 { - isImagePreviewSupported: Boolean; - isStatisticsReportingSupported: Boolean; - isStatisticsUpdatingSupported: Boolean; - powerReportingType: UnifiedPosPowerReportingType; - isSoftwareTriggerSupported: Boolean; - isVideoPreviewSupported: Boolean; - - } - export class BarcodeScannerDataReceivedEventArgs implements IBarcodeScannerDataReceivedEventArgs { - report: BarcodeScannerReport; - - } - export class BarcodeScannerErrorOccurredEventArgs implements IBarcodeScannerErrorOccurredEventArgs { - errorData: UnifiedPosErrorData; - isRetriable: Boolean; - partialInputData: BarcodeScannerReport; - - } - export class BarcodeScannerImagePreviewReceivedEventArgs implements IBarcodeScannerImagePreviewReceivedEventArgs { - preview: Storage.Streams.IRandomAccessStreamWithContentType; - - } - export class BarcodeScannerReport implements IBarcodeScannerReport { - // constructor(scanDataType: number, scanData: Storage.Streams.IBuffer, scanDataLabel: Storage.Streams.IBuffer); - constructor(scanDataType: number, scanData: Storage.Streams.IBuffer, scanDataLabel: Storage.Streams.IBuffer) {} - - scanData: Storage.Streams.IBuffer; - scanDataLabel: Storage.Streams.IBuffer; - scanDataType: number; - - } - export enum BarcodeScannerStatus { - online, - off, - offline, - offOrOffline, - extended, - } - export class BarcodeScannerStatusUpdatedEventArgs implements IBarcodeScannerStatusUpdatedEventArgs { - extendedStatus: number; - status: BarcodeScannerStatus; - - } - export class BarcodeSymbologies { - static code11: number = 151; - static ausPost: number = 173; - static aztec: number = 160; - static canPost: number = 174; - static ccab: number = 170; - static ccc: number = 171; - static chinaPost: number = 175; - static codabar: number = 150; - static codablock128: number = 158; - static codablockA: number = 156; - static codablockF: number = 157; - static dutchKix: number = 176; - static code128: number = 144; - static code16k: number = 155; - static code32: number = 140; - static code39: number = 137; - static code39Ex: number = 138; - static code49: number = 159; - static code93: number = 142; - static code93Ex: number = 143; - static dataCode: number = 161; - static dataMatrix: number = 162; - static usPostNet: number = 187; - static ean13: number = 107; - static ean13Add2: number = 108; - static ean13Add5: number = 109; - static ean8: number = 101; - static ean8Add2: number = 102; - static ean8Add5: number = 103; - static ean99: number = 118; - static ean99Add2: number = 119; - static ean99Add5: number = 120; - static eanv: number = 104; - static eanvAdd2: number = 105; - static eanvAdd5: number = 106; - static extendedBase: number = 501; - static gs1128: number = 145; - static gs1128Coupon: number = 146; - static gs1DatabarType1: number = 134; - static gs1DatabarType2: number = 135; - static gs1DatabarType3: number = 136; - static hanXin: number = 163; - static infoMail: number = 177; - static isbn: number = 110; - static isbnAdd5: number = 111; - static isbt: number = 149; - static ismn: number = 112; - static ismnAdd2: number = 113; - static ismnAdd5: number = 114; - static issn: number = 115; - static issnAdd2: number = 116; - static issnAdd5: number = 117; - static italianPost25: number = 178; - static italianPost39: number = 179; - static japanPost: number = 180; - static koreanPost: number = 181; - static maxicode: number = 164; - static micr: number = 191; - static microPdf417: number = 165; - static microQr: number = 166; - static msTag: number = 169; - static msi: number = 152; - static ocrA: number = 189; - static ocrB: number = 190; - static pdf417: number = 167; - static plessey: number = 153; - static pzn: number = 141; - static qr: number = 168; - static sisac: number = 148; - static swedenPost: number = 182; - static telepen: number = 154; - static tfDis: number = 129; - static tfIata: number = 133; - static tfInd: number = 131; - static tfInt: number = 130; - static tfMat: number = 132; - static tfStd: number = 128; - static tlc39: number = 172; - static trioptic39: number = 139; - static uccEan128: number = 147; - static ukPost: number = 183; - static unknown: number = 0; - static upcCoupon: number = 127; - static upca: number = 121; - static upcaAdd2: number = 122; - static upcaAdd5: number = 123; - static upce: number = 124; - static upceAdd2: number = 125; - static upceAdd5: number = 126; - static us4StateFics: number = 188; - static usIntelligent: number = 184; - static usIntelligentPkg: number = 185; - static usPlanet: number = 186; - static gs1DWCode: number = 192; - - static getName(scanDataType: number): string { - throw new Error('shimmed function BarcodeSymbologies.getName'); - } - - } - export class BarcodeSymbologyAttributes implements IBarcodeSymbologyAttributes { - isCheckDigitValidationEnabled: Boolean; - isCheckDigitTransmissionEnabled: Boolean; - decodeLengthKind: BarcodeSymbologyDecodeLengthKind; - decodeLength2: number; - decodeLength1: number; - isCheckDigitTransmissionSupported: Boolean; - isCheckDigitValidationSupported: Boolean; - isDecodeLengthSupported: Boolean; - - } - export enum BarcodeSymbologyDecodeLengthKind { - anyLength, - discrete, - range, - } - export class CashDrawer implements ICashDrawer, Foundation.IClosable { - capabilities: CashDrawerCapabilities; - deviceId: string; - drawerEventSource: CashDrawerEventSource; - isDrawerOpen: Boolean; - status: CashDrawerStatus; - - claimDrawerAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CashDrawer.claimDrawerAsync'); - } - - checkHealthAsync(level: UnifiedPosHealthCheckLevel): Foundation.IAsyncOperation { - throw new Error('shimmed function CashDrawer.checkHealthAsync'); - } - - getStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CashDrawer.getStatisticsAsync'); - } - - close(): void { - console.warn('shimmed function CashDrawer.close'); - } - - static getDeviceSelector(connectionTypes: PosConnectionTypes): string { - throw new Error('shimmed function CashDrawer.getDeviceSelector'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CashDrawer.getDefaultAsync'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CashDrawer.fromIdAsync'); - } - - static getDeviceSelector_1(): string { - throw new Error('shimmed function CashDrawer.getDeviceSelector_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CashDrawer::addEventListener: ${name}`); - switch (name) { - case "statusupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export class CashDrawerCapabilities implements ICashDrawerCapabilities { - isDrawerOpenSensorAvailable: Boolean; - isStatisticsReportingSupported: Boolean; - isStatisticsUpdatingSupported: Boolean; - isStatusMultiDrawerDetectSupported: Boolean; - isStatusReportingSupported: Boolean; - powerReportingType: UnifiedPosPowerReportingType; - - } - export class CashDrawerCloseAlarm implements ICashDrawerCloseAlarm { - beepFrequency: number; - beepDuration: number; - beepDelay: number; - alarmTimeout: number; - - startAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CashDrawerCloseAlarm.startAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CashDrawerCloseAlarm::addEventListener: ${name}`); - switch (name) { - case "alarmtimeoutexpired": // Foundation.TypedEventHandler - break; - } - - } - } - export class CashDrawerClosedEventArgs implements ICashDrawerEventSourceEventArgs { - cashDrawer: CashDrawer; - - } - export class CashDrawerEventSource implements ICashDrawerEventSource { - addEventListener(name: string, handler: Function) { - console.warn(`CashDrawerEventSource::addEventListener: ${name}`); - switch (name) { - case "drawerclosed": // Foundation.TypedEventHandler - case "draweropened": // Foundation.TypedEventHandler - break; - } - - } - } - export class CashDrawerOpenedEventArgs implements ICashDrawerEventSourceEventArgs { - cashDrawer: CashDrawer; - - } - export class CashDrawerStatus implements ICashDrawerStatus { - extendedStatus: number; - statusKind: CashDrawerStatusKind; - - } - export enum CashDrawerStatusKind { - online, - off, - offline, - offOrOffline, - extended, - } - export class CashDrawerStatusUpdatedEventArgs implements ICashDrawerStatusUpdatedEventArgs { - status: CashDrawerStatus; - - } - export class ClaimedBarcodeScanner implements IClaimedBarcodeScanner, IClaimedBarcodeScanner1, IClaimedBarcodeScanner2, IClaimedBarcodeScanner3, IClaimedBarcodeScanner4, Foundation.IClosable { - isDisabledOnDataReceived: Boolean; - isDecodeDataEnabled: Boolean; - deviceId: string; - isEnabled: Boolean; - isVideoPreviewShownOnEnable: Boolean; - - enableAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.enableAsync'); - } - - disableAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.disableAsync'); - } - - retainDevice(): void { - console.warn('shimmed function ClaimedBarcodeScanner.retainDevice'); - } - - setActiveSymbologiesAsync(symbologies: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.setActiveSymbologiesAsync'); - } - - resetStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.resetStatisticsAsync'); - } - - updateStatisticsAsync(statistics: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.updateStatisticsAsync'); - } - - setActiveProfileAsync(profile: string): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.setActiveProfileAsync'); - } - - startSoftwareTriggerAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.startSoftwareTriggerAsync'); - } - - stopSoftwareTriggerAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedBarcodeScanner.stopSoftwareTriggerAsync'); - } - - getSymbologyAttributesAsync(barcodeSymbology: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedBarcodeScanner.getSymbologyAttributesAsync'); - } - - setSymbologyAttributesAsync(barcodeSymbology: number, attributes: BarcodeSymbologyAttributes): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedBarcodeScanner.setSymbologyAttributesAsync'); - } - - showVideoPreviewAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedBarcodeScanner.showVideoPreviewAsync'); - } - - hideVideoPreview(): void { - console.warn('shimmed function ClaimedBarcodeScanner.hideVideoPreview'); - } - - close(): void { - console.warn('shimmed function ClaimedBarcodeScanner.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ClaimedBarcodeScanner::addEventListener: ${name}`); - switch (name) { - case "datareceived": // Foundation.TypedEventHandler - case "erroroccurred": // Foundation.TypedEventHandler - case "imagepreviewreceived": // Foundation.TypedEventHandler - case "releasedevicerequested": // /* System.EventHandler`1[[Windows.Devices.PointOfService.ClaimedBarcodeScanner, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "triggerpressed": // /* System.EventHandler`1[[Windows.Devices.PointOfService.ClaimedBarcodeScanner, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "triggerreleased": // /* System.EventHandler`1[[Windows.Devices.PointOfService.ClaimedBarcodeScanner, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class ClaimedBarcodeScannerClosedEventArgs implements IClaimedBarcodeScannerClosedEventArgs { - } - export class ClaimedCashDrawer implements IClaimedCashDrawer, IClaimedCashDrawer2, Foundation.IClosable { - closeAlarm: CashDrawerCloseAlarm; - deviceId: string; - isDrawerOpen: Boolean; - isEnabled: Boolean; - - openDrawerAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedCashDrawer.openDrawerAsync'); - } - - enableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedCashDrawer.enableAsync'); - } - - disableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedCashDrawer.disableAsync'); - } - - retainDeviceAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedCashDrawer.retainDeviceAsync'); - } - - resetStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedCashDrawer.resetStatisticsAsync'); - } - - updateStatisticsAsync(statistics: Foundation.Collections.IIterable>): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedCashDrawer.updateStatisticsAsync'); - } - - close(): void { - console.warn('shimmed function ClaimedCashDrawer.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ClaimedCashDrawer::addEventListener: ${name}`); - switch (name) { - case "releasedevicerequested": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class ClaimedCashDrawerClosedEventArgs implements IClaimedCashDrawerClosedEventArgs { - } - export class ClaimedJournalPrinter implements IClaimedJournalPrinter, ICommonClaimedPosPrinterStation { - lineSpacing: number; - lineHeight: number; - isLetterQuality: Boolean; - colorCartridge: PosPrinterColorCartridge; - charactersPerLine: number; - isCartridgeEmpty: Boolean; - isCartridgeRemoved: Boolean; - isCoverOpen: Boolean; - isHeadCleaning: Boolean; - isPaperEmpty: Boolean; - isPaperNearEnd: Boolean; - isReadyToPrint: Boolean; - lineWidth: number; - - createJob(): JournalPrintJob { - throw new Error('shimmed function ClaimedJournalPrinter.createJob'); - } - - validateData(data: string): Boolean { - throw new Error('shimmed function ClaimedJournalPrinter.validateData'); - } - - } - export class ClaimedLineDisplay implements IClaimedLineDisplay, IClaimedLineDisplay2, IClaimedLineDisplay3, Foundation.IClosable { - capabilities: LineDisplayCapabilities; - defaultWindow: LineDisplayWindow; - deviceControlDescription: string; - deviceControlVersion: string; - deviceId: string; - deviceServiceVersion: string; - physicalDeviceDescription: string; - physicalDeviceName: string; - customGlyphs: LineDisplayCustomGlyphs; - maxBitmapSizeInPixels: Foundation.Size; - supportedCharacterSets: number[]; - supportedScreenSizesInCharacters: Foundation.Size[]; - - retainDevice(): void { - console.warn('shimmed function ClaimedLineDisplay.retainDevice'); - } - - getStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.getStatisticsAsync'); - } - - checkHealthAsync(level: UnifiedPosHealthCheckLevel): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.checkHealthAsync'); - } - - checkPowerStatusAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.checkPowerStatusAsync'); - } - - getAttributes(): LineDisplayAttributes { - throw new Error('shimmed function ClaimedLineDisplay.getAttributes'); - } - - tryUpdateAttributesAsync(attributes: LineDisplayAttributes): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.tryUpdateAttributesAsync'); - } - - trySetDescriptorAsync(descriptor: number, descriptorState: LineDisplayDescriptorState): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.trySetDescriptorAsync'); - } - - tryClearDescriptorsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.tryClearDescriptorsAsync'); - } - - tryCreateWindowAsync(viewport: Foundation.Rect, windowSize: Foundation.Size): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.tryCreateWindowAsync'); - } - - tryStoreStorageFileBitmapAsync(bitmap: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.tryStoreStorageFileBitmapAsync'); - } - - tryStoreStorageFileBitmapAsync_1(bitmap: Storage.StorageFile, horizontalAlignment: LineDisplayHorizontalAlignment, verticalAlignment: LineDisplayVerticalAlignment): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.tryStoreStorageFileBitmapAsync_1'); - } - - tryStoreStorageFileBitmapAsync_2(bitmap: Storage.StorageFile, horizontalAlignment: LineDisplayHorizontalAlignment, verticalAlignment: LineDisplayVerticalAlignment, widthInPixels: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.tryStoreStorageFileBitmapAsync_2'); - } - - close(): void { - console.warn('shimmed function ClaimedLineDisplay.close'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedLineDisplay.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function ClaimedLineDisplay.getDeviceSelector'); - } - - static getDeviceSelector_1(connectionTypes: PosConnectionTypes): string { - throw new Error('shimmed function ClaimedLineDisplay.getDeviceSelector_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ClaimedLineDisplay::addEventListener: ${name}`); - switch (name) { - case "releasedevicerequested": // Foundation.TypedEventHandler - case "statusupdated": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class ClaimedLineDisplayClosedEventArgs implements IClaimedLineDisplayClosedEventArgs { - } - export class ClaimedMagneticStripeReader implements IClaimedMagneticStripeReader, IClaimedMagneticStripeReader2, Foundation.IClosable { - tracksToRead: MagneticStripeReaderTrackIds; - isTransmitSentinelsEnabled: Boolean; - isDisabledOnDataReceived: Boolean; - isDecodeDataEnabled: Boolean; - dataEncryptionAlgorithm: number; - deviceId: string; - isDeviceAuthenticated: Boolean; - isEnabled: Boolean; - - enableAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedMagneticStripeReader.enableAsync'); - } - - disableAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedMagneticStripeReader.disableAsync'); - } - - retainDevice(): void { - console.warn('shimmed function ClaimedMagneticStripeReader.retainDevice'); - } - - setErrorReportingType(value: MagneticStripeReaderErrorReportingType): void { - console.warn('shimmed function ClaimedMagneticStripeReader.setErrorReportingType'); - } - - retrieveDeviceAuthenticationDataAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedMagneticStripeReader.retrieveDeviceAuthenticationDataAsync'); - } - - authenticateDeviceAsync(responseToken: number[]): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedMagneticStripeReader.authenticateDeviceAsync'); - } - - deAuthenticateDeviceAsync(responseToken: number[]): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedMagneticStripeReader.deAuthenticateDeviceAsync'); - } - - updateKeyAsync(key: string, keyName: string): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedMagneticStripeReader.updateKeyAsync'); - } - - resetStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedMagneticStripeReader.resetStatisticsAsync'); - } - - updateStatisticsAsync(statistics: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function ClaimedMagneticStripeReader.updateStatisticsAsync'); - } - - close(): void { - console.warn('shimmed function ClaimedMagneticStripeReader.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ClaimedMagneticStripeReader::addEventListener: ${name}`); - switch (name) { - case "aamvacarddatareceived": // Foundation.TypedEventHandler - case "bankcarddatareceived": // Foundation.TypedEventHandler - case "erroroccurred": // Foundation.TypedEventHandler - case "releasedevicerequested": // /* System.EventHandler`1[[Windows.Devices.PointOfService.ClaimedMagneticStripeReader, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "vendorspecificdatareceived": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class ClaimedMagneticStripeReaderClosedEventArgs implements IClaimedMagneticStripeReaderClosedEventArgs { - } - export class ClaimedPosPrinter implements IClaimedPosPrinter, IClaimedPosPrinter2, Foundation.IClosable { - mapMode: PosPrinterMapMode; - isCharacterSetMappingEnabled: Boolean; - characterSet: number; - deviceId: string; - isCoverOpen: Boolean; - isEnabled: Boolean; - journal: ClaimedJournalPrinter; - receipt: ClaimedReceiptPrinter; - slip: ClaimedSlipPrinter; - - enableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedPosPrinter.enableAsync'); - } - - disableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedPosPrinter.disableAsync'); - } - - retainDeviceAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedPosPrinter.retainDeviceAsync'); - } - - resetStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedPosPrinter.resetStatisticsAsync'); - } - - updateStatisticsAsync(statistics: Foundation.Collections.IIterable>): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedPosPrinter.updateStatisticsAsync'); - } - - close(): void { - console.warn('shimmed function ClaimedPosPrinter.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ClaimedPosPrinter::addEventListener: ${name}`); - switch (name) { - case "releasedevicerequested": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class ClaimedPosPrinterClosedEventArgs implements IClaimedPosPrinterClosedEventArgs { - } - export class ClaimedReceiptPrinter implements IClaimedReceiptPrinter, ICommonClaimedPosPrinterStation { - linesToPaperCut: number; - pageSize: Foundation.Size; - printArea: Foundation.Rect; - sidewaysMaxChars: number; - sidewaysMaxLines: number; - lineSpacing: number; - lineHeight: number; - isLetterQuality: Boolean; - colorCartridge: PosPrinterColorCartridge; - charactersPerLine: number; - isCartridgeEmpty: Boolean; - isCartridgeRemoved: Boolean; - isCoverOpen: Boolean; - isHeadCleaning: Boolean; - isPaperEmpty: Boolean; - isPaperNearEnd: Boolean; - isReadyToPrint: Boolean; - lineWidth: number; - - createJob(): ReceiptPrintJob { - throw new Error('shimmed function ClaimedReceiptPrinter.createJob'); - } - - validateData(data: string): Boolean { - throw new Error('shimmed function ClaimedReceiptPrinter.validateData'); - } - - } - export class ClaimedSlipPrinter implements IClaimedSlipPrinter, ICommonClaimedPosPrinterStation { - linesNearEndToEnd: number; - maxLines: number; - pageSize: Foundation.Size; - printArea: Foundation.Rect; - printSide: PosPrinterPrintSide; - sidewaysMaxChars: number; - sidewaysMaxLines: number; - lineSpacing: number; - lineHeight: number; - isLetterQuality: Boolean; - colorCartridge: PosPrinterColorCartridge; - charactersPerLine: number; - isCartridgeEmpty: Boolean; - isCartridgeRemoved: Boolean; - isCoverOpen: Boolean; - isHeadCleaning: Boolean; - isPaperEmpty: Boolean; - isPaperNearEnd: Boolean; - isReadyToPrint: Boolean; - lineWidth: number; - - openJaws(): void { - console.warn('shimmed function ClaimedSlipPrinter.openJaws'); - } - - closeJaws(): void { - console.warn('shimmed function ClaimedSlipPrinter.closeJaws'); - } - - insertSlipAsync(timeout: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedSlipPrinter.insertSlipAsync'); - } - - removeSlipAsync(timeout: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ClaimedSlipPrinter.removeSlipAsync'); - } - - changePrintSide(printSide: PosPrinterPrintSide): void { - console.warn('shimmed function ClaimedSlipPrinter.changePrintSide'); - } - - createJob(): SlipPrintJob { - throw new Error('shimmed function ClaimedSlipPrinter.createJob'); - } - - validateData(data: string): Boolean { - throw new Error('shimmed function ClaimedSlipPrinter.validateData'); - } - - } - export interface ICashDrawerEventSourceEventArgs { - cashDrawer: CashDrawer; - } - export interface ICommonClaimedPosPrinterStation { - charactersPerLine: number; - colorCartridge: PosPrinterColorCartridge; - isCartridgeEmpty: Boolean; - isCartridgeRemoved: Boolean; - isCoverOpen: Boolean; - isHeadCleaning: Boolean; - isLetterQuality: Boolean; - isPaperEmpty: Boolean; - isPaperNearEnd: Boolean; - isReadyToPrint: Boolean; - lineHeight: number; - lineSpacing: number; - lineWidth: number; - validateData(data: string): Boolean; - } - export interface ICommonPosPrintStationCapabilities { - cartridgeSensors: PosPrinterCartridgeSensors; - colorCartridgeCapabilities: PosPrinterColorCapabilities; - isBoldSupported: Boolean; - isDoubleHighDoubleWidePrintSupported: Boolean; - isDoubleHighPrintSupported: Boolean; - isDoubleWidePrintSupported: Boolean; - isDualColorSupported: Boolean; - isItalicSupported: Boolean; - isPaperEmptySensorSupported: Boolean; - isPaperNearEndSensorSupported: Boolean; - isPrinterPresent: Boolean; - isUnderlineSupported: Boolean; - supportedCharactersPerLine: number[]; - } - export interface ICommonReceiptSlipCapabilities extends ICommonPosPrintStationCapabilities { - is180RotationSupported: Boolean; - isBarcodeSupported: Boolean; - isBitmapSupported: Boolean; - isLeft90RotationSupported: Boolean; - isPrintAreaSupported: Boolean; - isRight90RotationSupported: Boolean; - ruledLineCapabilities: PosPrinterRuledLineCapabilities; - supportedBarcodeRotations: PosPrinterRotation[]; - supportedBitmapRotations: PosPrinterRotation[]; - } - export interface IPosPrinterJob { - print(data: string): void; - printLine(data: string): void; - printLine_1(): void; - executeAsync(): Foundation.IAsyncOperation; - } - export interface IReceiptOrSlipJob extends IPosPrinterJob { - setBarcodeRotation(value: PosPrinterRotation): void; - setPrintRotation(value: PosPrinterRotation, includeBitmaps: Boolean): void; - setPrintArea(value: Foundation.Rect): void; - setBitmap(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment): void; - setBitmap_1(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment, width: number): void; - setCustomAlignedBitmap(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number): void; - setCustomAlignedBitmap_1(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number, width: number): void; - printSavedBitmap(bitmapNumber: number): void; - drawRuledLine(positionList: string, lineDirection: PosPrinterLineDirection, lineWidth: number, lineStyle: PosPrinterLineStyle, lineColor: number): void; - printBarcode(data: string, symbology: number, height: number, width: number, textPosition: PosPrinterBarcodeTextPosition, alignment: PosPrinterAlignment): void; - printBarcodeCustomAlign(data: string, symbology: number, height: number, width: number, textPosition: PosPrinterBarcodeTextPosition, alignmentDistance: number): void; - printBitmap(bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment): void; - printBitmap_1(bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment, width: number): void; - printCustomAlignedBitmap(bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number): void; - printCustomAlignedBitmap_1(bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number, width: number): void; - } - export class JournalPrinterCapabilities implements IJournalPrinterCapabilities, IJournalPrinterCapabilities2, ICommonPosPrintStationCapabilities { - cartridgeSensors: PosPrinterCartridgeSensors; - colorCartridgeCapabilities: PosPrinterColorCapabilities; - isBoldSupported: Boolean; - isDoubleHighDoubleWidePrintSupported: Boolean; - isDoubleHighPrintSupported: Boolean; - isDoubleWidePrintSupported: Boolean; - isDualColorSupported: Boolean; - isItalicSupported: Boolean; - isPaperEmptySensorSupported: Boolean; - isPaperNearEndSensorSupported: Boolean; - isPrinterPresent: Boolean; - isUnderlineSupported: Boolean; - supportedCharactersPerLine: number[]; - isReversePaperFeedByLineSupported: Boolean; - isReversePaperFeedByMapModeUnitSupported: Boolean; - isReverseVideoSupported: Boolean; - isStrikethroughSupported: Boolean; - isSubscriptSupported: Boolean; - isSuperscriptSupported: Boolean; - - } - export class JournalPrintJob implements IJournalPrintJob, IPosPrinterJob { - print(data: string, printOptions: PosPrinterPrintOptions): void { - console.warn('shimmed function JournalPrintJob.print'); - } - - feedPaperByLine(lineCount: number): void { - console.warn('shimmed function JournalPrintJob.feedPaperByLine'); - } - - feedPaperByMapModeUnit(distance: number): void { - console.warn('shimmed function JournalPrintJob.feedPaperByMapModeUnit'); - } - - print_1(data: string): void { - console.warn('shimmed function JournalPrintJob.print_1'); - } - - printLine(data: string): void { - console.warn('shimmed function JournalPrintJob.printLine'); - } - - printLine_1(): void { - console.warn('shimmed function JournalPrintJob.printLine_1'); - } - - executeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function JournalPrintJob.executeAsync'); - } - - } - export class LineDisplay implements ILineDisplay, ILineDisplay2, Foundation.IClosable { - capabilities: LineDisplayCapabilities; - deviceControlDescription: string; - deviceControlVersion: string; - deviceId: string; - deviceServiceVersion: string; - physicalDeviceDescription: string; - physicalDeviceName: string; - static statisticsCategorySelector: LineDisplayStatisticsCategorySelector; - - claimAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplay.claimAsync'); - } - - checkPowerStatusAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplay.checkPowerStatusAsync'); - } - - close(): void { - console.warn('shimmed function LineDisplay.close'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplay.fromIdAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplay.getDefaultAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function LineDisplay.getDeviceSelector'); - } - - static getDeviceSelector_1(connectionTypes: PosConnectionTypes): string { - throw new Error('shimmed function LineDisplay.getDeviceSelector_1'); - } - - } - export class LineDisplayAttributes implements ILineDisplayAttributes { - screenSizeInCharacters: Foundation.Size; - isPowerNotifyEnabled: Boolean; - isCharacterSetMappingEnabled: Boolean; - currentWindow: LineDisplayWindow; - characterSet: number; - brightness: number; - blinkRate: number; - - } - export class LineDisplayCapabilities implements ILineDisplayCapabilities { - canBlink: LineDisplayTextAttributeGranularity; - canChangeBlinkRate: Boolean; - canChangeScreenSize: Boolean; - canDisplayBitmaps: Boolean; - canDisplayCustomGlyphs: Boolean; - canMapCharacterSets: Boolean; - canReadCharacterAtCursor: Boolean; - canReverse: LineDisplayTextAttributeGranularity; - isBrightnessSupported: Boolean; - isCursorSupported: Boolean; - isHorizontalMarqueeSupported: Boolean; - isInterCharacterWaitSupported: Boolean; - isStatisticsReportingSupported: Boolean; - isStatisticsUpdatingSupported: Boolean; - isVerticalMarqueeSupported: Boolean; - powerReportingType: UnifiedPosPowerReportingType; - supportedDescriptors: number; - supportedWindows: number; - - } - export class LineDisplayCursor implements ILineDisplayCursor { - canCustomize: Boolean; - isBlinkSupported: Boolean; - isBlockSupported: Boolean; - isHalfBlockSupported: Boolean; - isOtherSupported: Boolean; - isReverseSupported: Boolean; - isUnderlineSupported: Boolean; - - getAttributes(): LineDisplayCursorAttributes { - throw new Error('shimmed function LineDisplayCursor.getAttributes'); - } - - tryUpdateAttributesAsync(attributes: LineDisplayCursorAttributes): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayCursor.tryUpdateAttributesAsync'); - } - - } - export class LineDisplayCursorAttributes implements ILineDisplayCursorAttributes { - position: Foundation.Point; - isBlinkEnabled: Boolean; - isAutoAdvanceEnabled: Boolean; - cursorType: LineDisplayCursorType; - - } - export enum LineDisplayCursorType { - none, - block, - halfBlock, - underline, - reverse, - other, - } - export class LineDisplayCustomGlyphs implements ILineDisplayCustomGlyphs { - sizeInPixels: Foundation.Size; - supportedGlyphCodes: number[]; - - tryRedefineAsync(glyphCode: number, glyphData: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayCustomGlyphs.tryRedefineAsync'); - } - - } - export enum LineDisplayDescriptorState { - off, - on, - blink, - } - export enum LineDisplayHorizontalAlignment { - left, - center, - right, - } - export class LineDisplayMarquee implements ILineDisplayMarquee { - scrollWaitInterval: number; - repeatWaitInterval: number; - format: LineDisplayMarqueeFormat; - - tryStartScrollingAsync(direction: LineDisplayScrollDirection): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayMarquee.tryStartScrollingAsync'); - } - - tryStopScrollingAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayMarquee.tryStopScrollingAsync'); - } - - } - export enum LineDisplayMarqueeFormat { - none, - walk, - place, - } - export enum LineDisplayPowerStatus { - unknown, - online, - off, - offline, - offOrOffline, - } - export enum LineDisplayScrollDirection { - up, - down, - left, - right, - } - export class LineDisplayStatisticsCategorySelector implements ILineDisplayStatisticsCategorySelector { - allStatistics: string; - manufacturerStatistics: string; - unifiedPosStatistics: string; - - } - export class LineDisplayStatusUpdatedEventArgs implements ILineDisplayStatusUpdatedEventArgs { - status: LineDisplayPowerStatus; - - } - export class LineDisplayStoredBitmap implements ILineDisplayStoredBitmap { - escapeSequence: string; - - tryDeleteAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayStoredBitmap.tryDeleteAsync'); - } - - } - export enum LineDisplayTextAttribute { - normal, - blink, - reverse, - reverseBlink, - } - export enum LineDisplayTextAttributeGranularity { - notSupported, - entireDisplay, - perCharacter, - } - export enum LineDisplayVerticalAlignment { - top, - center, - bottom, - } - export class LineDisplayWindow implements ILineDisplayWindow, ILineDisplayWindow2, Foundation.IClosable { - interCharacterWaitInterval: number; - sizeInCharacters: Foundation.Size; - cursor: LineDisplayCursor; - marquee: LineDisplayMarquee; - - tryRefreshAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryRefreshAsync'); - } - - tryDisplayTextAsync(text: string, displayAttribute: LineDisplayTextAttribute): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayTextAsync'); - } - - tryDisplayTextAsync_1(text: string, displayAttribute: LineDisplayTextAttribute, startPosition: Foundation.Point): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayTextAsync_1'); - } - - tryDisplayTextAsync_2(text: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayTextAsync_2'); - } - - tryScrollTextAsync(direction: LineDisplayScrollDirection, numberOfColumnsOrRows: number): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryScrollTextAsync'); - } - - tryClearTextAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryClearTextAsync'); - } - - readCharacterAtCursorAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.readCharacterAtCursorAsync'); - } - - tryDisplayStoredBitmapAtCursorAsync(bitmap: LineDisplayStoredBitmap): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayStoredBitmapAtCursorAsync'); - } - - tryDisplayStorageFileBitmapAtCursorAsync(bitmap: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayStorageFileBitmapAtCursorAsync'); - } - - tryDisplayStorageFileBitmapAtCursorAsync_1(bitmap: Storage.StorageFile, horizontalAlignment: LineDisplayHorizontalAlignment, verticalAlignment: LineDisplayVerticalAlignment): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayStorageFileBitmapAtCursorAsync_1'); - } - - tryDisplayStorageFileBitmapAtCursorAsync_2(bitmap: Storage.StorageFile, horizontalAlignment: LineDisplayHorizontalAlignment, verticalAlignment: LineDisplayVerticalAlignment, widthInPixels: number): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayStorageFileBitmapAtCursorAsync_2'); - } - - tryDisplayStorageFileBitmapAtPointAsync(bitmap: Storage.StorageFile, offsetInPixels: Foundation.Point): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayStorageFileBitmapAtPointAsync'); - } - - tryDisplayStorageFileBitmapAtPointAsync_1(bitmap: Storage.StorageFile, offsetInPixels: Foundation.Point, widthInPixels: number): Foundation.IAsyncOperation { - throw new Error('shimmed function LineDisplayWindow.tryDisplayStorageFileBitmapAtPointAsync_1'); - } - - close(): void { - console.warn('shimmed function LineDisplayWindow.close'); - } - - } - export class MagneticStripeReader implements IMagneticStripeReader, Foundation.IClosable { - capabilities: MagneticStripeReaderCapabilities; - deviceAuthenticationProtocol: MagneticStripeReaderAuthenticationProtocol; - deviceId: string; - supportedCardTypes: number[]; - - checkHealthAsync(level: UnifiedPosHealthCheckLevel): Foundation.IAsyncOperation { - throw new Error('shimmed function MagneticStripeReader.checkHealthAsync'); - } - - claimReaderAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MagneticStripeReader.claimReaderAsync'); - } - - retrieveStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MagneticStripeReader.retrieveStatisticsAsync'); - } - - getErrorReportingType(): MagneticStripeReaderErrorReportingType { - throw new Error('shimmed function MagneticStripeReader.getErrorReportingType'); - } - - close(): void { - console.warn('shimmed function MagneticStripeReader.close'); - } - - static getDeviceSelector(connectionTypes: PosConnectionTypes): string { - throw new Error('shimmed function MagneticStripeReader.getDeviceSelector'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MagneticStripeReader.getDefaultAsync'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MagneticStripeReader.fromIdAsync'); - } - - static getDeviceSelector_1(): string { - throw new Error('shimmed function MagneticStripeReader.getDeviceSelector_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MagneticStripeReader::addEventListener: ${name}`); - switch (name) { - case "statusupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export class MagneticStripeReaderAamvaCardDataReceivedEventArgs implements IMagneticStripeReaderAamvaCardDataReceivedEventArgs { - address: string; - birthDate: string; - city: string; - class: string; - endorsements: string; - expirationDate: string; - eyeColor: string; - firstName: string; - gender: string; - hairColor: string; - height: string; - licenseNumber: string; - postalCode: string; - report: MagneticStripeReaderReport; - restrictions: string; - state: string; - suffix: string; - surname: string; - weight: string; - - } - export enum MagneticStripeReaderAuthenticationLevel { - notSupported, - optional, - required, - } - export enum MagneticStripeReaderAuthenticationProtocol { - none, - challengeResponse, - } - export class MagneticStripeReaderBankCardDataReceivedEventArgs implements IMagneticStripeReaderBankCardDataReceivedEventArgs { - accountNumber: string; - expirationDate: string; - firstName: string; - middleInitial: string; - report: MagneticStripeReaderReport; - serviceCode: string; - suffix: string; - surname: string; - title: string; - - } - export class MagneticStripeReaderCapabilities implements IMagneticStripeReaderCapabilities { - authenticationLevel: MagneticStripeReaderAuthenticationLevel; - cardAuthentication: string; - isIsoSupported: Boolean; - isJisOneSupported: Boolean; - isJisTwoSupported: Boolean; - isStatisticsReportingSupported: Boolean; - isStatisticsUpdatingSupported: Boolean; - isTrackDataMaskingSupported: Boolean; - isTransmitSentinelsSupported: Boolean; - powerReportingType: UnifiedPosPowerReportingType; - supportedEncryptionAlgorithms: number; - - } - export class MagneticStripeReaderCardTypes { - static aamva: number = 2; - static bank: number = 1; - static extendedBase: number = 3; - static unknown: number = 0; - - } - export class MagneticStripeReaderEncryptionAlgorithms { - static extendedBase: number = 3; - static none: number = 0; - static tripleDesDukpt: number = 1; - - } - export class MagneticStripeReaderErrorOccurredEventArgs implements IMagneticStripeReaderErrorOccurredEventArgs { - errorData: UnifiedPosErrorData; - partialInputData: MagneticStripeReaderReport; - track1Status: MagneticStripeReaderTrackErrorType; - track2Status: MagneticStripeReaderTrackErrorType; - track3Status: MagneticStripeReaderTrackErrorType; - track4Status: MagneticStripeReaderTrackErrorType; - - } - export enum MagneticStripeReaderErrorReportingType { - cardLevel, - trackLevel, - } - export class MagneticStripeReaderReport implements IMagneticStripeReaderReport { - additionalSecurityInformation: Storage.Streams.IBuffer; - cardAuthenticationData: Storage.Streams.IBuffer; - cardAuthenticationDataLength: number; - cardType: number; - properties: string[]; - track1: MagneticStripeReaderTrackData; - track2: MagneticStripeReaderTrackData; - track3: MagneticStripeReaderTrackData; - track4: MagneticStripeReaderTrackData; - - } - export enum MagneticStripeReaderStatus { - unauthenticated, - authenticated, - extended, - } - export class MagneticStripeReaderStatusUpdatedEventArgs implements IMagneticStripeReaderStatusUpdatedEventArgs { - extendedStatus: number; - status: MagneticStripeReaderStatus; - - } - export class MagneticStripeReaderTrackData implements IMagneticStripeReaderTrackData { - data: Storage.Streams.IBuffer; - discretionaryData: Storage.Streams.IBuffer; - encryptedData: Storage.Streams.IBuffer; - - } - export enum MagneticStripeReaderTrackErrorType { - none, - startSentinelError, - endSentinelError, - parityError, - lrcError, - unknown = -1, - } - export enum MagneticStripeReaderTrackIds { - none, - track1, - track2, - track3 = 4, - track4 = 8, - } - export class MagneticStripeReaderVendorSpecificCardDataReceivedEventArgs implements IMagneticStripeReaderVendorSpecificCardDataReceivedEventArgs { - report: MagneticStripeReaderReport; - - } - export enum PosConnectionTypes { - local = 1, - ip, - bluetooth = 4, - all = 4294967295, - } - export class PosPrinter implements IPosPrinter, IPosPrinter2, Foundation.IClosable { - capabilities: PosPrinterCapabilities; - deviceId: string; - status: PosPrinterStatus; - supportedCharacterSets: number[]; - supportedTypeFaces: string[]; - supportedBarcodeSymbologies: number[]; - - claimPrinterAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PosPrinter.claimPrinterAsync'); - } - - checkHealthAsync(level: UnifiedPosHealthCheckLevel): Foundation.IAsyncOperation { - throw new Error('shimmed function PosPrinter.checkHealthAsync'); - } - - getStatisticsAsync(statisticsCategories: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function PosPrinter.getStatisticsAsync'); - } - - getFontProperty(typeface: string): PosPrinterFontProperty { - throw new Error('shimmed function PosPrinter.getFontProperty'); - } - - close(): void { - console.warn('shimmed function PosPrinter.close'); - } - - static getDeviceSelector(connectionTypes: PosConnectionTypes): string { - throw new Error('shimmed function PosPrinter.getDeviceSelector'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PosPrinter.getDefaultAsync'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PosPrinter.fromIdAsync'); - } - - static getDeviceSelector_1(): string { - throw new Error('shimmed function PosPrinter.getDeviceSelector_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PosPrinter::addEventListener: ${name}`); - switch (name) { - case "statusupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PosPrinterAlignment { - left, - center, - right, - } - export enum PosPrinterBarcodeTextPosition { - none, - above, - below, - } - export class PosPrinterCapabilities implements IPosPrinterCapabilities { - canMapCharacterSet: Boolean; - defaultCharacterSet: number; - hasCoverSensor: Boolean; - isStatisticsReportingSupported: Boolean; - isStatisticsUpdatingSupported: Boolean; - isTransactionSupported: Boolean; - journal: JournalPrinterCapabilities; - powerReportingType: UnifiedPosPowerReportingType; - receipt: ReceiptPrinterCapabilities; - slip: SlipPrinterCapabilities; - - } - export enum PosPrinterCartridgeSensors { - none, - removed, - empty, - headCleaning = 4, - nearEnd = 8, - } - export class PosPrinterCharacterSetIds { - static ansi: number = 999; - static ascii: number = 998; - static utf16LE: number = 997; - - } - export enum PosPrinterColorCapabilities { - none, - primary, - custom1, - custom2 = 4, - custom3 = 8, - custom4 = 16, - custom5 = 32, - custom6 = 64, - cyan = 128, - magenta = 256, - yellow = 512, - full = 1024, - } - export enum PosPrinterColorCartridge { - unknown, - primary, - custom1, - custom2, - custom3, - custom4, - custom5, - custom6, - cyan, - magenta, - yellow, - } - export class PosPrinterFontProperty implements IPosPrinterFontProperty { - characterSizes: SizeUInt32[]; - isScalableToAnySize: Boolean; - typeFace: string; - - } - export enum PosPrinterLineDirection { - horizontal, - vertical, - } - export enum PosPrinterLineStyle { - singleSolid, - doubleSolid, - broken, - chain, - } - export enum PosPrinterMapMode { - dots, - twips, - english, - metric, - } - export enum PosPrinterMarkFeedCapabilities { - none, - toTakeUp, - toCutter, - toCurrentTopOfForm = 4, - toNextTopOfForm = 8, - } - export enum PosPrinterMarkFeedKind { - toTakeUp, - toCutter, - toCurrentTopOfForm, - toNextTopOfForm, - } - export class PosPrinterPrintOptions implements IPosPrinterPrintOptions { - // constructor(); - underline: Boolean = false; - typeFace: string = ''; - superscript: Boolean = false; - subscript: Boolean = false; - strikethrough: Boolean = false; - reverseVideo: Boolean = false; - italic: Boolean = false; - doubleWide: Boolean = false; - doubleHigh: Boolean = false; - characterSet: number = 0; - characterHeight: number = 0; - bold: Boolean = false; - alignment: PosPrinterAlignment = PosPrinterAlignment.left; - - } - export enum PosPrinterPrintSide { - unknown, - side1, - side2, - } - export class PosPrinterReleaseDeviceRequestedEventArgs implements IPosPrinterReleaseDeviceRequestedEventArgs { - } - export enum PosPrinterRotation { - normal, - right90, - left90, - rotate180, - } - export enum PosPrinterRuledLineCapabilities { - none, - horizontal, - vertical, - } - export class PosPrinterStatus implements IPosPrinterStatus { - extendedStatus: number; - statusKind: PosPrinterStatusKind; - - } - export enum PosPrinterStatusKind { - online, - off, - offline, - offOrOffline, - extended, - } - export class PosPrinterStatusUpdatedEventArgs implements IPosPrinterStatusUpdatedEventArgs { - status: PosPrinterStatus; - - } - export namespace Provider { - export class BarcodeScannerDisableScannerRequest implements IBarcodeScannerDisableScannerRequest, IBarcodeScannerDisableScannerRequest2 { - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerDisableScannerRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerDisableScannerRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerDisableScannerRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerDisableScannerRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerDisableScannerRequestEventArgs implements IBarcodeScannerDisableScannerRequestEventArgs { - request: BarcodeScannerDisableScannerRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerDisableScannerRequestEventArgs.getDeferral'); - } - - } - export class BarcodeScannerEnableScannerRequest implements IBarcodeScannerEnableScannerRequest, IBarcodeScannerEnableScannerRequest2 { - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerEnableScannerRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerEnableScannerRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerEnableScannerRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerEnableScannerRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerEnableScannerRequestEventArgs implements IBarcodeScannerEnableScannerRequestEventArgs { - request: BarcodeScannerEnableScannerRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerEnableScannerRequestEventArgs.getDeferral'); - } - - } - export class BarcodeScannerFrameReader implements IBarcodeScannerFrameReader, Foundation.IClosable { - connection: BarcodeScannerProviderConnection; - - startAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScannerFrameReader.startAsync'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerFrameReader.stopAsync'); - } - - tryAcquireLatestFrameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScannerFrameReader.tryAcquireLatestFrameAsync'); - } - - close(): void { - console.warn('shimmed function BarcodeScannerFrameReader.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BarcodeScannerFrameReader::addEventListener: ${name}`); - switch (name) { - case "framearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export class BarcodeScannerFrameReaderFrameArrivedEventArgs implements IBarcodeScannerFrameReaderFrameArrivedEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerFrameReaderFrameArrivedEventArgs.getDeferral'); - } - - } - export class BarcodeScannerGetSymbologyAttributesRequest implements IBarcodeScannerGetSymbologyAttributesRequest, IBarcodeScannerGetSymbologyAttributesRequest2 { - symbology: number; - - reportCompletedAsync(attributes: BarcodeSymbologyAttributes): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerGetSymbologyAttributesRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerGetSymbologyAttributesRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerGetSymbologyAttributesRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerGetSymbologyAttributesRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerGetSymbologyAttributesRequestEventArgs implements IBarcodeScannerGetSymbologyAttributesRequestEventArgs { - request: BarcodeScannerGetSymbologyAttributesRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerGetSymbologyAttributesRequestEventArgs.getDeferral'); - } - - } - export class BarcodeScannerHideVideoPreviewRequest implements IBarcodeScannerHideVideoPreviewRequest, IBarcodeScannerHideVideoPreviewRequest2 { - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerHideVideoPreviewRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerHideVideoPreviewRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerHideVideoPreviewRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerHideVideoPreviewRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerHideVideoPreviewRequestEventArgs implements IBarcodeScannerHideVideoPreviewRequestEventArgs { - request: BarcodeScannerHideVideoPreviewRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerHideVideoPreviewRequestEventArgs.getDeferral'); - } - - } - export class BarcodeScannerProviderConnection implements IBarcodeScannerProviderConnection, IBarcodeScannerProviderConnection2, Foundation.IClosable { - version: string; - name: string; - companyName: string; - id: string; - supportedSymbologies: number[]; - videoDeviceId: string; - - start(): void { - console.warn('shimmed function BarcodeScannerProviderConnection.start'); - } - - reportScannedDataAsync(report: BarcodeScannerReport): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerProviderConnection.reportScannedDataAsync'); - } - - reportTriggerStateAsync(state: BarcodeScannerTriggerState): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerProviderConnection.reportTriggerStateAsync'); - } - - reportErrorAsync(errorData: UnifiedPosErrorData): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerProviderConnection.reportErrorAsync'); - } - - reportErrorAsync_1(errorData: UnifiedPosErrorData, isRetriable: Boolean, scanReport: BarcodeScannerReport): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerProviderConnection.reportErrorAsync_1'); - } - - createFrameReaderAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScannerProviderConnection.createFrameReaderAsync'); - } - - createFrameReaderAsync_1(preferredFormat: Graphics.Imaging.BitmapPixelFormat): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScannerProviderConnection.createFrameReaderAsync_1'); - } - - createFrameReaderAsync_2(preferredFormat: Graphics.Imaging.BitmapPixelFormat, preferredSize: Graphics.Imaging.BitmapSize): Foundation.IAsyncOperation { - throw new Error('shimmed function BarcodeScannerProviderConnection.createFrameReaderAsync_2'); - } - - close(): void { - console.warn('shimmed function BarcodeScannerProviderConnection.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BarcodeScannerProviderConnection::addEventListener: ${name}`); - switch (name) { - case "disablescannerrequested": // Foundation.TypedEventHandler - case "enablescannerrequested": // Foundation.TypedEventHandler - case "getbarcodesymbologyattributesrequested": // Foundation.TypedEventHandler - case "hidevideopreviewrequested": // Foundation.TypedEventHandler - case "setactivesymbologiesrequested": // Foundation.TypedEventHandler - case "setbarcodesymbologyattributesrequested": // Foundation.TypedEventHandler - case "startsoftwaretriggerrequested": // Foundation.TypedEventHandler - case "stopsoftwaretriggerrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class BarcodeScannerProviderTriggerDetails implements IBarcodeScannerProviderTriggerDetails { - connection: BarcodeScannerProviderConnection; - - } - export class BarcodeScannerSetActiveSymbologiesRequest implements IBarcodeScannerSetActiveSymbologiesRequest, IBarcodeScannerSetActiveSymbologiesRequest2 { - symbologies: number[]; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetActiveSymbologiesRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetActiveSymbologiesRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetActiveSymbologiesRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetActiveSymbologiesRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerSetActiveSymbologiesRequestEventArgs implements IBarcodeScannerSetActiveSymbologiesRequestEventArgs { - request: BarcodeScannerSetActiveSymbologiesRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerSetActiveSymbologiesRequestEventArgs.getDeferral'); - } - - } - export class BarcodeScannerSetSymbologyAttributesRequest implements IBarcodeScannerSetSymbologyAttributesRequest, IBarcodeScannerSetSymbologyAttributesRequest2 { - attributes: BarcodeSymbologyAttributes; - symbology: number; - - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetSymbologyAttributesRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetSymbologyAttributesRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetSymbologyAttributesRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerSetSymbologyAttributesRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerSetSymbologyAttributesRequestEventArgs implements IBarcodeScannerSetSymbologyAttributesRequestEventArgs { - request: BarcodeScannerSetSymbologyAttributesRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerSetSymbologyAttributesRequestEventArgs.getDeferral'); - } - - } - export class BarcodeScannerStartSoftwareTriggerRequest implements IBarcodeScannerStartSoftwareTriggerRequest, IBarcodeScannerStartSoftwareTriggerRequest2 { - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStartSoftwareTriggerRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStartSoftwareTriggerRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStartSoftwareTriggerRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStartSoftwareTriggerRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerStartSoftwareTriggerRequestEventArgs implements IBarcodeScannerStartSoftwareTriggerRequestEventArgs { - request: BarcodeScannerStartSoftwareTriggerRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerStartSoftwareTriggerRequestEventArgs.getDeferral'); - } - - } - export class BarcodeScannerStopSoftwareTriggerRequest implements IBarcodeScannerStopSoftwareTriggerRequest, IBarcodeScannerStopSoftwareTriggerRequest2 { - reportCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStopSoftwareTriggerRequest.reportCompletedAsync'); - } - - reportFailedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStopSoftwareTriggerRequest.reportFailedAsync'); - } - - reportFailedAsync_1(reason: number): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStopSoftwareTriggerRequest.reportFailedAsync_1'); - } - - reportFailedAsync_2(reason: number, failedReasonDescription: string): Foundation.IAsyncAction { - throw new Error('shimmed function BarcodeScannerStopSoftwareTriggerRequest.reportFailedAsync_2'); - } - - } - export class BarcodeScannerStopSoftwareTriggerRequestEventArgs implements IBarcodeScannerStopSoftwareTriggerRequestEventArgs { - request: BarcodeScannerStopSoftwareTriggerRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BarcodeScannerStopSoftwareTriggerRequestEventArgs.getDeferral'); - } - - } - export enum BarcodeScannerTriggerState { - released, - pressed, - } - export class BarcodeScannerVideoFrame implements IBarcodeScannerVideoFrame, Foundation.IClosable { - format: Graphics.Imaging.BitmapPixelFormat; - height: number; - pixelData: Storage.Streams.IBuffer; - width: number; - - close(): void { - console.warn('shimmed function BarcodeScannerVideoFrame.close'); - } - - } - export class BarcodeSymbologyAttributesBuilder implements IBarcodeSymbologyAttributesBuilder { - // constructor(); - isDecodeLengthSupported: Boolean = false; - isCheckDigitValidationSupported: Boolean = false; - isCheckDigitTransmissionSupported: Boolean = false; - - createAttributes(): BarcodeSymbologyAttributes { - throw new Error('shimmed function BarcodeSymbologyAttributesBuilder.createAttributes'); - } - - } - } - export class ReceiptPrinterCapabilities implements IReceiptPrinterCapabilities, IReceiptPrinterCapabilities2, ICommonReceiptSlipCapabilities, ICommonPosPrintStationCapabilities { - cartridgeSensors: PosPrinterCartridgeSensors; - colorCartridgeCapabilities: PosPrinterColorCapabilities; - isBoldSupported: Boolean; - isDoubleHighDoubleWidePrintSupported: Boolean; - isDoubleHighPrintSupported: Boolean; - isDoubleWidePrintSupported: Boolean; - isDualColorSupported: Boolean; - isItalicSupported: Boolean; - isPaperEmptySensorSupported: Boolean; - isPaperNearEndSensorSupported: Boolean; - isPrinterPresent: Boolean; - isUnderlineSupported: Boolean; - supportedCharactersPerLine: number[]; - is180RotationSupported: Boolean; - isBarcodeSupported: Boolean; - isBitmapSupported: Boolean; - isLeft90RotationSupported: Boolean; - isPrintAreaSupported: Boolean; - isRight90RotationSupported: Boolean; - ruledLineCapabilities: PosPrinterRuledLineCapabilities; - supportedBarcodeRotations: PosPrinterRotation[]; - supportedBitmapRotations: PosPrinterRotation[]; - canCutPaper: Boolean; - isStampSupported: Boolean; - markFeedCapabilities: PosPrinterMarkFeedCapabilities; - isReversePaperFeedByLineSupported: Boolean; - isReversePaperFeedByMapModeUnitSupported: Boolean; - isReverseVideoSupported: Boolean; - isStrikethroughSupported: Boolean; - isSubscriptSupported: Boolean; - isSuperscriptSupported: Boolean; - - } - export class ReceiptPrintJob implements IReceiptPrintJob, IReceiptPrintJob2, IReceiptOrSlipJob, IPosPrinterJob { - markFeed(kind: PosPrinterMarkFeedKind): void { - console.warn('shimmed function ReceiptPrintJob.markFeed'); - } - - cutPaper(percentage: number): void { - console.warn('shimmed function ReceiptPrintJob.cutPaper'); - } - - cutPaper_1(): void { - console.warn('shimmed function ReceiptPrintJob.cutPaper_1'); - } - - stampPaper(): void { - console.warn('shimmed function ReceiptPrintJob.stampPaper'); - } - - print(data: string, printOptions: PosPrinterPrintOptions): void { - console.warn('shimmed function ReceiptPrintJob.print'); - } - - feedPaperByLine(lineCount: number): void { - console.warn('shimmed function ReceiptPrintJob.feedPaperByLine'); - } - - feedPaperByMapModeUnit(distance: number): void { - console.warn('shimmed function ReceiptPrintJob.feedPaperByMapModeUnit'); - } - - setBarcodeRotation(value: PosPrinterRotation): void { - console.warn('shimmed function ReceiptPrintJob.setBarcodeRotation'); - } - - setPrintRotation(value: PosPrinterRotation, includeBitmaps: Boolean): void { - console.warn('shimmed function ReceiptPrintJob.setPrintRotation'); - } - - setPrintArea(value: Foundation.Rect): void { - console.warn('shimmed function ReceiptPrintJob.setPrintArea'); - } - - setBitmap(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment): void { - console.warn('shimmed function ReceiptPrintJob.setBitmap'); - } - - setBitmap_1(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment, width: number): void { - console.warn('shimmed function ReceiptPrintJob.setBitmap_1'); - } - - setCustomAlignedBitmap(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number): void { - console.warn('shimmed function ReceiptPrintJob.setCustomAlignedBitmap'); - } - - setCustomAlignedBitmap_1(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number, width: number): void { - console.warn('shimmed function ReceiptPrintJob.setCustomAlignedBitmap_1'); - } - - printSavedBitmap(bitmapNumber: number): void { - console.warn('shimmed function ReceiptPrintJob.printSavedBitmap'); - } - - drawRuledLine(positionList: string, lineDirection: PosPrinterLineDirection, lineWidth: number, lineStyle: PosPrinterLineStyle, lineColor: number): void { - console.warn('shimmed function ReceiptPrintJob.drawRuledLine'); - } - - printBarcode(data: string, symbology: number, height: number, width: number, textPosition: PosPrinterBarcodeTextPosition, alignment: PosPrinterAlignment): void { - console.warn('shimmed function ReceiptPrintJob.printBarcode'); - } - - printBarcodeCustomAlign(data: string, symbology: number, height: number, width: number, textPosition: PosPrinterBarcodeTextPosition, alignmentDistance: number): void { - console.warn('shimmed function ReceiptPrintJob.printBarcodeCustomAlign'); - } - - printBitmap(bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment): void { - console.warn('shimmed function ReceiptPrintJob.printBitmap'); - } - - printBitmap_1(bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment, width: number): void { - console.warn('shimmed function ReceiptPrintJob.printBitmap_1'); - } - - printCustomAlignedBitmap(bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number): void { - console.warn('shimmed function ReceiptPrintJob.printCustomAlignedBitmap'); - } - - printCustomAlignedBitmap_1(bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number, width: number): void { - console.warn('shimmed function ReceiptPrintJob.printCustomAlignedBitmap_1'); - } - - print_1(data: string): void { - console.warn('shimmed function ReceiptPrintJob.print_1'); - } - - printLine(data: string): void { - console.warn('shimmed function ReceiptPrintJob.printLine'); - } - - printLine_1(): void { - console.warn('shimmed function ReceiptPrintJob.printLine_1'); - } - - executeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ReceiptPrintJob.executeAsync'); - } - - } - export interface SizeUInt32 { - width: number; - height: number; - } - export class SlipPrinterCapabilities implements ISlipPrinterCapabilities, ISlipPrinterCapabilities2, ICommonReceiptSlipCapabilities, ICommonPosPrintStationCapabilities { - cartridgeSensors: PosPrinterCartridgeSensors; - colorCartridgeCapabilities: PosPrinterColorCapabilities; - isBoldSupported: Boolean; - isDoubleHighDoubleWidePrintSupported: Boolean; - isDoubleHighPrintSupported: Boolean; - isDoubleWidePrintSupported: Boolean; - isDualColorSupported: Boolean; - isItalicSupported: Boolean; - isPaperEmptySensorSupported: Boolean; - isPaperNearEndSensorSupported: Boolean; - isPrinterPresent: Boolean; - isUnderlineSupported: Boolean; - supportedCharactersPerLine: number[]; - is180RotationSupported: Boolean; - isBarcodeSupported: Boolean; - isBitmapSupported: Boolean; - isLeft90RotationSupported: Boolean; - isPrintAreaSupported: Boolean; - isRight90RotationSupported: Boolean; - ruledLineCapabilities: PosPrinterRuledLineCapabilities; - supportedBarcodeRotations: PosPrinterRotation[]; - supportedBitmapRotations: PosPrinterRotation[]; - isBothSidesPrintingSupported: Boolean; - isFullLengthSupported: Boolean; - isReversePaperFeedByLineSupported: Boolean; - isReversePaperFeedByMapModeUnitSupported: Boolean; - isReverseVideoSupported: Boolean; - isStrikethroughSupported: Boolean; - isSubscriptSupported: Boolean; - isSuperscriptSupported: Boolean; - - } - export class SlipPrintJob implements ISlipPrintJob, IReceiptOrSlipJob, IPosPrinterJob { - print(data: string, printOptions: PosPrinterPrintOptions): void { - console.warn('shimmed function SlipPrintJob.print'); - } - - feedPaperByLine(lineCount: number): void { - console.warn('shimmed function SlipPrintJob.feedPaperByLine'); - } - - feedPaperByMapModeUnit(distance: number): void { - console.warn('shimmed function SlipPrintJob.feedPaperByMapModeUnit'); - } - - setBarcodeRotation(value: PosPrinterRotation): void { - console.warn('shimmed function SlipPrintJob.setBarcodeRotation'); - } - - setPrintRotation(value: PosPrinterRotation, includeBitmaps: Boolean): void { - console.warn('shimmed function SlipPrintJob.setPrintRotation'); - } - - setPrintArea(value: Foundation.Rect): void { - console.warn('shimmed function SlipPrintJob.setPrintArea'); - } - - setBitmap(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment): void { - console.warn('shimmed function SlipPrintJob.setBitmap'); - } - - setBitmap_1(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment, width: number): void { - console.warn('shimmed function SlipPrintJob.setBitmap_1'); - } - - setCustomAlignedBitmap(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number): void { - console.warn('shimmed function SlipPrintJob.setCustomAlignedBitmap'); - } - - setCustomAlignedBitmap_1(bitmapNumber: number, bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number, width: number): void { - console.warn('shimmed function SlipPrintJob.setCustomAlignedBitmap_1'); - } - - printSavedBitmap(bitmapNumber: number): void { - console.warn('shimmed function SlipPrintJob.printSavedBitmap'); - } - - drawRuledLine(positionList: string, lineDirection: PosPrinterLineDirection, lineWidth: number, lineStyle: PosPrinterLineStyle, lineColor: number): void { - console.warn('shimmed function SlipPrintJob.drawRuledLine'); - } - - printBarcode(data: string, symbology: number, height: number, width: number, textPosition: PosPrinterBarcodeTextPosition, alignment: PosPrinterAlignment): void { - console.warn('shimmed function SlipPrintJob.printBarcode'); - } - - printBarcodeCustomAlign(data: string, symbology: number, height: number, width: number, textPosition: PosPrinterBarcodeTextPosition, alignmentDistance: number): void { - console.warn('shimmed function SlipPrintJob.printBarcodeCustomAlign'); - } - - printBitmap(bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment): void { - console.warn('shimmed function SlipPrintJob.printBitmap'); - } - - printBitmap_1(bitmap: Graphics.Imaging.BitmapFrame, alignment: PosPrinterAlignment, width: number): void { - console.warn('shimmed function SlipPrintJob.printBitmap_1'); - } - - printCustomAlignedBitmap(bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number): void { - console.warn('shimmed function SlipPrintJob.printCustomAlignedBitmap'); - } - - printCustomAlignedBitmap_1(bitmap: Graphics.Imaging.BitmapFrame, alignmentDistance: number, width: number): void { - console.warn('shimmed function SlipPrintJob.printCustomAlignedBitmap_1'); - } - - print_1(data: string): void { - console.warn('shimmed function SlipPrintJob.print_1'); - } - - printLine(data: string): void { - console.warn('shimmed function SlipPrintJob.printLine'); - } - - printLine_1(): void { - console.warn('shimmed function SlipPrintJob.printLine_1'); - } - - executeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SlipPrintJob.executeAsync'); - } - - } - export class UnifiedPosErrorData implements IUnifiedPosErrorData { - // constructor(message: string, severity: UnifiedPosErrorSeverity, reason: UnifiedPosErrorReason, extendedReason: number); - constructor(message: string, severity: UnifiedPosErrorSeverity, reason: UnifiedPosErrorReason, extendedReason: number) {} - - extendedReason: number; - message: string; - reason: UnifiedPosErrorReason; - severity: UnifiedPosErrorSeverity; - - } - export enum UnifiedPosErrorReason { - unknownErrorReason, - noService, - disabled, - illegal, - noHardware, - closed, - offline, - failure, - timeout, - busy, - extended, - } - export enum UnifiedPosErrorSeverity { - unknownErrorSeverity, - warning, - recoverable, - unrecoverable, - assistanceRequired, - fatal, - } - export enum UnifiedPosHealthCheckLevel { - unknownHealthCheckLevel, - posinternal, - external, - interactive, - } - export enum UnifiedPosPowerReportingType { - unknownPowerReportingType, - standard, - advanced, - } - } - export namespace Portable { - export interface PortableDeviceContract { - } - export class ServiceDevice { - static getDeviceSelector(serviceType: ServiceDeviceType): string { - throw new Error('shimmed function ServiceDevice.getDeviceSelector'); - } - - static getDeviceSelectorFromServiceId(serviceId: string): string { - throw new Error('shimmed function ServiceDevice.getDeviceSelectorFromServiceId'); - } - - } - export enum ServiceDeviceType { - calendarService, - contactsService, - deviceStatusService, - notesService, - ringtonesService, - smsService, - tasksService, - } - export class StorageDevice { - static fromId(deviceId: string): Storage.StorageFolder { - throw new Error('shimmed function StorageDevice.fromId'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function StorageDevice.getDeviceSelector'); - } - - } - } - export namespace Power { - export class Battery implements IBattery { - deviceId: string; - static aggregateBattery: Battery = null; - - getReport(): BatteryReport { - throw new Error('shimmed function Battery.getReport'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Battery.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Battery.getDeviceSelector'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Battery::addEventListener: ${name}`); - switch (name) { - case "reportupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export class BatteryReport implements IBatteryReport { - chargeRateInMilliwatts: number | null; - designCapacityInMilliwattHours: number | null; - fullChargeCapacityInMilliwattHours: number | null; - remainingCapacityInMilliwattHours: number | null; - status: System.Power.BatteryStatus; - - } - } - export namespace Printers { - export namespace Extensions { - export interface ExtensionsContract { - } - export class Print3DWorkflow implements IPrint3DWorkflow, IPrint3DWorkflow2 { - isPrintReady: Boolean; - deviceID: string; - - getPrintModelPackage(): any { - throw new Error('shimmed function Print3DWorkflow.getPrintModelPackage'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Print3DWorkflow::addEventListener: ${name}`); - switch (name) { - case "printrequested": // Foundation.TypedEventHandler - case "printerchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum Print3DWorkflowDetail { - unknown, - modelExceedsPrintBed, - uploadFailed, - invalidMaterialSelection, - invalidModel, - modelNotManifold, - invalidPrintTicket, - } - export class Print3DWorkflowPrinterChangedEventArgs implements IPrint3DWorkflowPrinterChangedEventArgs { - newDeviceId: string; - - } - export class Print3DWorkflowPrintRequestedEventArgs implements IPrint3DWorkflowPrintRequestedEventArgs { - status: Print3DWorkflowStatus; - - setExtendedStatus(value: Print3DWorkflowDetail): void { - console.warn('shimmed function Print3DWorkflowPrintRequestedEventArgs.setExtendedStatus'); - } - - setSource(source: any): void { - console.warn('shimmed function Print3DWorkflowPrintRequestedEventArgs.setSource'); - } - - setSourceChanged(value: Boolean): void { - console.warn('shimmed function Print3DWorkflowPrintRequestedEventArgs.setSourceChanged'); - } - - } - export enum Print3DWorkflowStatus { - abandoned, - canceled, - failed, - slicing, - submitted, - } - export class PrintExtensionContext { - static fromDeviceId(deviceId: string): any { - throw new Error('shimmed function PrintExtensionContext.fromDeviceId'); - } - - } - export class PrintNotificationEventDetails implements IPrintNotificationEventDetails { - eventData: string; - printerName: string; - - } - export class PrintTaskConfiguration implements IPrintTaskConfiguration { - printerExtensionContext: any; - - addEventListener(name: string, handler: Function) { - console.warn(`PrintTaskConfiguration::addEventListener: ${name}`); - switch (name) { - case "saverequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PrintTaskConfigurationSaveRequest implements IPrintTaskConfigurationSaveRequest { - deadline: Date; - - cancel(): void { - console.warn('shimmed function PrintTaskConfigurationSaveRequest.cancel'); - } - - save(printerExtensionContext: any): void { - console.warn('shimmed function PrintTaskConfigurationSaveRequest.save'); - } - - getDeferral(): PrintTaskConfigurationSaveRequestedDeferral { - throw new Error('shimmed function PrintTaskConfigurationSaveRequest.getDeferral'); - } - - } - export class PrintTaskConfigurationSaveRequestedDeferral implements IPrintTaskConfigurationSaveRequestedDeferral { - complete(): void { - console.warn('shimmed function PrintTaskConfigurationSaveRequestedDeferral.complete'); - } - - } - export class PrintTaskConfigurationSaveRequestedEventArgs implements IPrintTaskConfigurationSaveRequestedEventArgs { - request: PrintTaskConfigurationSaveRequest; - - } - } - export class Print3DDevice implements IPrint3DDevice { - printSchema: PrintSchema; - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Print3DDevice.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Print3DDevice.getDeviceSelector'); - } - - } - export interface PrintersContract { - } - export class PrintSchema implements IPrintSchema { - getDefaultPrintTicketAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PrintSchema.getDefaultPrintTicketAsync'); - } - - getCapabilitiesAsync(constrainTicket: Storage.Streams.IRandomAccessStreamWithContentType): Foundation.IAsyncOperation { - throw new Error('shimmed function PrintSchema.getCapabilitiesAsync'); - } - - mergeAndValidateWithDefaultPrintTicketAsync(deltaTicket: Storage.Streams.IRandomAccessStreamWithContentType): Foundation.IAsyncOperation { - throw new Error('shimmed function PrintSchema.mergeAndValidateWithDefaultPrintTicketAsync'); - } - - } - } - export namespace Pwm { - export namespace Provider { - export interface IPwmControllerProvider { - actualFrequency: number; - maxFrequency: number; - minFrequency: number; - pinCount: number; - setDesiredFrequency(frequency: number): number; - acquirePin(pin: number): void; - releasePin(pin: number): void; - enablePin(pin: number): void; - disablePin(pin: number): void; - setPulseParameters(pin: number, dutyCycle: number, invertPolarity: Boolean): void; - } - export interface IPwmProvider { - getControllers(): IPwmControllerProvider[]; - } - } - export class PwmController implements IPwmController { - actualFrequency: number; - maxFrequency: number; - minFrequency: number; - pinCount: number; - - setDesiredFrequency(desiredFrequency: number): number { - throw new Error('shimmed function PwmController.setDesiredFrequency'); - } - - openPin(pinNumber: number): PwmPin { - throw new Error('shimmed function PwmController.openPin'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function PwmController.getDeviceSelector'); - } - - static getDeviceSelector_1(friendlyName: string): string { - throw new Error('shimmed function PwmController.getDeviceSelector_1'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PwmController.fromIdAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PwmController.getDefaultAsync'); - } - - static getControllersAsync(provider: Provider.IPwmProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function PwmController.getControllersAsync'); - } - - } - export class PwmPin implements IPwmPin, Foundation.IClosable { - polarity: PwmPulsePolarity; - controller: PwmController; - isStarted: Boolean; - - getActiveDutyCyclePercentage(): number { - throw new Error('shimmed function PwmPin.getActiveDutyCyclePercentage'); - } - - setActiveDutyCyclePercentage(dutyCyclePercentage: number): void { - console.warn('shimmed function PwmPin.setActiveDutyCyclePercentage'); - } - - start(): void { - console.warn('shimmed function PwmPin.start'); - } - - stop(): void { - console.warn('shimmed function PwmPin.stop'); - } - - close(): void { - console.warn('shimmed function PwmPin.close'); - } - - } - export enum PwmPulsePolarity { - activeHigh, - activeLow, - } - } - export namespace Radios { - export class Radio implements IRadio { - kind: RadioKind; - name: string; - state: RadioState; - - setStateAsync(value: RadioState): Foundation.IAsyncOperation { - throw new Error('shimmed function Radio.setStateAsync'); - } - - static getRadiosAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Radio.getRadiosAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Radio.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Radio.fromIdAsync'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Radio.requestAccessAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Radio::addEventListener: ${name}`); - switch (name) { - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RadioAccessStatus { - unspecified, - allowed, - deniedByUser, - deniedBySystem, - } - export enum RadioKind { - other, - wiFi, - mobileBroadband, - bluetooth, - fm, - } - export enum RadioState { - unknown, - on, - off, - disabled, - } - } - export namespace Scanners { - export interface IImageScannerFormatConfiguration { - defaultFormat: ImageScannerFormat; - format: ImageScannerFormat; - isFormatSupported(value: ImageScannerFormat): Boolean; - } - export interface IImageScannerSourceConfiguration extends IImageScannerFormatConfiguration { - actualResolution: ImageScannerResolution; - autoCroppingMode: ImageScannerAutoCroppingMode; - brightness: number; - brightnessStep: number; - colorMode: ImageScannerColorMode; - contrast: number; - contrastStep: number; - defaultBrightness: number; - defaultColorMode: ImageScannerColorMode; - defaultContrast: number; - desiredResolution: ImageScannerResolution; - maxBrightness: number; - maxContrast: number; - maxResolution: ImageScannerResolution; - maxScanArea: Foundation.Size; - minBrightness: number; - minContrast: number; - minResolution: ImageScannerResolution; - minScanArea: Foundation.Size; - opticalResolution: ImageScannerResolution; - selectedScanRegion: Foundation.Rect; - isAutoCroppingModeSupported(value: ImageScannerAutoCroppingMode): Boolean; - isColorModeSupported(value: ImageScannerColorMode): Boolean; - } - export class ImageScanner implements IImageScanner { - autoConfiguration: ImageScannerAutoConfiguration; - defaultScanSource: ImageScannerScanSource; - deviceId: string; - feederConfiguration: ImageScannerFeederConfiguration; - flatbedConfiguration: ImageScannerFlatbedConfiguration; - - isScanSourceSupported(value: ImageScannerScanSource): Boolean { - throw new Error('shimmed function ImageScanner.isScanSourceSupported'); - } - - isPreviewSupported(scanSource: ImageScannerScanSource): Boolean { - throw new Error('shimmed function ImageScanner.isPreviewSupported'); - } - - scanPreviewToStreamAsync(scanSource: ImageScannerScanSource, targetStream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function ImageScanner.scanPreviewToStreamAsync'); - } - - scanFilesToFolderAsync(scanSource: ImageScannerScanSource, storageFolder: Storage.StorageFolder): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function ImageScanner.scanFilesToFolderAsync'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ImageScanner.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function ImageScanner.getDeviceSelector'); - } - - } - export class ImageScannerAutoConfiguration implements IImageScannerFormatConfiguration { - format: ImageScannerFormat; - defaultFormat: ImageScannerFormat; - - isFormatSupported(value: ImageScannerFormat): Boolean { - throw new Error('shimmed function ImageScannerAutoConfiguration.isFormatSupported'); - } - - } - export enum ImageScannerAutoCroppingMode { - disabled, - singleRegion, - multipleRegion, - } - export enum ImageScannerColorMode { - color, - grayscale, - monochrome, - autoColor, - } - export class ImageScannerFeederConfiguration implements IImageScannerFormatConfiguration, IImageScannerSourceConfiguration, IImageScannerFeederConfiguration { - scanAhead: Boolean; - autoDetectPageSize: Boolean; - duplex: Boolean; - maxNumberOfPages: number; - pageOrientation: Graphics.Printing.PrintOrientation; - pageSize: Graphics.Printing.PrintMediaSize; - pageSizeDimensions: Foundation.Size; - canScanDuplex: Boolean; - canScanAhead: Boolean; - canAutoDetectPageSize: Boolean; - format: ImageScannerFormat; - defaultFormat: ImageScannerFormat; - desiredResolution: ImageScannerResolution; - contrast: number; - colorMode: ImageScannerColorMode; - autoCroppingMode: ImageScannerAutoCroppingMode; - brightness: number; - selectedScanRegion: Foundation.Rect; - minBrightness: number; - minContrast: number; - minResolution: ImageScannerResolution; - minScanArea: Foundation.Size; - opticalResolution: ImageScannerResolution; - maxScanArea: Foundation.Size; - maxResolution: ImageScannerResolution; - maxContrast: number; - maxBrightness: number; - defaultContrast: number; - defaultColorMode: ImageScannerColorMode; - defaultBrightness: number; - contrastStep: number; - brightnessStep: number; - actualResolution: ImageScannerResolution; - - isFormatSupported(value: ImageScannerFormat): Boolean { - throw new Error('shimmed function ImageScannerFeederConfiguration.isFormatSupported'); - } - - isAutoCroppingModeSupported(value: ImageScannerAutoCroppingMode): Boolean { - throw new Error('shimmed function ImageScannerFeederConfiguration.isAutoCroppingModeSupported'); - } - - isColorModeSupported(value: ImageScannerColorMode): Boolean { - throw new Error('shimmed function ImageScannerFeederConfiguration.isColorModeSupported'); - } - - isPageSizeSupported(pageSize: Graphics.Printing.PrintMediaSize, pageOrientation: Graphics.Printing.PrintOrientation): Boolean { - throw new Error('shimmed function ImageScannerFeederConfiguration.isPageSizeSupported'); - } - - } - export class ImageScannerFlatbedConfiguration implements IImageScannerFormatConfiguration, IImageScannerSourceConfiguration { - format: ImageScannerFormat; - defaultFormat: ImageScannerFormat; - selectedScanRegion: Foundation.Rect; - desiredResolution: ImageScannerResolution; - contrast: number; - brightness: number; - autoCroppingMode: ImageScannerAutoCroppingMode; - colorMode: ImageScannerColorMode; - contrastStep: number; - defaultBrightness: number; - defaultColorMode: ImageScannerColorMode; - defaultContrast: number; - actualResolution: ImageScannerResolution; - maxBrightness: number; - maxContrast: number; - maxResolution: ImageScannerResolution; - maxScanArea: Foundation.Size; - minBrightness: number; - brightnessStep: number; - minContrast: number; - minResolution: ImageScannerResolution; - opticalResolution: ImageScannerResolution; - minScanArea: Foundation.Size; - - isFormatSupported(value: ImageScannerFormat): Boolean { - throw new Error('shimmed function ImageScannerFlatbedConfiguration.isFormatSupported'); - } - - isAutoCroppingModeSupported(value: ImageScannerAutoCroppingMode): Boolean { - throw new Error('shimmed function ImageScannerFlatbedConfiguration.isAutoCroppingModeSupported'); - } - - isColorModeSupported(value: ImageScannerColorMode): Boolean { - throw new Error('shimmed function ImageScannerFlatbedConfiguration.isColorModeSupported'); - } - - } - export enum ImageScannerFormat { - jpeg, - png, - deviceIndependentBitmap, - tiff, - xps, - openXps, - pdf, - } - export class ImageScannerPreviewResult implements IImageScannerPreviewResult { - format: ImageScannerFormat; - succeeded: Boolean; - - } - export interface ImageScannerResolution { - dpiX: number; - dpiY: number; - } - export class ImageScannerScanResult implements IImageScannerScanResult { - scannedFiles: Storage.StorageFile[]; - - } - export enum ImageScannerScanSource { - default, - flatbed, - feeder, - autoConfigured, - } - export interface ScannerDeviceContract { - } - } - export namespace Sensors { - export class Accelerometer implements IAccelerometer, IAccelerometerDeviceId, IAccelerometer2, IAccelerometer3, IAccelerometer4 { - reportInterval: number; - minimumReportInterval: number; - readingTransform: Graphics.Display.DisplayOrientations; - reportLatency: number; - maxBatchSize: number; - readingType: AccelerometerReadingType; - deviceId: string; - - getCurrentReading(): AccelerometerReading { - throw new Error('shimmed function Accelerometer.getCurrentReading'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Accelerometer.fromIdAsync'); - } - - static getDeviceSelector(readingType: AccelerometerReadingType): string { - throw new Error('shimmed function Accelerometer.getDeviceSelector'); - } - - static getDefault(readingType: AccelerometerReadingType): Accelerometer { - throw new Error('shimmed function Accelerometer.getDefault'); - } - - static getDefault_1(): Accelerometer { - throw new Error('shimmed function Accelerometer.getDefault_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Accelerometer::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - case "shaken": // Foundation.TypedEventHandler - break; - } - - } - } - export class AccelerometerReading implements IAccelerometerReading, IAccelerometerReading2 { - accelerationX: number; - accelerationY: number; - accelerationZ: number; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - - } - export class AccelerometerReadingChangedEventArgs implements IAccelerometerReadingChangedEventArgs { - reading: AccelerometerReading; - - } - export enum AccelerometerReadingType { - standard, - linear, - gravity, - } - export class AccelerometerShakenEventArgs implements IAccelerometerShakenEventArgs { - timestamp: Date; - - } - export class ActivitySensor implements IActivitySensor { - deviceId: string; - minimumReportInterval: number; - powerInMilliwatts: number; - subscribedActivities: ActivityType[]; - supportedActivities: ActivityType[]; - - getCurrentReadingAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ActivitySensor.getCurrentReadingAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ActivitySensor.getDefaultAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function ActivitySensor.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ActivitySensor.fromIdAsync'); - } - - static getSystemHistoryAsync(fromTime: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function ActivitySensor.getSystemHistoryAsync'); - } - - static getSystemHistoryAsync_1(fromTime: Date, duration: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ActivitySensor.getSystemHistoryAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ActivitySensor::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ActivitySensorReading implements IActivitySensorReading { - activity: ActivityType; - confidence: ActivitySensorReadingConfidence; - timestamp: Date; - - } - export class ActivitySensorReadingChangedEventArgs implements IActivitySensorReadingChangedEventArgs { - reading: ActivitySensorReading; - - } - export class ActivitySensorReadingChangeReport implements IActivitySensorReadingChangeReport { - reading: ActivitySensorReading; - - } - export enum ActivitySensorReadingConfidence { - high, - low, - } - export class ActivitySensorTriggerDetails implements IActivitySensorTriggerDetails { - readReports(): ActivitySensorReadingChangeReport[] { - throw new Error('shimmed function ActivitySensorTriggerDetails.readReports'); - } - - } - export enum ActivityType { - unknown, - idle, - stationary, - fidgeting, - walking, - running, - inVehicle, - biking, - } - export class Altimeter implements IAltimeter, IAltimeter2 { - reportInterval: number; - deviceId: string; - minimumReportInterval: number; - reportLatency: number; - maxBatchSize: number; - - getCurrentReading(): AltimeterReading { - throw new Error('shimmed function Altimeter.getCurrentReading'); - } - - static getDefault(): Altimeter { - throw new Error('shimmed function Altimeter.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Altimeter::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AltimeterReading implements IAltimeterReading, IAltimeterReading2 { - altitudeChangeInMeters: number; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - - } - export class AltimeterReadingChangedEventArgs implements IAltimeterReadingChangedEventArgs { - reading: AltimeterReading; - - } - export class Barometer implements IBarometer, IBarometer2 { - reportInterval: number; - deviceId: string; - minimumReportInterval: number; - reportLatency: number; - maxBatchSize: number; - - getCurrentReading(): BarometerReading { - throw new Error('shimmed function Barometer.getCurrentReading'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Barometer.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Barometer.getDeviceSelector'); - } - - static getDefault(): Barometer { - throw new Error('shimmed function Barometer.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Barometer::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class BarometerReading implements IBarometerReading, IBarometerReading2 { - stationPressureInHectopascals: number; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - - } - export class BarometerReadingChangedEventArgs implements IBarometerReadingChangedEventArgs { - reading: BarometerReading; - - } - export class Compass implements ICompass, ICompassDeviceId, ICompass2, ICompass3 { - reportInterval: number; - minimumReportInterval: number; - readingTransform: Graphics.Display.DisplayOrientations; - reportLatency: number; - maxBatchSize: number; - deviceId: string; - - getCurrentReading(): CompassReading { - throw new Error('shimmed function Compass.getCurrentReading'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Compass.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Compass.fromIdAsync'); - } - - static getDefault(): Compass { - throw new Error('shimmed function Compass.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Compass::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class CompassReading implements ICompassReading, ICompassReadingHeadingAccuracy, ICompassReading2 { - headingMagneticNorth: number; - headingTrueNorth: number | null; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - headingAccuracy: MagnetometerAccuracy; - - } - export class CompassReadingChangedEventArgs implements ICompassReadingChangedEventArgs { - reading: CompassReading; - - } - export namespace Custom { - export class CustomSensor implements ICustomSensor, ICustomSensor2 { - reportInterval: number; - deviceId: string; - minimumReportInterval: number; - reportLatency: number; - maxBatchSize: number; - - getCurrentReading(): CustomSensorReading { - throw new Error('shimmed function CustomSensor.getCurrentReading'); - } - - static getDeviceSelector(interfaceId: string): string { - throw new Error('shimmed function CustomSensor.getDeviceSelector'); - } - - static fromIdAsync(sensorId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CustomSensor.fromIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CustomSensor::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class CustomSensorReading implements ICustomSensorReading, ICustomSensorReading2 { - properties: string[]; - timestamp: Date; - performanceCount: number | null; - - } - export class CustomSensorReadingChangedEventArgs implements ICustomSensorReadingChangedEventArgs { - reading: CustomSensorReading; - - } - } - export class Gyrometer implements IGyrometer, IGyrometerDeviceId, IGyrometer2, IGyrometer3 { - reportInterval: number; - minimumReportInterval: number; - readingTransform: Graphics.Display.DisplayOrientations; - reportLatency: number; - maxBatchSize: number; - deviceId: string; - - getCurrentReading(): GyrometerReading { - throw new Error('shimmed function Gyrometer.getCurrentReading'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Gyrometer.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Gyrometer.fromIdAsync'); - } - - static getDefault(): Gyrometer { - throw new Error('shimmed function Gyrometer.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Gyrometer::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class GyrometerReading implements IGyrometerReading, IGyrometerReading2 { - angularVelocityX: number; - angularVelocityY: number; - angularVelocityZ: number; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - - } - export class GyrometerReadingChangedEventArgs implements IGyrometerReadingChangedEventArgs { - reading: GyrometerReading; - - } - export class HingeAngleReading implements IHingeAngleReading { - angleInDegrees: number; - properties: string[]; - timestamp: Date; - - } - export class HingeAngleSensor implements IHingeAngleSensor { - reportThresholdInDegrees: number; - deviceId: string; - minReportThresholdInDegrees: number; - - getCurrentReadingAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function HingeAngleSensor.getCurrentReadingAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function HingeAngleSensor.getDeviceSelector'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function HingeAngleSensor.getDefaultAsync'); - } - - static getRelatedToAdjacentPanelsAsync(firstPanelId: string, secondPanelId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function HingeAngleSensor.getRelatedToAdjacentPanelsAsync'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function HingeAngleSensor.fromIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HingeAngleSensor::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class HingeAngleSensorReadingChangedEventArgs implements IHingeAngleSensorReadingChangedEventArgs { - reading: HingeAngleReading; - - } - export class Inclinometer implements IInclinometer, IInclinometerDeviceId, IInclinometer2, IInclinometer3 { - reportInterval: number; - minimumReportInterval: number; - readingTransform: Graphics.Display.DisplayOrientations; - readingType: SensorReadingType; - reportLatency: number; - maxBatchSize: number; - deviceId: string; - - getCurrentReading(): InclinometerReading { - throw new Error('shimmed function Inclinometer.getCurrentReading'); - } - - static getDeviceSelector(readingType: SensorReadingType): string { - throw new Error('shimmed function Inclinometer.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Inclinometer.fromIdAsync'); - } - - static getDefault(sensorReadingtype: SensorReadingType): Inclinometer { - throw new Error('shimmed function Inclinometer.getDefault'); - } - - static getDefaultForRelativeReadings(): Inclinometer { - throw new Error('shimmed function Inclinometer.getDefaultForRelativeReadings'); - } - - static getDefault_1(): Inclinometer { - throw new Error('shimmed function Inclinometer.getDefault_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Inclinometer::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class InclinometerReading implements IInclinometerReading, IInclinometerReadingYawAccuracy, IInclinometerReading2 { - pitchDegrees: number; - rollDegrees: number; - timestamp: Date; - yawDegrees: number; - performanceCount: number | null; - properties: string[]; - yawAccuracy: MagnetometerAccuracy; - - } - export class InclinometerReadingChangedEventArgs implements IInclinometerReadingChangedEventArgs { - reading: InclinometerReading; - - } - export interface ISensorDataThreshold { - } - export class LightSensor implements ILightSensor, ILightSensorDeviceId, ILightSensor2 { - reportInterval: number; - minimumReportInterval: number; - reportLatency: number; - maxBatchSize: number; - deviceId: string; - - getCurrentReading(): LightSensorReading { - throw new Error('shimmed function LightSensor.getCurrentReading'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function LightSensor.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function LightSensor.fromIdAsync'); - } - - static getDefault(): LightSensor { - throw new Error('shimmed function LightSensor.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LightSensor::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class LightSensorReading implements ILightSensorReading, ILightSensorReading2 { - illuminanceInLux: number; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - - } - export class LightSensorReadingChangedEventArgs implements ILightSensorReadingChangedEventArgs { - reading: LightSensorReading; - - } - export class Magnetometer implements IMagnetometer, IMagnetometerDeviceId, IMagnetometer2, IMagnetometer3 { - reportInterval: number; - minimumReportInterval: number; - readingTransform: Graphics.Display.DisplayOrientations; - reportLatency: number; - maxBatchSize: number; - deviceId: string; - - getCurrentReading(): MagnetometerReading { - throw new Error('shimmed function Magnetometer.getCurrentReading'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Magnetometer.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Magnetometer.fromIdAsync'); - } - - static getDefault(): Magnetometer { - throw new Error('shimmed function Magnetometer.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Magnetometer::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MagnetometerAccuracy { - unknown, - unreliable, - approximate, - high, - } - export class MagnetometerReading implements IMagnetometerReading, IMagnetometerReading2 { - directionalAccuracy: MagnetometerAccuracy; - magneticFieldX: number; - magneticFieldY: number; - magneticFieldZ: number; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - - } - export class MagnetometerReadingChangedEventArgs implements IMagnetometerReadingChangedEventArgs { - reading: MagnetometerReading; - - } - export class OrientationSensor implements IOrientationSensor, IOrientationSensorDeviceId, IOrientationSensor2, IOrientationSensor3 { - reportInterval: number; - minimumReportInterval: number; - readingTransform: Graphics.Display.DisplayOrientations; - readingType: SensorReadingType; - reportLatency: number; - maxBatchSize: number; - deviceId: string; - - getCurrentReading(): OrientationSensorReading { - throw new Error('shimmed function OrientationSensor.getCurrentReading'); - } - - static getDeviceSelector(readingType: SensorReadingType): string { - throw new Error('shimmed function OrientationSensor.getDeviceSelector'); - } - - static getDeviceSelector_1(readingType: SensorReadingType, optimizationGoal: SensorOptimizationGoal): string { - throw new Error('shimmed function OrientationSensor.getDeviceSelector_1'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function OrientationSensor.fromIdAsync'); - } - - static getDefault(sensorReadingtype: SensorReadingType): OrientationSensor { - throw new Error('shimmed function OrientationSensor.getDefault'); - } - - static getDefault_1(sensorReadingType: SensorReadingType, optimizationGoal: SensorOptimizationGoal): OrientationSensor { - throw new Error('shimmed function OrientationSensor.getDefault_1'); - } - - static getDefaultForRelativeReadings(): OrientationSensor { - throw new Error('shimmed function OrientationSensor.getDefaultForRelativeReadings'); - } - - static getDefault_2(): OrientationSensor { - throw new Error('shimmed function OrientationSensor.getDefault_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`OrientationSensor::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class OrientationSensorReading implements IOrientationSensorReading, IOrientationSensorReadingYawAccuracy, IOrientationSensorReading2 { - quaternion: SensorQuaternion; - rotationMatrix: SensorRotationMatrix; - timestamp: Date; - performanceCount: number | null; - properties: string[]; - yawAccuracy: MagnetometerAccuracy; - - } - export class OrientationSensorReadingChangedEventArgs implements IOrientationSensorReadingChangedEventArgs { - reading: OrientationSensorReading; - - } - export class Pedometer implements IPedometer, IPedometer2 { - reportInterval: number; - deviceId: string; - minimumReportInterval: number; - powerInMilliwatts: number; - - getCurrentReadings(): PedometerStepKind[] { - throw new Error('shimmed function Pedometer.getCurrentReadings'); - } - - static getReadingsFromTriggerDetails(triggerDetails: SensorDataThresholdTriggerDetails): PedometerReading[] { - throw new Error('shimmed function Pedometer.getReadingsFromTriggerDetails'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Pedometer.fromIdAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Pedometer.getDefaultAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function Pedometer.getDeviceSelector'); - } - - static getSystemHistoryAsync(fromTime: Date): Foundation.IAsyncOperation { - throw new Error('shimmed function Pedometer.getSystemHistoryAsync'); - } - - static getSystemHistoryAsync_1(fromTime: Date, duration: number): Foundation.IAsyncOperation { - throw new Error('shimmed function Pedometer.getSystemHistoryAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Pedometer::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class PedometerDataThreshold implements ISensorDataThreshold { - // constructor(sensor: Pedometer, stepGoal: number); - constructor(sensor: Pedometer, stepGoal: number) {} - - } - export class PedometerReading implements IPedometerReading { - cumulativeSteps: number; - cumulativeStepsDuration: number; - stepKind: PedometerStepKind; - timestamp: Date; - - } - export class PedometerReadingChangedEventArgs implements IPedometerReadingChangedEventArgs { - reading: PedometerReading; - - } - export enum PedometerStepKind { - unknown, - walking, - running, - } - export class ProximitySensor implements IProximitySensor { - deviceId: string; - maxDistanceInMillimeters: number | null; - minDistanceInMillimeters: number | null; - - getCurrentReading(): ProximitySensorReading { - throw new Error('shimmed function ProximitySensor.getCurrentReading'); - } - - createDisplayOnOffController(): ProximitySensorDisplayOnOffController { - throw new Error('shimmed function ProximitySensor.createDisplayOnOffController'); - } - - static getReadingsFromTriggerDetails(triggerDetails: SensorDataThresholdTriggerDetails): ProximitySensorReading[] { - throw new Error('shimmed function ProximitySensor.getReadingsFromTriggerDetails'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function ProximitySensor.getDeviceSelector'); - } - - static fromId(sensorId: string): ProximitySensor { - throw new Error('shimmed function ProximitySensor.fromId'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ProximitySensor::addEventListener: ${name}`); - switch (name) { - case "readingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ProximitySensorDataThreshold implements ISensorDataThreshold { - // constructor(sensor: ProximitySensor); - constructor(sensor: ProximitySensor) {} - - } - export class ProximitySensorDisplayOnOffController implements Foundation.IClosable { - close(): void { - console.warn('shimmed function ProximitySensorDisplayOnOffController.close'); - } - - } - export class ProximitySensorReading implements IProximitySensorReading { - distanceInMillimeters: number | null; - isDetected: Boolean; - timestamp: Date; - - } - export class ProximitySensorReadingChangedEventArgs implements IProximitySensorReadingChangedEventArgs { - reading: ProximitySensorReading; - - } - export class SensorDataThresholdTriggerDetails implements ISensorDataThresholdTriggerDetails { - deviceId: string; - sensorType: SensorType; - - } - export enum SensorOptimizationGoal { - precision, - powerEfficiency, - } - export class SensorQuaternion implements ISensorQuaternion { - w: number; - x: number; - y: number; - z: number; - - } - export enum SensorReadingType { - absolute, - relative, - } - export class SensorRotationMatrix implements ISensorRotationMatrix { - m11: number; - m12: number; - m13: number; - m21: number; - m22: number; - m23: number; - m31: number; - m32: number; - m33: number; - - } - export enum SensorType { - accelerometer, - activitySensor, - barometer, - compass, - customSensor, - gyroscope, - proximitySensor, - inclinometer, - lightSensor, - orientationSensor, - pedometer, - relativeInclinometer, - relativeOrientationSensor, - simpleOrientationSensor, - } - export enum SimpleOrientation { - notRotated, - rotated90DegreesCounterclockwise, - rotated180DegreesCounterclockwise, - rotated270DegreesCounterclockwise, - faceup, - facedown, - } - export class SimpleOrientationSensor implements ISimpleOrientationSensor, ISimpleOrientationSensorDeviceId, ISimpleOrientationSensor2 { - readingTransform: Graphics.Display.DisplayOrientations; - deviceId: string; - - getCurrentOrientation(): SimpleOrientation { - throw new Error('shimmed function SimpleOrientationSensor.getCurrentOrientation'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function SimpleOrientationSensor.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SimpleOrientationSensor.fromIdAsync'); - } - - static getDefault(): SimpleOrientationSensor { - throw new Error('shimmed function SimpleOrientationSensor.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SimpleOrientationSensor::addEventListener: ${name}`); - switch (name) { - case "orientationchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class SimpleOrientationSensorOrientationChangedEventArgs implements ISimpleOrientationSensorOrientationChangedEventArgs { - orientation: SimpleOrientation; - timestamp: Date; - - } - } - export namespace SerialCommunication { - export class ErrorReceivedEventArgs implements IErrorReceivedEventArgs { - error: SerialError; - - } - export class PinChangedEventArgs implements IPinChangedEventArgs { - pinChange: SerialPinChange; - - } - export class SerialDevice implements ISerialDevice, Foundation.IClosable { - isDataTerminalReadyEnabled: Boolean; - dataBits: number; - handshake: SerialHandshake; - breakSignalState: Boolean; - baudRate: number; - writeTimeout: number; - stopBits: SerialStopBitCount; - readTimeout: number; - parity: SerialParity; - isRequestToSendEnabled: Boolean; - bytesReceived: number; - carrierDetectState: Boolean; - clearToSendState: Boolean; - dataSetReadyState: Boolean; - inputStream: Storage.Streams.IInputStream; - outputStream: Storage.Streams.IOutputStream; - portName: string; - usbProductId: number; - usbVendorId: number; - - close(): void { - console.warn('shimmed function SerialDevice.close'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function SerialDevice.getDeviceSelector'); - } - - static getDeviceSelector_1(portName: string): string { - throw new Error('shimmed function SerialDevice.getDeviceSelector_1'); - } - - static getDeviceSelectorFromUsbVidPid(vendorId: number, productId: number): string { - throw new Error('shimmed function SerialDevice.getDeviceSelectorFromUsbVidPid'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SerialDevice.fromIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SerialDevice::addEventListener: ${name}`); - switch (name) { - case "errorreceived": // Foundation.TypedEventHandler - case "pinchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SerialError { - frame, - bufferOverrun, - receiveFull, - receiveParity, - transmitFull, - } - export enum SerialHandshake { - none, - requestToSend, - xonXOff, - requestToSendXOnXOff, - } - export enum SerialParity { - none, - odd, - even, - mark, - space, - } - export enum SerialPinChange { - breakSignal, - carrierDetect, - clearToSend, - dataSetReady, - ringIndicator, - } - export enum SerialStopBitCount { - one, - onePointFive, - two, - } - } - export namespace SmartCards { - export class CardAddedEventArgs implements ICardAddedEventArgs { - smartCard: SmartCard; - - } - export class CardRemovedEventArgs implements ICardRemovedEventArgs { - smartCard: SmartCard; - - } - export class KnownSmartCardAppletIds { - static paymentSystemEnvironment: Storage.Streams.IBuffer = null; - static proximityPaymentSystemEnvironment: Storage.Streams.IBuffer = null; - - } - export class SmartCard implements ISmartCard, ISmartCardConnect { - reader: SmartCardReader; - - getStatusAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCard.getStatusAsync'); - } - - getAnswerToResetAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCard.getAnswerToResetAsync'); - } - - connectAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCard.connectAsync'); - } - - } - export enum SmartCardActivationPolicyChangeResult { - denied, - allowed, - } - export class SmartCardAppletIdGroup implements ISmartCardAppletIdGroup, ISmartCardAppletIdGroup2 { - // constructor(displayName: string, appletIds: Storage.Streams.IBuffer[], emulationCategory: SmartCardEmulationCategory, emulationType: SmartCardEmulationType); - // constructor(); - constructor(displayName: string, appletIds: Storage.Streams.IBuffer[], emulationCategory: SmartCardEmulationCategory, emulationType: SmartCardEmulationType) {} - - smartCardEmulationType: SmartCardEmulationType = SmartCardEmulationType.host; - smartCardEmulationCategory: SmartCardEmulationCategory = SmartCardEmulationCategory.other; - displayName: string = ''; - automaticEnablement: Boolean = true; - appletIds: Storage.Streams.IBuffer[] = [ ]; - secureUserAuthenticationRequired: Boolean = false; - logo: Storage.Streams.IRandomAccessStreamReference; - description: string = ''; - properties: Foundation.Collections.ValueSet = [ ]; - static maxAppletIds: number = 100; - - } - export enum SmartCardAppletIdGroupActivationPolicy { - disabled, - foregroundOverride, - enabled, - } - export class SmartCardAppletIdGroupRegistration implements ISmartCardAppletIdGroupRegistration, ISmartCardAppletIdGroupRegistration2 { - activationPolicy: SmartCardAppletIdGroupActivationPolicy; - appletIdGroup: SmartCardAppletIdGroup; - id: string; - smartCardReaderId: string; - - requestActivationPolicyChangeAsync(policy: SmartCardAppletIdGroupActivationPolicy): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardAppletIdGroupRegistration.requestActivationPolicyChangeAsync'); - } - - setAutomaticResponseApdusAsync(apdus: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function SmartCardAppletIdGroupRegistration.setAutomaticResponseApdusAsync'); - } - - setPropertiesAsync(props: Foundation.Collections.ValueSet): Foundation.IAsyncAction { - throw new Error('shimmed function SmartCardAppletIdGroupRegistration.setPropertiesAsync'); - } - - } - export class SmartCardAutomaticResponseApdu implements ISmartCardAutomaticResponseApdu, ISmartCardAutomaticResponseApdu2, ISmartCardAutomaticResponseApdu3 { - // constructor(commandApdu: Storage.Streams.IBuffer, responseApdu: Storage.Streams.IBuffer); - constructor(commandApdu: Storage.Streams.IBuffer, responseApdu: Storage.Streams.IBuffer) {} - - shouldMatchLength: Boolean; - responseApdu: Storage.Streams.IBuffer; - commandApduBitMask: Storage.Streams.IBuffer; - commandApdu: Storage.Streams.IBuffer; - appletId: Storage.Streams.IBuffer; - outputState: number | null; - inputState: number | null; - allowWhenCryptogramGeneratorNotPrepared: Boolean; - - } - export enum SmartCardAutomaticResponseStatus { - none, - success, - unknownError, - } - export interface SmartCardBackgroundTriggerContract { - } - export class SmartCardChallengeContext implements ISmartCardChallengeContext, Foundation.IClosable { - challenge: Storage.Streams.IBuffer; - - verifyResponseAsync(response: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardChallengeContext.verifyResponseAsync'); - } - - provisionAsync(response: Storage.Streams.IBuffer, formatCard: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function SmartCardChallengeContext.provisionAsync'); - } - - provisionAsync_1(response: Storage.Streams.IBuffer, formatCard: Boolean, newCardId: string): Foundation.IAsyncAction { - throw new Error('shimmed function SmartCardChallengeContext.provisionAsync_1'); - } - - changeAdministrativeKeyAsync(response: Storage.Streams.IBuffer, newAdministrativeKey: Storage.Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function SmartCardChallengeContext.changeAdministrativeKeyAsync'); - } - - close(): void { - console.warn('shimmed function SmartCardChallengeContext.close'); - } - - } - export class SmartCardConnection implements ISmartCardConnection, Foundation.IClosable { - transmitAsync(command: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardConnection.transmitAsync'); - } - - close(): void { - console.warn('shimmed function SmartCardConnection.close'); - } - - } - export enum SmartCardCryptogramAlgorithm { - none, - cbcMac, - cvc3Umd, - decimalizedMsd, - cvc3MD, - sha1, - signedDynamicApplicationData, - rsaPkcs1, - sha256Hmac, - } - export class SmartCardCryptogramGenerator implements ISmartCardCryptogramGenerator, ISmartCardCryptogramGenerator2 { - supportedCryptogramAlgorithms: SmartCardCryptogramAlgorithm[]; - supportedCryptogramMaterialPackageConfirmationResponseFormats: SmartCardCryptogramMaterialPackageConfirmationResponseFormat[]; - supportedCryptogramMaterialPackageFormats: SmartCardCryptogramMaterialPackageFormat[]; - supportedCryptogramMaterialTypes: SmartCardCryptogramMaterialType[]; - supportedSmartCardCryptogramStorageKeyCapabilities: SmartCardCryptogramStorageKeyCapabilities[]; - - deleteCryptogramMaterialStorageKeyAsync(storageKeyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.deleteCryptogramMaterialStorageKeyAsync'); - } - - createCryptogramMaterialStorageKeyAsync(promptingBehavior: SmartCardUnlockPromptingBehavior, storageKeyName: string, algorithm: SmartCardCryptogramStorageKeyAlgorithm, capabilities: SmartCardCryptogramStorageKeyCapabilities): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.createCryptogramMaterialStorageKeyAsync'); - } - - requestCryptogramMaterialStorageKeyInfoAsync(promptingBehavior: SmartCardUnlockPromptingBehavior, storageKeyName: string, format: Security.Cryptography.Core.CryptographicPublicKeyBlobType): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.requestCryptogramMaterialStorageKeyInfoAsync'); - } - - importCryptogramMaterialPackageAsync(format: SmartCardCryptogramMaterialPackageFormat, storageKeyName: string, materialPackageName: string, cryptogramMaterialPackage: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.importCryptogramMaterialPackageAsync'); - } - - tryProvePossessionOfCryptogramMaterialPackageAsync(promptingBehavior: SmartCardUnlockPromptingBehavior, responseFormat: SmartCardCryptogramMaterialPackageConfirmationResponseFormat, materialPackageName: string, materialName: string, challenge: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.tryProvePossessionOfCryptogramMaterialPackageAsync'); - } - - requestUnlockCryptogramMaterialForUseAsync(promptingBehavior: SmartCardUnlockPromptingBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.requestUnlockCryptogramMaterialForUseAsync'); - } - - deleteCryptogramMaterialPackageAsync(materialPackageName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.deleteCryptogramMaterialPackageAsync'); - } - - validateRequestApduAsync(promptingBehavior: SmartCardUnlockPromptingBehavior, apduToValidate: Storage.Streams.IBuffer, cryptogramPlacementSteps: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.validateRequestApduAsync'); - } - - getAllCryptogramStorageKeyCharacteristicsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.getAllCryptogramStorageKeyCharacteristicsAsync'); - } - - getAllCryptogramMaterialPackageCharacteristicsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.getAllCryptogramMaterialPackageCharacteristicsAsync'); - } - - getAllCryptogramMaterialPackageCharacteristicsAsync_1(storageKeyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.getAllCryptogramMaterialPackageCharacteristicsAsync_1'); - } - - getAllCryptogramMaterialCharacteristicsAsync(promptingBehavior: SmartCardUnlockPromptingBehavior, materialPackageName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.getAllCryptogramMaterialCharacteristicsAsync'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function SmartCardCryptogramGenerator.isSupported'); - } - - static getSmartCardCryptogramGeneratorAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardCryptogramGenerator.getSmartCardCryptogramGeneratorAsync'); - } - - } - export enum SmartCardCryptogramGeneratorOperationStatus { - success, - authorizationFailed, - authorizationCanceled, - authorizationRequired, - cryptogramMaterialPackageStorageKeyExists, - noCryptogramMaterialPackageStorageKey, - noCryptogramMaterialPackage, - unsupportedCryptogramMaterialPackage, - unknownCryptogramMaterialName, - invalidCryptogramMaterialUsage, - apduResponseNotSent, - otherError, - validationFailed, - notSupported, - } - export class SmartCardCryptogramGetAllCryptogramMaterialCharacteristicsResult implements ISmartCardCryptogramGetAllCryptogramMaterialCharacteristicsResult { - // constructor(); - characteristics: SmartCardCryptogramMaterialCharacteristics[] = [ ]; - operationStatus: SmartCardCryptogramGeneratorOperationStatus = 1935894900; - - } - export class SmartCardCryptogramGetAllCryptogramMaterialPackageCharacteristicsResult implements ISmartCardCryptogramGetAllCryptogramMaterialPackageCharacteristicsResult { - // constructor(); - characteristics: SmartCardCryptogramMaterialPackageCharacteristics[] = [ ]; - operationStatus: SmartCardCryptogramGeneratorOperationStatus = SmartCardCryptogramGeneratorOperationStatus.otherError; - - } - export class SmartCardCryptogramGetAllCryptogramStorageKeyCharacteristicsResult implements ISmartCardCryptogramGetAllCryptogramStorageKeyCharacteristicsResult { - // constructor(); - characteristics: SmartCardCryptogramStorageKeyCharacteristics[] = [ ]; - operationStatus: SmartCardCryptogramGeneratorOperationStatus = SmartCardCryptogramGeneratorOperationStatus.otherError; - - } - export class SmartCardCryptogramMaterialCharacteristics implements ISmartCardCryptogramMaterialCharacteristics { - // constructor(); - allowedAlgorithms: SmartCardCryptogramAlgorithm[]; - allowedProofOfPossessionAlgorithms: SmartCardCryptogramMaterialPackageConfirmationResponseFormat[]; - allowedValidations: SmartCardCryptogramAlgorithm[]; - materialLength: number; - materialName: string; - materialType: SmartCardCryptogramMaterialType; - protectionMethod: SmartCardCryptogramMaterialProtectionMethod; - protectionVersion: number; - - } - export class SmartCardCryptogramMaterialPackageCharacteristics implements ISmartCardCryptogramMaterialPackageCharacteristics { - // constructor(); - dateImported: Date = new Date(-11644473600000); - packageFormat: SmartCardCryptogramMaterialPackageFormat = SmartCardCryptogramMaterialPackageFormat.none; - packageName: string = ''; - storageKeyName: string = ''; - - } - export enum SmartCardCryptogramMaterialPackageConfirmationResponseFormat { - none, - visaHmac, - } - export enum SmartCardCryptogramMaterialPackageFormat { - none, - jweRsaPki, - } - export class SmartCardCryptogramMaterialPossessionProof implements ISmartCardCryptogramMaterialPossessionProof { - operationStatus: SmartCardCryptogramGeneratorOperationStatus; - proof: Storage.Streams.IBuffer; - - } - export enum SmartCardCryptogramMaterialProtectionMethod { - none, - whiteBoxing, - } - export enum SmartCardCryptogramMaterialType { - none, - staticDataAuthentication, - tripleDes112, - aes, - rsaPkcs1, - } - export enum SmartCardCryptogramPlacementOptions { - none, - unitsAreInNibbles, - chainOutput, - } - export class SmartCardCryptogramPlacementStep implements ISmartCardCryptogramPlacementStep { - // constructor(); - templateOffset: number = 0; - sourceData: Storage.Streams.IBuffer; - cryptogramPlacementOptions: SmartCardCryptogramPlacementOptions = SmartCardCryptogramPlacementOptions.none; - cryptogramOffset: number = 0; - cryptogramMaterialPackageName: string = ''; - cryptogramMaterialName: string = ''; - cryptogramLength: number = 0; - chainedOutputStep: SmartCardCryptogramPlacementStep; - algorithm: SmartCardCryptogramAlgorithm = SmartCardCryptogramAlgorithm.none; - - } - export enum SmartCardCryptogramStorageKeyAlgorithm { - none, - rsa2048, - } - export enum SmartCardCryptogramStorageKeyCapabilities { - none, - hardwareProtection, - unlockPrompt, - } - export class SmartCardCryptogramStorageKeyCharacteristics implements ISmartCardCryptogramStorageKeyCharacteristics { - // constructor(); - algorithm: SmartCardCryptogramStorageKeyAlgorithm = SmartCardCryptogramStorageKeyAlgorithm.none; - capabilities: SmartCardCryptogramStorageKeyCapabilities = SmartCardCryptogramStorageKeyCapabilities.none; - dateCreated: Date = new Date(134543819632248); - storageKeyName: string = ''; - - } - export class SmartCardCryptogramStorageKeyInfo implements ISmartCardCryptogramStorageKeyInfo, ISmartCardCryptogramStorageKeyInfo2 { - attestation: Storage.Streams.IBuffer; - attestationCertificateChain: Storage.Streams.IBuffer; - attestationStatus: SmartCardCryptographicKeyAttestationStatus; - capabilities: SmartCardCryptogramStorageKeyCapabilities; - operationStatus: SmartCardCryptogramGeneratorOperationStatus; - publicKey: Storage.Streams.IBuffer; - publicKeyBlobType: Security.Cryptography.Core.CryptographicPublicKeyBlobType; - operationalRequirements: string; - - } - export enum SmartCardCryptographicKeyAttestationStatus { - noAttestation, - softwareKeyWithoutTpm, - softwareKeyWithTpm, - tpmKeyUnknownAttestationStatus, - tpmKeyWithoutAttestationCapability, - tpmKeyWithTemporaryAttestationFailure, - tpmKeyWithLongTermAttestationFailure, - tpmKeyWithAttestation, - } - export enum SmartCardEmulationCategory { - other, - payment, - } - export enum SmartCardEmulationType { - host, - uicc, - embeddedSE, - } - export class SmartCardEmulator implements ISmartCardEmulator, ISmartCardEmulator2 { - enablementPolicy: SmartCardEmulatorEnablementPolicy; - static maxAppletIdGroupRegistrations: number = 100; - - start(): void { - console.warn('shimmed function SmartCardEmulator.start'); - } - - isHostCardEmulationSupported(): Boolean { - throw new Error('shimmed function SmartCardEmulator.isHostCardEmulationSupported'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function SmartCardEmulator.isSupported'); - } - - static getAppletIdGroupRegistrationsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardEmulator.getAppletIdGroupRegistrationsAsync'); - } - - static registerAppletIdGroupAsync(appletIdGroup: SmartCardAppletIdGroup): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardEmulator.registerAppletIdGroupAsync'); - } - - static unregisterAppletIdGroupAsync(registration: SmartCardAppletIdGroupRegistration): Foundation.IAsyncAction { - throw new Error('shimmed function SmartCardEmulator.unregisterAppletIdGroupAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardEmulator.getDefaultAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SmartCardEmulator::addEventListener: ${name}`); - switch (name) { - case "apdureceived": // Foundation.TypedEventHandler - case "connectiondeactivated": // Foundation.TypedEventHandler - break; - } - - } - } - export class SmartCardEmulatorApduReceivedEventArgs implements ISmartCardEmulatorApduReceivedEventArgs, ISmartCardEmulatorApduReceivedEventArgsWithCryptograms, ISmartCardEmulatorApduReceivedEventArgs2 { - automaticResponseStatus: SmartCardAutomaticResponseStatus; - commandApdu: Storage.Streams.IBuffer; - connectionProperties: SmartCardEmulatorConnectionProperties; - state: number; - - tryRespondAsync(responseApdu: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardEmulatorApduReceivedEventArgs.tryRespondAsync'); - } - - tryRespondWithCryptogramsAsync(responseTemplate: Storage.Streams.IBuffer, cryptogramPlacementSteps: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardEmulatorApduReceivedEventArgs.tryRespondWithCryptogramsAsync'); - } - - tryRespondWithCryptogramsAsync_1(responseTemplate: Storage.Streams.IBuffer, cryptogramPlacementSteps: Foundation.Collections.IIterable, nextState: number | null): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardEmulatorApduReceivedEventArgs.tryRespondWithCryptogramsAsync_1'); - } - - tryRespondAsync_1(responseApdu: Storage.Streams.IBuffer, nextState: number | null): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardEmulatorApduReceivedEventArgs.tryRespondAsync_1'); - } - - } - export class SmartCardEmulatorConnectionDeactivatedEventArgs implements ISmartCardEmulatorConnectionDeactivatedEventArgs { - connectionProperties: SmartCardEmulatorConnectionProperties; - reason: SmartCardEmulatorConnectionDeactivatedReason; - - } - export enum SmartCardEmulatorConnectionDeactivatedReason { - connectionLost, - connectionRedirected, - } - export class SmartCardEmulatorConnectionProperties implements ISmartCardEmulatorConnectionProperties { - id: string; - source: SmartCardEmulatorConnectionSource; - - } - export enum SmartCardEmulatorConnectionSource { - unknown, - nfcReader, - } - export interface SmartCardEmulatorContract { - } - export enum SmartCardEmulatorEnablementPolicy { - never, - always, - screenOn, - screenUnlocked, - } - export enum SmartCardLaunchBehavior { - default, - aboveLock, - } - export enum SmartCardPinCharacterPolicyOption { - allow, - requireAtLeastOne, - disallow, - } - export class SmartCardPinPolicy implements ISmartCardPinPolicy { - // constructor(); - uppercaseLetters: SmartCardPinCharacterPolicyOption = SmartCardPinCharacterPolicyOption.allow; - specialCharacters: SmartCardPinCharacterPolicyOption = SmartCardPinCharacterPolicyOption.allow; - minLength: number = 8; - maxLength: number = 127; - lowercaseLetters: SmartCardPinCharacterPolicyOption = SmartCardPinCharacterPolicyOption.allow; - digits: SmartCardPinCharacterPolicyOption = SmartCardPinCharacterPolicyOption.allow; - - } - export class SmartCardPinResetDeferral implements ISmartCardPinResetDeferral { - complete(): void { - console.warn('shimmed function SmartCardPinResetDeferral.complete'); - } - - } - export type SmartCardPinResetHandler = (request: SmartCardPinResetRequest) => void; - export class SmartCardPinResetRequest implements ISmartCardPinResetRequest { - challenge: Storage.Streams.IBuffer; - deadline: Date; - - getDeferral(): SmartCardPinResetDeferral { - throw new Error('shimmed function SmartCardPinResetRequest.getDeferral'); - } - - setResponse(response: Storage.Streams.IBuffer): void { - console.warn('shimmed function SmartCardPinResetRequest.setResponse'); - } - - } - export class SmartCardProvisioning implements ISmartCardProvisioning, ISmartCardProvisioning2 { - smartCard: SmartCard; - - getIdAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.getIdAsync'); - } - - getNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.getNameAsync'); - } - - getChallengeContextAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.getChallengeContextAsync'); - } - - requestPinChangeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.requestPinChangeAsync'); - } - - requestPinResetAsync(handler: SmartCardPinResetHandler): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.requestPinResetAsync'); - } - - getAuthorityKeyContainerNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.getAuthorityKeyContainerNameAsync'); - } - - static requestAttestedVirtualSmartCardCreationAsync(friendlyName: string, administrativeKey: Storage.Streams.IBuffer, pinPolicy: SmartCardPinPolicy): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.requestAttestedVirtualSmartCardCreationAsync'); - } - - static requestAttestedVirtualSmartCardCreationAsync_1(friendlyName: string, administrativeKey: Storage.Streams.IBuffer, pinPolicy: SmartCardPinPolicy, cardId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.requestAttestedVirtualSmartCardCreationAsync_1'); - } - - static fromSmartCardAsync(card: SmartCard): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.fromSmartCardAsync'); - } - - static requestVirtualSmartCardCreationAsync(friendlyName: string, administrativeKey: Storage.Streams.IBuffer, pinPolicy: SmartCardPinPolicy): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.requestVirtualSmartCardCreationAsync'); - } - - static requestVirtualSmartCardCreationAsync_1(friendlyName: string, administrativeKey: Storage.Streams.IBuffer, pinPolicy: SmartCardPinPolicy, cardId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.requestVirtualSmartCardCreationAsync_1'); - } - - static requestVirtualSmartCardDeletionAsync(card: SmartCard): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardProvisioning.requestVirtualSmartCardDeletionAsync'); - } - - } - export class SmartCardReader implements ISmartCardReader { - deviceId: string; - kind: SmartCardReaderKind; - name: string; - - getStatusAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardReader.getStatusAsync'); - } - - findAllCardsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardReader.findAllCardsAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function SmartCardReader.getDeviceSelector'); - } - - static getDeviceSelector_1(kind: SmartCardReaderKind): string { - throw new Error('shimmed function SmartCardReader.getDeviceSelector_1'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardReader.fromIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SmartCardReader::addEventListener: ${name}`); - switch (name) { - case "cardadded": // Foundation.TypedEventHandler - case "cardremoved": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SmartCardReaderKind { - any, - generic, - tpm, - nfc, - uicc, - embeddedSE, - } - export enum SmartCardReaderStatus { - disconnected, - ready, - exclusive, - } - export enum SmartCardStatus { - disconnected, - ready, - shared, - exclusive, - unresponsive, - } - export class SmartCardTriggerDetails implements ISmartCardTriggerDetails, ISmartCardTriggerDetails2, ISmartCardTriggerDetails3 { - sourceAppletId: Storage.Streams.IBuffer; - triggerData: Storage.Streams.IBuffer; - triggerType: SmartCardTriggerType; - emulator: SmartCardEmulator; - smartCard: SmartCard; - - tryLaunchCurrentAppAsync(__arguments: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardTriggerDetails.tryLaunchCurrentAppAsync'); - } - - tryLaunchCurrentAppAsync_1(__arguments: string, behavior: SmartCardLaunchBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function SmartCardTriggerDetails.tryLaunchCurrentAppAsync_1'); - } - - } - export enum SmartCardTriggerType { - emulatorTransaction, - emulatorNearFieldEntry, - emulatorNearFieldExit, - emulatorHostApplicationActivated, - emulatorAppletIdGroupRegistrationChanged, - readerCardAdded, - } - export enum SmartCardUnlockPromptingBehavior { - allowUnlockPrompt, - requireUnlockPrompt, - preventUnlockPrompt, - } - } - export namespace Sms { - export enum CellularClass { - none, - gsm, - cdma, - } - export class DeleteSmsMessageOperation implements Foundation.IAsyncAction, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncActionCompletedHandler; - - getResults(): void { - console.warn('shimmed function DeleteSmsMessageOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function DeleteSmsMessageOperation.cancel'); - } - - close(): void { - console.warn('shimmed function DeleteSmsMessageOperation.close'); - } - - } - export class DeleteSmsMessagesOperation implements Foundation.IAsyncAction, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncActionCompletedHandler; - - getResults(): void { - console.warn('shimmed function DeleteSmsMessagesOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function DeleteSmsMessagesOperation.cancel'); - } - - close(): void { - console.warn('shimmed function DeleteSmsMessagesOperation.close'); - } - - } - export class GetSmsDeviceOperation implements Foundation.IAsyncOperation, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncOperationCompletedHandler; - - getResults(): SmsDevice { - throw new Error('shimmed function GetSmsDeviceOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function GetSmsDeviceOperation.cancel'); - } - - close(): void { - console.warn('shimmed function GetSmsDeviceOperation.close'); - } - - } - export class GetSmsMessageOperation implements Foundation.IAsyncOperation, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncOperationCompletedHandler; - - getResults(): ISmsMessage { - throw new Error('shimmed function GetSmsMessageOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function GetSmsMessageOperation.cancel'); - } - - close(): void { - console.warn('shimmed function GetSmsMessageOperation.close'); - } - - } - export class GetSmsMessagesOperation implements Foundation.IAsyncOperationWithProgress, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - progress: Foundation.AsyncOperationProgressHandler; - completed: Foundation.AsyncOperationWithProgressCompletedHandler; - - getResults(): ISmsMessage[] { - throw new Error('shimmed function GetSmsMessagesOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function GetSmsMessagesOperation.cancel'); - } - - close(): void { - console.warn('shimmed function GetSmsMessagesOperation.close'); - } - - } - export interface ISmsBinaryMessage extends ISmsMessage { - format: SmsDataFormat; - } - export interface ISmsDevice { - accountPhoneNumber: string; - cellularClass: CellularClass; - deviceStatus: SmsDeviceStatus; - messageStore: SmsDeviceMessageStore; - sendMessageAsync(message: ISmsMessage): SendSmsMessageOperation; - calculateLength(message: SmsTextMessage): SmsEncodedLength; - } - export interface ISmsMessage { - id: number; - messageClass: SmsMessageClass; - } - export interface ISmsMessageBase { - cellularClass: CellularClass; - deviceId: string; - messageClass: SmsMessageClass; - messageType: SmsMessageType; - simIccId: string; - } - export interface ISmsTextMessage extends ISmsMessage { - body: string; - encoding: SmsEncoding; - from: string; - partCount: number; - partNumber: number; - partReferenceId: number; - timestamp: Date; - to: string; - toBinaryMessages(format: SmsDataFormat): ISmsBinaryMessage[]; - } - export interface LegacySmsApiContract { - } - export class SendSmsMessageOperation implements Foundation.IAsyncAction, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncActionCompletedHandler; - - getResults(): void { - console.warn('shimmed function SendSmsMessageOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function SendSmsMessageOperation.cancel'); - } - - close(): void { - console.warn('shimmed function SendSmsMessageOperation.close'); - } - - } - export class SmsAppMessage implements ISmsAppMessage, ISmsMessageBase { - // constructor(); - protocolId: number = 0; - portNumber: number = 0; - isDeliveryNotificationEnabled: Boolean = false; - retryAttemptCount: number = 0; - encoding: SmsEncoding = SmsEncoding.optimal; - body: string = ''; - callbackNumber: string = ''; - binaryBody: Storage.Streams.IBuffer = null; - to: string = ''; - teleserviceId: number = 0; - from: string = ''; - timestamp: Date = new Date(1616785459518); - cellularClass: CellularClass = CellularClass.none; - deviceId: string = ''; - messageClass: SmsMessageClass = SmsMessageClass.none; - messageType: SmsMessageType = SmsMessageType.app; - simIccId: string = ''; - - } - export class SmsBinaryMessage implements ISmsBinaryMessage, ISmsMessage { - // constructor(); - format: SmsDataFormat = SmsDataFormat.unknown; - id: number = 0; - messageClass: SmsMessageClass = SmsMessageClass.none; - - } - export class SmsBroadcastMessage implements ISmsBroadcastMessage, ISmsMessageBase { - body: string; - broadcastType: SmsBroadcastType; - channel: number; - geographicalScope: SmsGeographicalScope; - isEmergencyAlert: Boolean; - isUserPopupRequested: Boolean; - messageCode: number; - timestamp: Date; - to: string; - updateNumber: number; - cellularClass: CellularClass; - deviceId: string; - messageClass: SmsMessageClass; - messageType: SmsMessageType; - simIccId: string; - - } - export enum SmsBroadcastType { - other, - cmasPresidential, - cmasExtreme, - cmasSevere, - cmasAmber, - cmasTest, - eualert1, - eualert2, - eualert3, - eualertAmber, - eualertInfo, - etwsEarthquake, - etwsTsunami, - etwsTsunamiAndEarthquake, - latAlertLocal, - } - export enum SmsDataFormat { - unknown, - cdmaSubmit, - gsmSubmit, - cdmaDeliver, - gsmDeliver, - } - export class SmsDevice implements ISmsDevice { - accountPhoneNumber: string; - cellularClass: CellularClass; - deviceStatus: SmsDeviceStatus; - messageStore: SmsDeviceMessageStore; - - sendMessageAsync(message: ISmsMessage): SendSmsMessageOperation { - throw new Error('shimmed function SmsDevice.sendMessageAsync'); - } - - calculateLength(message: SmsTextMessage): SmsEncodedLength { - throw new Error('shimmed function SmsDevice.calculateLength'); - } - - static fromNetworkAccountIdAsync(networkAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmsDevice.fromNetworkAccountIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function SmsDevice.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SmsDevice.fromIdAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SmsDevice.getDefaultAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SmsDevice::addEventListener: ${name}`); - switch (name) { - case "smsdevicestatuschanged": // SmsDeviceStatusChangedEventHandler - case "smsmessagereceived": // SmsMessageReceivedEventHandler - break; - } - - } - } - export class SmsDevice2 implements ISmsDevice2 { - smscAddress: string; - accountPhoneNumber: string; - cellularClass: CellularClass; - deviceId: string; - deviceStatus: SmsDeviceStatus; - parentDeviceId: string; - - calculateLength(message: ISmsMessageBase): SmsEncodedLength { - throw new Error('shimmed function SmsDevice2.calculateLength'); - } - - sendMessageAndGetResultAsync(message: ISmsMessageBase): Foundation.IAsyncOperation { - throw new Error('shimmed function SmsDevice2.sendMessageAndGetResultAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function SmsDevice2.getDeviceSelector'); - } - - static fromId(deviceId: string): SmsDevice2 { - throw new Error('shimmed function SmsDevice2.fromId'); - } - - static getDefault(): SmsDevice2 { - throw new Error('shimmed function SmsDevice2.getDefault'); - } - - static fromParentId(parentDeviceId: string): SmsDevice2 { - throw new Error('shimmed function SmsDevice2.fromParentId'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SmsDevice2::addEventListener: ${name}`); - switch (name) { - case "devicestatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class SmsDeviceMessageStore implements ISmsDeviceMessageStore { - maxMessages: number; - - deleteMessageAsync(messageId: number): Foundation.IAsyncAction { - throw new Error('shimmed function SmsDeviceMessageStore.deleteMessageAsync'); - } - - deleteMessagesAsync(messageFilter: SmsMessageFilter): Foundation.IAsyncAction { - throw new Error('shimmed function SmsDeviceMessageStore.deleteMessagesAsync'); - } - - getMessageAsync(messageId: number): Foundation.IAsyncOperation { - throw new Error('shimmed function SmsDeviceMessageStore.getMessageAsync'); - } - - getMessagesAsync(messageFilter: SmsMessageFilter): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function SmsDeviceMessageStore.getMessagesAsync'); - } - - } - export enum SmsDeviceStatus { - off, - ready, - simNotInserted, - badSim, - deviceFailure, - subscriptionNotActivated, - deviceLocked, - deviceBlocked, - } - export type SmsDeviceStatusChangedEventHandler = () => void; - export interface SmsEncodedLength { - segmentCount: number; - characterCountLastSegment: number; - charactersPerSegment: number; - byteCountLastSegment: number; - bytesPerSegment: number; - } - export enum SmsEncoding { - unknown, - optimal, - sevenBitAscii, - unicode, - gsmSevenBit, - eightBit, - latin, - korean, - ia5, - shiftJis, - latinHebrew, - } - export enum SmsFilterActionType { - acceptImmediately, - drop, - peek, - accept, - } - export class SmsFilterRule implements ISmsFilterRule { - // constructor(messageType: SmsMessageType); - constructor(messageType: SmsMessageType) {} - - cellularClass: CellularClass; - broadcastChannels: number[]; - broadcastTypes: SmsBroadcastType[]; - deviceIds: string[]; - imsiPrefixes: string[]; - messageType: SmsMessageType; - portNumbers: number[]; - protocolIds: number[]; - senderNumbers: string[]; - teleserviceIds: number[]; - textMessagePrefixes: string[]; - wapApplicationIds: string[]; - wapContentTypes: string[]; - - } - export class SmsFilterRules implements ISmsFilterRules { - // constructor(actionType: SmsFilterActionType); - constructor(actionType: SmsFilterActionType) {} - - actionType: SmsFilterActionType; - rules: SmsFilterRule[]; - - } - export enum SmsGeographicalScope { - none, - cellWithImmediateDisplay, - locationArea, - plmn, - cell, - } - export enum SmsMessageClass { - none, - class0, - class1, - class2, - class3, - } - export enum SmsMessageFilter { - all, - unread, - read, - sent, - draft, - } - export class SmsMessageReceivedEventArgs implements ISmsMessageReceivedEventArgs { - binaryMessage: SmsBinaryMessage; - textMessage: SmsTextMessage; - - } - export type SmsMessageReceivedEventHandler = (e: SmsMessageReceivedEventArgs) => void; - export class SmsMessageReceivedTriggerDetails implements ISmsMessageReceivedTriggerDetails { - appMessage: SmsAppMessage; - broadcastMessage: SmsBroadcastMessage; - messageType: SmsMessageType; - statusMessage: SmsStatusMessage; - textMessage: SmsTextMessage2; - voicemailMessage: SmsVoicemailMessage; - wapMessage: SmsWapMessage; - - drop(): void { - console.warn('shimmed function SmsMessageReceivedTriggerDetails.drop'); - } - - accept(): void { - console.warn('shimmed function SmsMessageReceivedTriggerDetails.accept'); - } - - } - export class SmsMessageRegistration implements ISmsMessageRegistration { - id: string; - static allRegistrations: SmsMessageRegistration[]; - - unregister(): void { - console.warn('shimmed function SmsMessageRegistration.unregister'); - } - - static register(id: string, filterRules: SmsFilterRules): SmsMessageRegistration { - throw new Error('shimmed function SmsMessageRegistration.register'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SmsMessageRegistration::addEventListener: ${name}`); - switch (name) { - case "messagereceived": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SmsMessageType { - binary, - text, - wap, - app, - broadcast, - voicemail, - status, - } - export enum SmsModemErrorCode { - other, - messagingNetworkError, - smsOperationNotSupportedByDevice, - smsServiceNotSupportedByNetwork, - deviceFailure, - messageNotEncodedProperly, - messageTooLarge, - deviceNotReady, - networkNotReady, - invalidSmscAddress, - networkFailure, - fixedDialingNumberRestricted, - } - export class SmsReceivedEventDetails implements ISmsReceivedEventDetails, ISmsReceivedEventDetails2 { - deviceId: string; - messageIndex: number; - binaryMessage: SmsBinaryMessage; - messageClass: SmsMessageClass; - - } - export class SmsSendMessageResult implements ISmsSendMessageResult { - cellularClass: CellularClass; - isErrorTransient: Boolean; - isSuccessful: Boolean; - messageReferenceNumbers: number[]; - modemErrorCode: SmsModemErrorCode; - networkCauseCode: number; - transportFailureCause: number; - - } - export class SmsStatusMessage implements ISmsStatusMessage, ISmsMessageBase { - cellularClass: CellularClass; - deviceId: string; - messageClass: SmsMessageClass; - messageType: SmsMessageType; - simIccId: string; - status: number; - body: string; - dischargeTime: Date; - from: string; - messageReferenceNumber: number; - serviceCenterTimestamp: Date; - to: string; - - } - export class SmsTextMessage implements ISmsTextMessage, ISmsMessage { - // constructor(); - id: number = 0; - messageClass: SmsMessageClass = SmsMessageClass.none; - to: string = ''; - from: string = ''; - encoding: SmsEncoding = SmsEncoding.optimal; - body: string = ''; - partCount: number = 0; - partNumber: number = 0; - partReferenceId: number = 0; - timestamp: Date = new Date(1616785459598); - - toBinaryMessages(format: SmsDataFormat): ISmsBinaryMessage[] { - throw new Error('shimmed function SmsTextMessage.toBinaryMessages'); - } - - static fromBinaryMessage(binaryMessage: SmsBinaryMessage): SmsTextMessage { - throw new Error('shimmed function SmsTextMessage.fromBinaryMessage'); - } - - static fromBinaryData(format: SmsDataFormat, value: number[]): SmsTextMessage { - throw new Error('shimmed function SmsTextMessage.fromBinaryData'); - } - - } - export class SmsTextMessage2 implements ISmsTextMessage2, ISmsMessageBase { - // constructor(); - messageType: SmsMessageType = SmsMessageType.text; - deviceId: string = ''; - cellularClass: CellularClass = CellularClass.none; - messageClass: SmsMessageClass = SmsMessageClass.none; - simIccId: string = ''; - retryAttemptCount: number = 0; - to: string = ''; - isDeliveryNotificationEnabled: Boolean = false; - encoding: SmsEncoding = SmsEncoding.optimal; - callbackNumber: string = ''; - body: string = ''; - protocolId: number = 0; - from: string = ''; - timestamp: Date = new Date(1616785459599); - teleserviceId: number = 0; - - } - export class SmsVoicemailMessage implements ISmsVoicemailMessage, ISmsMessageBase { - cellularClass: CellularClass; - deviceId: string; - messageClass: SmsMessageClass; - messageType: SmsMessageType; - simIccId: string; - body: string; - messageCount: number | null; - timestamp: Date; - to: string; - - } - export class SmsWapMessage implements ISmsWapMessage, ISmsMessageBase { - cellularClass: CellularClass; - deviceId: string; - messageClass: SmsMessageClass; - messageType: SmsMessageType; - simIccId: string; - timestamp: Date; - applicationId: string; - binaryBody: Storage.Streams.IBuffer; - contentType: string; - from: string; - headers: string[]; - to: string; - - } - } - export namespace Spi { - export interface ISpiDeviceStatics { - getDeviceSelector(): string; - getDeviceSelector_1(friendlyName: string): string; - getBusInfo(busId: string): SpiBusInfo; - fromIdAsync(busId: string, settings: SpiConnectionSettings): Foundation.IAsyncOperation; - } - export namespace Provider { - export interface ISpiControllerProvider { - getDeviceProvider(settings: ProviderSpiConnectionSettings): ISpiDeviceProvider; - } - export interface ISpiDeviceProvider extends Foundation.IClosable { - connectionSettings: ProviderSpiConnectionSettings; - deviceId: string; - write(buffer: number[]): void; - read(buffer: number[]): void; - transferSequential(writeBuffer: number[], readBuffer: number[]): void; - transferFullDuplex(writeBuffer: number[], readBuffer: number[]): void; - } - export interface ISpiProvider { - getControllersAsync(): Foundation.IAsyncOperation; - } - export class ProviderSpiConnectionSettings implements IProviderSpiConnectionSettings { - // constructor(chipSelectLine: number); - constructor(chipSelectLine: number) {} - - sharingMode: ProviderSpiSharingMode; - mode: ProviderSpiMode; - dataBitLength: number; - clockFrequency: number; - chipSelectLine: number; - - } - export enum ProviderSpiMode { - mode0, - mode1, - mode2, - mode3, - } - export enum ProviderSpiSharingMode { - exclusive, - shared, - } - } - export class SpiBusInfo implements ISpiBusInfo { - chipSelectLineCount: number; - maxClockFrequency: number; - minClockFrequency: number; - supportedDataBitLengths: number[]; - - } - export class SpiConnectionSettings implements ISpiConnectionSettings { - // constructor(chipSelectLine: number); - constructor(chipSelectLine: number) {} - - sharingMode: SpiSharingMode; - mode: SpiMode; - dataBitLength: number; - clockFrequency: number; - chipSelectLine: number; - - } - export class SpiController implements ISpiController { - getDevice(settings: SpiConnectionSettings): SpiDevice { - throw new Error('shimmed function SpiController.getDevice'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpiController.getDefaultAsync'); - } - - static getControllersAsync(provider: Provider.ISpiProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function SpiController.getControllersAsync'); - } - - } - export class SpiDevice implements ISpiDevice, Foundation.IClosable { - connectionSettings: SpiConnectionSettings; - deviceId: string; - - write(buffer: number[]): void { - console.warn('shimmed function SpiDevice.write'); - } - - read(buffer: number[]): void { - console.warn('shimmed function SpiDevice.read'); - } - - transferSequential(writeBuffer: number[], readBuffer: number[]): void { - console.warn('shimmed function SpiDevice.transferSequential'); - } - - transferFullDuplex(writeBuffer: number[], readBuffer: number[]): void { - console.warn('shimmed function SpiDevice.transferFullDuplex'); - } - - close(): void { - console.warn('shimmed function SpiDevice.close'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function SpiDevice.getDeviceSelector'); - } - - static getDeviceSelector_1(friendlyName: string): string { - throw new Error('shimmed function SpiDevice.getDeviceSelector_1'); - } - - static getBusInfo(busId: string): SpiBusInfo { - throw new Error('shimmed function SpiDevice.getBusInfo'); - } - - static fromIdAsync(busId: string, settings: SpiConnectionSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function SpiDevice.fromIdAsync'); - } - - } - export enum SpiMode { - mode0, - mode1, - mode2, - mode3, - } - export enum SpiSharingMode { - exclusive, - shared, - } - } - export namespace Usb { - export class UsbBulkInEndpointDescriptor implements IUsbBulkInEndpointDescriptor { - endpointNumber: number; - maxPacketSize: number; - pipe: UsbBulkInPipe; - - } - export class UsbBulkInPipe implements IUsbBulkInPipe { - readOptions: UsbReadOptions; - endpointDescriptor: UsbBulkInEndpointDescriptor; - inputStream: Storage.Streams.IInputStream; - maxTransferSizeBytes: number; - - clearStallAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UsbBulkInPipe.clearStallAsync'); - } - - flushBuffer(): void { - console.warn('shimmed function UsbBulkInPipe.flushBuffer'); - } - - } - export class UsbBulkOutEndpointDescriptor implements IUsbBulkOutEndpointDescriptor { - endpointNumber: number; - maxPacketSize: number; - pipe: UsbBulkOutPipe; - - } - export class UsbBulkOutPipe implements IUsbBulkOutPipe { - writeOptions: UsbWriteOptions; - endpointDescriptor: UsbBulkOutEndpointDescriptor; - outputStream: Storage.Streams.IOutputStream; - - clearStallAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UsbBulkOutPipe.clearStallAsync'); - } - - } - export class UsbConfiguration implements IUsbConfiguration { - configurationDescriptor: UsbConfigurationDescriptor; - descriptors: UsbDescriptor[]; - usbInterfaces: UsbInterface[]; - - } - export class UsbConfigurationDescriptor implements IUsbConfigurationDescriptor { - configurationValue: number; - maxPowerMilliamps: number; - remoteWakeup: Boolean; - selfPowered: Boolean; - - static tryParse(descriptor: UsbDescriptor): { returnValue: Boolean, parsed: UsbConfigurationDescriptor } { - throw new Error('shimmed function UsbConfigurationDescriptor.tryParse'); - } - - static parse(descriptor: UsbDescriptor): UsbConfigurationDescriptor { - throw new Error('shimmed function UsbConfigurationDescriptor.parse'); - } - - } - export enum UsbControlRecipient { - device, - specifiedInterface, - endpoint, - other, - defaultInterface, - } - export class UsbControlRequestType implements IUsbControlRequestType { - // constructor(); - recipient: UsbControlRecipient = UsbControlRecipient.defaultInterface; - direction: UsbTransferDirection = UsbTransferDirection.out; - controlTransferType: UsbControlTransferType = UsbControlTransferType.standard; - asByte: number = 1; - - } - export enum UsbControlTransferType { - standard, - class, - vendor, - } - export class UsbDescriptor implements IUsbDescriptor { - descriptorType: number; - length: number; - - readDescriptorBuffer(buffer: Storage.Streams.IBuffer): void { - console.warn('shimmed function UsbDescriptor.readDescriptorBuffer'); - } - - } - export class UsbDevice implements IUsbDevice, Foundation.IClosable { - configuration: UsbConfiguration; - defaultInterface: UsbInterface; - deviceDescriptor: UsbDeviceDescriptor; - - sendControlOutTransferAsync(setupPacket: UsbSetupPacket, buffer: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function UsbDevice.sendControlOutTransferAsync'); - } - - sendControlOutTransferAsync_1(setupPacket: UsbSetupPacket): Foundation.IAsyncOperation { - throw new Error('shimmed function UsbDevice.sendControlOutTransferAsync_1'); - } - - sendControlInTransferAsync(setupPacket: UsbSetupPacket, buffer: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function UsbDevice.sendControlInTransferAsync'); - } - - sendControlInTransferAsync_1(setupPacket: UsbSetupPacket): Foundation.IAsyncOperation { - throw new Error('shimmed function UsbDevice.sendControlInTransferAsync_1'); - } - - close(): void { - console.warn('shimmed function UsbDevice.close'); - } - - static getDeviceSelector(vendorId: number, productId: number, winUsbInterfaceClass: string): string { - throw new Error('shimmed function UsbDevice.getDeviceSelector'); - } - - static getDeviceSelector_1(winUsbInterfaceClass: string): string { - throw new Error('shimmed function UsbDevice.getDeviceSelector_1'); - } - - static getDeviceSelector_2(vendorId: number, productId: number): string { - throw new Error('shimmed function UsbDevice.getDeviceSelector_2'); - } - - static getDeviceClassSelector(usbClass: UsbDeviceClass): string { - throw new Error('shimmed function UsbDevice.getDeviceClassSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UsbDevice.fromIdAsync'); - } - - } - export class UsbDeviceClass implements IUsbDeviceClass { - // constructor(); - subclassCode: number | null; - protocolCode: number | null; - classCode: number = 0; - - } - export class UsbDeviceClasses implements IUsbDeviceClasses { - static activeSync: UsbDeviceClass = null; - static cdcControl: UsbDeviceClass = null; - static deviceFirmwareUpdate: UsbDeviceClass = null; - static irda: UsbDeviceClass = null; - static measurement: UsbDeviceClass = null; - static palmSync: UsbDeviceClass = null; - static personalHealthcare: UsbDeviceClass = null; - static physical: UsbDeviceClass = null; - static vendorSpecific: UsbDeviceClass = null; - - } - export class UsbDeviceDescriptor implements IUsbDeviceDescriptor { - bcdDeviceRevision: number; - bcdUsb: number; - maxPacketSize0: number; - numberOfConfigurations: number; - productId: number; - vendorId: number; - - } - export class UsbEndpointDescriptor implements IUsbEndpointDescriptor { - asBulkInEndpointDescriptor: UsbBulkInEndpointDescriptor; - asBulkOutEndpointDescriptor: UsbBulkOutEndpointDescriptor; - asInterruptInEndpointDescriptor: UsbInterruptInEndpointDescriptor; - asInterruptOutEndpointDescriptor: UsbInterruptOutEndpointDescriptor; - direction: UsbTransferDirection; - endpointNumber: number; - endpointType: UsbEndpointType; - - static tryParse(descriptor: UsbDescriptor): { returnValue: Boolean, parsed: UsbEndpointDescriptor } { - throw new Error('shimmed function UsbEndpointDescriptor.tryParse'); - } - - static parse(descriptor: UsbDescriptor): UsbEndpointDescriptor { - throw new Error('shimmed function UsbEndpointDescriptor.parse'); - } - - } - export enum UsbEndpointType { - control, - isochronous, - bulk, - interrupt, - } - export class UsbInterface implements IUsbInterface { - bulkInPipes: UsbBulkInPipe[]; - bulkOutPipes: UsbBulkOutPipe[]; - descriptors: UsbDescriptor[]; - interfaceNumber: number; - interfaceSettings: UsbInterfaceSetting[]; - interruptInPipes: UsbInterruptInPipe[]; - interruptOutPipes: UsbInterruptOutPipe[]; - - } - export class UsbInterfaceDescriptor implements IUsbInterfaceDescriptor { - alternateSettingNumber: number; - classCode: number; - interfaceNumber: number; - protocolCode: number; - subclassCode: number; - - static tryParse(descriptor: UsbDescriptor): { returnValue: Boolean, parsed: UsbInterfaceDescriptor } { - throw new Error('shimmed function UsbInterfaceDescriptor.tryParse'); - } - - static parse(descriptor: UsbDescriptor): UsbInterfaceDescriptor { - throw new Error('shimmed function UsbInterfaceDescriptor.parse'); - } - - } - export class UsbInterfaceSetting implements IUsbInterfaceSetting { - bulkInEndpoints: UsbBulkInEndpointDescriptor[]; - bulkOutEndpoints: UsbBulkOutEndpointDescriptor[]; - descriptors: UsbDescriptor[]; - interfaceDescriptor: UsbInterfaceDescriptor; - interruptInEndpoints: UsbInterruptInEndpointDescriptor[]; - interruptOutEndpoints: UsbInterruptOutEndpointDescriptor[]; - selected: Boolean; - - selectSettingAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UsbInterfaceSetting.selectSettingAsync'); - } - - } - export class UsbInterruptInEndpointDescriptor implements IUsbInterruptInEndpointDescriptor { - endpointNumber: number; - interval: number; - maxPacketSize: number; - pipe: UsbInterruptInPipe; - - } - export class UsbInterruptInEventArgs implements IUsbInterruptInEventArgs { - interruptData: Storage.Streams.IBuffer; - - } - export class UsbInterruptInPipe implements IUsbInterruptInPipe { - endpointDescriptor: UsbInterruptInEndpointDescriptor; - - clearStallAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UsbInterruptInPipe.clearStallAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UsbInterruptInPipe::addEventListener: ${name}`); - switch (name) { - case "datareceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class UsbInterruptOutEndpointDescriptor implements IUsbInterruptOutEndpointDescriptor { - endpointNumber: number; - interval: number; - maxPacketSize: number; - pipe: UsbInterruptOutPipe; - - } - export class UsbInterruptOutPipe implements IUsbInterruptOutPipe { - writeOptions: UsbWriteOptions; - endpointDescriptor: UsbInterruptOutEndpointDescriptor; - outputStream: Storage.Streams.IOutputStream; - - clearStallAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function UsbInterruptOutPipe.clearStallAsync'); - } - - } - export enum UsbReadOptions { - none, - autoClearStall, - overrideAutomaticBufferManagement, - ignoreShortPacket = 4, - allowPartialReads = 8, - } - export class UsbSetupPacket implements IUsbSetupPacket { - // constructor(eightByteBuffer: Storage.Streams.IBuffer); - // constructor(); - constructor(eightByteBuffer: Storage.Streams.IBuffer) {} - - value: number = 0; - requestType: UsbControlRequestType = null; - request: number = 0; - length: number = 0; - index: number = 0; - - } - export enum UsbTransferDirection { - out, - in, - } - export enum UsbWriteOptions { - none, - autoClearStall, - shortPacketTerminate, - } - } - export namespace WiFi { - export enum WiFiAccessStatus { - unspecified, - allowed, - deniedByUser, - deniedBySystem, - } - export class WiFiAdapter implements IWiFiAdapter, IWiFiAdapter2 { - networkAdapter: Networking.Connectivity.NetworkAdapter; - networkReport: WiFiNetworkReport; - - scanAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WiFiAdapter.scanAsync'); - } - - connectAsync(availableNetwork: WiFiAvailableNetwork, reconnectionKind: WiFiReconnectionKind): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.connectAsync'); - } - - connectAsync_1(availableNetwork: WiFiAvailableNetwork, reconnectionKind: WiFiReconnectionKind, passwordCredential: Security.Credentials.PasswordCredential): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.connectAsync_1'); - } - - connectAsync_2(availableNetwork: WiFiAvailableNetwork, reconnectionKind: WiFiReconnectionKind, passwordCredential: Security.Credentials.PasswordCredential, ssid: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.connectAsync_2'); - } - - disconnect(): void { - console.warn('shimmed function WiFiAdapter.disconnect'); - } - - getWpsConfigurationAsync(availableNetwork: WiFiAvailableNetwork): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.getWpsConfigurationAsync'); - } - - connectAsync_3(availableNetwork: WiFiAvailableNetwork, reconnectionKind: WiFiReconnectionKind, passwordCredential: Security.Credentials.PasswordCredential, ssid: string, connectionMethod: WiFiConnectionMethod): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.connectAsync_3'); - } - - static findAllAdaptersAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.findAllAdaptersAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function WiFiAdapter.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.fromIdAsync'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiAdapter.requestAccessAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WiFiAdapter::addEventListener: ${name}`); - switch (name) { - case "availablenetworkschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class WiFiAvailableNetwork implements IWiFiAvailableNetwork { - beaconInterval: number; - bssid: string; - channelCenterFrequencyInKilohertz: number; - isWiFiDirect: Boolean; - networkKind: WiFiNetworkKind; - networkRssiInDecibelMilliwatts: number; - phyKind: WiFiPhyKind; - securitySettings: Networking.Connectivity.NetworkSecuritySettings; - signalBars: number; - ssid: string; - uptime: number; - - } - export enum WiFiConnectionMethod { - default, - wpsPin, - wpsPushButton, - } - export class WiFiConnectionResult implements IWiFiConnectionResult { - connectionStatus: WiFiConnectionStatus; - - } - export enum WiFiConnectionStatus { - unspecifiedFailure, - success, - accessRevoked, - invalidCredential, - networkNotAvailable, - timeout, - unsupportedAuthenticationProtocol, - } - export enum WiFiNetworkKind { - any, - infrastructure, - adhoc, - } - export class WiFiNetworkReport implements IWiFiNetworkReport { - availableNetworks: WiFiAvailableNetwork[]; - timestamp: Date; - - } - export enum WiFiPhyKind { - unknown, - fhss, - dsss, - irbaseband, - ofdm, - hrdsss, - erp, - ht, - vht, - dmg, - he, - } - export enum WiFiReconnectionKind { - automatic, - manual, - } - export class WiFiWpsConfigurationResult implements IWiFiWpsConfigurationResult { - status: WiFiWpsConfigurationStatus; - supportedWpsKinds: WiFiWpsKind[]; - - } - export enum WiFiWpsConfigurationStatus { - unspecifiedFailure, - success, - timeout, - } - export enum WiFiWpsKind { - unknown, - pin, - pushButton, - nfc, - ethernet, - usb, - } - } - export namespace WiFiDirect { - export namespace Services { - export class WiFiDirectService implements IWiFiDirectService { - sessionInfo: Storage.Streams.IBuffer; - preferGroupOwnerMode: Boolean; - remoteServiceInfo: Storage.Streams.IBuffer; - serviceError: WiFiDirectServiceError; - supportedConfigurationMethods: WiFiDirectServiceConfigurationMethod[]; - - getProvisioningInfoAsync(selectedConfigurationMethod: WiFiDirectServiceConfigurationMethod): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectService.getProvisioningInfoAsync'); - } - - connectAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectService.connectAsync'); - } - - connectAsync_1(pin: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectService.connectAsync_1'); - } - - static getSelector(serviceName: string): string { - throw new Error('shimmed function WiFiDirectService.getSelector'); - } - - static getSelector_1(serviceName: string, serviceInfoFilter: Storage.Streams.IBuffer): string { - throw new Error('shimmed function WiFiDirectService.getSelector_1'); - } - - static fromIdAsync(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectService.fromIdAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WiFiDirectService::addEventListener: ${name}`); - switch (name) { - case "sessiondeferred": // Foundation.TypedEventHandler - break; - } - - } - } - export enum WiFiDirectServiceAdvertisementStatus { - created, - started, - stopped, - aborted, - } - export class WiFiDirectServiceAdvertiser implements IWiFiDirectServiceAdvertiser { - // constructor(serviceName: string); - constructor(serviceName: string) {} - - serviceStatus: WiFiDirectServiceStatus; - serviceInfo: Storage.Streams.IBuffer; - preferGroupOwnerMode: Boolean; - deferredSessionInfo: Storage.Streams.IBuffer; - customServiceStatusCode: number; - autoAcceptSession: Boolean; - serviceError: WiFiDirectServiceError; - preferredConfigurationMethods: WiFiDirectServiceConfigurationMethod[]; - serviceName: string; - serviceNamePrefixes: string[]; - advertisementStatus: WiFiDirectServiceAdvertisementStatus; - - connectAsync(deviceInfo: Enumeration.DeviceInformation): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectServiceAdvertiser.connectAsync'); - } - - connectAsync_1(deviceInfo: Enumeration.DeviceInformation, pin: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectServiceAdvertiser.connectAsync_1'); - } - - start(): void { - console.warn('shimmed function WiFiDirectServiceAdvertiser.start'); - } - - stop(): void { - console.warn('shimmed function WiFiDirectServiceAdvertiser.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WiFiDirectServiceAdvertiser::addEventListener: ${name}`); - switch (name) { - case "advertisementstatuschanged": // Foundation.TypedEventHandler - case "autoacceptsessionconnected": // Foundation.TypedEventHandler - case "sessionrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class WiFiDirectServiceAutoAcceptSessionConnectedEventArgs implements IWiFiDirectServiceAutoAcceptSessionConnectedEventArgs { - session: WiFiDirectServiceSession; - sessionInfo: Storage.Streams.IBuffer; - - } - export enum WiFiDirectServiceConfigurationMethod { - default, - pinDisplay, - pinEntry, - } - export enum WiFiDirectServiceError { - success, - radioNotAvailable, - resourceInUse, - unsupportedHardware, - noHardware, - } - export enum WiFiDirectServiceIPProtocol { - tcp = 6, - udp = 17, - } - export class WiFiDirectServiceProvisioningInfo implements IWiFiDirectServiceProvisioningInfo { - isGroupFormationNeeded: Boolean; - selectedConfigurationMethod: WiFiDirectServiceConfigurationMethod; - - } - export class WiFiDirectServiceRemotePortAddedEventArgs implements IWiFiDirectServiceRemotePortAddedEventArgs { - endpointPairs: Networking.EndpointPair[]; - protocol: WiFiDirectServiceIPProtocol; - - } - export class WiFiDirectServiceSession implements IWiFiDirectServiceSession, Foundation.IClosable { - advertisementId: number; - errorStatus: WiFiDirectServiceSessionErrorStatus; - serviceAddress: string; - serviceName: string; - sessionAddress: string; - sessionId: number; - status: WiFiDirectServiceSessionStatus; - - getConnectionEndpointPairs(): Networking.EndpointPair[] { - throw new Error('shimmed function WiFiDirectServiceSession.getConnectionEndpointPairs'); - } - - addStreamSocketListenerAsync(value: Networking.Sockets.StreamSocketListener): Foundation.IAsyncAction { - throw new Error('shimmed function WiFiDirectServiceSession.addStreamSocketListenerAsync'); - } - - addDatagramSocketAsync(value: Networking.Sockets.DatagramSocket): Foundation.IAsyncAction { - throw new Error('shimmed function WiFiDirectServiceSession.addDatagramSocketAsync'); - } - - close(): void { - console.warn('shimmed function WiFiDirectServiceSession.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WiFiDirectServiceSession::addEventListener: ${name}`); - switch (name) { - case "remoteportadded": // Foundation.TypedEventHandler - case "sessionstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class WiFiDirectServiceSessionDeferredEventArgs implements IWiFiDirectServiceSessionDeferredEventArgs { - deferredSessionInfo: Storage.Streams.IBuffer; - - } - export enum WiFiDirectServiceSessionErrorStatus { - ok, - disassociated, - localClose, - remoteClose, - systemFailure, - noResponseFromRemote, - } - export class WiFiDirectServiceSessionRequest implements IWiFiDirectServiceSessionRequest, Foundation.IClosable { - deviceInformation: Enumeration.DeviceInformation; - provisioningInfo: WiFiDirectServiceProvisioningInfo; - sessionInfo: Storage.Streams.IBuffer; - - close(): void { - console.warn('shimmed function WiFiDirectServiceSessionRequest.close'); - } - - } - export class WiFiDirectServiceSessionRequestedEventArgs implements IWiFiDirectServiceSessionRequestedEventArgs { - getSessionRequest(): WiFiDirectServiceSessionRequest { - throw new Error('shimmed function WiFiDirectServiceSessionRequestedEventArgs.getSessionRequest'); - } - - } - export enum WiFiDirectServiceSessionStatus { - closed, - initiated, - requested, - open, - } - export enum WiFiDirectServiceStatus { - available, - busy, - custom, - } - } - export class WiFiDirectAdvertisement implements IWiFiDirectAdvertisement, IWiFiDirectAdvertisement2 { - listenStateDiscoverability: WiFiDirectAdvertisementListenStateDiscoverability; - isAutonomousGroupOwnerEnabled: Boolean; - informationElements: WiFiDirectInformationElement[]; - legacySettings: WiFiDirectLegacySettings; - supportedConfigurationMethods: WiFiDirectConfigurationMethod[]; - - } - export enum WiFiDirectAdvertisementListenStateDiscoverability { - none, - normal, - intensive, - } - export class WiFiDirectAdvertisementPublisher implements IWiFiDirectAdvertisementPublisher { - // constructor(); - advertisement: WiFiDirectAdvertisement = null; - status: WiFiDirectAdvertisementPublisherStatus = WiFiDirectAdvertisementPublisherStatus.created; - - start(): void { - console.warn('shimmed function WiFiDirectAdvertisementPublisher.start'); - } - - stop(): void { - console.warn('shimmed function WiFiDirectAdvertisementPublisher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WiFiDirectAdvertisementPublisher::addEventListener: ${name}`); - switch (name) { - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum WiFiDirectAdvertisementPublisherStatus { - created, - started, - stopped, - aborted, - } - export class WiFiDirectAdvertisementPublisherStatusChangedEventArgs implements IWiFiDirectAdvertisementPublisherStatusChangedEventArgs { - error: WiFiDirectError; - status: WiFiDirectAdvertisementPublisherStatus; - - } - export enum WiFiDirectConfigurationMethod { - providePin, - displayPin, - pushButton, - } - export class WiFiDirectConnectionListener implements IWiFiDirectConnectionListener { - // constructor(); - addEventListener(name: string, handler: Function) { - console.warn(`WiFiDirectConnectionListener::addEventListener: ${name}`); - switch (name) { - case "connectionrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class WiFiDirectConnectionParameters implements IWiFiDirectConnectionParameters, IWiFiDirectConnectionParameters2, Enumeration.IDevicePairingSettings { - // constructor(); - groupOwnerIntent: number = 14; - preferredPairingProcedure: WiFiDirectPairingProcedure = WiFiDirectPairingProcedure.groupOwnerNegotiation; - preferenceOrderedConfigurationMethods: WiFiDirectConfigurationMethod[] = [ ]; - - static getDevicePairingKinds(configurationMethod: WiFiDirectConfigurationMethod): Enumeration.DevicePairingKinds { - throw new Error('shimmed function WiFiDirectConnectionParameters.getDevicePairingKinds'); - } - - } - export class WiFiDirectConnectionRequest implements IWiFiDirectConnectionRequest, Foundation.IClosable { - deviceInformation: Enumeration.DeviceInformation; - - close(): void { - console.warn('shimmed function WiFiDirectConnectionRequest.close'); - } - - } - export class WiFiDirectConnectionRequestedEventArgs implements IWiFiDirectConnectionRequestedEventArgs { - getConnectionRequest(): WiFiDirectConnectionRequest { - throw new Error('shimmed function WiFiDirectConnectionRequestedEventArgs.getConnectionRequest'); - } - - } - export enum WiFiDirectConnectionStatus { - disconnected, - connected, - } - export class WiFiDirectDevice implements IWiFiDirectDevice, Foundation.IClosable { - connectionStatus: WiFiDirectConnectionStatus; - deviceId: string; - - getConnectionEndpointPairs(): Networking.EndpointPair[] { - throw new Error('shimmed function WiFiDirectDevice.getConnectionEndpointPairs'); - } - - close(): void { - console.warn('shimmed function WiFiDirectDevice.close'); - } - - static getDeviceSelector(type: WiFiDirectDeviceSelectorType): string { - throw new Error('shimmed function WiFiDirectDevice.getDeviceSelector'); - } - - static fromIdAsync(deviceId: string, connectionParameters: WiFiDirectConnectionParameters): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectDevice.fromIdAsync'); - } - - static getDeviceSelector_1(): string { - throw new Error('shimmed function WiFiDirectDevice.getDeviceSelector_1'); - } - - static fromIdAsync_1(deviceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WiFiDirectDevice.fromIdAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WiFiDirectDevice::addEventListener: ${name}`); - switch (name) { - case "connectionstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum WiFiDirectDeviceSelectorType { - deviceInterface, - associationEndpoint, - } - export enum WiFiDirectError { - success, - radioNotAvailable, - resourceInUse, - } - export class WiFiDirectInformationElement implements IWiFiDirectInformationElement { - // constructor(); - value: Storage.Streams.IBuffer = null; - ouiType: number = 0; - oui: Storage.Streams.IBuffer = null; - - static createFromBuffer(buffer: Storage.Streams.IBuffer): WiFiDirectInformationElement[] { - throw new Error('shimmed function WiFiDirectInformationElement.createFromBuffer'); - } - - static createFromDeviceInformation(deviceInformation: Enumeration.DeviceInformation): WiFiDirectInformationElement[] { - throw new Error('shimmed function WiFiDirectInformationElement.createFromDeviceInformation'); - } - - } - export class WiFiDirectLegacySettings implements IWiFiDirectLegacySettings { - ssid: string; - passphrase: Security.Credentials.PasswordCredential; - isEnabled: Boolean; - - } - export enum WiFiDirectPairingProcedure { - groupOwnerNegotiation, - invitation, - } - } - } - export namespace Embedded { - export namespace DeviceLockdown { - export interface DeviceLockdownContract { - } - export class DeviceLockdownProfile { - static getSupportedLockdownProfiles(): string[] { - throw new Error('shimmed function DeviceLockdownProfile.getSupportedLockdownProfiles'); - } - - static getCurrentLockdownProfile(): string { - throw new Error('shimmed function DeviceLockdownProfile.getCurrentLockdownProfile'); - } - - static applyLockdownProfileAsync(profileID: string): Foundation.IAsyncAction { - throw new Error('shimmed function DeviceLockdownProfile.applyLockdownProfileAsync'); - } - - static getLockdownProfileInformation(profileID: string): DeviceLockdownProfileInformation { - throw new Error('shimmed function DeviceLockdownProfile.getLockdownProfileInformation'); - } - - } - export class DeviceLockdownProfileInformation implements IDeviceLockdownProfileInformation { - name: string; - - } - } - } - export namespace Foundation { - export type AsyncActionCompletedHandler = (asyncStatus: AsyncStatus) => void; - export type AsyncActionProgressHandler = (progressInfo: TProgress) => void; - export type AsyncActionWithProgressCompletedHandler = (asyncStatus: AsyncStatus) => void; - export type AsyncOperationCompletedHandler = (asyncStatus: AsyncStatus) => void; - export type AsyncOperationProgressHandler = (progressInfo: TProgress) => void; - export type AsyncOperationWithProgressCompletedHandler = (asyncStatus: AsyncStatus) => void; - export enum AsyncStatus { - canceled = 2, - completed = 1, - error = 3, - started = 0, - } - export namespace Collections { - export enum CollectionChange { - reset, - itemInserted, - itemRemoved, - itemChanged, - } - export interface IIterable { - first(): IIterator; - } - export interface IIterator { - current: T; - hasCurrent: Boolean; - moveNext(): Boolean; - getMany(items: T[]): number; - } - export interface IKeyValuePair { - key: K; - value: V; - } - export interface IMap extends IIterable> { - size: number; - lookup(key: K): V; - hasKey(key: K): Boolean; - getView(): K[]; - insert(key: K, value: V): Boolean; - clear(): void; - } - export interface IMapChangedEventArgs { - collectionChange: CollectionChange; - key: K; - } - export interface IMapView extends IIterable> { - size: number; - lookup(key: K): V; - hasKey(key: K): Boolean; - split(): { first: K[], second: K[] }; - } - export interface IObservableMap extends IMap, IIterable> { - } - export interface IObservableVector extends IVector, IIterable { - } - export interface IPropertySet extends IObservableMap, IMap, IIterable> { - } - export interface IVector extends IIterable { - size: number; - getAt(index: number): T; - getView(): T[]; - indexOf(value: T): { returnValue: Boolean, index: number }; - setAt(index: number, value: T): void; - insertAt(index: number, value: T): void; - removeAt(index: number): void; - append(value: T): void; - removeAtEnd(): void; - clear(): void; - getMany(startIndex: number, items: T[]): number; - replaceAll(items: T[]): void; - } - export interface IVectorChangedEventArgs { - collectionChange: CollectionChange; - index: number; - } - export interface IVectorView extends IIterable { - size: number; - getAt(index: number): T; - indexOf(value: T): { returnValue: Boolean, index: number }; - getMany(startIndex: number, items: T[]): number; - } - export type MapChangedEventHandler = (event: IMapChangedEventArgs) => void; - export class PropertySet implements IPropertySet, IObservableMap, IMap, IIterable> { - // constructor(); - size: number; - - lookup(key: string): any { - throw new Error('shimmed function PropertySet.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function PropertySet.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function PropertySet.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function PropertySet.insert'); - } - - clear(): void { - console.warn('shimmed function PropertySet.clear'); - } - - first(): IIterator> { - throw new Error('shimmed function PropertySet.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PropertySet::addEventListener: ${name}`); - switch (name) { - case "mapchanged": // MapChangedEventHandler - break; - } - - } - } - export class StringMap implements IMap, IIterable>, IObservableMap { - // constructor(); - size: number; - - lookup(key: string): string { - throw new Error('shimmed function StringMap.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function StringMap.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function StringMap.getView'); - } - - insert(key: string, value: string): Boolean { - throw new Error('shimmed function StringMap.insert'); - } - - clear(): void { - console.warn('shimmed function StringMap.clear'); - } - - first(): IIterator> { - throw new Error('shimmed function StringMap.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StringMap::addEventListener: ${name}`); - switch (name) { - case "mapchanged": // MapChangedEventHandler - break; - } - - } - } - export class ValueSet implements IPropertySet, IObservableMap, IMap, IIterable> { - // constructor(); - size: number; - - lookup(key: string): any { - throw new Error('shimmed function ValueSet.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ValueSet.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function ValueSet.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function ValueSet.insert'); - } - - clear(): void { - console.warn('shimmed function ValueSet.clear'); - } - - first(): IIterator> { - throw new Error('shimmed function ValueSet.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ValueSet::addEventListener: ${name}`); - switch (name) { - case "mapchanged": // MapChangedEventHandler - break; - } - - } - } - export type VectorChangedEventHandler = (event: IVectorChangedEventArgs) => void; - } - export interface DateTime { - universalTime: number; - } - export class Deferral implements IDeferral, IClosable { - // constructor(handler: DeferralCompletedHandler); - constructor(handler: DeferralCompletedHandler) {} - - complete(): void { - console.warn('shimmed function Deferral.complete'); - } - - close(): void { - console.warn('shimmed function Deferral.close'); - } - - } - export type DeferralCompletedHandler = () => void; - export namespace Diagnostics { - export class AsyncCausalityTracer { - static traceOperationCreation(traceLevel: CausalityTraceLevel, source: CausalitySource, platformId: string, operationId: number, operationName: string, relatedContext: number): void { - console.warn('shimmed function AsyncCausalityTracer.traceOperationCreation'); - } - - static traceOperationCompletion(traceLevel: CausalityTraceLevel, source: CausalitySource, platformId: string, operationId: number, status: AsyncStatus): void { - console.warn('shimmed function AsyncCausalityTracer.traceOperationCompletion'); - } - - static traceOperationRelation(traceLevel: CausalityTraceLevel, source: CausalitySource, platformId: string, operationId: number, relation: CausalityRelation): void { - console.warn('shimmed function AsyncCausalityTracer.traceOperationRelation'); - } - - static traceSynchronousWorkStart(traceLevel: CausalityTraceLevel, source: CausalitySource, platformId: string, operationId: number, work: CausalitySynchronousWork): void { - console.warn('shimmed function AsyncCausalityTracer.traceSynchronousWorkStart'); - } - - static traceSynchronousWorkCompletion(traceLevel: CausalityTraceLevel, source: CausalitySource, work: CausalitySynchronousWork): void { - console.warn('shimmed function AsyncCausalityTracer.traceSynchronousWorkCompletion'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`AsyncCausalityTracer::addEventListener: ${name}`); - switch (name) { - case "tracingstatuschanged": // /* System.EventHandler`1[[Windows.Foundation.Diagnostics.TracingStatusChangedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export enum CausalityRelation { - assignDelegate, - join, - choice, - cancel, - error, - } - export enum CausalitySource { - application, - library, - system, - } - export enum CausalitySynchronousWork { - completionNotification, - progressNotification, - execution, - } - export enum CausalityTraceLevel { - required, - important, - verbose, - } - export class ErrorDetails implements IErrorDetails { - description: string; - helpUri: Uri; - longDescription: string; - - static createFromHResultAsync(errorCode: number): IAsyncOperation { - throw new Error('shimmed function ErrorDetails.createFromHResultAsync'); - } - - } - export enum ErrorOptions { - none, - suppressExceptions, - forceExceptions, - useSetErrorInfo = 4, - suppressSetErrorInfo = 8, - } - export class FileLoggingSession implements IFileLoggingSession, IClosable { - // constructor(name: string); - constructor(name: string) {} - - name: string; - - addLoggingChannel(loggingChannel: ILoggingChannel): void { - console.warn('shimmed function FileLoggingSession.addLoggingChannel'); - } - - addLoggingChannel_1(loggingChannel: ILoggingChannel, maxLevel: LoggingLevel): void { - console.warn('shimmed function FileLoggingSession.addLoggingChannel_1'); - } - - removeLoggingChannel(loggingChannel: ILoggingChannel): void { - console.warn('shimmed function FileLoggingSession.removeLoggingChannel'); - } - - closeAndSaveToFileAsync(): IAsyncOperation { - throw new Error('shimmed function FileLoggingSession.closeAndSaveToFileAsync'); - } - - close(): void { - console.warn('shimmed function FileLoggingSession.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FileLoggingSession::addEventListener: ${name}`); - switch (name) { - case "logfilegenerated": // TypedEventHandler - break; - } - - } - } - export interface IErrorReportingSettings { - setErrorOptions(value: ErrorOptions): void; - getErrorOptions(): ErrorOptions; - } - export interface IFileLoggingSession extends IClosable { - name: string; - addLoggingChannel(loggingChannel: ILoggingChannel): void; - addLoggingChannel_1(loggingChannel: ILoggingChannel, maxLevel: LoggingLevel): void; - removeLoggingChannel(loggingChannel: ILoggingChannel): void; - closeAndSaveToFileAsync(): IAsyncOperation; - } - export interface ILoggingChannel extends IClosable { - enabled: Boolean; - level: LoggingLevel; - name: string; - logMessage(eventString: string): void; - logMessage_1(eventString: string, level: LoggingLevel): void; - logValuePair(value1: string, value2: number): void; - logValuePair_1(value1: string, value2: number, level: LoggingLevel): void; - } - export interface ILoggingSession extends IClosable { - name: string; - saveToFileAsync(folder: Storage.IStorageFolder, fileName: string): IAsyncOperation; - addLoggingChannel(loggingChannel: ILoggingChannel): void; - addLoggingChannel_1(loggingChannel: ILoggingChannel, maxLevel: LoggingLevel): void; - removeLoggingChannel(loggingChannel: ILoggingChannel): void; - } - export interface ILoggingTarget { - isEnabled(): Boolean; - isEnabled_1(level: LoggingLevel): Boolean; - isEnabled_2(level: LoggingLevel, keywords: number): Boolean; - logEvent(eventName: string): void; - logEvent_1(eventName: string, fields: LoggingFields): void; - logEvent_2(eventName: string, fields: LoggingFields, level: LoggingLevel): void; - logEvent_3(eventName: string, fields: LoggingFields, level: LoggingLevel, options: LoggingOptions): void; - startActivity(startEventName: string): LoggingActivity; - startActivity_1(startEventName: string, fields: LoggingFields): LoggingActivity; - startActivity_2(startEventName: string, fields: LoggingFields, level: LoggingLevel): LoggingActivity; - startActivity_3(startEventName: string, fields: LoggingFields, level: LoggingLevel, options: LoggingOptions): LoggingActivity; - } - export class LogFileGeneratedEventArgs implements ILogFileGeneratedEventArgs { - file: Storage.StorageFile; - - } - export class LoggingActivity implements ILoggingActivity, IClosable, ILoggingActivity2, ILoggingTarget { - // constructor(activityName: string, loggingChannel: ILoggingChannel); - // constructor(activityName: string, loggingChannel: ILoggingChannel, level: LoggingLevel); - constructor(activityName: string, loggingChannel: ILoggingChannel, level: LoggingLevel) {} - - id: string; - name: string; - channel: LoggingChannel; - - close(): void { - console.warn('shimmed function LoggingActivity.close'); - } - - stopActivity(stopEventName: string): void { - console.warn('shimmed function LoggingActivity.stopActivity'); - } - - stopActivity_1(stopEventName: string, fields: LoggingFields): void { - console.warn('shimmed function LoggingActivity.stopActivity_1'); - } - - stopActivity_2(stopEventName: string, fields: LoggingFields, options: LoggingOptions): void { - console.warn('shimmed function LoggingActivity.stopActivity_2'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function LoggingActivity.isEnabled'); - } - - isEnabled_1(level: LoggingLevel): Boolean { - throw new Error('shimmed function LoggingActivity.isEnabled_1'); - } - - isEnabled_2(level: LoggingLevel, keywords: number): Boolean { - throw new Error('shimmed function LoggingActivity.isEnabled_2'); - } - - logEvent(eventName: string): void { - console.warn('shimmed function LoggingActivity.logEvent'); - } - - logEvent_1(eventName: string, fields: LoggingFields): void { - console.warn('shimmed function LoggingActivity.logEvent_1'); - } - - logEvent_2(eventName: string, fields: LoggingFields, level: LoggingLevel): void { - console.warn('shimmed function LoggingActivity.logEvent_2'); - } - - logEvent_3(eventName: string, fields: LoggingFields, level: LoggingLevel, options: LoggingOptions): void { - console.warn('shimmed function LoggingActivity.logEvent_3'); - } - - startActivity(startEventName: string): LoggingActivity { - throw new Error('shimmed function LoggingActivity.startActivity'); - } - - startActivity_1(startEventName: string, fields: LoggingFields): LoggingActivity { - throw new Error('shimmed function LoggingActivity.startActivity_1'); - } - - startActivity_2(startEventName: string, fields: LoggingFields, level: LoggingLevel): LoggingActivity { - throw new Error('shimmed function LoggingActivity.startActivity_2'); - } - - startActivity_3(startEventName: string, fields: LoggingFields, level: LoggingLevel, options: LoggingOptions): LoggingActivity { - throw new Error('shimmed function LoggingActivity.startActivity_3'); - } - - } - export class LoggingChannel implements ILoggingChannel, IClosable, ILoggingChannel2, ILoggingTarget { - // constructor(name: string, options: LoggingChannelOptions); - // constructor(name: string, options: LoggingChannelOptions, id: string); - // constructor(name: string); - constructor(name: string, options: LoggingChannelOptions, id: string) {} - - enabled: Boolean; - level: LoggingLevel; - name: string; - id: string; - - logMessage(eventString: string): void { - console.warn('shimmed function LoggingChannel.logMessage'); - } - - logMessage_1(eventString: string, level: LoggingLevel): void { - console.warn('shimmed function LoggingChannel.logMessage_1'); - } - - logValuePair(value1: string, value2: number): void { - console.warn('shimmed function LoggingChannel.logValuePair'); - } - - logValuePair_1(value1: string, value2: number, level: LoggingLevel): void { - console.warn('shimmed function LoggingChannel.logValuePair_1'); - } - - close(): void { - console.warn('shimmed function LoggingChannel.close'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function LoggingChannel.isEnabled'); - } - - isEnabled_1(level: LoggingLevel): Boolean { - throw new Error('shimmed function LoggingChannel.isEnabled_1'); - } - - isEnabled_2(level: LoggingLevel, keywords: number): Boolean { - throw new Error('shimmed function LoggingChannel.isEnabled_2'); - } - - logEvent(eventName: string): void { - console.warn('shimmed function LoggingChannel.logEvent'); - } - - logEvent_1(eventName: string, fields: LoggingFields): void { - console.warn('shimmed function LoggingChannel.logEvent_1'); - } - - logEvent_2(eventName: string, fields: LoggingFields, level: LoggingLevel): void { - console.warn('shimmed function LoggingChannel.logEvent_2'); - } - - logEvent_3(eventName: string, fields: LoggingFields, level: LoggingLevel, options: LoggingOptions): void { - console.warn('shimmed function LoggingChannel.logEvent_3'); - } - - startActivity(startEventName: string): LoggingActivity { - throw new Error('shimmed function LoggingChannel.startActivity'); - } - - startActivity_1(startEventName: string, fields: LoggingFields): LoggingActivity { - throw new Error('shimmed function LoggingChannel.startActivity_1'); - } - - startActivity_2(startEventName: string, fields: LoggingFields, level: LoggingLevel): LoggingActivity { - throw new Error('shimmed function LoggingChannel.startActivity_2'); - } - - startActivity_3(startEventName: string, fields: LoggingFields, level: LoggingLevel, options: LoggingOptions): LoggingActivity { - throw new Error('shimmed function LoggingChannel.startActivity_3'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LoggingChannel::addEventListener: ${name}`); - switch (name) { - case "loggingenabled": // TypedEventHandler - break; - } - - } - } - export class LoggingChannelOptions implements ILoggingChannelOptions { - // constructor(); - // constructor(group: string); - constructor(group: string) {} - - group: string = '00000000-0000-0000-0000-000000000000'; - - } - export enum LoggingFieldFormat { - default, - hidden, - string, - boolean, - hexadecimal, - processId, - threadId, - port, - ipv4Address, - ipv6Address, - socketAddress, - xml, - json, - win32Error, - ntstatus, - hresult, - fileTime, - signed, - unsigned, - } - export class LoggingFields implements ILoggingFields { - // constructor(); - clear(): void { - console.warn('shimmed function LoggingFields.clear'); - } - - beginStruct(name: string): void { - console.warn('shimmed function LoggingFields.beginStruct'); - } - - beginStruct_1(name: string, tags: number): void { - console.warn('shimmed function LoggingFields.beginStruct_1'); - } - - endStruct(): void { - console.warn('shimmed function LoggingFields.endStruct'); - } - - addEmpty(name: string): void { - console.warn('shimmed function LoggingFields.addEmpty'); - } - - addEmpty_1(name: string, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addEmpty_1'); - } - - addEmpty_2(name: string, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addEmpty_2'); - } - - addUInt8(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addUInt8'); - } - - addUInt8_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt8_1'); - } - - addUInt8_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt8_2'); - } - - addUInt8Array(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addUInt8Array'); - } - - addUInt8Array_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt8Array_1'); - } - - addUInt8Array_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt8Array_2'); - } - - addInt16(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addInt16'); - } - - addInt16_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addInt16_1'); - } - - addInt16_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addInt16_2'); - } - - addInt16Array(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addInt16Array'); - } - - addInt16Array_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addInt16Array_1'); - } - - addInt16Array_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addInt16Array_2'); - } - - addUInt16(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addUInt16'); - } - - addUInt16_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt16_1'); - } - - addUInt16_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt16_2'); - } - - addUInt16Array(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addUInt16Array'); - } - - addUInt16Array_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt16Array_1'); - } - - addUInt16Array_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt16Array_2'); - } - - addInt32(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addInt32'); - } - - addInt32_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addInt32_1'); - } - - addInt32_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addInt32_2'); - } - - addInt32Array(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addInt32Array'); - } - - addInt32Array_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addInt32Array_1'); - } - - addInt32Array_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addInt32Array_2'); - } - - addUInt32(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addUInt32'); - } - - addUInt32_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt32_1'); - } - - addUInt32_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt32_2'); - } - - addUInt32Array(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addUInt32Array'); - } - - addUInt32Array_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt32Array_1'); - } - - addUInt32Array_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt32Array_2'); - } - - addInt64(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addInt64'); - } - - addInt64_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addInt64_1'); - } - - addInt64_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addInt64_2'); - } - - addInt64Array(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addInt64Array'); - } - - addInt64Array_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addInt64Array_1'); - } - - addInt64Array_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addInt64Array_2'); - } - - addUInt64(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addUInt64'); - } - - addUInt64_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt64_1'); - } - - addUInt64_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt64_2'); - } - - addUInt64Array(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addUInt64Array'); - } - - addUInt64Array_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addUInt64Array_1'); - } - - addUInt64Array_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addUInt64Array_2'); - } - - addSingle(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addSingle'); - } - - addSingle_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addSingle_1'); - } - - addSingle_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addSingle_2'); - } - - addSingleArray(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addSingleArray'); - } - - addSingleArray_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addSingleArray_1'); - } - - addSingleArray_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addSingleArray_2'); - } - - addDouble(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addDouble'); - } - - addDouble_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addDouble_1'); - } - - addDouble_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addDouble_2'); - } - - addDoubleArray(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addDoubleArray'); - } - - addDoubleArray_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addDoubleArray_1'); - } - - addDoubleArray_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addDoubleArray_2'); - } - - addChar16(name: string, value: string): void { - console.warn('shimmed function LoggingFields.addChar16'); - } - - addChar16_1(name: string, value: string, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addChar16_1'); - } - - addChar16_2(name: string, value: string, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addChar16_2'); - } - - addChar16Array(name: string, value: string[]): void { - console.warn('shimmed function LoggingFields.addChar16Array'); - } - - addChar16Array_1(name: string, value: string[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addChar16Array_1'); - } - - addChar16Array_2(name: string, value: string[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addChar16Array_2'); - } - - addBoolean(name: string, value: Boolean): void { - console.warn('shimmed function LoggingFields.addBoolean'); - } - - addBoolean_1(name: string, value: Boolean, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addBoolean_1'); - } - - addBoolean_2(name: string, value: Boolean, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addBoolean_2'); - } - - addBooleanArray(name: string, value: Boolean[]): void { - console.warn('shimmed function LoggingFields.addBooleanArray'); - } - - addBooleanArray_1(name: string, value: Boolean[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addBooleanArray_1'); - } - - addBooleanArray_2(name: string, value: Boolean[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addBooleanArray_2'); - } - - addString(name: string, value: string): void { - console.warn('shimmed function LoggingFields.addString'); - } - - addString_1(name: string, value: string, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addString_1'); - } - - addString_2(name: string, value: string, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addString_2'); - } - - addStringArray(name: string, value: string[]): void { - console.warn('shimmed function LoggingFields.addStringArray'); - } - - addStringArray_1(name: string, value: string[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addStringArray_1'); - } - - addStringArray_2(name: string, value: string[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addStringArray_2'); - } - - addGuid(name: string, value: string): void { - console.warn('shimmed function LoggingFields.addGuid'); - } - - addGuid_1(name: string, value: string, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addGuid_1'); - } - - addGuid_2(name: string, value: string, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addGuid_2'); - } - - addGuidArray(name: string, value: string[]): void { - console.warn('shimmed function LoggingFields.addGuidArray'); - } - - addGuidArray_1(name: string, value: string[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addGuidArray_1'); - } - - addGuidArray_2(name: string, value: string[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addGuidArray_2'); - } - - addDateTime(name: string, value: Date): void { - console.warn('shimmed function LoggingFields.addDateTime'); - } - - addDateTime_1(name: string, value: Date, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addDateTime_1'); - } - - addDateTime_2(name: string, value: Date, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addDateTime_2'); - } - - addDateTimeArray(name: string, value: Date[]): void { - console.warn('shimmed function LoggingFields.addDateTimeArray'); - } - - addDateTimeArray_1(name: string, value: Date[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addDateTimeArray_1'); - } - - addDateTimeArray_2(name: string, value: Date[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addDateTimeArray_2'); - } - - addTimeSpan(name: string, value: number): void { - console.warn('shimmed function LoggingFields.addTimeSpan'); - } - - addTimeSpan_1(name: string, value: number, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addTimeSpan_1'); - } - - addTimeSpan_2(name: string, value: number, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addTimeSpan_2'); - } - - addTimeSpanArray(name: string, value: number[]): void { - console.warn('shimmed function LoggingFields.addTimeSpanArray'); - } - - addTimeSpanArray_1(name: string, value: number[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addTimeSpanArray_1'); - } - - addTimeSpanArray_2(name: string, value: number[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addTimeSpanArray_2'); - } - - addPoint(name: string, value: Point): void { - console.warn('shimmed function LoggingFields.addPoint'); - } - - addPoint_1(name: string, value: Point, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addPoint_1'); - } - - addPoint_2(name: string, value: Point, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addPoint_2'); - } - - addPointArray(name: string, value: Point[]): void { - console.warn('shimmed function LoggingFields.addPointArray'); - } - - addPointArray_1(name: string, value: Point[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addPointArray_1'); - } - - addPointArray_2(name: string, value: Point[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addPointArray_2'); - } - - addSize(name: string, value: Size): void { - console.warn('shimmed function LoggingFields.addSize'); - } - - addSize_1(name: string, value: Size, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addSize_1'); - } - - addSize_2(name: string, value: Size, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addSize_2'); - } - - addSizeArray(name: string, value: Size[]): void { - console.warn('shimmed function LoggingFields.addSizeArray'); - } - - addSizeArray_1(name: string, value: Size[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addSizeArray_1'); - } - - addSizeArray_2(name: string, value: Size[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addSizeArray_2'); - } - - addRect(name: string, value: Rect): void { - console.warn('shimmed function LoggingFields.addRect'); - } - - addRect_1(name: string, value: Rect, format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addRect_1'); - } - - addRect_2(name: string, value: Rect, format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addRect_2'); - } - - addRectArray(name: string, value: Rect[]): void { - console.warn('shimmed function LoggingFields.addRectArray'); - } - - addRectArray_1(name: string, value: Rect[], format: LoggingFieldFormat): void { - console.warn('shimmed function LoggingFields.addRectArray_1'); - } - - addRectArray_2(name: string, value: Rect[], format: LoggingFieldFormat, tags: number): void { - console.warn('shimmed function LoggingFields.addRectArray_2'); - } - - } - export enum LoggingLevel { - verbose, - information, - warning, - error, - critical, - } - export enum LoggingOpcode { - info, - start, - stop, - reply = 6, - resume, - suspend, - send, - } - export class LoggingOptions implements ILoggingOptions { - // constructor(); - // constructor(keywords: number); - constructor(keywords: number) {} - - task: number = 0; - tags: number = 0; - relatedActivityId: string = '00000000-0000-0000-0000-000000000000'; - opcode: LoggingOpcode = LoggingOpcode.info; - keywords: number = 0; - activityId: string = '00000000-0000-0000-0000-000000000000'; - - } - export class LoggingSession implements ILoggingSession, IClosable { - // constructor(name: string); - constructor(name: string) {} - - name: string; - - saveToFileAsync(folder: Storage.IStorageFolder, fileName: string): IAsyncOperation { - throw new Error('shimmed function LoggingSession.saveToFileAsync'); - } - - addLoggingChannel(loggingChannel: ILoggingChannel): void { - console.warn('shimmed function LoggingSession.addLoggingChannel'); - } - - addLoggingChannel_1(loggingChannel: ILoggingChannel, maxLevel: LoggingLevel): void { - console.warn('shimmed function LoggingSession.addLoggingChannel_1'); - } - - removeLoggingChannel(loggingChannel: ILoggingChannel): void { - console.warn('shimmed function LoggingSession.removeLoggingChannel'); - } - - close(): void { - console.warn('shimmed function LoggingSession.close'); - } - - } - export class RuntimeBrokerErrorSettings implements IErrorReportingSettings { - // constructor(); - setErrorOptions(value: ErrorOptions): void { - console.warn('shimmed function RuntimeBrokerErrorSettings.setErrorOptions'); - } - - getErrorOptions(): ErrorOptions { - throw new Error('shimmed function RuntimeBrokerErrorSettings.getErrorOptions'); - } - - } - export class TracingStatusChangedEventArgs implements ITracingStatusChangedEventArgs { - enabled: Boolean; - traceLevel: CausalityTraceLevel; - - } - } - export type EventHandler = (args: T) => void; - export interface EventRegistrationToken { - value: number; - } - export interface FoundationContract { - } - export class GuidHelper { - static empty: string = '00000000-0000-0000-0000-000000000000'; - - static createNewGuid(): string { - throw new Error('shimmed function GuidHelper.createNewGuid'); - } - - } - export interface HResult { - value: number; - } - export interface IAsyncAction extends IAsyncInfo { - completed: AsyncActionCompletedHandler; - getResults(): void; - } - export interface IAsyncActionWithProgress extends IAsyncInfo { - progress: AsyncActionProgressHandler; - completed: AsyncActionWithProgressCompletedHandler; - getResults(): void; - } - export interface IAsyncInfo { - errorCode: number; - id: number; - status: AsyncStatus; - cancel(): void; - close(): void; - } - export interface IAsyncOperation extends IAsyncInfo { - completed: AsyncOperationCompletedHandler; - getResults(): TResult; - } - export interface IAsyncOperationWithProgress extends IAsyncInfo { - progress: AsyncOperationProgressHandler; - completed: AsyncOperationWithProgressCompletedHandler; - getResults(): TResult; - } - export interface IGetActivationFactory { - getActivationFactory(activatableClassId: string): any; - } - export interface IMemoryBuffer extends IClosable { - createReference(): IMemoryBufferReference; - } - export interface IMemoryBufferReference extends IClosable { - capacity: number; - } - export interface IStringable { - } - export interface IWwwFormUrlDecoderEntry { - name: string; - value: string; - } - export class MemoryBuffer implements IMemoryBuffer, IClosable { - // constructor(capacity: number); - constructor(capacity: number) {} - - createReference(): IMemoryBufferReference { - throw new Error('shimmed function MemoryBuffer.createReference'); - } - - close(): void { - console.warn('shimmed function MemoryBuffer.close'); - } - - } - export namespace Metadata { - export class ActivatableAttribute { - // constructor(version: number); - // constructor(version: number, type: string); - // constructor(version: number, platform: Platform); - // constructor(type: /* System.Type */ any, version: number); - // constructor(type: /* System.Type */ any, version: number, contractName: string); - // constructor(type: /* System.Type */ any, version: number, platform: Platform); - constructor(version: number, type: string, platform: Platform, contractName: string) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ActivatableAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ActivatableAttribute.isDefaultAttribute'); - } - - } - export class AllowForWebAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function AllowForWebAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function AllowForWebAttribute.isDefaultAttribute'); - } - - } - export class AllowMultipleAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function AllowMultipleAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function AllowMultipleAttribute.isDefaultAttribute'); - } - - } - export class ApiContractAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ApiContractAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ApiContractAttribute.isDefaultAttribute'); - } - - } - export class ApiInformation { - static isTypePresent(typeName: string): Boolean { - throw new Error('shimmed function ApiInformation.isTypePresent'); - } - - static isMethodPresent(typeName: string, methodName: string): Boolean { - throw new Error('shimmed function ApiInformation.isMethodPresent'); - } - - static isMethodPresent_1(typeName: string, methodName: string, inputParameterCount: number): Boolean { - throw new Error('shimmed function ApiInformation.isMethodPresent_1'); - } - - static isEventPresent(typeName: string, eventName: string): Boolean { - throw new Error('shimmed function ApiInformation.isEventPresent'); - } - - static isPropertyPresent(typeName: string, propertyName: string): Boolean { - throw new Error('shimmed function ApiInformation.isPropertyPresent'); - } - - static isReadOnlyPropertyPresent(typeName: string, propertyName: string): Boolean { - throw new Error('shimmed function ApiInformation.isReadOnlyPropertyPresent'); - } - - static isWriteablePropertyPresent(typeName: string, propertyName: string): Boolean { - throw new Error('shimmed function ApiInformation.isWriteablePropertyPresent'); - } - - static isEnumNamedValuePresent(enumTypeName: string, valueName: string): Boolean { - throw new Error('shimmed function ApiInformation.isEnumNamedValuePresent'); - } - - static isApiContractPresent(contractName: string, majorVersion: number): Boolean { - throw new Error('shimmed function ApiInformation.isApiContractPresent'); - } - - static isApiContractPresent_1(contractName: string, majorVersion: number, minorVersion: number): Boolean { - throw new Error('shimmed function ApiInformation.isApiContractPresent_1'); - } - - } - export enum AttributeTargets { - all = -1, - delegate = 1, - enum, - event = 4, - field = 8, - interface = 16, - method = 64, - parameter = 128, - property = 256, - runtimeClass = 512, - struct = 1024, - interfaceImpl = 2048, - apiContract = 8192, - } - export class AttributeUsageAttribute { - // constructor(a_0: System.AttributeTargets); - constructor(a_0: System.AttributeTargets) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function AttributeUsageAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function AttributeUsageAttribute.isDefaultAttribute'); - } - - } - export class ComposableAttribute { - // constructor(type: /* System.Type */ any, compositionType: CompositionType, version: number); - // constructor(type: /* System.Type */ any, compositionType: CompositionType, version: number, platform: Platform); - // constructor(type: /* System.Type */ any, compositionType: CompositionType, version: number, contract: string); - constructor(type: /* System.Type */ any, compositionType: CompositionType, version: number, platform: Platform, contract: string) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ComposableAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ComposableAttribute.isDefaultAttribute'); - } - - } - export enum CompositionType { - protected = 1, - public, - } - export class ContractVersionAttribute { - // constructor(version: number); - // constructor(contract: /* System.Type */ any, version: number); - // constructor(contract: string, version: number); - constructor(version: number, contract: /* System.Type */ any) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ContractVersionAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ContractVersionAttribute.isDefaultAttribute'); - } - - } - export class CreateFromStringAttribute { - // constructor(); - typeId: any; - - methodName: string; - match(obj: any): Boolean { - throw new Error('shimmed function CreateFromStringAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function CreateFromStringAttribute.isDefaultAttribute'); - } - - } - export class DefaultAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function DefaultAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function DefaultAttribute.isDefaultAttribute'); - } - - } - export class DefaultOverloadAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function DefaultOverloadAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function DefaultOverloadAttribute.isDefaultAttribute'); - } - - } - export class DeprecatedAttribute { - // constructor(message: string, type: DeprecationType, version: number); - // constructor(message: string, type: DeprecationType, version: number, platform: Platform); - // constructor(message: string, type: DeprecationType, version: number, contract: string); - constructor(message: string, type: DeprecationType, version: number, platform: Platform, contract: string) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function DeprecatedAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function DeprecatedAttribute.isDefaultAttribute'); - } - - } - export enum DeprecationType { - deprecate, - remove, - } - export class DualApiPartitionAttribute { - // constructor(); - typeId: any; - - version: number; - match(obj: any): Boolean { - throw new Error('shimmed function DualApiPartitionAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function DualApiPartitionAttribute.isDefaultAttribute'); - } - - } - export class ExclusiveToAttribute { - // constructor(typeName: /* System.Type */ any); - constructor(typeName: /* System.Type */ any) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ExclusiveToAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ExclusiveToAttribute.isDefaultAttribute'); - } - - } - export class ExperimentalAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ExperimentalAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ExperimentalAttribute.isDefaultAttribute'); - } - - } - export class FeatureAttribute { - // constructor(featureStage: FeatureStage, validInAllBranches: Boolean); - constructor(featureStage: FeatureStage, validInAllBranches: Boolean) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function FeatureAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function FeatureAttribute.isDefaultAttribute'); - } - - } - export enum FeatureStage { - alwaysDisabled, - disabledByDefault, - enabledByDefault, - alwaysEnabled, - } - export enum GCPressureAmount { - low, - medium, - high, - } - export class GCPressureAttribute { - // constructor(); - typeId: any; - - amount: GCPressureAmount; - match(obj: any): Boolean { - throw new Error('shimmed function GCPressureAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function GCPressureAttribute.isDefaultAttribute'); - } - - } - export class GuidAttribute { - // constructor(a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number); - constructor(a: number, b: number, c: number, d: number, e: number, f: number, g: number, h: number, i: number, j: number, k: number) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function GuidAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function GuidAttribute.isDefaultAttribute'); - } - - } - export class HasVariantAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function HasVariantAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function HasVariantAttribute.isDefaultAttribute'); - } - - } - export class InternalAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function InternalAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function InternalAttribute.isDefaultAttribute'); - } - - } - export class LengthIsAttribute { - // constructor(indexLengthParameter: number); - constructor(indexLengthParameter: number) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function LengthIsAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function LengthIsAttribute.isDefaultAttribute'); - } - - } - export class MarshalingBehaviorAttribute { - // constructor(behavior: MarshalingType); - constructor(behavior: MarshalingType) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function MarshalingBehaviorAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function MarshalingBehaviorAttribute.isDefaultAttribute'); - } - - } - export enum MarshalingType { - none = 1, - agile, - standard, - invalidMarshaling = 0, - } - export class MetadataMarshalAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function MetadataMarshalAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function MetadataMarshalAttribute.isDefaultAttribute'); - } - - } - export class MuseAttribute { - // constructor(); - typeId: any; - - version: number; - match(obj: any): Boolean { - throw new Error('shimmed function MuseAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function MuseAttribute.isDefaultAttribute'); - } - - } - export class OverloadAttribute { - // constructor(method: string); - constructor(method: string) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function OverloadAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function OverloadAttribute.isDefaultAttribute'); - } - - } - export class OverridableAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function OverridableAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function OverridableAttribute.isDefaultAttribute'); - } - - } - export enum Platform { - windows, - windowsPhone, - } - export class PlatformAttribute { - // constructor(platform: Platform); - constructor(platform: Platform) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function PlatformAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function PlatformAttribute.isDefaultAttribute'); - } - - } - export class PreviousContractVersionAttribute { - // constructor(contract: string, versionLow: number, versionHigh: number, newContract: string); - // constructor(contract: string, versionLow: number, versionHigh: number); - constructor(contract: string, versionLow: number, versionHigh: number, newContract: string) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function PreviousContractVersionAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function PreviousContractVersionAttribute.isDefaultAttribute'); - } - - } - export class ProtectedAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ProtectedAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ProtectedAttribute.isDefaultAttribute'); - } - - } - export class RangeAttribute { - // constructor(minValue: number, maxValue: number); - constructor(minValue: number, maxValue: number) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function RangeAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function RangeAttribute.isDefaultAttribute'); - } - - } - export class RemoteAsyncAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function RemoteAsyncAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function RemoteAsyncAttribute.isDefaultAttribute'); - } - - } - export class StaticAttribute { - // constructor(type: /* System.Type */ any, version: number); - // constructor(type: /* System.Type */ any, version: number, platform: Platform); - // constructor(type: /* System.Type */ any, version: number, contractName: string); - constructor(type: /* System.Type */ any, version: number, platform: Platform, contractName: string) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function StaticAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function StaticAttribute.isDefaultAttribute'); - } - - } - export class ThreadingAttribute { - // constructor(model: ThreadingModel); - constructor(model: ThreadingModel) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ThreadingAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ThreadingAttribute.isDefaultAttribute'); - } - - } - export enum ThreadingModel { - sta = 1, - mta, - both, - invalidThreading = 0, - } - export class VariantAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function VariantAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function VariantAttribute.isDefaultAttribute'); - } - - } - export class VersionAttribute { - // constructor(version: number); - // constructor(version: number, platform: Platform); - constructor(version: number, platform: Platform) {} - - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function VersionAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function VersionAttribute.isDefaultAttribute'); - } - - } - export class WebHostHiddenAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function WebHostHiddenAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function WebHostHiddenAttribute.isDefaultAttribute'); - } - - } - } - export namespace Numerics { - export interface Matrix3x2 { - m11: number; - m12: number; - m21: number; - m22: number; - m31: number; - m32: number; - } - export interface Matrix4x4 { - m11: number; - m12: number; - m13: number; - m14: number; - m21: number; - m22: number; - m23: number; - m24: number; - m31: number; - m32: number; - m33: number; - m34: number; - m41: number; - m42: number; - m43: number; - m44: number; - } - export interface Plane { - normal: Vector3; - d: number; - } - export interface Quaternion { - x: number; - y: number; - z: number; - w: number; - } - export interface Rational { - numerator: number; - denominator: number; - } - export interface Vector2 { - x: number; - y: number; - } - export interface Vector3 { - x: number; - y: number; - z: number; - } - export interface Vector4 { - x: number; - y: number; - z: number; - w: number; - } - } - export interface Point { - x: number; - y: number; - } - export enum PropertyType { - empty, - uint8, - int16, - uint16, - int32, - uint32, - int64, - uint64, - single, - double, - char16, - boolean, - string, - inspectable, - dateTime, - timeSpan, - guid, - point, - size, - rect, - otherType, - uint8Array = 1025, - int16Array, - uint16Array, - int32Array, - uint32Array, - int64Array, - uint64Array, - singleArray, - doubleArray, - char16Array, - booleanArray, - stringArray, - inspectableArray, - dateTimeArray, - timeSpanArray, - guidArray, - pointArray, - sizeArray, - rectArray, - otherTypeArray, - } - export class PropertyValue { - static createEmpty(): any { - throw new Error('shimmed function PropertyValue.createEmpty'); - } - - static createUInt8(value: number): any { - throw new Error('shimmed function PropertyValue.createUInt8'); - } - - static createInt16(value: number): any { - throw new Error('shimmed function PropertyValue.createInt16'); - } - - static createUInt16(value: number): any { - throw new Error('shimmed function PropertyValue.createUInt16'); - } - - static createInt32(value: number): any { - throw new Error('shimmed function PropertyValue.createInt32'); - } - - static createUInt32(value: number): any { - throw new Error('shimmed function PropertyValue.createUInt32'); - } - - static createInt64(value: number): any { - throw new Error('shimmed function PropertyValue.createInt64'); - } - - static createUInt64(value: number): any { - throw new Error('shimmed function PropertyValue.createUInt64'); - } - - static createSingle(value: number): any { - throw new Error('shimmed function PropertyValue.createSingle'); - } - - static createDouble(value: number): any { - throw new Error('shimmed function PropertyValue.createDouble'); - } - - static createChar16(value: string): any { - throw new Error('shimmed function PropertyValue.createChar16'); - } - - static createBoolean(value: Boolean): any { - throw new Error('shimmed function PropertyValue.createBoolean'); - } - - static createString(value: string): any { - throw new Error('shimmed function PropertyValue.createString'); - } - - static createInspectable(value: any): any { - throw new Error('shimmed function PropertyValue.createInspectable'); - } - - static createGuid(value: string): any { - throw new Error('shimmed function PropertyValue.createGuid'); - } - - static createDateTime(value: Date): any { - throw new Error('shimmed function PropertyValue.createDateTime'); - } - - static createTimeSpan(value: number): any { - throw new Error('shimmed function PropertyValue.createTimeSpan'); - } - - static createPoint(value: Point): any { - throw new Error('shimmed function PropertyValue.createPoint'); - } - - static createSize(value: Size): any { - throw new Error('shimmed function PropertyValue.createSize'); - } - - static createRect(value: Rect): any { - throw new Error('shimmed function PropertyValue.createRect'); - } - - static createUInt8Array(value: number[]): any { - throw new Error('shimmed function PropertyValue.createUInt8Array'); - } - - static createInt16Array(value: number[]): any { - throw new Error('shimmed function PropertyValue.createInt16Array'); - } - - static createUInt16Array(value: number[]): any { - throw new Error('shimmed function PropertyValue.createUInt16Array'); - } - - static createInt32Array(value: number[]): any { - throw new Error('shimmed function PropertyValue.createInt32Array'); - } - - static createUInt32Array(value: number[]): any { - throw new Error('shimmed function PropertyValue.createUInt32Array'); - } - - static createInt64Array(value: number[]): any { - throw new Error('shimmed function PropertyValue.createInt64Array'); - } - - static createUInt64Array(value: number[]): any { - throw new Error('shimmed function PropertyValue.createUInt64Array'); - } - - static createSingleArray(value: number[]): any { - throw new Error('shimmed function PropertyValue.createSingleArray'); - } - - static createDoubleArray(value: number[]): any { - throw new Error('shimmed function PropertyValue.createDoubleArray'); - } - - static createChar16Array(value: string[]): any { - throw new Error('shimmed function PropertyValue.createChar16Array'); - } - - static createBooleanArray(value: Boolean[]): any { - throw new Error('shimmed function PropertyValue.createBooleanArray'); - } - - static createStringArray(value: string[]): any { - throw new Error('shimmed function PropertyValue.createStringArray'); - } - - static createInspectableArray(value: any[]): any { - throw new Error('shimmed function PropertyValue.createInspectableArray'); - } - - static createGuidArray(value: string[]): any { - throw new Error('shimmed function PropertyValue.createGuidArray'); - } - - static createDateTimeArray(value: Date[]): any { - throw new Error('shimmed function PropertyValue.createDateTimeArray'); - } - - static createTimeSpanArray(value: number[]): any { - throw new Error('shimmed function PropertyValue.createTimeSpanArray'); - } - - static createPointArray(value: Point[]): any { - throw new Error('shimmed function PropertyValue.createPointArray'); - } - - static createSizeArray(value: Size[]): any { - throw new Error('shimmed function PropertyValue.createSizeArray'); - } - - static createRectArray(value: Rect[]): any { - throw new Error('shimmed function PropertyValue.createRectArray'); - } - - } - export interface Rect { - x: number; - y: number; - width: number; - height: number; - } - export interface Size { - width: number; - height: number; - } - export interface TimeSpan { - duration: number; - } - export type TypedEventHandler = (args: TResult) => void; - export interface UniversalApiContract { - } - export class Uri implements IUriRuntimeClass, IUriRuntimeClassWithAbsoluteCanonicalUri, IStringable { - // constructor(uri: string); - // constructor(baseUri: string, relativeUri: string); - constructor(uri: string, baseUri: string, relativeUri: string) {} - - absoluteUri: string; - displayUri: string; - domain: string; - extension: string; - fragment: string; - host: string; - password: string; - path: string; - port: number; - query: string; - queryParsed: WwwFormUrlDecoder; - rawUri: string; - schemeName: string; - suspicious: Boolean; - userName: string; - absoluteCanonicalUri: string; - displayIri: string; - - combineUri(relativeUri: string): Uri { - throw new Error('shimmed function Uri.combineUri'); - } - - static unescapeComponent(toUnescape: string): string { - throw new Error('shimmed function Uri.unescapeComponent'); - } - - static escapeComponent(toEscape: string): string { - throw new Error('shimmed function Uri.escapeComponent'); - } - - } - export class WwwFormUrlDecoder implements IWwwFormUrlDecoderRuntimeClass, Collections.IIterable, Collections.IVectorView { - // constructor(query: string); - constructor(query: string) {} - - size: number; - - getFirstValueByName(name: string): string { - throw new Error('shimmed function WwwFormUrlDecoder.getFirstValueByName'); - } - - first(): Collections.IIterator { - throw new Error('shimmed function WwwFormUrlDecoder.first'); - } - - getAt(index: number): IWwwFormUrlDecoderEntry { - throw new Error('shimmed function WwwFormUrlDecoder.getAt'); - } - - indexOf(value: IWwwFormUrlDecoderEntry): { returnValue: Boolean, index: number } { - throw new Error('shimmed function WwwFormUrlDecoder.indexOf'); - } - - getMany(startIndex: number, items: IWwwFormUrlDecoderEntry[]): number { - throw new Error('shimmed function WwwFormUrlDecoder.getMany'); - } - - } - export class WwwFormUrlDecoderEntry implements IWwwFormUrlDecoderEntry { - name: string; - value: string; - - } - } - export namespace Gaming { - export namespace Input { - export class ArcadeStick implements IArcadeStick, IGameController, IGameControllerBatteryInfo { - headset: Headset; - isWireless: Boolean; - user: System.User; - static arcadeSticks: ArcadeStick[] = [ ]; - - getButtonLabel(button: ArcadeStickButtons): GameControllerButtonLabel { - throw new Error('shimmed function ArcadeStick.getButtonLabel'); - } - - getCurrentReading(): ArcadeStickReading { - throw new Error('shimmed function ArcadeStick.getCurrentReading'); - } - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function ArcadeStick.tryGetBatteryReport'); - } - - static fromGameController(gameController: IGameController): ArcadeStick { - throw new Error('shimmed function ArcadeStick.fromGameController'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`ArcadeStick::addEventListener: ${name}`); - switch (name) { - case "arcadestickadded": // /* System.EventHandler`1[[Windows.Gaming.Input.ArcadeStick, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "arcadestickremoved": // /* System.EventHandler`1[[Windows.Gaming.Input.ArcadeStick, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`ArcadeStick::addEventListener: ${name}`); - switch (name) { - case "headsetconnected": // Foundation.TypedEventHandler - case "headsetdisconnected": // Foundation.TypedEventHandler - case "userchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ArcadeStickButtons { - none, - stickUp, - stickDown, - stickLeft = 4, - stickRight = 8, - action1 = 16, - action2 = 32, - action3 = 64, - action4 = 128, - action5 = 256, - action6 = 512, - special1 = 1024, - special2 = 2048, - } - export interface ArcadeStickReading { - timestamp: number; - buttons: ArcadeStickButtons; - } - export namespace Custom { - export class GameControllerFactoryManager { - static tryGetFactoryControllerFromGameController(factory: ICustomGameControllerFactory, gameController: IGameController): IGameController { - throw new Error('shimmed function GameControllerFactoryManager.tryGetFactoryControllerFromGameController'); - } - - static registerCustomFactoryForGipInterface(factory: ICustomGameControllerFactory, interfaceId: string): void { - console.warn('shimmed function GameControllerFactoryManager.registerCustomFactoryForGipInterface'); - } - - static registerCustomFactoryForHardwareId(factory: ICustomGameControllerFactory, hardwareVendorId: number, hardwareProductId: number): void { - console.warn('shimmed function GameControllerFactoryManager.registerCustomFactoryForHardwareId'); - } - - static registerCustomFactoryForXusbType(factory: ICustomGameControllerFactory, xusbType: XusbDeviceType, xusbSubtype: XusbDeviceSubtype): void { - console.warn('shimmed function GameControllerFactoryManager.registerCustomFactoryForXusbType'); - } - - } - export interface GameControllerVersionInfo { - major: number; - minor: number; - build: number; - revision: number; - } - export interface GipFirmwareUpdateProgress { - percentCompleted: number; - currentComponentId: number; - } - export class GipFirmwareUpdateResult implements IGipFirmwareUpdateResult { - extendedErrorCode: number; - finalComponentId: number; - status: GipFirmwareUpdateStatus; - - } - export enum GipFirmwareUpdateStatus { - completed, - upToDate, - failed, - } - export class GipGameControllerProvider implements IGipGameControllerProvider, IGameControllerProvider { - firmwareVersionInfo: GameControllerVersionInfo; - hardwareProductId: number; - hardwareVendorId: number; - hardwareVersionInfo: GameControllerVersionInfo; - isConnected: Boolean; - - sendMessage(messageClass: GipMessageClass, messageId: number, messageBuffer: number[]): void { - console.warn('shimmed function GipGameControllerProvider.sendMessage'); - } - - sendReceiveMessage(messageClass: GipMessageClass, messageId: number, requestMessageBuffer: number[], responseMessageBuffer: number[]): void { - console.warn('shimmed function GipGameControllerProvider.sendReceiveMessage'); - } - - updateFirmwareAsync(firmwareImage: Storage.Streams.IInputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function GipGameControllerProvider.updateFirmwareAsync'); - } - - } - export enum GipMessageClass { - command, - lowLatency, - standardLatency, - } - export class HidGameControllerProvider implements IHidGameControllerProvider, IGameControllerProvider { - firmwareVersionInfo: GameControllerVersionInfo; - hardwareProductId: number; - hardwareVendorId: number; - hardwareVersionInfo: GameControllerVersionInfo; - isConnected: Boolean; - usageId: number; - usagePage: number; - - getFeatureReport(reportId: number, reportBuffer: number[]): void { - console.warn('shimmed function HidGameControllerProvider.getFeatureReport'); - } - - sendFeatureReport(reportId: number, reportBuffer: number[]): void { - console.warn('shimmed function HidGameControllerProvider.sendFeatureReport'); - } - - sendOutputReport(reportId: number, reportBuffer: number[]): void { - console.warn('shimmed function HidGameControllerProvider.sendOutputReport'); - } - - } - export interface ICustomGameControllerFactory { - createGameController(provider: IGameControllerProvider): any; - onGameControllerAdded(value: IGameController): void; - onGameControllerRemoved(value: IGameController): void; - } - export interface IGameControllerInputSink { - onInputResumed(timestamp: number): void; - onInputSuspended(timestamp: number): void; - } - export interface IGameControllerProvider { - firmwareVersionInfo: GameControllerVersionInfo; - hardwareProductId: number; - hardwareVendorId: number; - hardwareVersionInfo: GameControllerVersionInfo; - isConnected: Boolean; - } - export interface IGipGameControllerInputSink extends IGameControllerInputSink { - onKeyReceived(timestamp: number, keyCode: number, isPressed: Boolean): void; - onMessageReceived(timestamp: number, messageClass: GipMessageClass, messageId: number, sequenceId: number, messageBuffer: number[]): void; - } - export interface IHidGameControllerInputSink extends IGameControllerInputSink { - onInputReportReceived(timestamp: number, reportId: number, reportBuffer: number[]): void; - } - export interface IXusbGameControllerInputSink extends IGameControllerInputSink { - onInputReceived(timestamp: number, reportId: number, inputBuffer: number[]): void; - } - export enum XusbDeviceSubtype { - unknown, - gamepad, - arcadePad, - arcadeStick, - flightStick, - wheel, - guitar, - guitarAlternate, - guitarBass, - drumKit, - dancePad, - } - export enum XusbDeviceType { - unknown, - gamepad, - } - export class XusbGameControllerProvider implements IXusbGameControllerProvider, IGameControllerProvider { - firmwareVersionInfo: GameControllerVersionInfo; - hardwareProductId: number; - hardwareVendorId: number; - hardwareVersionInfo: GameControllerVersionInfo; - isConnected: Boolean; - - setVibration(lowFrequencyMotorSpeed: number, highFrequencyMotorSpeed: number): void { - console.warn('shimmed function XusbGameControllerProvider.setVibration'); - } - - } - } - export class FlightStick implements IFlightStick, IGameController, IGameControllerBatteryInfo { - hatSwitchKind: GameControllerSwitchKind; - headset: Headset; - isWireless: Boolean; - user: System.User; - static flightSticks: FlightStick[] = [ ]; - - getButtonLabel(button: FlightStickButtons): GameControllerButtonLabel { - throw new Error('shimmed function FlightStick.getButtonLabel'); - } - - getCurrentReading(): FlightStickReading { - throw new Error('shimmed function FlightStick.getCurrentReading'); - } - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function FlightStick.tryGetBatteryReport'); - } - - static fromGameController(gameController: IGameController): FlightStick { - throw new Error('shimmed function FlightStick.fromGameController'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`FlightStick::addEventListener: ${name}`); - switch (name) { - case "flightstickadded": // /* System.EventHandler`1[[Windows.Gaming.Input.FlightStick, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "flightstickremoved": // /* System.EventHandler`1[[Windows.Gaming.Input.FlightStick, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`FlightStick::addEventListener: ${name}`); - switch (name) { - case "headsetconnected": // Foundation.TypedEventHandler - case "headsetdisconnected": // Foundation.TypedEventHandler - case "userchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum FlightStickButtons { - none, - firePrimary, - fireSecondary, - } - export interface FlightStickReading { - timestamp: number; - buttons: FlightStickButtons; - hatSwitch: GameControllerSwitchPosition; - roll: number; - pitch: number; - yaw: number; - throttle: number; - } - export namespace ForceFeedback { - export class ConditionForceEffect implements IForceFeedbackEffect, IConditionForceEffect { - // constructor(effectKind: ConditionForceEffectKind); - constructor(effectKind: ConditionForceEffectKind) {} - - kind: ConditionForceEffectKind; - gain: number; - state: ForceFeedbackEffectState; - - start(): void { - console.warn('shimmed function ConditionForceEffect.start'); - } - - stop(): void { - console.warn('shimmed function ConditionForceEffect.stop'); - } - - setParameters(direction: Foundation.Numerics.Vector3, positiveCoefficient: number, negativeCoefficient: number, maxPositiveMagnitude: number, maxNegativeMagnitude: number, deadZone: number, bias: number): void { - console.warn('shimmed function ConditionForceEffect.setParameters'); - } - - } - export enum ConditionForceEffectKind { - spring, - damper, - inertia, - friction, - } - export class ConstantForceEffect implements IForceFeedbackEffect, IConstantForceEffect { - // constructor(); - gain: number = 1; - state: ForceFeedbackEffectState = ForceFeedbackEffectState.stopped; - - start(): void { - console.warn('shimmed function ConstantForceEffect.start'); - } - - stop(): void { - console.warn('shimmed function ConstantForceEffect.stop'); - } - - setParameters(vector: Foundation.Numerics.Vector3, duration: number): void { - console.warn('shimmed function ConstantForceEffect.setParameters'); - } - - setParametersWithEnvelope(vector: Foundation.Numerics.Vector3, attackGain: number, sustainGain: number, releaseGain: number, startDelay: number, attackDuration: number, sustainDuration: number, releaseDuration: number, repeatCount: number): void { - console.warn('shimmed function ConstantForceEffect.setParametersWithEnvelope'); - } - - } - export enum ForceFeedbackEffectAxes { - none, - x, - y, - z = 4, - } - export enum ForceFeedbackEffectState { - stopped, - running, - paused, - faulted, - } - export enum ForceFeedbackLoadEffectResult { - succeeded, - effectStorageFull, - effectNotSupported, - } - export class ForceFeedbackMotor implements IForceFeedbackMotor { - masterGain: number; - areEffectsPaused: Boolean; - isEnabled: Boolean; - supportedAxes: ForceFeedbackEffectAxes; - - loadEffectAsync(effect: IForceFeedbackEffect): Foundation.IAsyncOperation { - throw new Error('shimmed function ForceFeedbackMotor.loadEffectAsync'); - } - - pauseAllEffects(): void { - console.warn('shimmed function ForceFeedbackMotor.pauseAllEffects'); - } - - resumeAllEffects(): void { - console.warn('shimmed function ForceFeedbackMotor.resumeAllEffects'); - } - - stopAllEffects(): void { - console.warn('shimmed function ForceFeedbackMotor.stopAllEffects'); - } - - tryDisableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ForceFeedbackMotor.tryDisableAsync'); - } - - tryEnableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ForceFeedbackMotor.tryEnableAsync'); - } - - tryResetAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ForceFeedbackMotor.tryResetAsync'); - } - - tryUnloadEffectAsync(effect: IForceFeedbackEffect): Foundation.IAsyncOperation { - throw new Error('shimmed function ForceFeedbackMotor.tryUnloadEffectAsync'); - } - - } - export interface IForceFeedbackEffect { - gain: number; - state: ForceFeedbackEffectState; - start(): void; - stop(): void; - } - export class PeriodicForceEffect implements IForceFeedbackEffect, IPeriodicForceEffect { - // constructor(effectKind: PeriodicForceEffectKind); - constructor(effectKind: PeriodicForceEffectKind) {} - - gain: number; - state: ForceFeedbackEffectState; - kind: PeriodicForceEffectKind; - - start(): void { - console.warn('shimmed function PeriodicForceEffect.start'); - } - - stop(): void { - console.warn('shimmed function PeriodicForceEffect.stop'); - } - - setParameters(vector: Foundation.Numerics.Vector3, frequency: number, phase: number, bias: number, duration: number): void { - console.warn('shimmed function PeriodicForceEffect.setParameters'); - } - - setParametersWithEnvelope(vector: Foundation.Numerics.Vector3, frequency: number, phase: number, bias: number, attackGain: number, sustainGain: number, releaseGain: number, startDelay: number, attackDuration: number, sustainDuration: number, releaseDuration: number, repeatCount: number): void { - console.warn('shimmed function PeriodicForceEffect.setParametersWithEnvelope'); - } - - } - export enum PeriodicForceEffectKind { - squareWave, - sineWave, - triangleWave, - sawtoothWaveUp, - sawtoothWaveDown, - } - export class RampForceEffect implements IForceFeedbackEffect, IRampForceEffect { - // constructor(); - gain: number = 1; - state: ForceFeedbackEffectState = ForceFeedbackEffectState.stopped; - - start(): void { - console.warn('shimmed function RampForceEffect.start'); - } - - stop(): void { - console.warn('shimmed function RampForceEffect.stop'); - } - - setParameters(startVector: Foundation.Numerics.Vector3, endVector: Foundation.Numerics.Vector3, duration: number): void { - console.warn('shimmed function RampForceEffect.setParameters'); - } - - setParametersWithEnvelope(startVector: Foundation.Numerics.Vector3, endVector: Foundation.Numerics.Vector3, attackGain: number, sustainGain: number, releaseGain: number, startDelay: number, attackDuration: number, sustainDuration: number, releaseDuration: number, repeatCount: number): void { - console.warn('shimmed function RampForceEffect.setParametersWithEnvelope'); - } - - } - } - export enum GameControllerButtonLabel { - none, - xboxBack, - xboxStart, - xboxMenu, - xboxView, - xboxUp, - xboxDown, - xboxLeft, - xboxRight, - xboxA, - xboxB, - xboxX, - xboxY, - xboxLeftBumper, - xboxLeftTrigger, - xboxLeftStickButton, - xboxRightBumper, - xboxRightTrigger, - xboxRightStickButton, - xboxPaddle1, - xboxPaddle2, - xboxPaddle3, - xboxPaddle4, - mode, - select, - menu, - view, - back, - start, - options, - share, - up, - down, - left, - right, - letterA, - letterB, - letterC, - letterL, - letterR, - letterX, - letterY, - letterZ, - cross, - circle, - square, - triangle, - leftBumper, - leftTrigger, - leftStickButton, - left1, - left2, - left3, - rightBumper, - rightTrigger, - rightStickButton, - right1, - right2, - right3, - paddle1, - paddle2, - paddle3, - paddle4, - plus, - minus, - downLeftArrow, - dialLeft, - dialRight, - suspension, - } - export enum GameControllerSwitchKind { - twoWay, - fourWay, - eightWay, - } - export enum GameControllerSwitchPosition { - center, - up, - upRight, - right, - downRight, - down, - downLeft, - left, - upLeft, - } - export class Gamepad implements IGamepad, IGameController, IGamepad2, IGameControllerBatteryInfo { - headset: Headset; - isWireless: Boolean; - user: System.User; - vibration: GamepadVibration; - static gamepads: Gamepad[] = [ ]; - - getCurrentReading(): GamepadReading { - throw new Error('shimmed function Gamepad.getCurrentReading'); - } - - getButtonLabel(button: GamepadButtons): GameControllerButtonLabel { - throw new Error('shimmed function Gamepad.getButtonLabel'); - } - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function Gamepad.tryGetBatteryReport'); - } - - static fromGameController(gameController: IGameController): Gamepad { - throw new Error('shimmed function Gamepad.fromGameController'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`Gamepad::addEventListener: ${name}`); - switch (name) { - case "gamepadadded": // /* System.EventHandler`1[[Windows.Gaming.Input.Gamepad, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "gamepadremoved": // /* System.EventHandler`1[[Windows.Gaming.Input.Gamepad, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`Gamepad::addEventListener: ${name}`); - switch (name) { - case "headsetconnected": // Foundation.TypedEventHandler - case "headsetdisconnected": // Foundation.TypedEventHandler - case "userchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GamepadButtons { - none, - menu, - view, - a = 4, - b = 8, - x = 16, - y = 32, - dpadUp = 64, - dpadDown = 128, - dpadLeft = 256, - dpadRight = 512, - leftShoulder = 1024, - rightShoulder = 2048, - leftThumbstick = 4096, - rightThumbstick = 8192, - paddle1 = 16384, - paddle2 = 32768, - paddle3 = 65536, - paddle4 = 131072, - } - export interface GamepadReading { - timestamp: number; - buttons: GamepadButtons; - leftTrigger: number; - rightTrigger: number; - leftThumbstickX: number; - leftThumbstickY: number; - rightThumbstickX: number; - rightThumbstickY: number; - } - export interface GamepadVibration { - leftMotor: number; - rightMotor: number; - leftTrigger: number; - rightTrigger: number; - } - export interface GamingInputPreviewContract { - } - export class Headset implements IHeadset, IGameControllerBatteryInfo { - captureDeviceId: string; - renderDeviceId: string; - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function Headset.tryGetBatteryReport'); - } - - } - export interface IGameController { - headset: Headset; - isWireless: Boolean; - user: System.User; - } - export interface IGameControllerBatteryInfo { - tryGetBatteryReport(): Devices.Power.BatteryReport; - } - export enum OptionalUINavigationButtons { - none, - context1, - context2, - context3 = 4, - context4 = 8, - pageUp = 16, - pageDown = 32, - pageLeft = 64, - pageRight = 128, - scrollUp = 256, - scrollDown = 512, - scrollLeft = 1024, - scrollRight = 2048, - } - export namespace Preview { - export class GameControllerProviderInfo { - static getParentProviderId(provider: Custom.IGameControllerProvider): string { - throw new Error('shimmed function GameControllerProviderInfo.getParentProviderId'); - } - - static getProviderId(provider: Custom.IGameControllerProvider): string { - throw new Error('shimmed function GameControllerProviderInfo.getProviderId'); - } - - } - } - export class RacingWheel implements IRacingWheel, IGameController, IGameControllerBatteryInfo { - headset: Headset; - isWireless: Boolean; - user: System.User; - hasClutch: Boolean; - hasHandbrake: Boolean; - hasPatternShifter: Boolean; - maxPatternShifterGear: number; - maxWheelAngle: number; - wheelMotor: ForceFeedback.ForceFeedbackMotor; - static racingWheels: RacingWheel[] = [ ]; - - getButtonLabel(button: RacingWheelButtons): GameControllerButtonLabel { - throw new Error('shimmed function RacingWheel.getButtonLabel'); - } - - getCurrentReading(): RacingWheelReading { - throw new Error('shimmed function RacingWheel.getCurrentReading'); - } - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function RacingWheel.tryGetBatteryReport'); - } - - static fromGameController(gameController: IGameController): RacingWheel { - throw new Error('shimmed function RacingWheel.fromGameController'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`RacingWheel::addEventListener: ${name}`); - switch (name) { - case "racingwheeladded": // /* System.EventHandler`1[[Windows.Gaming.Input.RacingWheel, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "racingwheelremoved": // /* System.EventHandler`1[[Windows.Gaming.Input.RacingWheel, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`RacingWheel::addEventListener: ${name}`); - switch (name) { - case "headsetconnected": // Foundation.TypedEventHandler - case "headsetdisconnected": // Foundation.TypedEventHandler - case "userchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RacingWheelButtons { - none, - previousGear, - nextGear, - dpadUp = 4, - dpadDown = 8, - dpadLeft = 16, - dpadRight = 32, - button1 = 64, - button2 = 128, - button3 = 256, - button4 = 512, - button5 = 1024, - button6 = 2048, - button7 = 4096, - button8 = 8192, - button9 = 16384, - button10 = 32768, - button11 = 65536, - button12 = 131072, - button13 = 262144, - button14 = 524288, - button15 = 1048576, - button16 = 2097152, - } - export interface RacingWheelReading { - timestamp: number; - buttons: RacingWheelButtons; - patternShifterGear: number; - wheel: number; - throttle: number; - brake: number; - clutch: number; - handbrake: number; - } - export class RawGameController implements IRawGameController, IGameController, IGameControllerBatteryInfo, IRawGameController2 { - headset: Headset; - isWireless: Boolean; - user: System.User; - axisCount: number; - buttonCount: number; - forceFeedbackMotors: ForceFeedback.ForceFeedbackMotor[]; - hardwareProductId: number; - hardwareVendorId: number; - switchCount: number; - displayName: string; - nonRoamableId: string; - simpleHapticsControllers: Devices.Haptics.SimpleHapticsController[]; - static rawGameControllers: RawGameController[] = [ ]; - - getButtonLabel(buttonIndex: number): GameControllerButtonLabel { - throw new Error('shimmed function RawGameController.getButtonLabel'); - } - - getCurrentReading(buttonArray: Boolean[], switchArray: GameControllerSwitchPosition[], axisArray: number[]): number { - throw new Error('shimmed function RawGameController.getCurrentReading'); - } - - getSwitchKind(switchIndex: number): GameControllerSwitchKind { - throw new Error('shimmed function RawGameController.getSwitchKind'); - } - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function RawGameController.tryGetBatteryReport'); - } - - static fromGameController(gameController: IGameController): RawGameController { - throw new Error('shimmed function RawGameController.fromGameController'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`RawGameController::addEventListener: ${name}`); - switch (name) { - case "rawgamecontrolleradded": // /* System.EventHandler`1[[Windows.Gaming.Input.RawGameController, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "rawgamecontrollerremoved": // /* System.EventHandler`1[[Windows.Gaming.Input.RawGameController, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`RawGameController::addEventListener: ${name}`); - switch (name) { - case "headsetconnected": // Foundation.TypedEventHandler - case "headsetdisconnected": // Foundation.TypedEventHandler - case "userchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RequiredUINavigationButtons { - none, - menu, - view, - accept = 4, - cancel = 8, - up = 16, - down = 32, - left = 64, - right = 128, - } - export class UINavigationController implements IUINavigationController, IGameController, IGameControllerBatteryInfo { - headset: Headset; - isWireless: Boolean; - user: System.User; - static uinavigationControllers: UINavigationController[] = [ ]; - - getCurrentReading(): UINavigationReading { - throw new Error('shimmed function UINavigationController.getCurrentReading'); - } - - getOptionalButtonLabel(button: OptionalUINavigationButtons): GameControllerButtonLabel { - throw new Error('shimmed function UINavigationController.getOptionalButtonLabel'); - } - - getRequiredButtonLabel(button: RequiredUINavigationButtons): GameControllerButtonLabel { - throw new Error('shimmed function UINavigationController.getRequiredButtonLabel'); - } - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function UINavigationController.tryGetBatteryReport'); - } - - static fromGameController(gameController: IGameController): UINavigationController { - throw new Error('shimmed function UINavigationController.fromGameController'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`UINavigationController::addEventListener: ${name}`); - switch (name) { - case "uinavigationcontrolleradded": // /* System.EventHandler`1[[Windows.Gaming.Input.UINavigationController, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "uinavigationcontrollerremoved": // /* System.EventHandler`1[[Windows.Gaming.Input.UINavigationController, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`UINavigationController::addEventListener: ${name}`); - switch (name) { - case "headsetconnected": // Foundation.TypedEventHandler - case "headsetdisconnected": // Foundation.TypedEventHandler - case "userchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export interface UINavigationReading { - timestamp: number; - requiredButtons: RequiredUINavigationButtons; - optionalButtons: OptionalUINavigationButtons; - } - } - export namespace Preview { - export namespace GamesEnumeration { - export class GameList { - static mergeEntriesAsync(left: GameListEntry, right: GameListEntry): Foundation.IAsyncOperation { - throw new Error('shimmed function GameList.mergeEntriesAsync'); - } - - static unmergeEntryAsync(mergedEntry: GameListEntry): Foundation.IAsyncOperation { - throw new Error('shimmed function GameList.unmergeEntryAsync'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameList.findAllAsync'); - } - - static findAllAsync_1(packageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GameList.findAllAsync_1'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`GameList::addEventListener: ${name}`); - switch (name) { - case "gameadded": // GameListChangedEventHandler - case "gameremoved": // GameListRemovedEventHandler - case "gameupdated": // GameListChangedEventHandler - break; - } - - } - } - export enum GameListCategory { - candidate, - confirmedBySystem, - confirmedByUser, - } - export type GameListChangedEventHandler = () => void; - export class GameListEntry implements IGameListEntry, IGameListEntry2 { - category: GameListCategory; - displayInfo: ApplicationModel.AppDisplayInfo; - properties: string[]; - gameModeConfiguration: GameModeConfiguration; - launchParameters: string; - launchableState: GameListEntryLaunchableState; - launcherExecutable: Storage.IStorageFile; - titleId: string; - - launchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameListEntry.launchAsync'); - } - - setCategoryAsync(value: GameListCategory): Foundation.IAsyncAction { - throw new Error('shimmed function GameListEntry.setCategoryAsync'); - } - - setLauncherExecutableFileAsync(executableFile: Storage.IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function GameListEntry.setLauncherExecutableFileAsync'); - } - - setLauncherExecutableFileAsync_1(executableFile: Storage.IStorageFile, launchParams: string): Foundation.IAsyncAction { - throw new Error('shimmed function GameListEntry.setLauncherExecutableFileAsync_1'); - } - - setTitleIdAsync(id: string): Foundation.IAsyncAction { - throw new Error('shimmed function GameListEntry.setTitleIdAsync'); - } - - } - export enum GameListEntryLaunchableState { - notLaunchable, - byLastRunningFullPath, - byUserProvidedPath, - byTile, - } - export type GameListRemovedEventHandler = () => void; - export class GameModeConfiguration implements IGameModeConfiguration { - percentGpuTimeAllocatedToGame: number | null; - percentGpuMemoryAllocatedToSystemCompositor: number | null; - percentGpuMemoryAllocatedToGame: number | null; - maxCpuCount: number | null; - isEnabled: Boolean; - cpuExclusivityMaskLow: number | null; - cpuExclusivityMaskHigh: number | null; - affinitizeToExclusiveCpus: Boolean; - relatedProcessNames: string[]; - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function GameModeConfiguration.saveAsync'); - } - - } - export class GameModeUserConfiguration implements IGameModeUserConfiguration { - gamingRelatedProcessNames: string[]; - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function GameModeUserConfiguration.saveAsync'); - } - - static getDefault(): GameModeUserConfiguration { - throw new Error('shimmed function GameModeUserConfiguration.getDefault'); - } - - } - export interface IGameListEntry { - category: GameListCategory; - displayInfo: ApplicationModel.AppDisplayInfo; - properties: string[]; - launchAsync(): Foundation.IAsyncOperation; - setCategoryAsync(value: GameListCategory): Foundation.IAsyncAction; - } - } - export interface GamesEnumerationContract { - } - } - export namespace UI { - export class GameBar { - static isInputRedirected: Boolean = false; - static visible: Boolean = false; - - static addEventListener(name: string, handler: Function) { - console.warn(`GameBar::addEventListener: ${name}`); - switch (name) { - case "isinputredirectedchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "visibilitychanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum GameChatMessageOrigin { - voice, - text, - } - export class GameChatMessageReceivedEventArgs implements IGameChatMessageReceivedEventArgs { - appDisplayName: string; - appId: string; - message: string; - origin: GameChatMessageOrigin; - senderName: string; - - } - export class GameChatOverlay implements IGameChatOverlay { - desiredPosition: GameChatOverlayPosition; - - addMessage(sender: string, message: string, origin: GameChatMessageOrigin): void { - console.warn('shimmed function GameChatOverlay.addMessage'); - } - - static getDefault(): GameChatOverlay { - throw new Error('shimmed function GameChatOverlay.getDefault'); - } - - } - export interface GameChatOverlayContract { - } - export class GameChatOverlayMessageSource implements IGameChatOverlayMessageSource { - // constructor(); - setDelayBeforeClosingAfterMessageReceived(value: number): void { - console.warn('shimmed function GameChatOverlayMessageSource.setDelayBeforeClosingAfterMessageReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GameChatOverlayMessageSource::addEventListener: ${name}`); - switch (name) { - case "messagereceived": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GameChatOverlayPosition { - bottomCenter, - bottomLeft, - bottomRight, - middleRight, - middleLeft, - topCenter, - topLeft, - topRight, - } - export class GameUIProviderActivatedEventArgs implements IGameUIProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - gameUIArgs: Foundation.Collections.ValueSet; - - reportCompleted(results: Foundation.Collections.ValueSet): void { - console.warn('shimmed function GameUIProviderActivatedEventArgs.reportCompleted'); - } - - } - export interface GamingUIProviderContract { - } - } - export namespace XboxLive { - export namespace Storage { - export class GameSaveBlobGetResult implements IGameSaveBlobGetResult { - status: GameSaveErrorStatus; - value: string[]; - - } - export class GameSaveBlobInfo implements IGameSaveBlobInfo { - name: string; - size: number; - - } - export class GameSaveBlobInfoGetResult implements IGameSaveBlobInfoGetResult { - status: GameSaveErrorStatus; - value: GameSaveBlobInfo[]; - - } - export class GameSaveBlobInfoQuery implements IGameSaveBlobInfoQuery { - getBlobInfoAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveBlobInfoQuery.getBlobInfoAsync'); - } - - getBlobInfoAsync_1(startIndex: number, maxNumberOfItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveBlobInfoQuery.getBlobInfoAsync_1'); - } - - getItemCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveBlobInfoQuery.getItemCountAsync'); - } - - } - export class GameSaveContainer implements IGameSaveContainer { - name: string; - provider: GameSaveProvider; - - submitUpdatesAsync(blobsToWrite: string[], blobsToDelete: Foundation.Collections.IIterable, displayName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveContainer.submitUpdatesAsync'); - } - - readAsync(blobsToRead: string[]): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveContainer.readAsync'); - } - - getAsync(blobsToRead: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveContainer.getAsync'); - } - - submitPropertySetUpdatesAsync(blobsToWrite: Foundation.Collections.IPropertySet, blobsToDelete: Foundation.Collections.IIterable, displayName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveContainer.submitPropertySetUpdatesAsync'); - } - - createBlobInfoQuery(blobNamePrefix: string): GameSaveBlobInfoQuery { - throw new Error('shimmed function GameSaveContainer.createBlobInfoQuery'); - } - - } - export class GameSaveContainerInfo implements IGameSaveContainerInfo { - displayName: string; - lastModifiedTime: Date; - name: string; - needsSync: Boolean; - totalSize: number; - - } - export class GameSaveContainerInfoGetResult implements IGameSaveContainerInfoGetResult { - status: GameSaveErrorStatus; - value: GameSaveContainerInfo[]; - - } - export class GameSaveContainerInfoQuery implements IGameSaveContainerInfoQuery { - getContainerInfoAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveContainerInfoQuery.getContainerInfoAsync'); - } - - getContainerInfoAsync_1(startIndex: number, maxNumberOfItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveContainerInfoQuery.getContainerInfoAsync_1'); - } - - getItemCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveContainerInfoQuery.getItemCountAsync'); - } - - } - export enum GameSaveErrorStatus { - ok, - abort = -2147467260, - invalidContainerName = -2138898431, - noAccess, - outOfLocalStorage, - userCanceled, - updateTooBig, - quotaExceeded, - providedBufferTooSmall, - blobNotFound, - noXboxLiveInfo, - containerNotInSync, - containerSyncFailed, - userHasNoXboxLiveInfo, - objectExpired, - } - export class GameSaveOperationResult implements IGameSaveOperationResult { - status: GameSaveErrorStatus; - - } - export class GameSaveProvider implements IGameSaveProvider { - containersChangedSinceLastSync: string[]; - user: System.User; - - createContainer(name: string): GameSaveContainer { - throw new Error('shimmed function GameSaveProvider.createContainer'); - } - - deleteContainerAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveProvider.deleteContainerAsync'); - } - - createContainerInfoQuery(): GameSaveContainerInfoQuery { - throw new Error('shimmed function GameSaveProvider.createContainerInfoQuery'); - } - - createContainerInfoQuery_1(containerNamePrefix: string): GameSaveContainerInfoQuery { - throw new Error('shimmed function GameSaveProvider.createContainerInfoQuery_1'); - } - - getRemainingBytesInQuotaAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveProvider.getRemainingBytesInQuotaAsync'); - } - - static getForUserAsync(user: System.User, serviceConfigId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveProvider.getForUserAsync'); - } - - static getSyncOnDemandForUserAsync(user: System.User, serviceConfigId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GameSaveProvider.getSyncOnDemandForUserAsync'); - } - - } - export class GameSaveProviderGetResult implements IGameSaveProviderGetResult { - status: GameSaveErrorStatus; - value: GameSaveProvider; - - } - } - export interface StorageApiContract { - } - } - } - export namespace Globalization { - export class ApplicationLanguages { - static primaryLanguageOverride: string = ''; - static languages: string[] = [ 'en-GB' ]; - static manifestLanguages: string[] = [ 'en-US' ]; - - static getLanguagesForUser(user: System.User): string[] { - throw new Error('shimmed function ApplicationLanguages.getLanguagesForUser'); - } - - } - export class Calendar implements ICalendar, ITimeZoneOnCalendar { - // constructor(languages: Foundation.Collections.IIterable, calendar: string, clock: string, timeZoneId: string); - // constructor(languages: Foundation.Collections.IIterable); - // constructor(languages: Foundation.Collections.IIterable, calendar: string, clock: string); - // constructor(); - constructor(languages: Foundation.Collections.IIterable, calendar: string, clock: string, timeZoneId: string) {} - - year: number = 2021; - second: number = 21; - period: number = 1; - nanosecond: number = 708894200; - month: number = 3; - minute: number = 4; - numeralSystem: string = 'Latn'; - era: number = 1; - hour: number = 19; - day: number = 26; - firstSecondInThisMinute: number = 0; - firstYearInThisEra: number = 1; - isDaylightSavingTime: Boolean = false; - languages: string[] = [ 'en-GB' ]; - lastDayInThisMonth: number = 31; - lastEra: number = 1; - lastHourInThisPeriod: number = 23; - lastMinuteInThisHour: number = 59; - lastMonthInThisYear: number = 12; - lastSecondInThisMinute: number = 59; - lastYearInThisEra: number = 9999; - dayOfWeek: DayOfWeek = DayOfWeek.friday; - firstDayInThisMonth: number = 1; - lastPeriodInThisDay: number = 1; - firstEra: number = 1; - numberOfDaysInThisMonth: number = 31; - numberOfEras: number = 1; - numberOfHoursInThisPeriod: number = 24; - numberOfMinutesInThisHour: number = 60; - firstHourInThisPeriod: number = 0; - numberOfMonthsInThisYear: number = 12; - numberOfPeriodsInThisDay: number = 1; - numberOfSecondsInThisMinute: number = 60; - numberOfYearsInThisEra: number = 9999; - firstMinuteInThisHour: number = 0; - resolvedLanguage: string = 'en-GB'; - firstMonthInThisYear: number = 1; - firstPeriodInThisDay: number = 1; - - setToMin(): void { - console.warn('shimmed function Calendar.setToMin'); - } - - setToMax(): void { - console.warn('shimmed function Calendar.setToMax'); - } - - getCalendarSystem(): string { - throw new Error('shimmed function Calendar.getCalendarSystem'); - } - - changeCalendarSystem(value: string): void { - console.warn('shimmed function Calendar.changeCalendarSystem'); - } - - getClock(): string { - throw new Error('shimmed function Calendar.getClock'); - } - - changeClock(value: string): void { - console.warn('shimmed function Calendar.changeClock'); - } - - getDateTime(): Date { - throw new Error('shimmed function Calendar.getDateTime'); - } - - setDateTime(value: Date): void { - console.warn('shimmed function Calendar.setDateTime'); - } - - setToNow(): void { - console.warn('shimmed function Calendar.setToNow'); - } - - addEras(eras: number): void { - console.warn('shimmed function Calendar.addEras'); - } - - eraAsString(): string { - throw new Error('shimmed function Calendar.eraAsString'); - } - - eraAsString_1(idealLength: number): string { - throw new Error('shimmed function Calendar.eraAsString_1'); - } - - addYears(years: number): void { - console.warn('shimmed function Calendar.addYears'); - } - - yearAsString(): string { - throw new Error('shimmed function Calendar.yearAsString'); - } - - yearAsTruncatedString(remainingDigits: number): string { - throw new Error('shimmed function Calendar.yearAsTruncatedString'); - } - - yearAsPaddedString(minDigits: number): string { - throw new Error('shimmed function Calendar.yearAsPaddedString'); - } - - addMonths(months: number): void { - console.warn('shimmed function Calendar.addMonths'); - } - - monthAsString(): string { - throw new Error('shimmed function Calendar.monthAsString'); - } - - monthAsString_1(idealLength: number): string { - throw new Error('shimmed function Calendar.monthAsString_1'); - } - - monthAsSoloString(): string { - throw new Error('shimmed function Calendar.monthAsSoloString'); - } - - monthAsSoloString_1(idealLength: number): string { - throw new Error('shimmed function Calendar.monthAsSoloString_1'); - } - - monthAsNumericString(): string { - throw new Error('shimmed function Calendar.monthAsNumericString'); - } - - monthAsPaddedNumericString(minDigits: number): string { - throw new Error('shimmed function Calendar.monthAsPaddedNumericString'); - } - - addWeeks(weeks: number): void { - console.warn('shimmed function Calendar.addWeeks'); - } - - addDays(days: number): void { - console.warn('shimmed function Calendar.addDays'); - } - - dayAsString(): string { - throw new Error('shimmed function Calendar.dayAsString'); - } - - dayAsPaddedString(minDigits: number): string { - throw new Error('shimmed function Calendar.dayAsPaddedString'); - } - - dayOfWeekAsString(): string { - throw new Error('shimmed function Calendar.dayOfWeekAsString'); - } - - dayOfWeekAsString_1(idealLength: number): string { - throw new Error('shimmed function Calendar.dayOfWeekAsString_1'); - } - - dayOfWeekAsSoloString(): string { - throw new Error('shimmed function Calendar.dayOfWeekAsSoloString'); - } - - dayOfWeekAsSoloString_1(idealLength: number): string { - throw new Error('shimmed function Calendar.dayOfWeekAsSoloString_1'); - } - - addPeriods(periods: number): void { - console.warn('shimmed function Calendar.addPeriods'); - } - - periodAsString(): string { - throw new Error('shimmed function Calendar.periodAsString'); - } - - periodAsString_1(idealLength: number): string { - throw new Error('shimmed function Calendar.periodAsString_1'); - } - - addHours(hours: number): void { - console.warn('shimmed function Calendar.addHours'); - } - - hourAsString(): string { - throw new Error('shimmed function Calendar.hourAsString'); - } - - hourAsPaddedString(minDigits: number): string { - throw new Error('shimmed function Calendar.hourAsPaddedString'); - } - - addMinutes(minutes: number): void { - console.warn('shimmed function Calendar.addMinutes'); - } - - minuteAsString(): string { - throw new Error('shimmed function Calendar.minuteAsString'); - } - - minuteAsPaddedString(minDigits: number): string { - throw new Error('shimmed function Calendar.minuteAsPaddedString'); - } - - addSeconds(seconds: number): void { - console.warn('shimmed function Calendar.addSeconds'); - } - - secondAsString(): string { - throw new Error('shimmed function Calendar.secondAsString'); - } - - secondAsPaddedString(minDigits: number): string { - throw new Error('shimmed function Calendar.secondAsPaddedString'); - } - - addNanoseconds(nanoseconds: number): void { - console.warn('shimmed function Calendar.addNanoseconds'); - } - - nanosecondAsString(): string { - throw new Error('shimmed function Calendar.nanosecondAsString'); - } - - nanosecondAsPaddedString(minDigits: number): string { - throw new Error('shimmed function Calendar.nanosecondAsPaddedString'); - } - - compare(other: Calendar): number { - throw new Error('shimmed function Calendar.compare'); - } - - compareDateTime(other: Date): number { - throw new Error('shimmed function Calendar.compareDateTime'); - } - - copyTo(other: Calendar): void { - console.warn('shimmed function Calendar.copyTo'); - } - - getTimeZone(): string { - throw new Error('shimmed function Calendar.getTimeZone'); - } - - changeTimeZone(timeZoneId: string): void { - console.warn('shimmed function Calendar.changeTimeZone'); - } - - timeZoneAsString(): string { - throw new Error('shimmed function Calendar.timeZoneAsString'); - } - - timeZoneAsString_1(idealLength: number): string { - throw new Error('shimmed function Calendar.timeZoneAsString_1'); - } - - } - export class CalendarIdentifiers { - static julian: string = 'JulianCalendar'; - static gregorian: string = 'GregorianCalendar'; - static hebrew: string = 'HebrewCalendar'; - static hijri: string = 'HijriCalendar'; - static japanese: string = 'JapaneseCalendar'; - static korean: string = 'KoreanCalendar'; - static taiwan: string = 'TaiwanCalendar'; - static thai: string = 'ThaiCalendar'; - static umAlQura: string = 'UmAlQuraCalendar'; - static persian: string = 'PersianCalendar'; - static chineseLunar: string = 'ChineseLunarCalendar'; - static vietnameseLunar: string = 'VietnameseLunarCalendar'; - static taiwanLunar: string = 'TaiwanLunarCalendar'; - static koreanLunar: string = 'KoreanLunarCalendar'; - static japaneseLunar: string = 'JapaneseLunarCalendar'; - - } - export class ClockIdentifiers { - static twelveHour: string = '12HourClock'; - static twentyFourHour: string = '24HourClock'; - - } - export namespace Collation { - export class CharacterGrouping implements ICharacterGrouping { - first: string; - label: string; - - } - export class CharacterGroupings implements ICharacterGroupings, Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - // constructor(language: string); - // constructor(); - constructor(language: string) {} - - size: number; - - lookup(text: string): string { - throw new Error('shimmed function CharacterGroupings.lookup'); - } - - getAt(index: number): CharacterGrouping { - throw new Error('shimmed function CharacterGroupings.getAt'); - } - - indexOf(value: CharacterGrouping): { returnValue: Boolean, index: number } { - throw new Error('shimmed function CharacterGroupings.indexOf'); - } - - getMany(startIndex: number, items: CharacterGrouping[]): number { - throw new Error('shimmed function CharacterGroupings.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CharacterGroupings.first'); - } - - } - } - export class CurrencyAmount implements ICurrencyAmount { - // constructor(amount: string, currency: string); - constructor(amount: string, currency: string) {} - - amount: string; - currency: string; - - } - export class CurrencyIdentifiers { - static hnl: string = 'HNL'; - static aed: string = 'AED'; - static afn: string = 'AFN'; - static all: string = 'ALL'; - static amd: string = 'AMD'; - static ang: string = 'ANG'; - static aoa: string = 'AOA'; - static ars: string = 'ARS'; - static aud: string = 'AUD'; - static awg: string = 'AWG'; - static azn: string = 'AZN'; - static bam: string = 'BAM'; - static bbd: string = 'BBD'; - static bdt: string = 'BDT'; - static bgn: string = 'BGN'; - static bhd: string = 'BHD'; - static bif: string = 'BIF'; - static bmd: string = 'BMD'; - static bnd: string = 'BND'; - static bob: string = 'BOB'; - static brl: string = 'BRL'; - static bsd: string = 'BSD'; - static btn: string = 'BTN'; - static bwp: string = 'BWP'; - static byr: string = 'BYR'; - static bzd: string = 'BZD'; - static cad: string = 'CAD'; - static cdf: string = 'CDF'; - static chf: string = 'CHF'; - static clp: string = 'CLP'; - static cny: string = 'CNY'; - static cop: string = 'COP'; - static crc: string = 'CRC'; - static cup: string = 'CUP'; - static cve: string = 'CVE'; - static czk: string = 'CZK'; - static djf: string = 'DJF'; - static dkk: string = 'DKK'; - static dop: string = 'DOP'; - static dzd: string = 'DZD'; - static egp: string = 'EGP'; - static ern: string = 'ERN'; - static etb: string = 'ETB'; - static eur: string = 'EUR'; - static fjd: string = 'FJD'; - static fkp: string = 'FKP'; - static gbp: string = 'GBP'; - static gel: string = 'GEL'; - static ghs: string = 'GHS'; - static gip: string = 'GIP'; - static gmd: string = 'GMD'; - static gnf: string = 'GNF'; - static gtq: string = 'GTQ'; - static gyd: string = 'GYD'; - static hkd: string = 'HKD'; - static ron: string = 'RON'; - static hrk: string = 'HRK'; - static htg: string = 'HTG'; - static huf: string = 'HUF'; - static idr: string = 'IDR'; - static ils: string = 'ILS'; - static inr: string = 'INR'; - static iqd: string = 'IQD'; - static irr: string = 'IRR'; - static isk: string = 'ISK'; - static jmd: string = 'JMD'; - static jod: string = 'JOD'; - static jpy: string = 'JPY'; - static kes: string = 'KES'; - static kgs: string = 'KGS'; - static khr: string = 'KHR'; - static kmf: string = 'KMF'; - static kpw: string = 'KPW'; - static krw: string = 'KRW'; - static kwd: string = 'KWD'; - static kyd: string = 'KYD'; - static kzt: string = 'KZT'; - static lak: string = 'LAK'; - static lbp: string = 'LBP'; - static lkr: string = 'LKR'; - static lrd: string = 'LRD'; - static lsl: string = 'LSL'; - static ltl: string = 'LTL'; - static lvl: string = 'LVL'; - static lyd: string = 'LYD'; - static mad: string = 'MAD'; - static mdl: string = 'MDL'; - static mga: string = 'MGA'; - static mkd: string = 'MKD'; - static mmk: string = 'MMK'; - static mnt: string = 'MNT'; - static mop: string = 'MOP'; - static mro: string = 'MRO'; - static mur: string = 'MUR'; - static mvr: string = 'MVR'; - static mwk: string = 'MWK'; - static mxn: string = 'MXN'; - static myr: string = 'MYR'; - static mzn: string = 'MZN'; - static nad: string = 'NAD'; - static ngn: string = 'NGN'; - static nio: string = 'NIO'; - static nok: string = 'NOK'; - static npr: string = 'NPR'; - static nzd: string = 'NZD'; - static omr: string = 'OMR'; - static pab: string = 'PAB'; - static pen: string = 'PEN'; - static pgk: string = 'PGK'; - static php: string = 'PHP'; - static pkr: string = 'PKR'; - static pln: string = 'PLN'; - static pyg: string = 'PYG'; - static qar: string = 'QAR'; - static rsd: string = 'RSD'; - static rub: string = 'RUB'; - static rwf: string = 'RWF'; - static sar: string = 'SAR'; - static sbd: string = 'SBD'; - static scr: string = 'SCR'; - static sdg: string = 'SDG'; - static sek: string = 'SEK'; - static sgd: string = 'SGD'; - static shp: string = 'SHP'; - static sll: string = 'SLL'; - static sos: string = 'SOS'; - static srd: string = 'SRD'; - static std: string = 'STD'; - static syp: string = 'SYP'; - static szl: string = 'SZL'; - static thb: string = 'THB'; - static tjs: string = 'TJS'; - static tmt: string = 'TMT'; - static tnd: string = 'TND'; - static top: string = 'TOP'; - static try: string = 'TRY'; - static ttd: string = 'TTD'; - static twd: string = 'TWD'; - static tzs: string = 'TZS'; - static uah: string = 'UAH'; - static ugx: string = 'UGX'; - static usd: string = 'USD'; - static uyu: string = 'UYU'; - static uzs: string = 'UZS'; - static vef: string = 'VEF'; - static vnd: string = 'VND'; - static vuv: string = 'VUV'; - static wst: string = 'WST'; - static xaf: string = 'XAF'; - static xcd: string = 'XCD'; - static xof: string = 'XOF'; - static xpf: string = 'XPF'; - static xxx: string = 'XXX'; - static yer: string = 'YER'; - static zar: string = 'ZAR'; - static zmw: string = 'ZMW'; - static zwl: string = 'ZWL'; - static byn: string = 'BYN'; - static ssp: string = 'SSP'; - static stn: string = 'STN'; - static ves: string = 'VES'; - static mru: string = 'MRU'; - - } - export namespace DateTimeFormatting { - export class DateTimeFormatter implements IDateTimeFormatter, IDateTimeFormatter2 { - // constructor(formatTemplate: string); - // constructor(formatTemplate: string, languages: Foundation.Collections.IIterable); - // constructor(formatTemplate: string, languages: Foundation.Collections.IIterable, geographicRegion: string, calendar: string, clock: string); - // constructor(yearFormat: YearFormat, monthFormat: MonthFormat, dayFormat: DayFormat, dayOfWeekFormat: DayOfWeekFormat); - // constructor(hourFormat: HourFormat, minuteFormat: MinuteFormat, secondFormat: SecondFormat); - // constructor(yearFormat: YearFormat, monthFormat: MonthFormat, dayFormat: DayFormat, dayOfWeekFormat: DayOfWeekFormat, hourFormat: HourFormat, minuteFormat: MinuteFormat, secondFormat: SecondFormat, languages: Foundation.Collections.IIterable); - // constructor(yearFormat: YearFormat, monthFormat: MonthFormat, dayFormat: DayFormat, dayOfWeekFormat: DayOfWeekFormat, hourFormat: HourFormat, minuteFormat: MinuteFormat, secondFormat: SecondFormat, languages: Foundation.Collections.IIterable, geographicRegion: string, calendar: string, clock: string); - constructor(formatTemplate: string, languages: Foundation.Collections.IIterable, geographicRegion: string, calendar: string, clock: string, yearFormat: YearFormat, monthFormat: MonthFormat, dayFormat: DayFormat, dayOfWeekFormat: DayOfWeekFormat, hourFormat: HourFormat, minuteFormat: MinuteFormat, secondFormat: SecondFormat) {} - - numeralSystem: string; - clock: string; - geographicRegion: string; - includeDay: DayFormat; - includeDayOfWeek: DayOfWeekFormat; - includeHour: HourFormat; - includeMinute: MinuteFormat; - includeMonth: MonthFormat; - includeSecond: SecondFormat; - includeYear: YearFormat; - languages: string[]; - calendar: string; - patterns: string[]; - resolvedGeographicRegion: string; - resolvedLanguage: string; - template: string; - static longDate: DateTimeFormatter = null; - static longTime: DateTimeFormatter = null; - static shortDate: DateTimeFormatter = null; - static shortTime: DateTimeFormatter = null; - - format(value: Date): string { - throw new Error('shimmed function DateTimeFormatter.format'); - } - - format_1(datetime: Date, timeZoneId: string): string { - throw new Error('shimmed function DateTimeFormatter.format_1'); - } - - } - export enum DayFormat { - none, - default, - } - export enum DayOfWeekFormat { - none, - default, - abbreviated, - full, - } - export enum HourFormat { - none, - default, - } - export enum MinuteFormat { - none, - default, - } - export enum MonthFormat { - none, - default, - abbreviated, - full, - numeric, - } - export enum SecondFormat { - none, - default, - } - export enum YearFormat { - none, - default, - abbreviated, - full, - } - } - export enum DayOfWeek { - sunday, - monday, - tuesday, - wednesday, - thursday, - friday, - saturday, - } - export namespace Fonts { - export class LanguageFont implements ILanguageFont { - fontFamily: string; - fontStretch: UI.Text.FontStretch; - fontStyle: UI.Text.FontStyle; - fontWeight: UI.Text.FontWeight; - scaleFactor: number; - - } - export class LanguageFontGroup implements ILanguageFontGroup { - // constructor(languageTag: string); - constructor(languageTag: string) {} - - documentAlternate1Font: LanguageFont; - documentAlternate2Font: LanguageFont; - documentHeadingFont: LanguageFont; - fixedWidthTextFont: LanguageFont; - modernDocumentFont: LanguageFont; - traditionalDocumentFont: LanguageFont; - uicaptionFont: LanguageFont; - uiheadingFont: LanguageFont; - uinotificationHeadingFont: LanguageFont; - uitextFont: LanguageFont; - uititleFont: LanguageFont; - - } - } - export class GeographicRegion implements IGeographicRegion { - // constructor(geographicRegionCode: string); - // constructor(); - constructor(geographicRegionCode: string) {} - - code: string = 'GB'; - codeThreeDigit: string = '826'; - codeThreeLetter: string = 'GBR'; - codeTwoLetter: string = 'GB'; - currenciesInUse: string[] = [ 'GBP' ]; - displayName: string = 'United Kingdom'; - nativeName: string = 'United Kingdom'; - - static isSupported(geographicRegionCode: string): Boolean { - throw new Error('shimmed function GeographicRegion.isSupported'); - } - - } - export interface GlobalizationJapanesePhoneticAnalyzerContract { - } - export class JapanesePhoneme implements IJapanesePhoneme { - displayText: string; - isPhraseStart: Boolean; - yomiText: string; - - } - export class JapanesePhoneticAnalyzer { - static getWords(input: string): JapanesePhoneme[] { - throw new Error('shimmed function JapanesePhoneticAnalyzer.getWords'); - } - - static getWords_1(input: string, monoRuby: Boolean): JapanesePhoneme[] { - throw new Error('shimmed function JapanesePhoneticAnalyzer.getWords_1'); - } - - } - export class Language implements ILanguage, ILanguageExtensionSubtags, ILanguage2 { - // constructor(languageTag: string); - constructor(languageTag: string) {} - - displayName: string; - languageTag: string; - nativeName: string; - script: string; - layoutDirection: LanguageLayoutDirection; - static currentInputMethodLanguageTag: string = 'en-GB'; - - getExtensionSubtags(singleton: string): string[] { - throw new Error('shimmed function Language.getExtensionSubtags'); - } - - static trySetInputMethodLanguageTag(languageTag: string): Boolean { - throw new Error('shimmed function Language.trySetInputMethodLanguageTag'); - } - - static isWellFormed(languageTag: string): Boolean { - throw new Error('shimmed function Language.isWellFormed'); - } - - } - export enum LanguageLayoutDirection { - ltr, - rtl, - ttbLtr, - ttbRtl, - } - export namespace NumberFormatting { - export class CurrencyFormatter implements ICurrencyFormatter, INumberFormatterOptions, INumberFormatter, INumberFormatter2, INumberParser, ICurrencyFormatter2, ISignificantDigitsOption, INumberRounderOption, ISignedZeroOption { - // constructor(currencyCode: string); - // constructor(currencyCode: string, languages: Foundation.Collections.IIterable, geographicRegion: string); - constructor(currencyCode: string, languages: Foundation.Collections.IIterable, geographicRegion: string) {} - - currency: string; - mode: CurrencyFormatterMode; - numeralSystem: string; - isGrouped: Boolean; - isDecimalPointAlwaysDisplayed: Boolean; - integerDigits: number; - fractionDigits: number; - geographicRegion: string; - resolvedGeographicRegion: string; - resolvedLanguage: string; - languages: string[]; - numberRounder: INumberRounder; - isZeroSigned: Boolean; - significantDigits: number; - - format(value: number): string { - throw new Error('shimmed function CurrencyFormatter.format'); - } - - format_1(value: number): string { - throw new Error('shimmed function CurrencyFormatter.format_1'); - } - - format_2(value: number): string { - throw new Error('shimmed function CurrencyFormatter.format_2'); - } - - formatInt(value: number): string { - throw new Error('shimmed function CurrencyFormatter.formatInt'); - } - - formatUInt(value: number): string { - throw new Error('shimmed function CurrencyFormatter.formatUInt'); - } - - formatDouble(value: number): string { - throw new Error('shimmed function CurrencyFormatter.formatDouble'); - } - - parseInt(text: string): number | null { - throw new Error('shimmed function CurrencyFormatter.parseInt'); - } - - parseUInt(text: string): number | null { - throw new Error('shimmed function CurrencyFormatter.parseUInt'); - } - - parseDouble(text: string): number | null { - throw new Error('shimmed function CurrencyFormatter.parseDouble'); - } - - applyRoundingForCurrency(roundingAlgorithm: RoundingAlgorithm): void { - console.warn('shimmed function CurrencyFormatter.applyRoundingForCurrency'); - } - - } - export enum CurrencyFormatterMode { - useSymbol, - useCurrencyCode, - } - export class DecimalFormatter implements INumberFormatterOptions, INumberFormatter, INumberFormatter2, INumberParser, ISignificantDigitsOption, INumberRounderOption, ISignedZeroOption { - // constructor(languages: Foundation.Collections.IIterable, geographicRegion: string); - // constructor(); - constructor(languages: Foundation.Collections.IIterable, geographicRegion: string) {} - - isDecimalPointAlwaysDisplayed: Boolean = false; - integerDigits: number = 1; - isGrouped: Boolean = false; - numeralSystem: string = 'Latn'; - fractionDigits: number = 2; - geographicRegion: string = 'GB'; - languages: string[] = [ 'en-GB' ]; - resolvedGeographicRegion: string = 'ZZ'; - resolvedLanguage: string = 'en-GB'; - numberRounder: INumberRounder; - isZeroSigned: Boolean = false; - significantDigits: number = 0; - - format(value: number): string { - throw new Error('shimmed function DecimalFormatter.format'); - } - - format_1(value: number): string { - throw new Error('shimmed function DecimalFormatter.format_1'); - } - - format_2(value: number): string { - throw new Error('shimmed function DecimalFormatter.format_2'); - } - - formatInt(value: number): string { - throw new Error('shimmed function DecimalFormatter.formatInt'); - } - - formatUInt(value: number): string { - throw new Error('shimmed function DecimalFormatter.formatUInt'); - } - - formatDouble(value: number): string { - throw new Error('shimmed function DecimalFormatter.formatDouble'); - } - - parseInt(text: string): number | null { - throw new Error('shimmed function DecimalFormatter.parseInt'); - } - - parseUInt(text: string): number | null { - throw new Error('shimmed function DecimalFormatter.parseUInt'); - } - - parseDouble(text: string): number | null { - throw new Error('shimmed function DecimalFormatter.parseDouble'); - } - - } - export class IncrementNumberRounder implements INumberRounder, IIncrementNumberRounder { - // constructor(); - roundingAlgorithm: RoundingAlgorithm = RoundingAlgorithm.roundHalfUp; - increment: number = 1; - - roundInt32(value: number): number { - throw new Error('shimmed function IncrementNumberRounder.roundInt32'); - } - - roundUInt32(value: number): number { - throw new Error('shimmed function IncrementNumberRounder.roundUInt32'); - } - - roundInt64(value: number): number { - throw new Error('shimmed function IncrementNumberRounder.roundInt64'); - } - - roundUInt64(value: number): number { - throw new Error('shimmed function IncrementNumberRounder.roundUInt64'); - } - - roundSingle(value: number): number { - throw new Error('shimmed function IncrementNumberRounder.roundSingle'); - } - - roundDouble(value: number): number { - throw new Error('shimmed function IncrementNumberRounder.roundDouble'); - } - - } - export interface INumberFormatter { - format(value: number): string; - format_1(value: number): string; - format_2(value: number): string; - } - export interface INumberFormatter2 { - formatInt(value: number): string; - formatUInt(value: number): string; - formatDouble(value: number): string; - } - export interface INumberFormatterOptions { - fractionDigits: number; - geographicRegion: string; - integerDigits: number; - isDecimalPointAlwaysDisplayed: Boolean; - isGrouped: Boolean; - languages: string[]; - numeralSystem: string; - resolvedGeographicRegion: string; - resolvedLanguage: string; - } - export interface INumberParser { - parseInt(text: string): number | null; - parseUInt(text: string): number | null; - parseDouble(text: string): number | null; - } - export interface INumberRounder { - roundInt32(value: number): number; - roundUInt32(value: number): number; - roundInt64(value: number): number; - roundUInt64(value: number): number; - roundSingle(value: number): number; - roundDouble(value: number): number; - } - export interface INumberRounderOption { - numberRounder: INumberRounder; - } - export interface ISignedZeroOption { - isZeroSigned: Boolean; - } - export interface ISignificantDigitsOption { - significantDigits: number; - } - export class NumeralSystemTranslator implements INumeralSystemTranslator { - // constructor(languages: Foundation.Collections.IIterable); - // constructor(); - constructor(languages: Foundation.Collections.IIterable) {} - - numeralSystem: string = 'Latn'; - languages: string[] = [ 'en-GB' ]; - resolvedLanguage: string = 'en-GB'; - - translateNumerals(value: string): string { - throw new Error('shimmed function NumeralSystemTranslator.translateNumerals'); - } - - } - export class PercentFormatter implements INumberFormatterOptions, INumberFormatter, INumberFormatter2, INumberParser, ISignificantDigitsOption, INumberRounderOption, ISignedZeroOption { - // constructor(languages: Foundation.Collections.IIterable, geographicRegion: string); - // constructor(); - constructor(languages: Foundation.Collections.IIterable, geographicRegion: string) {} - - isDecimalPointAlwaysDisplayed: Boolean = false; - integerDigits: number = 1; - isGrouped: Boolean = false; - numeralSystem: string = 'Latn'; - fractionDigits: number = 2; - geographicRegion: string = 'GB'; - languages: string[] = [ 'en-GB' ]; - resolvedGeographicRegion: string = 'ZZ'; - resolvedLanguage: string = 'en-GB'; - numberRounder: INumberRounder; - isZeroSigned: Boolean = false; - significantDigits: number = 0; - - format(value: number): string { - throw new Error('shimmed function PercentFormatter.format'); - } - - format_1(value: number): string { - throw new Error('shimmed function PercentFormatter.format_1'); - } - - format_2(value: number): string { - throw new Error('shimmed function PercentFormatter.format_2'); - } - - formatInt(value: number): string { - throw new Error('shimmed function PercentFormatter.formatInt'); - } - - formatUInt(value: number): string { - throw new Error('shimmed function PercentFormatter.formatUInt'); - } - - formatDouble(value: number): string { - throw new Error('shimmed function PercentFormatter.formatDouble'); - } - - parseInt(text: string): number | null { - throw new Error('shimmed function PercentFormatter.parseInt'); - } - - parseUInt(text: string): number | null { - throw new Error('shimmed function PercentFormatter.parseUInt'); - } - - parseDouble(text: string): number | null { - throw new Error('shimmed function PercentFormatter.parseDouble'); - } - - } - export class PermilleFormatter implements INumberFormatterOptions, INumberFormatter, INumberFormatter2, INumberParser, ISignificantDigitsOption, INumberRounderOption, ISignedZeroOption { - // constructor(languages: Foundation.Collections.IIterable, geographicRegion: string); - // constructor(); - constructor(languages: Foundation.Collections.IIterable, geographicRegion: string) {} - - isDecimalPointAlwaysDisplayed: Boolean = false; - integerDigits: number = 1; - isGrouped: Boolean = false; - numeralSystem: string = 'Latn'; - fractionDigits: number = 2; - geographicRegion: string = 'GB'; - languages: string[] = [ 'en-GB' ]; - resolvedGeographicRegion: string = 'ZZ'; - resolvedLanguage: string = 'en-GB'; - numberRounder: INumberRounder; - isZeroSigned: Boolean = false; - significantDigits: number = 0; - - format(value: number): string { - throw new Error('shimmed function PermilleFormatter.format'); - } - - format_1(value: number): string { - throw new Error('shimmed function PermilleFormatter.format_1'); - } - - format_2(value: number): string { - throw new Error('shimmed function PermilleFormatter.format_2'); - } - - formatInt(value: number): string { - throw new Error('shimmed function PermilleFormatter.formatInt'); - } - - formatUInt(value: number): string { - throw new Error('shimmed function PermilleFormatter.formatUInt'); - } - - formatDouble(value: number): string { - throw new Error('shimmed function PermilleFormatter.formatDouble'); - } - - parseInt(text: string): number | null { - throw new Error('shimmed function PermilleFormatter.parseInt'); - } - - parseUInt(text: string): number | null { - throw new Error('shimmed function PermilleFormatter.parseUInt'); - } - - parseDouble(text: string): number | null { - throw new Error('shimmed function PermilleFormatter.parseDouble'); - } - - } - export enum RoundingAlgorithm { - none, - roundDown, - roundUp, - roundTowardsZero, - roundAwayFromZero, - roundHalfDown, - roundHalfUp, - roundHalfTowardsZero, - roundHalfAwayFromZero, - roundHalfToEven, - roundHalfToOdd, - } - export class SignificantDigitsNumberRounder implements INumberRounder, ISignificantDigitsNumberRounder { - // constructor(); - significantDigits: number = 1; - roundingAlgorithm: RoundingAlgorithm = RoundingAlgorithm.roundHalfUp; - - roundInt32(value: number): number { - throw new Error('shimmed function SignificantDigitsNumberRounder.roundInt32'); - } - - roundUInt32(value: number): number { - throw new Error('shimmed function SignificantDigitsNumberRounder.roundUInt32'); - } - - roundInt64(value: number): number { - throw new Error('shimmed function SignificantDigitsNumberRounder.roundInt64'); - } - - roundUInt64(value: number): number { - throw new Error('shimmed function SignificantDigitsNumberRounder.roundUInt64'); - } - - roundSingle(value: number): number { - throw new Error('shimmed function SignificantDigitsNumberRounder.roundSingle'); - } - - roundDouble(value: number): number { - throw new Error('shimmed function SignificantDigitsNumberRounder.roundDouble'); - } - - } - } - export class NumeralSystemIdentifiers { - static fullWide: string = 'FullWide'; - static arab: string = 'Arab'; - static arabExt: string = 'ArabExt'; - static bali: string = 'Bali'; - static beng: string = 'Beng'; - static cham: string = 'Cham'; - static deva: string = 'Deva'; - static mymrShan: string = 'MymrShan'; - static gujr: string = 'Gujr'; - static guru: string = 'Guru'; - static haniDec: string = 'HaniDec'; - static java: string = 'Java'; - static kali: string = 'Kali'; - static khmr: string = 'Khmr'; - static knda: string = 'Knda'; - static lana: string = 'Lana'; - static lanaTham: string = 'LanaTham'; - static laoo: string = 'Laoo'; - static latn: string = 'Latn'; - static lepc: string = 'Lepc'; - static limb: string = 'Limb'; - static mlym: string = 'Mlym'; - static mong: string = 'Mong'; - static mtei: string = 'Mtei'; - static mymr: string = 'Mymr'; - static nkoo: string = 'Nkoo'; - static olck: string = 'Olck'; - static orya: string = 'Orya'; - static saur: string = 'Saur'; - static sund: string = 'Sund'; - static talu: string = 'Talu'; - static tamlDec: string = 'TamlDec'; - static telu: string = 'Telu'; - static thai: string = 'Thai'; - static tibt: string = 'Tibt'; - static vaii: string = 'Vaii'; - static mathBold: string = 'MathBold'; - static mathDbl: string = 'MathDbl'; - static mathMono: string = 'MathMono'; - static mathSanb: string = 'MathSanb'; - static mathSans: string = 'MathSans'; - static osma: string = 'Osma'; - static zmthBold: string = 'ZmthBold'; - static zmthDbl: string = 'ZmthDbl'; - static zmthMono: string = 'ZmthMono'; - static zmthSanb: string = 'ZmthSanb'; - static zmthSans: string = 'ZmthSans'; - static brah: string = 'Brah'; - - } - export namespace PhoneNumberFormatting { - export enum PhoneNumberFormat { - e164, - international, - national, - rfc3966, - } - export class PhoneNumberFormatter implements IPhoneNumberFormatter { - // constructor(); - format(number: PhoneNumberInfo): string { - throw new Error('shimmed function PhoneNumberFormatter.format'); - } - - format_1(number: PhoneNumberInfo, numberFormat: PhoneNumberFormat): string { - throw new Error('shimmed function PhoneNumberFormatter.format_1'); - } - - formatPartialString(number: string): string { - throw new Error('shimmed function PhoneNumberFormatter.formatPartialString'); - } - - formatString(number: string): string { - throw new Error('shimmed function PhoneNumberFormatter.formatString'); - } - - formatStringWithLeftToRightMarkers(number: string): string { - throw new Error('shimmed function PhoneNumberFormatter.formatStringWithLeftToRightMarkers'); - } - - static tryCreate(regionCode: string): PhoneNumberFormatter { - throw new Error('shimmed function PhoneNumberFormatter.tryCreate'); - } - - static getCountryCodeForRegion(regionCode: string): number { - throw new Error('shimmed function PhoneNumberFormatter.getCountryCodeForRegion'); - } - - static getNationalDirectDialingPrefixForRegion(regionCode: string, stripNonDigit: Boolean): string { - throw new Error('shimmed function PhoneNumberFormatter.getNationalDirectDialingPrefixForRegion'); - } - - static wrapWithLeftToRightMarkers(number: string): string { - throw new Error('shimmed function PhoneNumberFormatter.wrapWithLeftToRightMarkers'); - } - - } - export class PhoneNumberInfo implements IPhoneNumberInfo, Foundation.IStringable { - // constructor(number: string); - constructor(number: string) {} - - countryCode: number; - phoneNumber: string; - - getLengthOfGeographicalAreaCode(): number { - throw new Error('shimmed function PhoneNumberInfo.getLengthOfGeographicalAreaCode'); - } - - getNationalSignificantNumber(): string { - throw new Error('shimmed function PhoneNumberInfo.getNationalSignificantNumber'); - } - - getLengthOfNationalDestinationCode(): number { - throw new Error('shimmed function PhoneNumberInfo.getLengthOfNationalDestinationCode'); - } - - predictNumberKind(): PredictedPhoneNumberKind { - throw new Error('shimmed function PhoneNumberInfo.predictNumberKind'); - } - - getGeographicRegionCode(): string { - throw new Error('shimmed function PhoneNumberInfo.getGeographicRegionCode'); - } - - checkNumberMatch(otherNumber: PhoneNumberInfo): PhoneNumberMatchResult { - throw new Error('shimmed function PhoneNumberInfo.checkNumberMatch'); - } - - static tryParse(input: string): { returnValue: PhoneNumberParseResult, phoneNumber: PhoneNumberInfo } { - throw new Error('shimmed function PhoneNumberInfo.tryParse'); - } - - static tryParse_1(input: string, regionCode: string): { returnValue: PhoneNumberParseResult, phoneNumber: PhoneNumberInfo } { - throw new Error('shimmed function PhoneNumberInfo.tryParse_1'); - } - - } - export enum PhoneNumberMatchResult { - noMatch, - shortNationalSignificantNumberMatch, - nationalSignificantNumberMatch, - exactMatch, - } - export enum PhoneNumberParseResult { - valid, - notANumber, - invalidCountryCode, - tooShort, - tooLong, - } - export enum PredictedPhoneNumberKind { - fixedLine, - mobile, - fixedLineOrMobile, - tollFree, - premiumRate, - sharedCost, - voip, - personalNumber, - pager, - universalAccountNumber, - voicemail, - unknown, - } - } - } - export namespace Graphics { - export namespace Capture { - export class Direct3D11CaptureFrame implements IDirect3D11CaptureFrame, Foundation.IClosable { - contentSize: SizeInt32; - surface: DirectX.Direct3D11.IDirect3DSurface; - systemRelativeTime: number; - - close(): void { - console.warn('shimmed function Direct3D11CaptureFrame.close'); - } - - } - export class Direct3D11CaptureFramePool implements IDirect3D11CaptureFramePool, Foundation.IClosable { - dispatcherQueue: System.DispatcherQueue; - - recreate(device: DirectX.Direct3D11.IDirect3DDevice, pixelFormat: DirectX.DirectXPixelFormat, numberOfBuffers: number, size: SizeInt32): void { - console.warn('shimmed function Direct3D11CaptureFramePool.recreate'); - } - - tryGetNextFrame(): Direct3D11CaptureFrame { - throw new Error('shimmed function Direct3D11CaptureFramePool.tryGetNextFrame'); - } - - createCaptureSession(item: GraphicsCaptureItem): GraphicsCaptureSession { - throw new Error('shimmed function Direct3D11CaptureFramePool.createCaptureSession'); - } - - close(): void { - console.warn('shimmed function Direct3D11CaptureFramePool.close'); - } - - static createFreeThreaded(device: DirectX.Direct3D11.IDirect3DDevice, pixelFormat: DirectX.DirectXPixelFormat, numberOfBuffers: number, size: SizeInt32): Direct3D11CaptureFramePool { - throw new Error('shimmed function Direct3D11CaptureFramePool.createFreeThreaded'); - } - - static create(device: DirectX.Direct3D11.IDirect3DDevice, pixelFormat: DirectX.DirectXPixelFormat, numberOfBuffers: number, size: SizeInt32): Direct3D11CaptureFramePool { - throw new Error('shimmed function Direct3D11CaptureFramePool.create'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Direct3D11CaptureFramePool::addEventListener: ${name}`); - switch (name) { - case "framearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export class GraphicsCaptureItem implements IGraphicsCaptureItem { - displayName: string; - size: SizeInt32; - - static createFromVisual(visual: UI.Composition.Visual): GraphicsCaptureItem { - throw new Error('shimmed function GraphicsCaptureItem.createFromVisual'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GraphicsCaptureItem::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class GraphicsCapturePicker implements IGraphicsCapturePicker { - // constructor(); - pickSingleItemAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GraphicsCapturePicker.pickSingleItemAsync'); - } - - } - export class GraphicsCaptureSession implements IGraphicsCaptureSession, Foundation.IClosable { - startCapture(): void { - console.warn('shimmed function GraphicsCaptureSession.startCapture'); - } - - close(): void { - console.warn('shimmed function GraphicsCaptureSession.close'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function GraphicsCaptureSession.isSupported'); - } - - } - } - export namespace DirectX { - export namespace Direct3D11 { - export enum Direct3DBindings { - vertexBuffer = 1, - indexBuffer, - constantBuffer = 4, - shaderResource = 8, - streamOutput = 16, - renderTarget = 32, - depthStencil = 64, - unorderedAccess = 128, - decoder = 512, - videoEncoder = 1024, - } - export interface Direct3DMultisampleDescription { - count: number; - quality: number; - } - export interface Direct3DSurfaceDescription { - width: number; - height: number; - format: DirectXPixelFormat; - multisampleDescription: Direct3DMultisampleDescription; - } - export enum Direct3DUsage { - default, - immutable, - dynamic, - staging, - } - export interface IDirect3DDevice extends Foundation.IClosable { - trim(): void; - } - export interface IDirect3DSurface extends Foundation.IClosable { - description: Direct3DSurfaceDescription; - } - } - export enum DirectXAlphaMode { - unspecified, - premultiplied, - straight, - ignore, - } - export enum DirectXColorSpace { - rgbFullG22NoneP709, - rgbFullG10NoneP709, - rgbStudioG22NoneP709, - rgbStudioG22NoneP2020, - reserved, - yccFullG22NoneP709X601, - yccStudioG22LeftP601, - yccFullG22LeftP601, - yccStudioG22LeftP709, - yccFullG22LeftP709, - yccStudioG22LeftP2020, - yccFullG22LeftP2020, - rgbFullG2084NoneP2020, - yccStudioG2084LeftP2020, - rgbStudioG2084NoneP2020, - yccStudioG22TopLeftP2020, - yccStudioG2084TopLeftP2020, - rgbFullG22NoneP2020, - yccStudioGHlgTopLeftP2020, - yccFullGHlgTopLeftP2020, - rgbStudioG24NoneP709, - rgbStudioG24NoneP2020, - yccStudioG24LeftP709, - yccStudioG24LeftP2020, - yccStudioG24TopLeftP2020, - } - export enum DirectXPixelFormat { - unknown, - r32G32B32A32Typeless, - r32G32B32A32Float, - r32G32B32A32UInt, - r32G32B32A32Int, - r32G32B32Typeless, - r32G32B32Float, - r32G32B32UInt, - r32G32B32Int, - r16G16B16A16Typeless, - r16G16B16A16Float, - r16G16B16A16UIntNormalized, - r16G16B16A16UInt, - r16G16B16A16IntNormalized, - r16G16B16A16Int, - r32G32Typeless, - r32G32Float, - r32G32UInt, - r32G32Int, - r32G8X24Typeless, - d32FloatS8X24UInt, - r32FloatX8X24Typeless, - x32TypelessG8X24UInt, - r10G10B10A2Typeless, - r10G10B10A2UIntNormalized, - r10G10B10A2UInt, - r11G11B10Float, - r8G8B8A8Typeless, - r8G8B8A8UIntNormalized, - r8G8B8A8UIntNormalizedSrgb, - r8G8B8A8UInt, - r8G8B8A8IntNormalized, - r8G8B8A8Int, - r16G16Typeless, - r16G16Float, - r16G16UIntNormalized, - r16G16UInt, - r16G16IntNormalized, - r16G16Int, - r32Typeless, - d32Float, - r32Float, - r32UInt, - r32Int, - r24G8Typeless, - d24UIntNormalizedS8UInt, - r24UIntNormalizedX8Typeless, - x24TypelessG8UInt, - r8G8Typeless, - r8G8UIntNormalized, - r8G8UInt, - r8G8IntNormalized, - r8G8Int, - r16Typeless, - r16Float, - d16UIntNormalized, - r16UIntNormalized, - r16UInt, - r16IntNormalized, - r16Int, - r8Typeless, - r8UIntNormalized, - r8UInt, - r8IntNormalized, - r8Int, - a8UIntNormalized, - r1UIntNormalized, - r9G9B9E5SharedExponent, - r8G8B8G8UIntNormalized, - g8R8G8B8UIntNormalized, - bc1Typeless, - bc1UIntNormalized, - bc1UIntNormalizedSrgb, - bc2Typeless, - bc2UIntNormalized, - bc2UIntNormalizedSrgb, - bc3Typeless, - bc3UIntNormalized, - bc3UIntNormalizedSrgb, - bc4Typeless, - bc4UIntNormalized, - bc4IntNormalized, - bc5Typeless, - bc5UIntNormalized, - bc5IntNormalized, - b5G6R5UIntNormalized, - b5G5R5A1UIntNormalized, - b8G8R8A8UIntNormalized, - b8G8R8X8UIntNormalized, - r10G10B10XRBiasA2UIntNormalized, - b8G8R8A8Typeless, - b8G8R8A8UIntNormalizedSrgb, - b8G8R8X8Typeless, - b8G8R8X8UIntNormalizedSrgb, - bc6HTypeless, - bc6H16UnsignedFloat, - bc6H16Float, - bc7Typeless, - bc7UIntNormalized, - bc7UIntNormalizedSrgb, - ayuv, - y410, - y416, - nv12, - p010, - p016, - opaque420, - yuy2, - y210, - y216, - nv11, - ai44, - ia44, - p8, - a8P8, - b4G4R4A4UIntNormalized, - p208 = 130, - v208, - v408, - } - export enum DirectXPrimitiveTopology { - undefined, - pointList, - lineList, - lineStrip, - triangleList, - triangleStrip, - } - } - export namespace Display { - export class AdvancedColorInfo implements IAdvancedColorInfo { - bluePrimary: Foundation.Point; - currentAdvancedColorKind: AdvancedColorKind; - greenPrimary: Foundation.Point; - maxAverageFullFrameLuminanceInNits: number; - maxLuminanceInNits: number; - minLuminanceInNits: number; - redPrimary: Foundation.Point; - sdrWhiteLevelInNits: number; - whitePoint: Foundation.Point; - - isHdrMetadataFormatCurrentlySupported(format: HdrMetadataFormat): Boolean { - throw new Error('shimmed function AdvancedColorInfo.isHdrMetadataFormatCurrentlySupported'); - } - - isAdvancedColorKindAvailable(kind: AdvancedColorKind): Boolean { - throw new Error('shimmed function AdvancedColorInfo.isAdvancedColorKindAvailable'); - } - - } - export enum AdvancedColorKind { - standardDynamicRange, - wideColorGamut, - highDynamicRange, - } - export class BrightnessOverride implements IBrightnessOverride { - brightnessLevel: number; - isOverrideActive: Boolean; - isSupported: Boolean; - - setBrightnessLevel(brightnessLevel: number, options: DisplayBrightnessOverrideOptions): void { - console.warn('shimmed function BrightnessOverride.setBrightnessLevel'); - } - - setBrightnessScenario(scenario: DisplayBrightnessScenario, options: DisplayBrightnessOverrideOptions): void { - console.warn('shimmed function BrightnessOverride.setBrightnessScenario'); - } - - getLevelForScenario(scenario: DisplayBrightnessScenario): number { - throw new Error('shimmed function BrightnessOverride.getLevelForScenario'); - } - - startOverride(): void { - console.warn('shimmed function BrightnessOverride.startOverride'); - } - - stopOverride(): void { - console.warn('shimmed function BrightnessOverride.stopOverride'); - } - - static getDefaultForSystem(): BrightnessOverride { - throw new Error('shimmed function BrightnessOverride.getDefaultForSystem'); - } - - static getForCurrentView(): BrightnessOverride { - throw new Error('shimmed function BrightnessOverride.getForCurrentView'); - } - - static saveForSystemAsync(value: BrightnessOverride): Foundation.IAsyncOperation { - throw new Error('shimmed function BrightnessOverride.saveForSystemAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BrightnessOverride::addEventListener: ${name}`); - switch (name) { - case "brightnesslevelchanged": // Foundation.TypedEventHandler - case "isoverrideactivechanged": // Foundation.TypedEventHandler - case "issupportedchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class BrightnessOverrideSettings implements IBrightnessOverrideSettings { - desiredLevel: number; - desiredNits: number; - - static createFromLevel(level: number): BrightnessOverrideSettings { - throw new Error('shimmed function BrightnessOverrideSettings.createFromLevel'); - } - - static createFromNits(nits: number): BrightnessOverrideSettings { - throw new Error('shimmed function BrightnessOverrideSettings.createFromNits'); - } - - static createFromDisplayBrightnessOverrideScenario(overrideScenario: DisplayBrightnessOverrideScenario): BrightnessOverrideSettings { - throw new Error('shimmed function BrightnessOverrideSettings.createFromDisplayBrightnessOverrideScenario'); - } - - } - export class ColorOverrideSettings implements IColorOverrideSettings { - desiredDisplayColorOverrideScenario: DisplayColorOverrideScenario; - - static createFromDisplayColorOverrideScenario(overrideScenario: DisplayColorOverrideScenario): ColorOverrideSettings { - throw new Error('shimmed function ColorOverrideSettings.createFromDisplayColorOverrideScenario'); - } - - } - export namespace Core { - export enum HdmiDisplayColorSpace { - rgbLimited, - rgbFull, - bt2020, - bt709, - } - export interface HdmiDisplayHdr2086Metadata { - redPrimaryX: number; - redPrimaryY: number; - greenPrimaryX: number; - greenPrimaryY: number; - bluePrimaryX: number; - bluePrimaryY: number; - whitePointX: number; - whitePointY: number; - maxMasteringLuminance: number; - minMasteringLuminance: number; - maxContentLightLevel: number; - maxFrameAverageLightLevel: number; - } - export enum HdmiDisplayHdrOption { - none, - eotfSdr, - eotf2084, - dolbyVisionLowLatency, - } - export class HdmiDisplayInformation implements IHdmiDisplayInformation { - getSupportedDisplayModes(): HdmiDisplayMode[] { - throw new Error('shimmed function HdmiDisplayInformation.getSupportedDisplayModes'); - } - - getCurrentDisplayMode(): HdmiDisplayMode { - throw new Error('shimmed function HdmiDisplayInformation.getCurrentDisplayMode'); - } - - setDefaultDisplayModeAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function HdmiDisplayInformation.setDefaultDisplayModeAsync'); - } - - requestSetCurrentDisplayModeAsync(mode: HdmiDisplayMode): Foundation.IAsyncOperation { - throw new Error('shimmed function HdmiDisplayInformation.requestSetCurrentDisplayModeAsync'); - } - - requestSetCurrentDisplayModeAsync_1(mode: HdmiDisplayMode, hdrOption: HdmiDisplayHdrOption): Foundation.IAsyncOperation { - throw new Error('shimmed function HdmiDisplayInformation.requestSetCurrentDisplayModeAsync_1'); - } - - requestSetCurrentDisplayModeAsync_2(mode: HdmiDisplayMode, hdrOption: HdmiDisplayHdrOption, hdrMetadata: HdmiDisplayHdr2086Metadata): Foundation.IAsyncOperation { - throw new Error('shimmed function HdmiDisplayInformation.requestSetCurrentDisplayModeAsync_2'); - } - - static getForCurrentView(): HdmiDisplayInformation { - throw new Error('shimmed function HdmiDisplayInformation.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HdmiDisplayInformation::addEventListener: ${name}`); - switch (name) { - case "displaymodeschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class HdmiDisplayMode implements IHdmiDisplayMode, IHdmiDisplayMode2 { - bitsPerPixel: number; - colorSpace: HdmiDisplayColorSpace; - is2086MetadataSupported: Boolean; - isSdrLuminanceSupported: Boolean; - isSmpte2084Supported: Boolean; - pixelEncoding: HdmiDisplayPixelEncoding; - refreshRate: number; - resolutionHeightInRawPixels: number; - resolutionWidthInRawPixels: number; - stereoEnabled: Boolean; - isDolbyVisionLowLatencySupported: Boolean; - - isEqual(mode: HdmiDisplayMode): Boolean { - throw new Error('shimmed function HdmiDisplayMode.isEqual'); - } - - } - export enum HdmiDisplayPixelEncoding { - rgb444, - ycc444, - ycc422, - ycc420, - } - } - export enum DisplayBrightnessOverrideOptions { - none, - useDimmedPolicyWhenBatteryIsLow, - } - export enum DisplayBrightnessOverrideScenario { - idleBrightness, - barcodeReadingBrightness, - fullBrightness, - } - export enum DisplayBrightnessScenario { - defaultBrightness, - idleBrightness, - barcodeReadingBrightness, - fullBrightness, - } - export enum DisplayColorOverrideScenario { - accurate, - } - export class DisplayEnhancementOverride implements IDisplayEnhancementOverride { - colorOverrideSettings: ColorOverrideSettings; - brightnessOverrideSettings: BrightnessOverrideSettings; - canOverride: Boolean; - isOverrideActive: Boolean; - - getCurrentDisplayEnhancementOverrideCapabilities(): DisplayEnhancementOverrideCapabilities { - throw new Error('shimmed function DisplayEnhancementOverride.getCurrentDisplayEnhancementOverrideCapabilities'); - } - - requestOverride(): void { - console.warn('shimmed function DisplayEnhancementOverride.requestOverride'); - } - - stopOverride(): void { - console.warn('shimmed function DisplayEnhancementOverride.stopOverride'); - } - - static getForCurrentView(): DisplayEnhancementOverride { - throw new Error('shimmed function DisplayEnhancementOverride.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DisplayEnhancementOverride::addEventListener: ${name}`); - switch (name) { - case "canoverridechanged": // Foundation.TypedEventHandler - case "displayenhancementoverridecapabilitieschanged": // Foundation.TypedEventHandler - case "isoverrideactivechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class DisplayEnhancementOverrideCapabilities implements IDisplayEnhancementOverrideCapabilities { - isBrightnessControlSupported: Boolean; - isBrightnessNitsControlSupported: Boolean; - - getSupportedNitRanges(): NitRange[] { - throw new Error('shimmed function DisplayEnhancementOverrideCapabilities.getSupportedNitRanges'); - } - - } - export class DisplayEnhancementOverrideCapabilitiesChangedEventArgs implements IDisplayEnhancementOverrideCapabilitiesChangedEventArgs { - capabilities: DisplayEnhancementOverrideCapabilities; - - } - export class DisplayInformation implements IDisplayInformation, IDisplayInformation2, IDisplayInformation3, IDisplayInformation4, IDisplayInformation5 { - currentOrientation: DisplayOrientations; - logicalDpi: number; - nativeOrientation: DisplayOrientations; - rawDpiX: number; - rawDpiY: number; - resolutionScale: ResolutionScale; - stereoEnabled: Boolean; - rawPixelsPerViewPixel: number; - diagonalSizeInInches: number | null; - screenHeightInRawPixels: number; - screenWidthInRawPixels: number; - static autoRotationPreferences: DisplayOrientations = DisplayOrientations.none; - - getColorProfileAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DisplayInformation.getColorProfileAsync'); - } - - getAdvancedColorInfo(): AdvancedColorInfo { - throw new Error('shimmed function DisplayInformation.getAdvancedColorInfo'); - } - - static getForCurrentView(): DisplayInformation { - throw new Error('shimmed function DisplayInformation.getForCurrentView'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`DisplayInformation::addEventListener: ${name}`); - switch (name) { - case "displaycontentsinvalidated": // Foundation.TypedEventHandler - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`DisplayInformation::addEventListener: ${name}`); - switch (name) { - case "colorprofilechanged": // Foundation.TypedEventHandler - case "dpichanged": // Foundation.TypedEventHandler - case "orientationchanged": // Foundation.TypedEventHandler - case "stereoenabledchanged": // Foundation.TypedEventHandler - case "advancedcolorinfochanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum DisplayOrientations { - none, - landscape, - portrait, - landscapeFlipped = 4, - portraitFlipped = 8, - } - export class DisplayProperties { - static autoRotationPreferences: DisplayOrientations = DisplayOrientations.none; - static currentOrientation: DisplayOrientations = DisplayOrientations.landscape; - static logicalDpi: number = 96; - static nativeOrientation: DisplayOrientations = DisplayOrientations.landscape; - static resolutionScale: ResolutionScale = ResolutionScale.scale100Percent; - static stereoEnabled: Boolean = false; - - static getColorProfileAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DisplayProperties.getColorProfileAsync'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`DisplayProperties::addEventListener: ${name}`); - switch (name) { - case "colorprofilechanged": // DisplayPropertiesEventHandler - case "displaycontentsinvalidated": // DisplayPropertiesEventHandler - case "logicaldpichanged": // DisplayPropertiesEventHandler - case "orientationchanged": // DisplayPropertiesEventHandler - case "stereoenabledchanged": // DisplayPropertiesEventHandler - break; - } - - } - } - export type DisplayPropertiesEventHandler = () => void; - export enum HdrMetadataFormat { - hdr10, - hdr10Plus, - } - export interface NitRange { - minNits: number; - maxNits: number; - stepSizeNits: number; - } - export enum ResolutionScale { - invalid, - scale100Percent = 100, - scale120Percent = 120, - scale125Percent = 125, - scale140Percent = 140, - scale150Percent = 150, - scale160Percent = 160, - scale175Percent = 175, - scale180Percent = 180, - scale200Percent = 200, - scale225Percent = 225, - scale250Percent = 250, - scale300Percent = 300, - scale350Percent = 350, - scale400Percent = 400, - scale450Percent = 450, - scale500Percent = 500, - } - } - export interface DisplayAdapterId { - lowPart: number; - highPart: number; - } - export namespace Effects { - export interface IGraphicsEffect extends IGraphicsEffectSource { - name: string; - } - export interface IGraphicsEffectSource { - } - } - export namespace Holographic { - export interface HolographicAdapterId { - lowPart: number; - highPart: number; - } - export class HolographicCamera implements IHolographicCamera, IHolographicCamera2, IHolographicCamera3, IHolographicCamera4, IHolographicCamera5, IHolographicCamera6 { - viewportScaleFactor: number; - id: number; - isStereo: Boolean; - renderTargetSize: Foundation.Size; - display: HolographicDisplay; - leftViewportParameters: HolographicCameraViewportParameters; - rightViewportParameters: HolographicCameraViewportParameters; - isPrimaryLayerEnabled: Boolean; - maxQuadLayerCount: number; - quadLayers: HolographicQuadLayer[]; - canOverrideViewport: Boolean; - isHardwareContentProtectionEnabled: Boolean; - isHardwareContentProtectionSupported: Boolean; - viewConfiguration: HolographicViewConfiguration; - - setNearPlaneDistance(value: number): void { - console.warn('shimmed function HolographicCamera.setNearPlaneDistance'); - } - - setFarPlaneDistance(value: number): void { - console.warn('shimmed function HolographicCamera.setFarPlaneDistance'); - } - - } - export class HolographicCameraPose implements IHolographicCameraPose, IHolographicCameraPose2 { - farPlaneDistance: number; - holographicCamera: HolographicCamera; - nearPlaneDistance: number; - projectionTransform: HolographicStereoTransform; - viewport: Foundation.Rect; - - tryGetViewTransform(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): HolographicStereoTransform | null { - throw new Error('shimmed function HolographicCameraPose.tryGetViewTransform'); - } - - tryGetCullingFrustum(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): Perception.Spatial.SpatialBoundingFrustum | null { - throw new Error('shimmed function HolographicCameraPose.tryGetCullingFrustum'); - } - - tryGetVisibleFrustum(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): Perception.Spatial.SpatialBoundingFrustum | null { - throw new Error('shimmed function HolographicCameraPose.tryGetVisibleFrustum'); - } - - overrideViewTransform(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, coordinateSystemToViewTransform: HolographicStereoTransform): void { - console.warn('shimmed function HolographicCameraPose.overrideViewTransform'); - } - - overrideProjectionTransform(projectionTransform: HolographicStereoTransform): void { - console.warn('shimmed function HolographicCameraPose.overrideProjectionTransform'); - } - - overrideViewport(leftViewport: Foundation.Rect, rightViewport: Foundation.Rect): void { - console.warn('shimmed function HolographicCameraPose.overrideViewport'); - } - - } - export class HolographicCameraRenderingParameters implements IHolographicCameraRenderingParameters, IHolographicCameraRenderingParameters2, IHolographicCameraRenderingParameters3 { - direct3D11BackBuffer: DirectX.Direct3D11.IDirect3DSurface; - direct3D11Device: DirectX.Direct3D11.IDirect3DDevice; - reprojectionMode: HolographicReprojectionMode; - isContentProtectionEnabled: Boolean; - - setFocusPoint(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, position: Foundation.Numerics.Vector3): void { - console.warn('shimmed function HolographicCameraRenderingParameters.setFocusPoint'); - } - - setFocusPoint_1(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, position: Foundation.Numerics.Vector3, normal: Foundation.Numerics.Vector3): void { - console.warn('shimmed function HolographicCameraRenderingParameters.setFocusPoint_1'); - } - - setFocusPoint_2(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, position: Foundation.Numerics.Vector3, normal: Foundation.Numerics.Vector3, linearVelocity: Foundation.Numerics.Vector3): void { - console.warn('shimmed function HolographicCameraRenderingParameters.setFocusPoint_2'); - } - - commitDirect3D11DepthBuffer(value: DirectX.Direct3D11.IDirect3DSurface): void { - console.warn('shimmed function HolographicCameraRenderingParameters.commitDirect3D11DepthBuffer'); - } - - } - export class HolographicCameraViewportParameters implements IHolographicCameraViewportParameters { - hiddenAreaMesh: Foundation.Numerics.Vector2[]; - visibleAreaMesh: Foundation.Numerics.Vector2[]; - - } - export class HolographicDisplay implements IHolographicDisplay, IHolographicDisplay2, IHolographicDisplay3 { - adapterId: HolographicAdapterId; - displayName: string; - isOpaque: Boolean; - isStereo: Boolean; - maxViewportSize: Foundation.Size; - spatialLocator: Perception.Spatial.SpatialLocator; - refreshRate: number; - - tryGetViewConfiguration(kind: HolographicViewConfigurationKind): HolographicViewConfiguration { - throw new Error('shimmed function HolographicDisplay.tryGetViewConfiguration'); - } - - static getDefault(): HolographicDisplay { - throw new Error('shimmed function HolographicDisplay.getDefault'); - } - - } - export class HolographicFrame implements IHolographicFrame, IHolographicFrame2 { - addedCameras: HolographicCamera[]; - currentPrediction: HolographicFramePrediction; - duration: number; - removedCameras: HolographicCamera[]; - - getRenderingParameters(cameraPose: HolographicCameraPose): HolographicCameraRenderingParameters { - throw new Error('shimmed function HolographicFrame.getRenderingParameters'); - } - - updateCurrentPrediction(): void { - console.warn('shimmed function HolographicFrame.updateCurrentPrediction'); - } - - presentUsingCurrentPrediction(): HolographicFramePresentResult { - throw new Error('shimmed function HolographicFrame.presentUsingCurrentPrediction'); - } - - presentUsingCurrentPrediction_1(waitBehavior: HolographicFramePresentWaitBehavior): HolographicFramePresentResult { - throw new Error('shimmed function HolographicFrame.presentUsingCurrentPrediction_1'); - } - - waitForFrameToFinish(): void { - console.warn('shimmed function HolographicFrame.waitForFrameToFinish'); - } - - getQuadLayerUpdateParameters(layer: HolographicQuadLayer): HolographicQuadLayerUpdateParameters { - throw new Error('shimmed function HolographicFrame.getQuadLayerUpdateParameters'); - } - - } - export class HolographicFramePrediction implements IHolographicFramePrediction { - cameraPoses: HolographicCameraPose[]; - timestamp: Perception.PerceptionTimestamp; - - } - export class HolographicFramePresentationMonitor implements IHolographicFramePresentationMonitor, Foundation.IClosable { - readReports(): HolographicFramePresentationReport[] { - throw new Error('shimmed function HolographicFramePresentationMonitor.readReports'); - } - - close(): void { - console.warn('shimmed function HolographicFramePresentationMonitor.close'); - } - - } - export class HolographicFramePresentationReport implements IHolographicFramePresentationReport { - appGpuDuration: number; - appGpuOverrun: number; - compositorGpuDuration: number; - missedPresentationOpportunityCount: number; - presentationCount: number; - - } - export enum HolographicFramePresentResult { - success, - deviceRemoved, - } - export enum HolographicFramePresentWaitBehavior { - waitForFrameToFinish, - doNotWaitForFrameToFinish, - } - export class HolographicQuadLayer implements Foundation.IClosable, IHolographicQuadLayer { - // constructor(size: Foundation.Size); - // constructor(size: Foundation.Size, pixelFormat: DirectX.DirectXPixelFormat); - constructor(size: Foundation.Size, pixelFormat: DirectX.DirectXPixelFormat) {} - - pixelFormat: DirectX.DirectXPixelFormat; - size: Foundation.Size; - - close(): void { - console.warn('shimmed function HolographicQuadLayer.close'); - } - - } - export class HolographicQuadLayerUpdateParameters implements IHolographicQuadLayerUpdateParameters, IHolographicQuadLayerUpdateParameters2 { - canAcquireWithHardwareProtection: Boolean; - - acquireBufferToUpdateContent(): DirectX.Direct3D11.IDirect3DSurface { - throw new Error('shimmed function HolographicQuadLayerUpdateParameters.acquireBufferToUpdateContent'); - } - - updateViewport(value: Foundation.Rect): void { - console.warn('shimmed function HolographicQuadLayerUpdateParameters.updateViewport'); - } - - updateContentProtectionEnabled(value: Boolean): void { - console.warn('shimmed function HolographicQuadLayerUpdateParameters.updateContentProtectionEnabled'); - } - - updateExtents(value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function HolographicQuadLayerUpdateParameters.updateExtents'); - } - - updateLocationWithStationaryMode(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, position: Foundation.Numerics.Vector3, orientation: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function HolographicQuadLayerUpdateParameters.updateLocationWithStationaryMode'); - } - - updateLocationWithDisplayRelativeMode(position: Foundation.Numerics.Vector3, orientation: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function HolographicQuadLayerUpdateParameters.updateLocationWithDisplayRelativeMode'); - } - - acquireBufferToUpdateContentWithHardwareProtection(): DirectX.Direct3D11.IDirect3DSurface { - throw new Error('shimmed function HolographicQuadLayerUpdateParameters.acquireBufferToUpdateContentWithHardwareProtection'); - } - - } - export enum HolographicReprojectionMode { - positionAndOrientation, - orientationOnly, - disabled, - } - export class HolographicSpace implements IHolographicSpace, IHolographicSpace2 { - primaryAdapterId: HolographicAdapterId; - userPresence: HolographicSpaceUserPresence; - static isAvailable: Boolean = false; - static isSupported: Boolean = true; - static isConfigured: Boolean = false; - - setDirect3D11Device(value: DirectX.Direct3D11.IDirect3DDevice): void { - console.warn('shimmed function HolographicSpace.setDirect3D11Device'); - } - - createNextFrame(): HolographicFrame { - throw new Error('shimmed function HolographicSpace.createNextFrame'); - } - - waitForNextFrameReady(): void { - console.warn('shimmed function HolographicSpace.waitForNextFrameReady'); - } - - waitForNextFrameReadyWithHeadStart(requestedHeadStartDuration: number): void { - console.warn('shimmed function HolographicSpace.waitForNextFrameReadyWithHeadStart'); - } - - createFramePresentationMonitor(maxQueuedReports: number): HolographicFramePresentationMonitor { - throw new Error('shimmed function HolographicSpace.createFramePresentationMonitor'); - } - - static createForCoreWindow(window: UI.Core.CoreWindow): HolographicSpace { - throw new Error('shimmed function HolographicSpace.createForCoreWindow'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`HolographicSpace::addEventListener: ${name}`); - switch (name) { - case "isavailablechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - addEventListener(name: string, handler: Function) { - console.warn(`HolographicSpace::addEventListener: ${name}`); - switch (name) { - case "cameraadded": // Foundation.TypedEventHandler - case "cameraremoved": // Foundation.TypedEventHandler - case "userpresencechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class HolographicSpaceCameraAddedEventArgs implements IHolographicSpaceCameraAddedEventArgs { - camera: HolographicCamera; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function HolographicSpaceCameraAddedEventArgs.getDeferral'); - } - - } - export class HolographicSpaceCameraRemovedEventArgs implements IHolographicSpaceCameraRemovedEventArgs { - camera: HolographicCamera; - - } - export enum HolographicSpaceUserPresence { - absent, - presentPassive, - presentActive, - } - export interface HolographicStereoTransform { - left: Foundation.Numerics.Matrix4x4; - right: Foundation.Numerics.Matrix4x4; - } - export class HolographicViewConfiguration implements IHolographicViewConfiguration { - pixelFormat: DirectX.DirectXPixelFormat; - isEnabled: Boolean; - display: HolographicDisplay; - isStereo: Boolean; - kind: HolographicViewConfigurationKind; - nativeRenderTargetSize: Foundation.Size; - refreshRate: number; - renderTargetSize: Foundation.Size; - supportedPixelFormats: DirectX.DirectXPixelFormat[]; - - requestRenderTargetSize(size: Foundation.Size): Foundation.Size { - throw new Error('shimmed function HolographicViewConfiguration.requestRenderTargetSize'); - } - - } - export enum HolographicViewConfigurationKind { - display, - photoVideoCamera, - } - } - export interface IGeometrySource2D { - } - export namespace Imaging { - export enum BitmapAlphaMode { - premultiplied, - straight, - ignore, - } - export interface BitmapBounds { - x: number; - y: number; - width: number; - height: number; - } - export class BitmapBuffer implements IBitmapBuffer, Foundation.IMemoryBuffer, Foundation.IClosable { - getPlaneCount(): number { - throw new Error('shimmed function BitmapBuffer.getPlaneCount'); - } - - getPlaneDescription(index: number): BitmapPlaneDescription { - throw new Error('shimmed function BitmapBuffer.getPlaneDescription'); - } - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function BitmapBuffer.createReference'); - } - - close(): void { - console.warn('shimmed function BitmapBuffer.close'); - } - - } - export enum BitmapBufferAccessMode { - read, - readWrite, - write, - } - export class BitmapCodecInformation implements IBitmapCodecInformation { - codecId: string; - fileExtensions: string[]; - friendlyName: string; - mimeTypes: string[]; - - } - export class BitmapDecoder implements IBitmapDecoder, IBitmapFrame, IBitmapFrameWithSoftwareBitmap { - bitmapContainerProperties: BitmapPropertiesView; - decoderInformation: BitmapCodecInformation; - frameCount: number; - bitmapAlphaMode: BitmapAlphaMode; - bitmapPixelFormat: BitmapPixelFormat; - bitmapProperties: BitmapPropertiesView; - dpiX: number; - dpiY: number; - orientedPixelHeight: number; - orientedPixelWidth: number; - pixelHeight: number; - pixelWidth: number; - static bmpDecoderId: string = '6b462062-7cbf-400d-9fdb-813dd10f2778'; - static gifDecoderId: string = '381dda3c-9ce9-4834-a23e-1f98f8fc52be'; - static icoDecoderId: string = 'c61bfcdf-2e0f-4aad-a8d7-e06bafebcdfe'; - static jpegDecoderId: string = '9456a480-e88b-43ea-9e73-0b2d9b71b1ca'; - static jpegXRDecoderId: string = 'a26cec36-234c-4950-ae16-e34aace71d0d'; - static pngDecoderId: string = 'e018945b-aa86-4008-9bd4-6777a1e40c11'; - static tiffDecoderId: string = 'b54e85d9-fe23-499f-8b88-6acea713752b'; - static heifDecoderId: string = 'e9a4a80a-44fe-4de4-8971-7150b10a5199'; - static webpDecoderId: string = '7693e886-51c9-4070-8419-9f70738ec8fa'; - - getPreviewAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getPreviewAsync'); - } - - getFrameAsync(frameIndex: number): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getFrameAsync'); - } - - getThumbnailAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getThumbnailAsync'); - } - - getPixelDataAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getPixelDataAsync'); - } - - getPixelDataAsync_1(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode, transform: BitmapTransform, exifOrientationMode: ExifOrientationMode, colorManagementMode: ColorManagementMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getPixelDataAsync_1'); - } - - getSoftwareBitmapAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getSoftwareBitmapAsync'); - } - - getSoftwareBitmapAsync_1(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getSoftwareBitmapAsync_1'); - } - - getSoftwareBitmapAsync_2(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode, transform: BitmapTransform, exifOrientationMode: ExifOrientationMode, colorManagementMode: ColorManagementMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.getSoftwareBitmapAsync_2'); - } - - static getDecoderInformationEnumerator(): BitmapCodecInformation[] { - throw new Error('shimmed function BitmapDecoder.getDecoderInformationEnumerator'); - } - - static createAsync(stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.createAsync'); - } - - static createAsync_1(decoderId: string, stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapDecoder.createAsync_1'); - } - - } - export class BitmapEncoder implements IBitmapEncoder, IBitmapEncoderWithSoftwareBitmap { - isThumbnailGenerated: Boolean; - generatedThumbnailWidth: number; - generatedThumbnailHeight: number; - bitmapContainerProperties: BitmapProperties; - bitmapProperties: BitmapProperties; - bitmapTransform: BitmapTransform; - encoderInformation: BitmapCodecInformation; - static bmpEncoderId: string = '69be8bb4-d66d-47c8-865a-ed1589433782'; - static gifEncoderId: string = '114f5598-0b22-40a0-86a1-c83ea495adbd'; - static jpegEncoderId: string = '1a34f5c1-4a5a-46dc-b644-1f4567e7a676'; - static jpegXREncoderId: string = 'ac4ce3cb-e1c1-44cd-8215-5a1665509ec2'; - static pngEncoderId: string = '27949969-876a-41d7-9447-568f6a35a4dc'; - static tiffEncoderId: string = '0131be10-2001-4c5f-a9b0-cc88fab64ce8'; - static heifEncoderId: string = '0dbecec1-9eb3-4860-9c6f-ddbe86634575'; - - setPixelData(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode, width: number, height: number, dpiX: number, dpiY: number, pixels: number[]): void { - console.warn('shimmed function BitmapEncoder.setPixelData'); - } - - goToNextFrameAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BitmapEncoder.goToNextFrameAsync'); - } - - goToNextFrameAsync_1(encodingOptions: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function BitmapEncoder.goToNextFrameAsync_1'); - } - - flushAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function BitmapEncoder.flushAsync'); - } - - setSoftwareBitmap(bitmap: SoftwareBitmap): void { - console.warn('shimmed function BitmapEncoder.setSoftwareBitmap'); - } - - static getEncoderInformationEnumerator(): BitmapCodecInformation[] { - throw new Error('shimmed function BitmapEncoder.getEncoderInformationEnumerator'); - } - - static createAsync(encoderId: string, stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapEncoder.createAsync'); - } - - static createAsync_1(encoderId: string, stream: Storage.Streams.IRandomAccessStream, encodingOptions: Foundation.Collections.IIterable>): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapEncoder.createAsync_1'); - } - - static createForTranscodingAsync(stream: Storage.Streams.IRandomAccessStream, bitmapDecoder: BitmapDecoder): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapEncoder.createForTranscodingAsync'); - } - - static createForInPlacePropertyEncodingAsync(bitmapDecoder: BitmapDecoder): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapEncoder.createForInPlacePropertyEncodingAsync'); - } - - } - export enum BitmapFlip { - none, - horizontal, - vertical, - } - export class BitmapFrame implements IBitmapFrame, IBitmapFrameWithSoftwareBitmap { - bitmapAlphaMode: BitmapAlphaMode; - bitmapPixelFormat: BitmapPixelFormat; - bitmapProperties: BitmapPropertiesView; - dpiX: number; - dpiY: number; - orientedPixelHeight: number; - orientedPixelWidth: number; - pixelHeight: number; - pixelWidth: number; - - getThumbnailAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapFrame.getThumbnailAsync'); - } - - getPixelDataAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapFrame.getPixelDataAsync'); - } - - getPixelDataAsync_1(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode, transform: BitmapTransform, exifOrientationMode: ExifOrientationMode, colorManagementMode: ColorManagementMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapFrame.getPixelDataAsync_1'); - } - - getSoftwareBitmapAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapFrame.getSoftwareBitmapAsync'); - } - - getSoftwareBitmapAsync_1(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapFrame.getSoftwareBitmapAsync_1'); - } - - getSoftwareBitmapAsync_2(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode, transform: BitmapTransform, exifOrientationMode: ExifOrientationMode, colorManagementMode: ColorManagementMode): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapFrame.getSoftwareBitmapAsync_2'); - } - - } - export enum BitmapInterpolationMode { - nearestNeighbor, - linear, - cubic, - fant, - } - export enum BitmapPixelFormat { - unknown, - rgba16 = 12, - rgba8 = 30, - gray16 = 57, - gray8 = 62, - bgra8 = 87, - nv12 = 103, - p010, - yuy2 = 107, - } - export interface BitmapPlaneDescription { - startIndex: number; - width: number; - height: number; - stride: number; - } - export class BitmapProperties implements IBitmapProperties, IBitmapPropertiesView { - setPropertiesAsync(propertiesToSet: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function BitmapProperties.setPropertiesAsync'); - } - - getPropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapProperties.getPropertiesAsync'); - } - - } - export class BitmapPropertiesView implements IBitmapPropertiesView { - getPropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapPropertiesView.getPropertiesAsync'); - } - - } - export class BitmapPropertySet implements Foundation.Collections.IMap, Foundation.Collections.IIterable> { - // constructor(); - size: number; - - lookup(key: string): BitmapTypedValue { - throw new Error('shimmed function BitmapPropertySet.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function BitmapPropertySet.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function BitmapPropertySet.getView'); - } - - insert(key: string, value: BitmapTypedValue): Boolean { - throw new Error('shimmed function BitmapPropertySet.insert'); - } - - clear(): void { - console.warn('shimmed function BitmapPropertySet.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function BitmapPropertySet.first'); - } - - } - export enum BitmapRotation { - none, - clockwise90Degrees, - clockwise180Degrees, - clockwise270Degrees, - } - export interface BitmapSize { - width: number; - height: number; - } - export class BitmapTransform implements IBitmapTransform { - // constructor(); - scaledWidth: number = 0; - scaledHeight: number = 0; - rotation: BitmapRotation = BitmapRotation.none; - interpolationMode: BitmapInterpolationMode = BitmapInterpolationMode.nearestNeighbor; - flip: BitmapFlip = BitmapFlip.none; - bounds: BitmapBounds = null; - - } - export class BitmapTypedValue implements IBitmapTypedValue { - // constructor(value: any, type: Foundation.PropertyType); - constructor(value: any, type: Foundation.PropertyType) {} - - type: Foundation.PropertyType; - value: any; - - } - export enum ColorManagementMode { - doNotColorManage, - colorManageToSRgb, - } - export enum ExifOrientationMode { - ignoreExifOrientation, - respectExifOrientation, - } - export interface IBitmapFrame { - bitmapAlphaMode: BitmapAlphaMode; - bitmapPixelFormat: BitmapPixelFormat; - bitmapProperties: BitmapPropertiesView; - dpiX: number; - dpiY: number; - orientedPixelHeight: number; - orientedPixelWidth: number; - pixelHeight: number; - pixelWidth: number; - getThumbnailAsync(): Foundation.IAsyncOperation; - getPixelDataAsync(): Foundation.IAsyncOperation; - getPixelDataAsync_1(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode, transform: BitmapTransform, exifOrientationMode: ExifOrientationMode, colorManagementMode: ColorManagementMode): Foundation.IAsyncOperation; - } - export interface IBitmapFrameWithSoftwareBitmap extends IBitmapFrame { - getSoftwareBitmapAsync(): Foundation.IAsyncOperation; - getSoftwareBitmapAsync_1(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode): Foundation.IAsyncOperation; - getSoftwareBitmapAsync_2(pixelFormat: BitmapPixelFormat, alphaMode: BitmapAlphaMode, transform: BitmapTransform, exifOrientationMode: ExifOrientationMode, colorManagementMode: ColorManagementMode): Foundation.IAsyncOperation; - } - export interface IBitmapPropertiesView { - getPropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation; - } - export class ImageStream implements Storage.Streams.IRandomAccessStreamWithContentType, Storage.Streams.IRandomAccessStream, Foundation.IClosable, Storage.Streams.IInputStream, Storage.Streams.IOutputStream, Storage.Streams.IContentTypeProvider { - contentType: string; - size: number; - canRead: Boolean; - canWrite: Boolean; - position: number; - - getInputStreamAt(position: number): Storage.Streams.IInputStream { - throw new Error('shimmed function ImageStream.getInputStreamAt'); - } - - getOutputStreamAt(position: number): Storage.Streams.IOutputStream { - throw new Error('shimmed function ImageStream.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function ImageStream.seek'); - } - - cloneStream(): Storage.Streams.IRandomAccessStream { - throw new Error('shimmed function ImageStream.cloneStream'); - } - - close(): void { - console.warn('shimmed function ImageStream.close'); - } - - readAsync(buffer: Storage.Streams.IBuffer, count: number, options: Storage.Streams.InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function ImageStream.readAsync'); - } - - writeAsync(buffer: Storage.Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function ImageStream.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ImageStream.flushAsync'); - } - - } - export enum JpegSubsamplingMode { - default, - y4Cb2Cr0, - y4Cb2Cr2, - y4Cb4Cr4, - } - export class PixelDataProvider implements IPixelDataProvider { - detachPixelData(): number[] { - throw new Error('shimmed function PixelDataProvider.detachPixelData'); - } - - } - export enum PngFilterMode { - automatic, - none, - sub, - up, - average, - paeth, - adaptive, - } - export class SoftwareBitmap implements ISoftwareBitmap, Foundation.IClosable { - // constructor(format: BitmapPixelFormat, width: number, height: number); - // constructor(format: BitmapPixelFormat, width: number, height: number, alpha: BitmapAlphaMode); - constructor(format: BitmapPixelFormat, width: number, height: number, alpha: BitmapAlphaMode) {} - - dpiY: number; - dpiX: number; - bitmapAlphaMode: BitmapAlphaMode; - bitmapPixelFormat: BitmapPixelFormat; - isReadOnly: Boolean; - pixelHeight: number; - pixelWidth: number; - - lockBuffer(mode: BitmapBufferAccessMode): BitmapBuffer { - throw new Error('shimmed function SoftwareBitmap.lockBuffer'); - } - - copyTo(bitmap: SoftwareBitmap): void { - console.warn('shimmed function SoftwareBitmap.copyTo'); - } - - copyFromBuffer(buffer: Storage.Streams.IBuffer): void { - console.warn('shimmed function SoftwareBitmap.copyFromBuffer'); - } - - copyToBuffer(buffer: Storage.Streams.IBuffer): void { - console.warn('shimmed function SoftwareBitmap.copyToBuffer'); - } - - getReadOnlyView(): SoftwareBitmap { - throw new Error('shimmed function SoftwareBitmap.getReadOnlyView'); - } - - close(): void { - console.warn('shimmed function SoftwareBitmap.close'); - } - - static copy(source: SoftwareBitmap): SoftwareBitmap { - throw new Error('shimmed function SoftwareBitmap.copy'); - } - - static convert(source: SoftwareBitmap, format: BitmapPixelFormat): SoftwareBitmap { - throw new Error('shimmed function SoftwareBitmap.convert'); - } - - static convert_1(source: SoftwareBitmap, format: BitmapPixelFormat, alpha: BitmapAlphaMode): SoftwareBitmap { - throw new Error('shimmed function SoftwareBitmap.convert_1'); - } - - static createCopyFromBuffer(source: Storage.Streams.IBuffer, format: BitmapPixelFormat, width: number, height: number): SoftwareBitmap { - throw new Error('shimmed function SoftwareBitmap.createCopyFromBuffer'); - } - - static createCopyFromBuffer_1(source: Storage.Streams.IBuffer, format: BitmapPixelFormat, width: number, height: number, alpha: BitmapAlphaMode): SoftwareBitmap { - throw new Error('shimmed function SoftwareBitmap.createCopyFromBuffer_1'); - } - - static createCopyFromSurfaceAsync(surface: DirectX.Direct3D11.IDirect3DSurface): Foundation.IAsyncOperation { - throw new Error('shimmed function SoftwareBitmap.createCopyFromSurfaceAsync'); - } - - static createCopyFromSurfaceAsync_1(surface: DirectX.Direct3D11.IDirect3DSurface, alpha: BitmapAlphaMode): Foundation.IAsyncOperation { - throw new Error('shimmed function SoftwareBitmap.createCopyFromSurfaceAsync_1'); - } - - } - export enum TiffCompressionMode { - automatic, - none, - ccitt3, - ccitt4, - lzw, - rle, - zip, - lzwhDifferencing, - } - } - export interface PointInt32 { - x: number; - y: number; - } - export namespace Printing { - export interface IPrintDocumentSource { - } - export interface IPrintTaskOptionsCore { - getPageDescription(jobPageNumber: number): PrintPageDescription; - } - export interface IPrintTaskOptionsCoreProperties { - binding: PrintBinding; - collation: PrintCollation; - colorMode: PrintColorMode; - duplex: PrintDuplex; - holePunch: PrintHolePunch; - maxCopies: number; - mediaSize: PrintMediaSize; - mediaType: PrintMediaType; - minCopies: number; - numberOfCopies: number; - orientation: PrintOrientation; - printQuality: PrintQuality; - staple: PrintStaple; - } - export interface IPrintTaskOptionsCoreUIConfiguration { - displayedOptions: string[]; - } - export namespace OptionDetails { - export interface IPrintCustomOptionDetails extends IPrintOptionDetails { - displayName: string; - } - export interface IPrintItemListOptionDetails extends IPrintOptionDetails { - items: any[]; - } - export interface IPrintNumberOptionDetails extends IPrintOptionDetails { - maxValue: number; - minValue: number; - } - export interface IPrintOptionDetails { - errorText: string; - optionId: string; - optionType: PrintOptionType; - state: PrintOptionStates; - value: any; - trySetValue(value: any): Boolean; - } - export interface IPrintTextOptionDetails extends IPrintOptionDetails { - maxCharacters: number; - } - export class PrintBindingOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintBindingOptionDetails { - warningText: string; - description: string; - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintBindingOptionDetails.trySetValue'); - } - - } - export class PrintBorderingOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintBorderingOptionDetails { - warningText: string; - description: string; - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintBorderingOptionDetails.trySetValue'); - } - - } - export class PrintCollationOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintCollationOptionDetails { - warningText: string; - description: string; - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintCollationOptionDetails.trySetValue'); - } - - } - export class PrintColorModeOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintColorModeOptionDetails { - warningText: string; - description: string; - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintColorModeOptionDetails.trySetValue'); - } - - } - export class PrintCopiesOptionDetails implements IPrintOptionDetails, IPrintNumberOptionDetails, IPrintCopiesOptionDetails { - warningText: string; - description: string; - maxValue: number; - minValue: number; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintCopiesOptionDetails.trySetValue'); - } - - } - export class PrintCustomItemDetails implements IPrintCustomItemDetails { - itemDisplayName: string; - itemId: string; - - } - export class PrintCustomItemListOptionDetails implements IPrintOptionDetails, IPrintCustomOptionDetails, IPrintItemListOptionDetails, IPrintCustomItemListOptionDetails, IPrintCustomItemListOptionDetails2, IPrintCustomItemListOptionDetails3 { - warningText: string; - description: string; - displayName: string; - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintCustomItemListOptionDetails.trySetValue'); - } - - addItem(itemId: string, displayName: string): void { - console.warn('shimmed function PrintCustomItemListOptionDetails.addItem'); - } - - addItem_1(itemId: string, displayName: string, description: string, icon: Storage.Streams.IRandomAccessStreamWithContentType): void { - console.warn('shimmed function PrintCustomItemListOptionDetails.addItem_1'); - } - - } - export class PrintCustomTextOptionDetails implements IPrintOptionDetails, IPrintCustomOptionDetails, IPrintCustomTextOptionDetails, IPrintCustomTextOptionDetails2 { - displayName: string; - maxCharacters: number; - warningText: string; - description: string; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintCustomTextOptionDetails.trySetValue'); - } - - } - export class PrintCustomToggleOptionDetails implements IPrintOptionDetails, IPrintCustomOptionDetails, IPrintCustomToggleOptionDetails { - displayName: string; - warningText: string; - description: string; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintCustomToggleOptionDetails.trySetValue'); - } - - } - export class PrintDuplexOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintDuplexOptionDetails { - warningText: string; - description: string; - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintDuplexOptionDetails.trySetValue'); - } - - } - export class PrintHolePunchOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintHolePunchOptionDetails { - warningText: string; - description: string; - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintHolePunchOptionDetails.trySetValue'); - } - - } - export class PrintMediaSizeOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintMediaSizeOptionDetails { - items: any[]; - warningText: string; - description: string; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintMediaSizeOptionDetails.trySetValue'); - } - - } - export class PrintMediaTypeOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintMediaTypeOptionDetails { - items: any[]; - warningText: string; - description: string; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintMediaTypeOptionDetails.trySetValue'); - } - - } - export enum PrintOptionStates { - none, - enabled, - constrained, - } - export enum PrintOptionType { - unknown, - number, - text, - itemList, - toggle, - } - export class PrintOrientationOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintOrientationOptionDetails { - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - warningText: string; - description: string; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintOrientationOptionDetails.trySetValue'); - } - - } - export class PrintPageRangeOptionDetails implements IPrintOptionDetails, IPrintPageRangeOptionDetails { - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - warningText: string; - description: string; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintPageRangeOptionDetails.trySetValue'); - } - - } - export class PrintQualityOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintQualityOptionDetails { - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - warningText: string; - description: string; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintQualityOptionDetails.trySetValue'); - } - - } - export class PrintStapleOptionDetails implements IPrintOptionDetails, IPrintItemListOptionDetails, IPrintStapleOptionDetails { - items: any[]; - state: PrintOptionStates; - errorText: string; - optionId: string; - optionType: PrintOptionType; - value: any; - warningText: string; - description: string; - - trySetValue(value: any): Boolean { - throw new Error('shimmed function PrintStapleOptionDetails.trySetValue'); - } - - } - export class PrintTaskOptionChangedEventArgs implements IPrintTaskOptionChangedEventArgs { - optionId: any; - - } - export class PrintTaskOptionDetails implements IPrintTaskOptionDetails, IPrintTaskOptionsCore, IPrintTaskOptionsCoreUIConfiguration, IPrintTaskOptionDetails2 { - displayedOptions: string[]; - options: string[]; - - createItemListOption(optionId: string, displayName: string): PrintCustomItemListOptionDetails { - throw new Error('shimmed function PrintTaskOptionDetails.createItemListOption'); - } - - createTextOption(optionId: string, displayName: string): PrintCustomTextOptionDetails { - throw new Error('shimmed function PrintTaskOptionDetails.createTextOption'); - } - - getPageDescription(jobPageNumber: number): PrintPageDescription { - throw new Error('shimmed function PrintTaskOptionDetails.getPageDescription'); - } - - createToggleOption(optionId: string, displayName: string): PrintCustomToggleOptionDetails { - throw new Error('shimmed function PrintTaskOptionDetails.createToggleOption'); - } - - static getFromPrintTaskOptions(printTaskOptions: PrintTaskOptions): PrintTaskOptionDetails { - throw new Error('shimmed function PrintTaskOptionDetails.getFromPrintTaskOptions'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PrintTaskOptionDetails::addEventListener: ${name}`); - switch (name) { - case "beginvalidation": // Foundation.TypedEventHandler - case "optionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - } - export enum PrintBinding { - default, - notAvailable, - printerCustom, - none, - bale, - bindBottom, - bindLeft, - bindRight, - bindTop, - booklet, - edgeStitchBottom, - edgeStitchLeft, - edgeStitchRight, - edgeStitchTop, - fold, - jogOffset, - trim, - } - export enum PrintBordering { - default, - notAvailable, - printerCustom, - bordered, - borderless, - } - export enum PrintCollation { - default, - notAvailable, - printerCustom, - collated, - uncollated, - } - export enum PrintColorMode { - default, - notAvailable, - printerCustom, - color, - grayscale, - monochrome, - } - export enum PrintDuplex { - default, - notAvailable, - printerCustom, - oneSided, - twoSidedShortEdge, - twoSidedLongEdge, - } - export enum PrintHolePunch { - default, - notAvailable, - printerCustom, - none, - leftEdge, - rightEdge, - topEdge, - bottomEdge, - } - export class PrintManager implements IPrintManager { - static isSupported(): Boolean { - throw new Error('shimmed function PrintManager.isSupported'); - } - - static getForCurrentView(): PrintManager { - throw new Error('shimmed function PrintManager.getForCurrentView'); - } - - static showPrintUIAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PrintManager.showPrintUIAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PrintManager::addEventListener: ${name}`); - switch (name) { - case "printtaskrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PrintMediaSize { - default, - notAvailable, - printerCustom, - businessCard, - creditCard, - isoA0, - isoA1, - isoA10, - isoA2, - isoA3, - isoA3Extra, - isoA3Rotated, - isoA4, - isoA4Extra, - isoA4Rotated, - isoA5, - isoA5Extra, - isoA5Rotated, - isoA6, - isoA6Rotated, - isoA7, - isoA8, - isoA9, - isoB0, - isoB1, - isoB10, - isoB2, - isoB3, - isoB4, - isoB4Envelope, - isoB5Envelope, - isoB5Extra, - isoB7, - isoB8, - isoB9, - isoC0, - isoC1, - isoC10, - isoC2, - isoC3, - isoC3Envelope, - isoC4, - isoC4Envelope, - isoC5, - isoC5Envelope, - isoC6, - isoC6C5Envelope, - isoC6Envelope, - isoC7, - isoC8, - isoC9, - isoDLEnvelope, - isoDLEnvelopeRotated, - isoSRA3, - japan2LPhoto, - japanChou3Envelope, - japanChou3EnvelopeRotated, - japanChou4Envelope, - japanChou4EnvelopeRotated, - japanDoubleHagakiPostcard, - japanDoubleHagakiPostcardRotated, - japanHagakiPostcard, - japanHagakiPostcardRotated, - japanKaku2Envelope, - japanKaku2EnvelopeRotated, - japanKaku3Envelope, - japanKaku3EnvelopeRotated, - japanLPhoto, - japanQuadrupleHagakiPostcard, - japanYou1Envelope, - japanYou2Envelope, - japanYou3Envelope, - japanYou4Envelope, - japanYou4EnvelopeRotated, - japanYou6Envelope, - japanYou6EnvelopeRotated, - jisB0, - jisB1, - jisB10, - jisB2, - jisB3, - jisB4, - jisB4Rotated, - jisB5, - jisB5Rotated, - jisB6, - jisB6Rotated, - jisB7, - jisB8, - jisB9, - northAmerica10x11, - northAmerica10x12, - northAmerica10x14, - northAmerica11x17, - northAmerica14x17, - northAmerica4x6, - northAmerica4x8, - northAmerica5x7, - northAmerica8x10, - northAmerica9x11, - northAmericaArchitectureASheet, - northAmericaArchitectureBSheet, - northAmericaArchitectureCSheet, - northAmericaArchitectureDSheet, - northAmericaArchitectureESheet, - northAmericaCSheet, - northAmericaDSheet, - northAmericaESheet, - northAmericaExecutive, - northAmericaGermanLegalFanfold, - northAmericaGermanStandardFanfold, - northAmericaLegal, - northAmericaLegalExtra, - northAmericaLetter, - northAmericaLetterExtra, - northAmericaLetterPlus, - northAmericaLetterRotated, - northAmericaMonarchEnvelope, - northAmericaNote, - northAmericaNumber10Envelope, - northAmericaNumber10EnvelopeRotated, - northAmericaNumber11Envelope, - northAmericaNumber12Envelope, - northAmericaNumber14Envelope, - northAmericaNumber9Envelope, - northAmericaPersonalEnvelope, - northAmericaQuarto, - northAmericaStatement, - northAmericaSuperA, - northAmericaSuperB, - northAmericaTabloid, - northAmericaTabloidExtra, - otherMetricA3Plus, - otherMetricA4Plus, - otherMetricFolio, - otherMetricInviteEnvelope, - otherMetricItalianEnvelope, - prc10Envelope, - prc10EnvelopeRotated, - prc16K, - prc16KRotated, - prc1Envelope, - prc1EnvelopeRotated, - prc2Envelope, - prc2EnvelopeRotated, - prc32K, - prc32KBig, - prc32KRotated, - prc3Envelope, - prc3EnvelopeRotated, - prc4Envelope, - prc4EnvelopeRotated, - prc5Envelope, - prc5EnvelopeRotated, - prc6Envelope, - prc6EnvelopeRotated, - prc7Envelope, - prc7EnvelopeRotated, - prc8Envelope, - prc8EnvelopeRotated, - prc9Envelope, - prc9EnvelopeRotated, - roll04Inch, - roll06Inch, - roll08Inch, - roll12Inch, - roll15Inch, - roll18Inch, - roll22Inch, - roll24Inch, - roll30Inch, - roll36Inch, - roll54Inch, - } - export enum PrintMediaType { - default, - notAvailable, - printerCustom, - autoSelect, - archival, - backPrintFilm, - bond, - cardStock, - continuous, - envelopePlain, - envelopeWindow, - fabric, - highResolution, - label, - multiLayerForm, - multiPartForm, - photographic, - photographicFilm, - photographicGlossy, - photographicHighGloss, - photographicMatte, - photographicSatin, - photographicSemiGloss, - plain, - screen, - screenPaged, - stationery, - tabStockFull, - tabStockPreCut, - transparency, - tshirtTransfer, - none, - } - export enum PrintOrientation { - default, - notAvailable, - printerCustom, - portrait, - portraitFlipped, - landscape, - landscapeFlipped, - } - export interface PrintPageDescription { - pageSize: Foundation.Size; - imageableRect: Foundation.Rect; - dpiX: number; - dpiY: number; - } - export class PrintPageInfo implements IPrintPageInfo { - // constructor(); - pageSize: Foundation.Size = { 0, height: 0 }; - orientation: PrintOrientation = PrintOrientation.default; - mediaSize: PrintMediaSize = PrintMediaSize.default; - dpiY: number = 0; - dpiX: number = 0; - - } - export class PrintPageRange implements IPrintPageRange { - // constructor(firstPage: number, lastPage: number); - // constructor(page: number); - constructor(firstPage: number, lastPage: number, page: number) {} - - firstPageNumber: number; - lastPageNumber: number; - - } - export class PrintPageRangeOptions implements IPrintPageRangeOptions { - allowCustomSetOfPages: Boolean; - allowCurrentPage: Boolean; - allowAllPages: Boolean; - - } - export enum PrintQuality { - default, - notAvailable, - printerCustom, - automatic, - draft, - fax, - high, - normal, - photographic, - text, - } - export enum PrintStaple { - default, - notAvailable, - printerCustom, - none, - stapleTopLeft, - stapleTopRight, - stapleBottomLeft, - stapleBottomRight, - stapleDualLeft, - stapleDualRight, - stapleDualTop, - stapleDualBottom, - saddleStitch, - } - export class PrintTask implements IPrintTask, IPrintTaskTargetDeviceSupport, IPrintTask2 { - options: PrintTaskOptions; - properties: ApplicationModel.DataTransfer.DataPackagePropertySet; - source: IPrintDocumentSource; - isPreviewEnabled: Boolean; - isPrinterTargetEnabled: Boolean; - is3DManufacturingTargetEnabled: Boolean; - - addEventListener(name: string, handler: Function) { - console.warn(`PrintTask::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - case "previewing": // Foundation.TypedEventHandler - case "progressing": // Foundation.TypedEventHandler - case "submitting": // Foundation.TypedEventHandler - break; - } - - } - } - export class PrintTaskCompletedEventArgs implements IPrintTaskCompletedEventArgs { - completion: PrintTaskCompletion; - - } - export enum PrintTaskCompletion { - abandoned, - canceled, - failed, - submitted, - } - export class PrintTaskOptions implements IPrintTaskOptionsCore, IPrintTaskOptionsCoreProperties, IPrintTaskOptionsCoreUIConfiguration, IPrintTaskOptions, IPrintTaskOptions2 { - bordering: PrintBordering; - pageRangeOptions: PrintPageRangeOptions; - customPageRanges: PrintPageRange[]; - mediaType: PrintMediaType; - holePunch: PrintHolePunch; - binding: PrintBinding; - duplex: PrintDuplex; - colorMode: PrintColorMode; - collation: PrintCollation; - staple: PrintStaple; - printQuality: PrintQuality; - orientation: PrintOrientation; - mediaSize: PrintMediaSize; - numberOfCopies: number; - maxCopies: number; - minCopies: number; - displayedOptions: string[]; - - getPageDescription(jobPageNumber: number): PrintPageDescription { - throw new Error('shimmed function PrintTaskOptions.getPageDescription'); - } - - getPagePrintTicket(printPageInfo: PrintPageInfo): Storage.Streams.IRandomAccessStream { - throw new Error('shimmed function PrintTaskOptions.getPagePrintTicket'); - } - - } - export class PrintTaskProgressingEventArgs implements IPrintTaskProgressingEventArgs { - documentPageCount: number; - - } - export class PrintTaskRequest implements IPrintTaskRequest { - deadline: Date; - - createPrintTask(title: string, handler: PrintTaskSourceRequestedHandler): PrintTask { - throw new Error('shimmed function PrintTaskRequest.createPrintTask'); - } - - getDeferral(): PrintTaskRequestedDeferral { - throw new Error('shimmed function PrintTaskRequest.getDeferral'); - } - - } - export class PrintTaskRequestedDeferral implements IPrintTaskRequestedDeferral { - complete(): void { - console.warn('shimmed function PrintTaskRequestedDeferral.complete'); - } - - } - export class PrintTaskRequestedEventArgs implements IPrintTaskRequestedEventArgs { - request: PrintTaskRequest; - - } - export class PrintTaskSourceRequestedArgs implements IPrintTaskSourceRequestedArgs { - deadline: Date; - - setSource(source: IPrintDocumentSource): void { - console.warn('shimmed function PrintTaskSourceRequestedArgs.setSource'); - } - - getDeferral(): PrintTaskSourceRequestedDeferral { - throw new Error('shimmed function PrintTaskSourceRequestedArgs.getDeferral'); - } - - } - export class PrintTaskSourceRequestedDeferral implements IPrintTaskSourceRequestedDeferral { - complete(): void { - console.warn('shimmed function PrintTaskSourceRequestedDeferral.complete'); - } - - } - export type PrintTaskSourceRequestedHandler = () => void; - export namespace PrintTicket { - export class PrintTicketCapabilities implements IPrintTicketCapabilities { - documentBindingFeature: PrintTicketFeature; - documentCollateFeature: PrintTicketFeature; - documentDuplexFeature: PrintTicketFeature; - documentHolePunchFeature: PrintTicketFeature; - documentInputBinFeature: PrintTicketFeature; - documentNUpFeature: PrintTicketFeature; - documentStapleFeature: PrintTicketFeature; - jobPasscodeFeature: PrintTicketFeature; - name: string; - pageBorderlessFeature: PrintTicketFeature; - pageMediaSizeFeature: PrintTicketFeature; - pageMediaTypeFeature: PrintTicketFeature; - pageOrientationFeature: PrintTicketFeature; - pageOutputColorFeature: PrintTicketFeature; - pageOutputQualityFeature: PrintTicketFeature; - pageResolutionFeature: PrintTicketFeature; - xmlNamespace: string; - xmlNode: Data.Xml.Dom.IXmlNode; - - getFeature(name: string, xmlNamespace: string): PrintTicketFeature { - throw new Error('shimmed function PrintTicketCapabilities.getFeature'); - } - - getParameterDefinition(name: string, xmlNamespace: string): PrintTicketParameterDefinition { - throw new Error('shimmed function PrintTicketCapabilities.getParameterDefinition'); - } - - } - export class PrintTicketFeature implements IPrintTicketFeature { - displayName: string; - name: string; - options: PrintTicketOption[]; - selectionType: PrintTicketFeatureSelectionType; - xmlNamespace: string; - xmlNode: Data.Xml.Dom.IXmlNode; - - getOption(name: string, xmlNamespace: string): PrintTicketOption { - throw new Error('shimmed function PrintTicketFeature.getOption'); - } - - getSelectedOption(): PrintTicketOption { - throw new Error('shimmed function PrintTicketFeature.getSelectedOption'); - } - - setSelectedOption(value: PrintTicketOption): void { - console.warn('shimmed function PrintTicketFeature.setSelectedOption'); - } - - } - export enum PrintTicketFeatureSelectionType { - pickOne, - pickMany, - } - export class PrintTicketOption implements IPrintTicketOption { - displayName: string; - name: string; - xmlNamespace: string; - xmlNode: Data.Xml.Dom.IXmlNode; - - getPropertyNode(name: string, xmlNamespace: string): Data.Xml.Dom.IXmlNode { - throw new Error('shimmed function PrintTicketOption.getPropertyNode'); - } - - getScoredPropertyNode(name: string, xmlNamespace: string): Data.Xml.Dom.IXmlNode { - throw new Error('shimmed function PrintTicketOption.getScoredPropertyNode'); - } - - getPropertyValue(name: string, xmlNamespace: string): PrintTicketValue { - throw new Error('shimmed function PrintTicketOption.getPropertyValue'); - } - - getScoredPropertyValue(name: string, xmlNamespace: string): PrintTicketValue { - throw new Error('shimmed function PrintTicketOption.getScoredPropertyValue'); - } - - } - export enum PrintTicketParameterDataType { - integer, - numericString, - string, - } - export class PrintTicketParameterDefinition implements IPrintTicketParameterDefinition { - dataType: PrintTicketParameterDataType; - name: string; - rangeMax: number; - rangeMin: number; - unitType: string; - xmlNamespace: string; - xmlNode: Data.Xml.Dom.IXmlNode; - - } - export class PrintTicketParameterInitializer implements IPrintTicketParameterInitializer { - value: PrintTicketValue; - name: string; - xmlNamespace: string; - xmlNode: Data.Xml.Dom.IXmlNode; - - } - export class PrintTicketValue implements IPrintTicketValue { - type: PrintTicketValueType; - - getValueAsInteger(): number { - throw new Error('shimmed function PrintTicketValue.getValueAsInteger'); - } - - getValueAsString(): string { - throw new Error('shimmed function PrintTicketValue.getValueAsString'); - } - - } - export enum PrintTicketValueType { - integer, - string, - unknown, - } - export class WorkflowPrintTicket implements IWorkflowPrintTicket { - documentBindingFeature: PrintTicketFeature; - documentCollateFeature: PrintTicketFeature; - documentDuplexFeature: PrintTicketFeature; - documentHolePunchFeature: PrintTicketFeature; - documentInputBinFeature: PrintTicketFeature; - documentNUpFeature: PrintTicketFeature; - documentStapleFeature: PrintTicketFeature; - jobPasscodeFeature: PrintTicketFeature; - name: string; - pageBorderlessFeature: PrintTicketFeature; - pageMediaSizeFeature: PrintTicketFeature; - pageMediaTypeFeature: PrintTicketFeature; - pageOrientationFeature: PrintTicketFeature; - pageOutputColorFeature: PrintTicketFeature; - pageOutputQualityFeature: PrintTicketFeature; - pageResolutionFeature: PrintTicketFeature; - xmlNamespace: string; - xmlNode: Data.Xml.Dom.IXmlNode; - - getCapabilities(): PrintTicketCapabilities { - throw new Error('shimmed function WorkflowPrintTicket.getCapabilities'); - } - - getFeature(name: string, xmlNamespace: string): PrintTicketFeature { - throw new Error('shimmed function WorkflowPrintTicket.getFeature'); - } - - notifyXmlChangedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WorkflowPrintTicket.notifyXmlChangedAsync'); - } - - validateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WorkflowPrintTicket.validateAsync'); - } - - getParameterInitializer(name: string, xmlNamespace: string): PrintTicketParameterInitializer { - throw new Error('shimmed function WorkflowPrintTicket.getParameterInitializer'); - } - - setParameterInitializerAsInteger(name: string, xmlNamespace: string, integerValue: number): PrintTicketParameterInitializer { - throw new Error('shimmed function WorkflowPrintTicket.setParameterInitializerAsInteger'); - } - - setParameterInitializerAsString(name: string, xmlNamespace: string, stringValue: string): PrintTicketParameterInitializer { - throw new Error('shimmed function WorkflowPrintTicket.setParameterInitializerAsString'); - } - - mergeAndValidateTicket(deltaShemaTicket: WorkflowPrintTicket): WorkflowPrintTicket { - throw new Error('shimmed function WorkflowPrintTicket.mergeAndValidateTicket'); - } - - } - export class WorkflowPrintTicketValidationResult implements IWorkflowPrintTicketValidationResult { - extendedError: number; - validated: Boolean; - - } - } - export class StandardPrintTaskOptions { - static copies: string = 'JobCopiesAllDocuments'; - static binding: string = 'DocumentBinding'; - static collation: string = 'DocumentCollate'; - static colorMode: string = 'PageOutputColor'; - static mediaType: string = 'PageMediaType'; - static duplex: string = 'DocumentDuplex'; - static holePunch: string = 'DocumentHolePunch'; - static inputBin: string = 'DocumentInputBin'; - static mediaSize: string = 'PageMediaSize'; - static nup: string = 'DocumentNUp'; - static orientation: string = 'PageOrientation'; - static printQuality: string = 'PageOutputQuality'; - static staple: string = 'DocumentStaple'; - static bordering: string = 'PageBorderless'; - static customPageRanges: string = 'com.microsoft.JobCustomPageRange'; - - } - export namespace Workflow { - export class PrintWorkflowBackgroundSession implements IPrintWorkflowBackgroundSession { - status: PrintWorkflowSessionStatus; - - start(): void { - console.warn('shimmed function PrintWorkflowBackgroundSession.start'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PrintWorkflowBackgroundSession::addEventListener: ${name}`); - switch (name) { - case "setuprequested": // Foundation.TypedEventHandler - case "submitted": // Foundation.TypedEventHandler - break; - } - - } - } - export class PrintWorkflowBackgroundSetupRequestedEventArgs implements IPrintWorkflowBackgroundSetupRequestedEventArgs { - configuration: PrintWorkflowConfiguration; - - getUserPrintTicketAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PrintWorkflowBackgroundSetupRequestedEventArgs.getUserPrintTicketAsync'); - } - - setRequiresUI(): void { - console.warn('shimmed function PrintWorkflowBackgroundSetupRequestedEventArgs.setRequiresUI'); - } - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function PrintWorkflowBackgroundSetupRequestedEventArgs.getDeferral'); - } - - } - export class PrintWorkflowConfiguration implements IPrintWorkflowConfiguration { - jobTitle: string; - sessionId: string; - sourceAppDisplayName: string; - - } - export class PrintWorkflowForegroundSession implements IPrintWorkflowForegroundSession { - status: PrintWorkflowSessionStatus; - - start(): void { - console.warn('shimmed function PrintWorkflowForegroundSession.start'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PrintWorkflowForegroundSession::addEventListener: ${name}`); - switch (name) { - case "setuprequested": // Foundation.TypedEventHandler - case "xpsdataavailable": // Foundation.TypedEventHandler - break; - } - - } - } - export class PrintWorkflowForegroundSetupRequestedEventArgs implements IPrintWorkflowForegroundSetupRequestedEventArgs { - configuration: PrintWorkflowConfiguration; - - getUserPrintTicketAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PrintWorkflowForegroundSetupRequestedEventArgs.getUserPrintTicketAsync'); - } - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function PrintWorkflowForegroundSetupRequestedEventArgs.getDeferral'); - } - - } - export class PrintWorkflowObjectModelSourceFileContent implements IPrintWorkflowObjectModelSourceFileContent { - } - export class PrintWorkflowObjectModelTargetPackage implements IPrintWorkflowObjectModelTargetPackage { - } - export enum PrintWorkflowSessionStatus { - started, - completed, - aborted, - closed, - } - export class PrintWorkflowSourceContent implements IPrintWorkflowSourceContent { - getJobPrintTicketAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PrintWorkflowSourceContent.getJobPrintTicketAsync'); - } - - getSourceSpoolDataAsStreamContent(): PrintWorkflowSpoolStreamContent { - throw new Error('shimmed function PrintWorkflowSourceContent.getSourceSpoolDataAsStreamContent'); - } - - getSourceSpoolDataAsXpsObjectModel(): PrintWorkflowObjectModelSourceFileContent { - throw new Error('shimmed function PrintWorkflowSourceContent.getSourceSpoolDataAsXpsObjectModel'); - } - - } - export class PrintWorkflowSpoolStreamContent implements IPrintWorkflowSpoolStreamContent { - getInputStream(): Storage.Streams.IInputStream { - throw new Error('shimmed function PrintWorkflowSpoolStreamContent.getInputStream'); - } - - } - export class PrintWorkflowStreamTarget implements IPrintWorkflowStreamTarget { - getOutputStream(): Storage.Streams.IOutputStream { - throw new Error('shimmed function PrintWorkflowStreamTarget.getOutputStream'); - } - - } - export class PrintWorkflowSubmittedEventArgs implements IPrintWorkflowSubmittedEventArgs { - operation: PrintWorkflowSubmittedOperation; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function PrintWorkflowSubmittedEventArgs.getDeferral'); - } - - } - export class PrintWorkflowSubmittedOperation implements IPrintWorkflowSubmittedOperation { - configuration: PrintWorkflowConfiguration; - xpsContent: PrintWorkflowSourceContent; - - complete(status: PrintWorkflowSubmittedStatus): void { - console.warn('shimmed function PrintWorkflowSubmittedOperation.complete'); - } - - } - export enum PrintWorkflowSubmittedStatus { - succeeded, - canceled, - failed, - } - export class PrintWorkflowTarget implements IPrintWorkflowTarget { - targetAsStream: PrintWorkflowStreamTarget; - targetAsXpsObjectModelPackage: PrintWorkflowObjectModelTargetPackage; - - } - export class PrintWorkflowTriggerDetails implements IPrintWorkflowTriggerDetails { - printWorkflowSession: PrintWorkflowBackgroundSession; - - } - export class PrintWorkflowUIActivatedEventArgs implements IPrintWorkflowUIActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - printWorkflowSession: PrintWorkflowForegroundSession; - - } - export class PrintWorkflowXpsDataAvailableEventArgs implements IPrintWorkflowXpsDataAvailableEventArgs { - operation: PrintWorkflowSubmittedOperation; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function PrintWorkflowXpsDataAvailableEventArgs.getDeferral'); - } - - } - } - } - export namespace Printing3D { - export class Print3DManager implements IPrint3DManager { - static getForCurrentView(): Print3DManager { - throw new Error('shimmed function Print3DManager.getForCurrentView'); - } - - static showPrintUIAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Print3DManager.showPrintUIAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Print3DManager::addEventListener: ${name}`); - switch (name) { - case "taskrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Print3DTask implements IPrint3DTask { - source: Printing3D3MFPackage; - - addEventListener(name: string, handler: Function) { - console.warn(`Print3DTask::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - case "sourcechanged": // Foundation.TypedEventHandler - case "submitting": // Foundation.TypedEventHandler - break; - } - - } - } - export class Print3DTaskCompletedEventArgs implements IPrint3DTaskCompletedEventArgs { - completion: Print3DTaskCompletion; - extendedStatus: Print3DTaskDetail; - - } - export enum Print3DTaskCompletion { - abandoned, - canceled, - failed, - slicing, - submitted, - } - export enum Print3DTaskDetail { - unknown, - modelExceedsPrintBed, - uploadFailed, - invalidMaterialSelection, - invalidModel, - modelNotManifold, - invalidPrintTicket, - } - export class Print3DTaskRequest implements IPrint3DTaskRequest { - createTask(title: string, printerId: string, handler: Print3DTaskSourceRequestedHandler): Print3DTask { - throw new Error('shimmed function Print3DTaskRequest.createTask'); - } - - } - export class Print3DTaskRequestedEventArgs implements IPrint3DTaskRequestedEventArgs { - request: Print3DTaskRequest; - - } - export class Print3DTaskSourceChangedEventArgs implements IPrint3DTaskSourceChangedEventArgs { - source: Printing3D3MFPackage; - - } - export class Print3DTaskSourceRequestedArgs implements IPrint3DTaskSourceRequestedArgs { - setSource(source: Printing3D3MFPackage): void { - console.warn('shimmed function Print3DTaskSourceRequestedArgs.setSource'); - } - - } - export type Print3DTaskSourceRequestedHandler = () => void; - export class Printing3D3MFPackage implements IPrinting3D3MFPackage, IPrinting3D3MFPackage2 { - // constructor(); - thumbnail: Printing3DTextureResource; - printTicket: Storage.Streams.IRandomAccessStream; - modelPart: Storage.Streams.IRandomAccessStream; - textures: Printing3DTextureResource[] = [ ]; - compression: Printing3DPackageCompression = Printing3DPackageCompression.medium; - - saveAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Printing3D3MFPackage.saveAsync'); - } - - loadModelFromPackageAsync(value: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function Printing3D3MFPackage.loadModelFromPackageAsync'); - } - - saveModelToPackageAsync(value: Printing3DModel): Foundation.IAsyncAction { - throw new Error('shimmed function Printing3D3MFPackage.saveModelToPackageAsync'); - } - - static loadAsync(value: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function Printing3D3MFPackage.loadAsync'); - } - - } - export class Printing3DBaseMaterial implements IPrinting3DBaseMaterial { - // constructor(); - name: string = ''; - color: Printing3DColorMaterial; - static abs: string = 'ABS'; - static pla: string = 'PLA'; - - } - export class Printing3DBaseMaterialGroup implements IPrinting3DBaseMaterialGroup { - // constructor(materialGroupId: number); - constructor(materialGroupId: number) {} - - bases: Printing3DBaseMaterial[]; - materialGroupId: number; - - } - export interface Printing3DBufferDescription { - format: Printing3DBufferFormat; - stride: number; - } - export enum Printing3DBufferFormat { - unknown, - r32G32B32A32Float = 2, - r32G32B32A32UInt, - r32G32B32Float = 6, - r32G32B32UInt, - printing3DDouble = 500, - printing3DUInt, - } - export class Printing3DColorMaterial implements IPrinting3DColorMaterial, IPrinting3DColorMaterial2 { - // constructor(); - value: number = 0; - color: UI.Color = { a: 0, r: 0, g: 0, b: 0 }; - - } - export class Printing3DColorMaterialGroup implements IPrinting3DColorMaterialGroup { - // constructor(materialGroupId: number); - constructor(materialGroupId: number) {} - - colors: Printing3DColorMaterial[]; - materialGroupId: number; - - } - export class Printing3DComponent implements IPrinting3DComponent { - // constructor(); - type: Printing3DObjectType = Printing3DObjectType.model; - thumbnail: Printing3DTextureResource; - partNumber: string = ''; - name: string = ''; - mesh: Printing3DMesh; - components: Printing3DComponentWithMatrix[] = [ ]; - - } - export class Printing3DComponentWithMatrix implements IPrinting3DComponentWithMatrix { - // constructor(); - matrix: Foundation.Numerics.Matrix4x4 = null; - component: Printing3DComponent = null; - - } - export class Printing3DCompositeMaterial implements IPrinting3DCompositeMaterial { - // constructor(); - values: number[] = [ ]; - - } - export class Printing3DCompositeMaterialGroup implements IPrinting3DCompositeMaterialGroup, IPrinting3DCompositeMaterialGroup2 { - // constructor(materialGroupId: number); - constructor(materialGroupId: number) {} - - composites: Printing3DCompositeMaterial[]; - materialGroupId: number; - materialIndices: number[]; - baseMaterialGroup: Printing3DBaseMaterialGroup; - - } - export interface Printing3DContract { - } - export class Printing3DFaceReductionOptions implements IPrinting3DFaceReductionOptions { - // constructor(); - targetTriangleCount: number = 0; - maxReductionArea: number = 0; - maxEdgeLength: number = 0; - - } - export class Printing3DMaterial implements IPrinting3DMaterial { - // constructor(); - baseGroups: Printing3DBaseMaterialGroup[] = [ ]; - colorGroups: Printing3DColorMaterialGroup[] = [ ]; - compositeGroups: Printing3DCompositeMaterialGroup[] = [ ]; - multiplePropertyGroups: Printing3DMultiplePropertyMaterialGroup[] = [ ]; - texture2CoordGroups: Printing3DTexture2CoordMaterialGroup[] = [ ]; - - } - export class Printing3DMesh implements IPrinting3DMesh { - // constructor(); - vertexPositionsDescription: Printing3DBufferDescription = null; - vertexNormalsDescription: Printing3DBufferDescription = null; - vertexCount: number = 0; - triangleMaterialIndicesDescription: Printing3DBufferDescription = null; - triangleIndicesDescription: Printing3DBufferDescription = null; - indexCount: number = 0; - bufferDescriptionSet: Foundation.Collections.IPropertySet = [ ]; - bufferSet: Foundation.Collections.IPropertySet = [ ]; - - getVertexPositions(): Storage.Streams.IBuffer { - throw new Error('shimmed function Printing3DMesh.getVertexPositions'); - } - - createVertexPositions(value: number): void { - console.warn('shimmed function Printing3DMesh.createVertexPositions'); - } - - getVertexNormals(): Storage.Streams.IBuffer { - throw new Error('shimmed function Printing3DMesh.getVertexNormals'); - } - - createVertexNormals(value: number): void { - console.warn('shimmed function Printing3DMesh.createVertexNormals'); - } - - getTriangleIndices(): Storage.Streams.IBuffer { - throw new Error('shimmed function Printing3DMesh.getTriangleIndices'); - } - - createTriangleIndices(value: number): void { - console.warn('shimmed function Printing3DMesh.createTriangleIndices'); - } - - getTriangleMaterialIndices(): Storage.Streams.IBuffer { - throw new Error('shimmed function Printing3DMesh.getTriangleMaterialIndices'); - } - - createTriangleMaterialIndices(value: number): void { - console.warn('shimmed function Printing3DMesh.createTriangleMaterialIndices'); - } - - verifyAsync(value: Printing3DMeshVerificationMode): Foundation.IAsyncOperation { - throw new Error('shimmed function Printing3DMesh.verifyAsync'); - } - - } - export enum Printing3DMeshVerificationMode { - findFirstError, - findAllErrors, - } - export class Printing3DMeshVerificationResult implements IPrinting3DMeshVerificationResult { - isValid: Boolean; - nonmanifoldTriangles: number[]; - reversedNormalTriangles: number[]; - - } - export class Printing3DModel implements IPrinting3DModel, IPrinting3DModel2 { - // constructor(); - version: string = ''; - unit: Printing3DModelUnit = Printing3DModelUnit.millimeter; - material: Printing3DMaterial = null; - build: Printing3DComponent = null; - components: Printing3DComponent[] = [ ]; - meshes: Printing3DMesh[] = [ ]; - metadata: string[] = [ ]; - requiredExtensions: string[] = [ ]; - textures: Printing3DModelTexture[] = [ ]; - - repairAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function Printing3DModel.repairAsync'); - } - - tryPartialRepairAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Printing3DModel.tryPartialRepairAsync'); - } - - tryPartialRepairAsync_1(maxWaitTime: number): Foundation.IAsyncOperation { - throw new Error('shimmed function Printing3DModel.tryPartialRepairAsync_1'); - } - - tryReduceFacesAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function Printing3DModel.tryReduceFacesAsync'); - } - - tryReduceFacesAsync_1(printing3DFaceReductionOptions: Printing3DFaceReductionOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function Printing3DModel.tryReduceFacesAsync_1'); - } - - tryReduceFacesAsync_2(printing3DFaceReductionOptions: Printing3DFaceReductionOptions, maxWait: number): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function Printing3DModel.tryReduceFacesAsync_2'); - } - - repairWithProgressAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function Printing3DModel.repairWithProgressAsync'); - } - - } - export class Printing3DModelTexture implements IPrinting3DModelTexture { - // constructor(); - tileStyleV: Printing3DTextureEdgeBehavior = Printing3DTextureEdgeBehavior.none; - tileStyleU: Printing3DTextureEdgeBehavior = Printing3DTextureEdgeBehavior.none; - textureResource: Printing3DTextureResource; - - } - export enum Printing3DModelUnit { - meter, - micron, - millimeter, - centimeter, - inch, - foot, - } - export class Printing3DMultiplePropertyMaterial implements IPrinting3DMultiplePropertyMaterial { - // constructor(); - materialIndices: number[] = [ ]; - - } - export class Printing3DMultiplePropertyMaterialGroup implements IPrinting3DMultiplePropertyMaterialGroup { - // constructor(materialGroupId: number); - constructor(materialGroupId: number) {} - - materialGroupId: number; - materialGroupIndices: number[]; - multipleProperties: Printing3DMultiplePropertyMaterial[]; - - } - export enum Printing3DObjectType { - model, - support, - others, - } - export enum Printing3DPackageCompression { - low, - medium, - high, - } - export class Printing3DTexture2CoordMaterial implements IPrinting3DTexture2CoordMaterial { - // constructor(); - v: number = 0; - u: number = 0; - texture: Printing3DModelTexture; - - } - export class Printing3DTexture2CoordMaterialGroup implements IPrinting3DTexture2CoordMaterialGroup, IPrinting3DTexture2CoordMaterialGroup2 { - // constructor(materialGroupId: number); - constructor(materialGroupId: number) {} - - materialGroupId: number; - texture2Coords: Printing3DTexture2CoordMaterial[]; - texture: Printing3DModelTexture; - - } - export enum Printing3DTextureEdgeBehavior { - none, - wrap, - mirror, - clamp, - } - export class Printing3DTextureResource implements IPrinting3DTextureResource { - // constructor(); - textureData: Storage.Streams.IRandomAccessStreamWithContentType; - name: string = ''; - - } - } - export interface RectInt32 { - x: number; - y: number; - width: number; - height: number; - } - export interface SizeInt32 { - width: number; - height: number; - } - } - export namespace Management { - export namespace Core { - export class ApplicationDataManager implements IApplicationDataManager { - static createForPackageFamily(packageFamilyName: string): Storage.ApplicationData { - throw new Error('shimmed function ApplicationDataManager.createForPackageFamily'); - } - - } - } - export namespace Deployment { - export enum AddPackageByAppInstallerOptions { - none, - installAllResources = 32, - forceTargetAppShutdown = 64, - requiredContentGroupOnly = 256, - limitToExistingPackages = 512, - } - export enum DeploymentOptions { - none, - forceApplicationShutdown, - developmentMode, - installAllResources = 32, - forceTargetApplicationShutdown = 64, - requiredContentGroupOnly = 256, - forceUpdateFromAnyVersion = 262144, - retainFilesOnFailure = 2097152, - } - export interface DeploymentProgress { - state: DeploymentProgressState; - percentage: number; - } - export enum DeploymentProgressState { - queued, - processing, - } - export class DeploymentResult implements IDeploymentResult, IDeploymentResult2 { - activityId: string; - errorText: string; - extendedErrorCode: number; - isRegistered: Boolean; - - } - export enum PackageInstallState { - notInstalled, - staged, - installed, - paused = 6, - } - export class PackageManager implements IPackageManager, IPackageManager2, IPackageManager3, IPackageManager4, IPackageManager5, IPackageManager6, IPackageManager7, IPackageManager8 { - // constructor(); - debugSettings: PackageManagerDebugSettings; - - addPackageAsync(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.addPackageAsync'); - } - - updatePackageAsync(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.updatePackageAsync'); - } - - removePackageAsync(packageFullName: string): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.removePackageAsync'); - } - - stagePackageAsync(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.stagePackageAsync'); - } - - registerPackageAsync(manifestUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.registerPackageAsync'); - } - - findPackages(): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackages'); - } - - findPackagesForUser(userSecurityId: string): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesForUser'); - } - - findPackages_1(packageName: string, packagePublisher: string): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackages_1'); - } - - findPackagesForUser_1(userSecurityId: string, packageName: string, packagePublisher: string): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesForUser_1'); - } - - findUsers(packageFullName: string): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findUsers'); - } - - setPackageState(packageFullName: string, packageState: PackageState): void { - console.warn('shimmed function PackageManager.setPackageState'); - } - - findPackage(packageFullName: string): ApplicationModel.Package { - throw new Error('shimmed function PackageManager.findPackage'); - } - - cleanupPackageForUserAsync(packageName: string, userSecurityId: string): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.cleanupPackageForUserAsync'); - } - - findPackages_2(packageFamilyName: string): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackages_2'); - } - - findPackagesForUser_2(userSecurityId: string, packageFamilyName: string): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesForUser_2'); - } - - findPackageForUser(userSecurityId: string, packageFullName: string): ApplicationModel.Package { - throw new Error('shimmed function PackageManager.findPackageForUser'); - } - - removePackageAsync_1(packageFullName: string, removalOptions: RemovalOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.removePackageAsync_1'); - } - - stagePackageAsync_1(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.stagePackageAsync_1'); - } - - registerPackageByFullNameAsync(mainPackageFullName: string, dependencyPackageFullNames: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.registerPackageByFullNameAsync'); - } - - findPackagesWithPackageTypes(packageTypes: PackageTypes): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesWithPackageTypes'); - } - - findPackagesForUserWithPackageTypes(userSecurityId: string, packageTypes: PackageTypes): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesForUserWithPackageTypes'); - } - - findPackagesWithPackageTypes_1(packageName: string, packagePublisher: string, packageTypes: PackageTypes): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesWithPackageTypes_1'); - } - - findPackagesForUserWithPackageTypes_1(userSecurityId: string, packageName: string, packagePublisher: string, packageTypes: PackageTypes): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesForUserWithPackageTypes_1'); - } - - findPackagesWithPackageTypes_2(packageFamilyName: string, packageTypes: PackageTypes): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesWithPackageTypes_2'); - } - - findPackagesForUserWithPackageTypes_2(userSecurityId: string, packageFamilyName: string, packageTypes: PackageTypes): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackagesForUserWithPackageTypes_2'); - } - - stageUserDataAsync(packageFullName: string): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.stageUserDataAsync'); - } - - addPackageVolumeAsync(packageStorePath: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PackageManager.addPackageVolumeAsync'); - } - - addPackageAsync_1(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, targetVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.addPackageAsync_1'); - } - - clearPackageStatus(packageFullName: string, status: PackageStatus): void { - console.warn('shimmed function PackageManager.clearPackageStatus'); - } - - registerPackageAsync_1(manifestUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, appDataVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.registerPackageAsync_1'); - } - - findPackageVolume(volumeName: string): PackageVolume { - throw new Error('shimmed function PackageManager.findPackageVolume'); - } - - findPackageVolumes(): Foundation.Collections.IIterable { - throw new Error('shimmed function PackageManager.findPackageVolumes'); - } - - getDefaultPackageVolume(): PackageVolume { - throw new Error('shimmed function PackageManager.getDefaultPackageVolume'); - } - - movePackageToVolumeAsync(packageFullName: string, deploymentOptions: DeploymentOptions, targetVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.movePackageToVolumeAsync'); - } - - removePackageVolumeAsync(volume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.removePackageVolumeAsync'); - } - - setDefaultPackageVolume(volume: PackageVolume): void { - console.warn('shimmed function PackageManager.setDefaultPackageVolume'); - } - - setPackageStatus(packageFullName: string, status: PackageStatus): void { - console.warn('shimmed function PackageManager.setPackageStatus'); - } - - setPackageVolumeOfflineAsync(packageVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.setPackageVolumeOfflineAsync'); - } - - setPackageVolumeOnlineAsync(packageVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.setPackageVolumeOnlineAsync'); - } - - stagePackageAsync_2(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, targetVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.stagePackageAsync_2'); - } - - stageUserDataAsync_1(packageFullName: string, deploymentOptions: DeploymentOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.stageUserDataAsync_1'); - } - - getPackageVolumesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PackageManager.getPackageVolumesAsync'); - } - - addPackageAsync_2(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, targetVolume: PackageVolume, optionalPackageFamilyNames: Foundation.Collections.IIterable, externalPackageUris: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.addPackageAsync_2'); - } - - stagePackageAsync_3(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, targetVolume: PackageVolume, optionalPackageFamilyNames: Foundation.Collections.IIterable, externalPackageUris: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.stagePackageAsync_3'); - } - - registerPackageByFamilyNameAsync(mainPackageFamilyName: string, dependencyPackageFamilyNames: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, appDataVolume: PackageVolume, optionalPackageFamilyNames: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.registerPackageByFamilyNameAsync'); - } - - provisionPackageForAllUsersAsync(packageFamilyName: string): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.provisionPackageForAllUsersAsync'); - } - - addPackageByAppInstallerFileAsync(appInstallerFileUri: Foundation.Uri, options: AddPackageByAppInstallerOptions, targetVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.addPackageByAppInstallerFileAsync'); - } - - requestAddPackageByAppInstallerFileAsync(appInstallerFileUri: Foundation.Uri, options: AddPackageByAppInstallerOptions, targetVolume: PackageVolume): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.requestAddPackageByAppInstallerFileAsync'); - } - - addPackageAsync_3(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, options: DeploymentOptions, targetVolume: PackageVolume, optionalPackageFamilyNames: Foundation.Collections.IIterable, packageUrisToInstall: Foundation.Collections.IIterable, relatedPackageUris: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.addPackageAsync_3'); - } - - stagePackageAsync_4(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, options: DeploymentOptions, targetVolume: PackageVolume, optionalPackageFamilyNames: Foundation.Collections.IIterable, packageUrisToInstall: Foundation.Collections.IIterable, relatedPackageUris: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.stagePackageAsync_4'); - } - - requestAddPackageAsync(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, targetVolume: PackageVolume, optionalPackageFamilyNames: Foundation.Collections.IIterable, relatedPackageUris: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.requestAddPackageAsync'); - } - - requestAddPackageAsync_1(packageUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: DeploymentOptions, targetVolume: PackageVolume, optionalPackageFamilyNames: Foundation.Collections.IIterable, relatedPackageUris: Foundation.Collections.IIterable, packageUrisToInstall: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.requestAddPackageAsync_1'); - } - - deprovisionPackageForAllUsersAsync(packageFamilyName: string): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PackageManager.deprovisionPackageForAllUsersAsync'); - } - - } - export class PackageManagerDebugSettings implements IPackageManagerDebugSettings { - setContentGroupStateAsync(package: ApplicationModel.Package, contentGroupName: string, state: ApplicationModel.PackageContentGroupState): Foundation.IAsyncAction { - throw new Error('shimmed function PackageManagerDebugSettings.setContentGroupStateAsync'); - } - - setContentGroupStateAsync_1(package: ApplicationModel.Package, contentGroupName: string, state: ApplicationModel.PackageContentGroupState, completionPercentage: number): Foundation.IAsyncAction { - throw new Error('shimmed function PackageManagerDebugSettings.setContentGroupStateAsync_1'); - } - - } - export enum PackageState { - normal, - licenseInvalid, - modified, - tampered, - } - export enum PackageStatus { - ok, - licenseIssue, - modified, - tampered = 4, - disabled = 8, - } - export enum PackageTypes { - none, - main, - framework, - resource = 4, - bundle = 8, - xap = 16, - optional = 32, - } - export class PackageUserInformation implements IPackageUserInformation { - installState: PackageInstallState; - userSecurityId: string; - - } - export class PackageVolume implements IPackageVolume, IPackageVolume2 { - isOffline: Boolean; - isSystemVolume: Boolean; - mountPoint: string; - name: string; - packageStorePath: string; - supportsHardLinks: Boolean; - isAppxInstallSupported: Boolean; - isFullTrustPackageSupported: Boolean; - - findPackages(): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackages'); - } - - findPackages_1(packageName: string, packagePublisher: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackages_1'); - } - - findPackages_2(packageFamilyName: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackages_2'); - } - - findPackagesWithPackageTypes(packageTypes: PackageTypes): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesWithPackageTypes'); - } - - findPackagesWithPackageTypes_1(packageTypes: PackageTypes, packageName: string, packagePublisher: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesWithPackageTypes_1'); - } - - findPackagesWithPackageTypes_2(packageTypes: PackageTypes, packageFamilyName: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesWithPackageTypes_2'); - } - - findPackage(packageFullName: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackage'); - } - - findPackagesForUser(userSecurityId: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesForUser'); - } - - findPackagesForUser_1(userSecurityId: string, packageName: string, packagePublisher: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesForUser_1'); - } - - findPackagesForUser_2(userSecurityId: string, packageFamilyName: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesForUser_2'); - } - - findPackagesForUserWithPackageTypes(userSecurityId: string, packageTypes: PackageTypes): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesForUserWithPackageTypes'); - } - - findPackagesForUserWithPackageTypes_1(userSecurityId: string, packageTypes: PackageTypes, packageName: string, packagePublisher: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesForUserWithPackageTypes_1'); - } - - findPackagesForUserWithPackageTypes_2(userSecurityId: string, packageTypes: PackageTypes, packageFamilyName: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackagesForUserWithPackageTypes_2'); - } - - findPackageForUser(userSecurityId: string, packageFullName: string): ApplicationModel.Package[] { - throw new Error('shimmed function PackageVolume.findPackageForUser'); - } - - getAvailableSpaceAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PackageVolume.getAvailableSpaceAsync'); - } - - } - export namespace Preview { - export class ClassicAppManager { - static findInstalledApp(appUninstallKey: string): InstalledClassicAppInfo { - throw new Error('shimmed function ClassicAppManager.findInstalledApp'); - } - - } - export interface DeploymentPreviewContract { - } - export class InstalledClassicAppInfo implements IInstalledClassicAppInfo { - displayName: string; - displayVersion: string; - - } - } - export enum RemovalOptions { - none, - preserveApplicationData = 4096, - removeForAllUsers = 524288, - } - } - export class MdmAlert implements IMdmAlert { - // constructor(); - type: string = ''; - target: string = ''; - source: string = ''; - mark: MdmAlertMark = MdmAlertMark.none; - format: MdmAlertDataType = MdmAlertDataType.string; - data: string = 'com.microsoft.mdm.syncapi.default'; - status: number = 0; - - } - export enum MdmAlertDataType { - string, - base64, - boolean, - integer, - } - export enum MdmAlertMark { - none, - fatal, - critical, - warning, - informational, - } - export class MdmSession implements IMdmSession { - alerts: MdmAlert[]; - extendedError: number; - id: string; - state: MdmSessionState; - - attachAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MdmSession.attachAsync'); - } - - delete(): void { - console.warn('shimmed function MdmSession.delete'); - } - - startAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MdmSession.startAsync'); - } - - startAsync_1(alerts: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function MdmSession.startAsync_1'); - } - - } - export class MdmSessionManager { - static sessionIds: string[]; - - static tryCreateSession(): MdmSession { - throw new Error('shimmed function MdmSessionManager.tryCreateSession'); - } - - static deleteSessionById(sessionId: string): void { - console.warn('shimmed function MdmSessionManager.deleteSessionById'); - } - - static getSessionById(sessionId: string): MdmSession { - throw new Error('shimmed function MdmSessionManager.getSessionById'); - } - - } - export enum MdmSessionState { - notStarted, - starting, - connecting, - communicating, - alertStatusAvailable, - retrying, - completed, - } - export namespace Policies { - export class NamedPolicy { - static getPolicyFromPath(area: string, name: string): NamedPolicyData { - throw new Error('shimmed function NamedPolicy.getPolicyFromPath'); - } - - static getPolicyFromPathForUser(user: System.User, area: string, name: string): NamedPolicyData { - throw new Error('shimmed function NamedPolicy.getPolicyFromPathForUser'); - } - - } - export class NamedPolicyData implements INamedPolicyData { - area: string; - isManaged: Boolean; - isUserPolicy: Boolean; - kind: NamedPolicyKind; - name: string; - user: System.User; - - getBoolean(): Boolean { - throw new Error('shimmed function NamedPolicyData.getBoolean'); - } - - getBinary(): Storage.Streams.IBuffer { - throw new Error('shimmed function NamedPolicyData.getBinary'); - } - - getInt32(): number { - throw new Error('shimmed function NamedPolicyData.getInt32'); - } - - getInt64(): number { - throw new Error('shimmed function NamedPolicyData.getInt64'); - } - - getString(): string { - throw new Error('shimmed function NamedPolicyData.getString'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NamedPolicyData::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - break; - } - - } - } - export enum NamedPolicyKind { - invalid, - binary, - boolean, - int32, - int64, - string, - } - } - export namespace Update { - export class PreviewBuildsManager implements IPreviewBuildsManager { - arePreviewBuildsAllowed: Boolean; - - getCurrentState(): PreviewBuildsState { - throw new Error('shimmed function PreviewBuildsManager.getCurrentState'); - } - - syncAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PreviewBuildsManager.syncAsync'); - } - - static getDefault(): PreviewBuildsManager { - throw new Error('shimmed function PreviewBuildsManager.getDefault'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function PreviewBuildsManager.isSupported'); - } - - } - export class PreviewBuildsState implements IPreviewBuildsState { - properties: Foundation.Collections.ValueSet; - - } - } - export namespace Workplace { - export class MdmPolicy { - static getMessagingSyncPolicy(): MessagingSyncPolicy { - throw new Error('shimmed function MdmPolicy.getMessagingSyncPolicy'); - } - - static isBrowserAllowed(): Boolean { - throw new Error('shimmed function MdmPolicy.isBrowserAllowed'); - } - - static isCameraAllowed(): Boolean { - throw new Error('shimmed function MdmPolicy.isCameraAllowed'); - } - - static isMicrosoftAccountAllowed(): Boolean { - throw new Error('shimmed function MdmPolicy.isMicrosoftAccountAllowed'); - } - - static isStoreAllowed(): Boolean { - throw new Error('shimmed function MdmPolicy.isStoreAllowed'); - } - - } - export enum MessagingSyncPolicy { - disallowed, - allowed, - required, - } - export class WorkplaceSettings { - static isMicrosoftAccountOptional: Boolean = false; - - } - export interface WorkplaceSettingsContract { - } - } - } - export namespace Media { - export namespace AppBroadcasting { - export interface AppBroadcastingContract { - } - export class AppBroadcastingMonitor implements IAppBroadcastingMonitor { - // constructor(); - isCurrentAppBroadcasting: Boolean = false; - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastingMonitor::addEventListener: ${name}`); - switch (name) { - case "iscurrentappbroadcastingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBroadcastingStatus implements IAppBroadcastingStatus { - canStartBroadcast: Boolean; - details: AppBroadcastingStatusDetails; - - } - export class AppBroadcastingStatusDetails implements IAppBroadcastingStatusDetails { - isAnyAppBroadcasting: Boolean; - isAppInactive: Boolean; - isBlockedForApp: Boolean; - isCaptureResourceUnavailable: Boolean; - isDisabledBySystem: Boolean; - isDisabledByUser: Boolean; - isGameStreamInProgress: Boolean; - isGpuConstrained: Boolean; - - } - export class AppBroadcastingUI implements IAppBroadcastingUI { - getStatus(): AppBroadcastingStatus { - throw new Error('shimmed function AppBroadcastingUI.getStatus'); - } - - showBroadcastUI(): void { - console.warn('shimmed function AppBroadcastingUI.showBroadcastUI'); - } - - static getDefault(): AppBroadcastingUI { - throw new Error('shimmed function AppBroadcastingUI.getDefault'); - } - - static getForUser(user: System.User): AppBroadcastingUI { - throw new Error('shimmed function AppBroadcastingUI.getForUser'); - } - - } - } - export namespace AppRecording { - export interface AppRecordingContract { - } - export class AppRecordingManager implements IAppRecordingManager { - supportedScreenshotMediaEncodingSubtypes: string[]; - - getStatus(): AppRecordingStatus { - throw new Error('shimmed function AppRecordingManager.getStatus'); - } - - startRecordingToFileAsync(file: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function AppRecordingManager.startRecordingToFileAsync'); - } - - recordTimeSpanToFileAsync(startTime: Date, duration: number, file: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function AppRecordingManager.recordTimeSpanToFileAsync'); - } - - saveScreenshotToFilesAsync(folder: Storage.StorageFolder, filenamePrefix: string, option: AppRecordingSaveScreenshotOption, requestedFormats: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function AppRecordingManager.saveScreenshotToFilesAsync'); - } - - static getDefault(): AppRecordingManager { - throw new Error('shimmed function AppRecordingManager.getDefault'); - } - - } - export class AppRecordingResult implements IAppRecordingResult { - duration: number; - extendedError: number; - isFileTruncated: Boolean; - succeeded: Boolean; - - } - export class AppRecordingSavedScreenshotInfo implements IAppRecordingSavedScreenshotInfo { - file: Storage.StorageFile; - mediaEncodingSubtype: string; - - } - export enum AppRecordingSaveScreenshotOption { - none, - hdrContentVisible, - } - export class AppRecordingSaveScreenshotResult implements IAppRecordingSaveScreenshotResult { - extendedError: number; - savedScreenshotInfos: AppRecordingSavedScreenshotInfo[]; - succeeded: Boolean; - - } - export class AppRecordingStatus implements IAppRecordingStatus { - canRecord: Boolean; - canRecordTimeSpan: Boolean; - details: AppRecordingStatusDetails; - historicalBufferDuration: number; - - } - export class AppRecordingStatusDetails implements IAppRecordingStatusDetails { - isAnyAppBroadcasting: Boolean; - isAppInactive: Boolean; - isBlockedForApp: Boolean; - isCaptureResourceUnavailable: Boolean; - isDisabledBySystem: Boolean; - isDisabledByUser: Boolean; - isGameStreamInProgress: Boolean; - isGpuConstrained: Boolean; - isTimeSpanRecordingDisabled: Boolean; - - } - } - export namespace Audio { - export class AudioDeviceInputNode implements IAudioDeviceInputNode, IAudioInputNode, IAudioNode, Foundation.IClosable, IAudioInputNode2 { - device: Devices.Enumeration.DeviceInformation; - outgoingConnections: AudioGraphConnection[]; - emitter: AudioNodeEmitter; - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - - addOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioDeviceInputNode.addOutgoingConnection'); - } - - addOutgoingConnection_1(destination: IAudioNode, gain: number): void { - console.warn('shimmed function AudioDeviceInputNode.addOutgoingConnection_1'); - } - - removeOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioDeviceInputNode.removeOutgoingConnection'); - } - - start(): void { - console.warn('shimmed function AudioDeviceInputNode.start'); - } - - stop(): void { - console.warn('shimmed function AudioDeviceInputNode.stop'); - } - - reset(): void { - console.warn('shimmed function AudioDeviceInputNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioDeviceInputNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioDeviceInputNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function AudioDeviceInputNode.close'); - } - - } - export enum AudioDeviceNodeCreationStatus { - success, - deviceNotAvailable, - formatNotSupported, - unknownFailure, - accessDenied, - } - export class AudioDeviceOutputNode implements IAudioDeviceOutputNode, IAudioNode, Foundation.IClosable, IAudioNodeWithListener { - device: Devices.Enumeration.DeviceInformation; - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - listener: AudioNodeListener; - - start(): void { - console.warn('shimmed function AudioDeviceOutputNode.start'); - } - - stop(): void { - console.warn('shimmed function AudioDeviceOutputNode.stop'); - } - - reset(): void { - console.warn('shimmed function AudioDeviceOutputNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioDeviceOutputNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioDeviceOutputNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function AudioDeviceOutputNode.close'); - } - - } - export class AudioFileInputNode implements IAudioFileInputNode, IAudioInputNode, IAudioNode, Foundation.IClosable, IAudioInputNode2 { - playbackSpeedFactor: number; - loopCount: number | null; - endTime: number | null; - startTime: number | null; - position: number; - sourceFile: Storage.StorageFile; - duration: number; - outgoingConnections: AudioGraphConnection[]; - emitter: AudioNodeEmitter; - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - - seek(position: number): void { - console.warn('shimmed function AudioFileInputNode.seek'); - } - - addOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioFileInputNode.addOutgoingConnection'); - } - - addOutgoingConnection_1(destination: IAudioNode, gain: number): void { - console.warn('shimmed function AudioFileInputNode.addOutgoingConnection_1'); - } - - removeOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioFileInputNode.removeOutgoingConnection'); - } - - start(): void { - console.warn('shimmed function AudioFileInputNode.start'); - } - - stop(): void { - console.warn('shimmed function AudioFileInputNode.stop'); - } - - reset(): void { - console.warn('shimmed function AudioFileInputNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFileInputNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFileInputNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function AudioFileInputNode.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioFileInputNode::addEventListener: ${name}`); - switch (name) { - case "filecompleted": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AudioFileNodeCreationStatus { - success, - fileNotFound, - invalidFileType, - formatNotSupported, - unknownFailure, - } - export class AudioFileOutputNode implements IAudioFileOutputNode, IAudioNode, Foundation.IClosable { - file: Storage.IStorageFile; - fileEncodingProfile: MediaProperties.MediaEncodingProfile; - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - - finalizeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioFileOutputNode.finalizeAsync'); - } - - start(): void { - console.warn('shimmed function AudioFileOutputNode.start'); - } - - stop(): void { - console.warn('shimmed function AudioFileOutputNode.stop'); - } - - reset(): void { - console.warn('shimmed function AudioFileOutputNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFileOutputNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFileOutputNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function AudioFileOutputNode.close'); - } - - } - export class AudioFrameCompletedEventArgs implements IAudioFrameCompletedEventArgs { - frame: AudioFrame; - - } - export class AudioFrameInputNode implements IAudioFrameInputNode, IAudioInputNode, IAudioNode, Foundation.IClosable, IAudioInputNode2 { - playbackSpeedFactor: number; - queuedSampleCount: number; - outgoingConnections: AudioGraphConnection[]; - emitter: AudioNodeEmitter; - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - - addFrame(frame: AudioFrame): void { - console.warn('shimmed function AudioFrameInputNode.addFrame'); - } - - discardQueuedFrames(): void { - console.warn('shimmed function AudioFrameInputNode.discardQueuedFrames'); - } - - addOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioFrameInputNode.addOutgoingConnection'); - } - - addOutgoingConnection_1(destination: IAudioNode, gain: number): void { - console.warn('shimmed function AudioFrameInputNode.addOutgoingConnection_1'); - } - - removeOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioFrameInputNode.removeOutgoingConnection'); - } - - start(): void { - console.warn('shimmed function AudioFrameInputNode.start'); - } - - stop(): void { - console.warn('shimmed function AudioFrameInputNode.stop'); - } - - reset(): void { - console.warn('shimmed function AudioFrameInputNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFrameInputNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFrameInputNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function AudioFrameInputNode.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioFrameInputNode::addEventListener: ${name}`); - switch (name) { - case "audioframecompleted": // Foundation.TypedEventHandler - case "quantumstarted": // Foundation.TypedEventHandler - break; - } - - } - } - export class AudioFrameOutputNode implements IAudioFrameOutputNode, IAudioNode, Foundation.IClosable { - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - - getFrame(): AudioFrame { - throw new Error('shimmed function AudioFrameOutputNode.getFrame'); - } - - start(): void { - console.warn('shimmed function AudioFrameOutputNode.start'); - } - - stop(): void { - console.warn('shimmed function AudioFrameOutputNode.stop'); - } - - reset(): void { - console.warn('shimmed function AudioFrameOutputNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFrameOutputNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioFrameOutputNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function AudioFrameOutputNode.close'); - } - - } - export class AudioGraph implements IAudioGraph, Foundation.IClosable, IAudioGraph2, IAudioGraph3 { - completedQuantumCount: number; - encodingProperties: MediaProperties.AudioEncodingProperties; - latencyInSamples: number; - primaryRenderDevice: Devices.Enumeration.DeviceInformation; - renderDeviceAudioProcessing: AudioProcessing; - samplesPerQuantum: number; - - createFrameInputNode(): AudioFrameInputNode { - throw new Error('shimmed function AudioGraph.createFrameInputNode'); - } - - createFrameInputNode_1(encodingProperties: MediaProperties.AudioEncodingProperties): AudioFrameInputNode { - throw new Error('shimmed function AudioGraph.createFrameInputNode_1'); - } - - createDeviceInputNodeAsync(category: Capture.MediaCategory): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createDeviceInputNodeAsync'); - } - - createDeviceInputNodeAsync_1(category: Capture.MediaCategory, encodingProperties: MediaProperties.AudioEncodingProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createDeviceInputNodeAsync_1'); - } - - createDeviceInputNodeAsync_2(category: Capture.MediaCategory, encodingProperties: MediaProperties.AudioEncodingProperties, device: Devices.Enumeration.DeviceInformation): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createDeviceInputNodeAsync_2'); - } - - createFrameOutputNode(): AudioFrameOutputNode { - throw new Error('shimmed function AudioGraph.createFrameOutputNode'); - } - - createFrameOutputNode_1(encodingProperties: MediaProperties.AudioEncodingProperties): AudioFrameOutputNode { - throw new Error('shimmed function AudioGraph.createFrameOutputNode_1'); - } - - createDeviceOutputNodeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createDeviceOutputNodeAsync'); - } - - createFileInputNodeAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createFileInputNodeAsync'); - } - - createFileOutputNodeAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createFileOutputNodeAsync'); - } - - createFileOutputNodeAsync_1(file: Storage.IStorageFile, fileEncodingProfile: MediaProperties.MediaEncodingProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createFileOutputNodeAsync_1'); - } - - createSubmixNode(): AudioSubmixNode { - throw new Error('shimmed function AudioGraph.createSubmixNode'); - } - - createSubmixNode_1(encodingProperties: MediaProperties.AudioEncodingProperties): AudioSubmixNode { - throw new Error('shimmed function AudioGraph.createSubmixNode_1'); - } - - start(): void { - console.warn('shimmed function AudioGraph.start'); - } - - stop(): void { - console.warn('shimmed function AudioGraph.stop'); - } - - resetAllNodes(): void { - console.warn('shimmed function AudioGraph.resetAllNodes'); - } - - close(): void { - console.warn('shimmed function AudioGraph.close'); - } - - createFrameInputNode_2(encodingProperties: MediaProperties.AudioEncodingProperties, emitter: AudioNodeEmitter): AudioFrameInputNode { - throw new Error('shimmed function AudioGraph.createFrameInputNode_2'); - } - - createDeviceInputNodeAsync_3(category: Capture.MediaCategory, encodingProperties: MediaProperties.AudioEncodingProperties, device: Devices.Enumeration.DeviceInformation, emitter: AudioNodeEmitter): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createDeviceInputNodeAsync_3'); - } - - createFileInputNodeAsync_1(file: Storage.IStorageFile, emitter: AudioNodeEmitter): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createFileInputNodeAsync_1'); - } - - createSubmixNode_2(encodingProperties: MediaProperties.AudioEncodingProperties, emitter: AudioNodeEmitter): AudioSubmixNode { - throw new Error('shimmed function AudioGraph.createSubmixNode_2'); - } - - createBatchUpdater(): AudioGraphBatchUpdater { - throw new Error('shimmed function AudioGraph.createBatchUpdater'); - } - - createMediaSourceAudioInputNodeAsync(mediaSource: Core.MediaSource): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createMediaSourceAudioInputNodeAsync'); - } - - createMediaSourceAudioInputNodeAsync_1(mediaSource: Core.MediaSource, emitter: AudioNodeEmitter): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createMediaSourceAudioInputNodeAsync_1'); - } - - static createAsync(settings: AudioGraphSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioGraph.createAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioGraph::addEventListener: ${name}`); - switch (name) { - case "quantumprocessed": // Foundation.TypedEventHandler - case "quantumstarted": // Foundation.TypedEventHandler - case "unrecoverableerroroccurred": // Foundation.TypedEventHandler - break; - } - - } - } - export class AudioGraphBatchUpdater implements Foundation.IClosable { - close(): void { - console.warn('shimmed function AudioGraphBatchUpdater.close'); - } - - } - export class AudioGraphConnection implements IAudioGraphConnection { - gain: number; - destination: IAudioNode; - - } - export enum AudioGraphCreationStatus { - success, - deviceNotAvailable, - formatNotSupported, - unknownFailure, - } - export class AudioGraphSettings implements IAudioGraphSettings, IAudioGraphSettings2 { - // constructor(audioRenderCategory: Render.AudioRenderCategory); - constructor(audioRenderCategory: Render.AudioRenderCategory) {} - - quantumSizeSelectionMode: QuantumSizeSelectionMode; - primaryRenderDevice: Devices.Enumeration.DeviceInformation; - encodingProperties: MediaProperties.AudioEncodingProperties; - desiredSamplesPerQuantum: number; - desiredRenderDeviceAudioProcessing: AudioProcessing; - audioRenderCategory: Render.AudioRenderCategory; - maxPlaybackSpeedFactor: number; - - } - export enum AudioGraphUnrecoverableError { - none, - audioDeviceLost, - audioSessionDisconnected, - unknownFailure, - } - export class AudioGraphUnrecoverableErrorOccurredEventArgs implements IAudioGraphUnrecoverableErrorOccurredEventArgs { - error: AudioGraphUnrecoverableError; - - } - export class AudioNodeEmitter implements IAudioNodeEmitter, IAudioNodeEmitter2 { - // constructor(shape: AudioNodeEmitterShape, decayModel: AudioNodeEmitterDecayModel, settings: AudioNodeEmitterSettings); - // constructor(); - constructor(shape: AudioNodeEmitterShape, decayModel: AudioNodeEmitterDecayModel, settings: AudioNodeEmitterSettings) {} - - position: Foundation.Numerics.Vector3 = null; - gain: number = 1; - dopplerVelocity: Foundation.Numerics.Vector3 = null; - dopplerScale: number = 1; - distanceScale: number = 1; - direction: Foundation.Numerics.Vector3 = null; - decayModel: AudioNodeEmitterDecayModel = null; - isDopplerDisabled: Boolean = false; - shape: AudioNodeEmitterShape = null; - spatialAudioModel: SpatialAudioModel = SpatialAudioModel.objectBased; - - } - export class AudioNodeEmitterConeProperties implements IAudioNodeEmitterConeProperties { - innerAngle: number; - outerAngle: number; - outerAngleGain: number; - - } - export enum AudioNodeEmitterDecayKind { - natural, - custom, - } - export class AudioNodeEmitterDecayModel implements IAudioNodeEmitterDecayModel { - kind: AudioNodeEmitterDecayKind; - maxGain: number; - minGain: number; - naturalProperties: AudioNodeEmitterNaturalDecayModelProperties; - - static createNatural(minGain: number, maxGain: number, unityGainDistance: number, cutoffDistance: number): AudioNodeEmitterDecayModel { - throw new Error('shimmed function AudioNodeEmitterDecayModel.createNatural'); - } - - static createCustom(minGain: number, maxGain: number): AudioNodeEmitterDecayModel { - throw new Error('shimmed function AudioNodeEmitterDecayModel.createCustom'); - } - - } - export class AudioNodeEmitterNaturalDecayModelProperties implements IAudioNodeEmitterNaturalDecayModelProperties { - cutoffDistance: number; - unityGainDistance: number; - - } - export enum AudioNodeEmitterSettings { - none, - disableDoppler, - } - export class AudioNodeEmitterShape implements IAudioNodeEmitterShape { - coneProperties: AudioNodeEmitterConeProperties; - kind: AudioNodeEmitterShapeKind; - - static createCone(innerAngle: number, outerAngle: number, outerAngleGain: number): AudioNodeEmitterShape { - throw new Error('shimmed function AudioNodeEmitterShape.createCone'); - } - - static createOmnidirectional(): AudioNodeEmitterShape { - throw new Error('shimmed function AudioNodeEmitterShape.createOmnidirectional'); - } - - } - export enum AudioNodeEmitterShapeKind { - omnidirectional, - cone, - } - export class AudioNodeListener implements IAudioNodeListener { - // constructor(); - speedOfSound: number = 343.2; - position: Foundation.Numerics.Vector3 = null; - orientation: Foundation.Numerics.Quaternion = null; - dopplerVelocity: Foundation.Numerics.Vector3 = null; - - } - export class AudioStateMonitor implements IAudioStateMonitor { - soundLevel: SoundLevel; - - static createForRenderMonitoring(): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForRenderMonitoring'); - } - - static createForRenderMonitoring_1(category: Render.AudioRenderCategory): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForRenderMonitoring_1'); - } - - static createForRenderMonitoring_2(category: Render.AudioRenderCategory, role: Devices.AudioDeviceRole): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForRenderMonitoring_2'); - } - - static createForRenderMonitoringWithCategoryAndDeviceId(category: Render.AudioRenderCategory, deviceId: string): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForRenderMonitoringWithCategoryAndDeviceId'); - } - - static createForCaptureMonitoring(): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForCaptureMonitoring'); - } - - static createForCaptureMonitoring_1(category: Capture.MediaCategory): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForCaptureMonitoring_1'); - } - - static createForCaptureMonitoring_2(category: Capture.MediaCategory, role: Devices.AudioDeviceRole): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForCaptureMonitoring_2'); - } - - static createForCaptureMonitoringWithCategoryAndDeviceId(category: Capture.MediaCategory, deviceId: string): AudioStateMonitor { - throw new Error('shimmed function AudioStateMonitor.createForCaptureMonitoringWithCategoryAndDeviceId'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioStateMonitor::addEventListener: ${name}`); - switch (name) { - case "soundlevelchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AudioSubmixNode implements IAudioInputNode, IAudioNode, Foundation.IClosable, IAudioInputNode2 { - outgoingConnections: AudioGraphConnection[]; - emitter: AudioNodeEmitter; - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - - addOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioSubmixNode.addOutgoingConnection'); - } - - addOutgoingConnection_1(destination: IAudioNode, gain: number): void { - console.warn('shimmed function AudioSubmixNode.addOutgoingConnection_1'); - } - - removeOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function AudioSubmixNode.removeOutgoingConnection'); - } - - start(): void { - console.warn('shimmed function AudioSubmixNode.start'); - } - - stop(): void { - console.warn('shimmed function AudioSubmixNode.stop'); - } - - reset(): void { - console.warn('shimmed function AudioSubmixNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioSubmixNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function AudioSubmixNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function AudioSubmixNode.close'); - } - - } - export class CreateAudioDeviceInputNodeResult implements ICreateAudioDeviceInputNodeResult, ICreateAudioDeviceInputNodeResult2 { - deviceInputNode: AudioDeviceInputNode; - status: AudioDeviceNodeCreationStatus; - extendedError: number; - - } - export class CreateAudioDeviceOutputNodeResult implements ICreateAudioDeviceOutputNodeResult, ICreateAudioDeviceOutputNodeResult2 { - deviceOutputNode: AudioDeviceOutputNode; - status: AudioDeviceNodeCreationStatus; - extendedError: number; - - } - export class CreateAudioFileInputNodeResult implements ICreateAudioFileInputNodeResult, ICreateAudioFileInputNodeResult2 { - fileInputNode: AudioFileInputNode; - status: AudioFileNodeCreationStatus; - extendedError: number; - - } - export class CreateAudioFileOutputNodeResult implements ICreateAudioFileOutputNodeResult, ICreateAudioFileOutputNodeResult2 { - fileOutputNode: AudioFileOutputNode; - status: AudioFileNodeCreationStatus; - extendedError: number; - - } - export class CreateAudioGraphResult implements ICreateAudioGraphResult, ICreateAudioGraphResult2 { - graph: AudioGraph; - status: AudioGraphCreationStatus; - extendedError: number; - - } - export class CreateMediaSourceAudioInputNodeResult implements ICreateMediaSourceAudioInputNodeResult, ICreateMediaSourceAudioInputNodeResult2 { - node: MediaSourceAudioInputNode; - status: MediaSourceAudioInputNodeCreationStatus; - extendedError: number; - - } - export class EchoEffectDefinition implements IEchoEffectDefinition, Effects.IAudioEffectDefinition { - // constructor(audioGraph: AudioGraph); - constructor(audioGraph: AudioGraph) {} - - wetDryMix: number; - feedback: number; - delay: number; - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class EqualizerBand implements IEqualizerBand { - gain: number; - frequencyCenter: number; - bandwidth: number; - - } - export class EqualizerEffectDefinition implements IEqualizerEffectDefinition, Effects.IAudioEffectDefinition { - // constructor(audioGraph: AudioGraph); - constructor(audioGraph: AudioGraph) {} - - bands: EqualizerBand[]; - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class FrameInputNodeQuantumStartedEventArgs implements IFrameInputNodeQuantumStartedEventArgs { - requiredSamples: number; - - } - export interface IAudioInputNode extends IAudioNode, Foundation.IClosable { - outgoingConnections: AudioGraphConnection[]; - addOutgoingConnection(destination: IAudioNode): void; - addOutgoingConnection_1(destination: IAudioNode, gain: number): void; - removeOutgoingConnection(destination: IAudioNode): void; - } - export interface IAudioInputNode2 extends IAudioNode, Foundation.IClosable, IAudioInputNode { - emitter: AudioNodeEmitter; - } - export interface IAudioNode extends Foundation.IClosable { - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - outgoingGain: number; - start(): void; - stop(): void; - reset(): void; - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void; - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void; - } - export interface IAudioNodeWithListener extends Foundation.IClosable, IAudioNode { - listener: AudioNodeListener; - } - export class LimiterEffectDefinition implements ILimiterEffectDefinition, Effects.IAudioEffectDefinition { - // constructor(audioGraph: AudioGraph); - constructor(audioGraph: AudioGraph) {} - - release: number; - loudness: number; - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class MediaSourceAudioInputNode implements IMediaSourceAudioInputNode, IAudioInputNode, IAudioNode, Foundation.IClosable, IAudioInputNode2 { - outgoingConnections: AudioGraphConnection[]; - emitter: AudioNodeEmitter; - outgoingGain: number; - consumeInput: Boolean; - effectDefinitions: Effects.IAudioEffectDefinition[]; - encodingProperties: MediaProperties.AudioEncodingProperties; - startTime: number | null; - playbackSpeedFactor: number; - loopCount: number | null; - endTime: number | null; - duration: number; - mediaSource: Core.MediaSource; - position: number; - - seek(position: number): void { - console.warn('shimmed function MediaSourceAudioInputNode.seek'); - } - - addOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function MediaSourceAudioInputNode.addOutgoingConnection'); - } - - addOutgoingConnection_1(destination: IAudioNode, gain: number): void { - console.warn('shimmed function MediaSourceAudioInputNode.addOutgoingConnection_1'); - } - - removeOutgoingConnection(destination: IAudioNode): void { - console.warn('shimmed function MediaSourceAudioInputNode.removeOutgoingConnection'); - } - - start(): void { - console.warn('shimmed function MediaSourceAudioInputNode.start'); - } - - stop(): void { - console.warn('shimmed function MediaSourceAudioInputNode.stop'); - } - - reset(): void { - console.warn('shimmed function MediaSourceAudioInputNode.reset'); - } - - disableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function MediaSourceAudioInputNode.disableEffectsByDefinition'); - } - - enableEffectsByDefinition(definition: Effects.IAudioEffectDefinition): void { - console.warn('shimmed function MediaSourceAudioInputNode.enableEffectsByDefinition'); - } - - close(): void { - console.warn('shimmed function MediaSourceAudioInputNode.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaSourceAudioInputNode::addEventListener: ${name}`); - switch (name) { - case "mediasourcecompleted": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MediaSourceAudioInputNodeCreationStatus { - success, - formatNotSupported, - networkError, - unknownFailure, - } - export enum MixedRealitySpatialAudioFormatPolicy { - useMixedRealityDefaultSpatialAudioFormat, - useDeviceConfigurationDefaultSpatialAudioFormat, - } - export enum QuantumSizeSelectionMode { - systemDefault, - lowestLatency, - closestToDesired, - } - export class ReverbEffectDefinition implements IReverbEffectDefinition, Effects.IAudioEffectDefinition { - // constructor(audioGraph: AudioGraph); - constructor(audioGraph: AudioGraph) {} - - highEQGain: number; - highEQCutoff: number; - disableLateField: Boolean; - density: number; - positionRight: number; - decayTime: number; - lateDiffusion: number; - positionMatrixRight: number; - positionMatrixLeft: number; - positionLeft: number; - lowEQGain: number; - lowEQCutoff: number; - roomFilterFreq: number; - reverbGain: number; - reverbDelay: number; - reflectionsGain: number; - reflectionsDelay: number; - rearDelay: number; - wetDryMix: number; - earlyDiffusion: number; - roomSize: number; - roomFilterMain: number; - roomFilterHF: number; - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class SetDefaultSpatialAudioFormatResult implements ISetDefaultSpatialAudioFormatResult { - status: SetDefaultSpatialAudioFormatStatus; - - } - export enum SetDefaultSpatialAudioFormatStatus { - succeeded, - accessDenied, - licenseExpired, - licenseNotValidForAudioEndpoint, - notSupportedOnAudioEndpoint, - unknownError, - } - export class SpatialAudioDeviceConfiguration implements ISpatialAudioDeviceConfiguration { - activeSpatialAudioFormat: string; - defaultSpatialAudioFormat: string; - deviceId: string; - isSpatialAudioSupported: Boolean; - - isSpatialAudioFormatSupported(subtype: string): Boolean { - throw new Error('shimmed function SpatialAudioDeviceConfiguration.isSpatialAudioFormatSupported'); - } - - setDefaultSpatialAudioFormatAsync(subtype: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAudioDeviceConfiguration.setDefaultSpatialAudioFormatAsync'); - } - - static getForDeviceId(deviceId: string): SpatialAudioDeviceConfiguration { - throw new Error('shimmed function SpatialAudioDeviceConfiguration.getForDeviceId'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpatialAudioDeviceConfiguration::addEventListener: ${name}`); - switch (name) { - case "configurationchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class SpatialAudioFormatConfiguration implements ISpatialAudioFormatConfiguration { - mixedRealityExclusiveModePolicy: MixedRealitySpatialAudioFormatPolicy; - - reportLicenseChangedAsync(subtype: string): Foundation.IAsyncAction { - throw new Error('shimmed function SpatialAudioFormatConfiguration.reportLicenseChangedAsync'); - } - - reportConfigurationChangedAsync(subtype: string): Foundation.IAsyncAction { - throw new Error('shimmed function SpatialAudioFormatConfiguration.reportConfigurationChangedAsync'); - } - - static getDefault(): SpatialAudioFormatConfiguration { - throw new Error('shimmed function SpatialAudioFormatConfiguration.getDefault'); - } - - } - export class SpatialAudioFormatSubtype { - static dtsheadphoneX: string = '{4444ACB0-8DC0-4C2C-A0D8-2C76DB470F86}'; - static dtsxultra: string = '{ADAFD3C6-AC4C-404A-836A-9615E9060564}'; - static dolbyAtmosForHeadphones: string = '{1459AC38-3875-49BF-BB59-0FE80F4D395D}'; - static dolbyAtmosForHomeTheater: string = '{A289735D-FA3E-4E35-9D7D-B6F896ACB2E7}'; - static dolbyAtmosForSpeakers: string = '{4C81E564-C8EF-4AD9-9F2C-9EF995533790}'; - static windowsSonic: string = '{B53D940C-B846-4831-9F76-D102B9B725A0}'; - - } - export enum SpatialAudioModel { - objectBased, - foldDown, - } - } - export class AudioBuffer implements IAudioBuffer, Foundation.IMemoryBuffer, Foundation.IClosable { - length: number; - capacity: number; - - createReference(): Foundation.IMemoryBufferReference { - throw new Error('shimmed function AudioBuffer.createReference'); - } - - close(): void { - console.warn('shimmed function AudioBuffer.close'); - } - - } - export enum AudioBufferAccessMode { - read, - readWrite, - write, - } - export class AudioFrame implements IAudioFrame, IMediaFrame, Foundation.IClosable { - // constructor(capacity: number); - constructor(capacity: number) {} - - systemRelativeTime: number | null; - relativeTime: number | null; - isDiscontinuous: Boolean; - duration: number | null; - extendedProperties: Foundation.Collections.IPropertySet; - isReadOnly: Boolean; - type: string; - - lockBuffer(mode: AudioBufferAccessMode): AudioBuffer { - throw new Error('shimmed function AudioFrame.lockBuffer'); - } - - close(): void { - console.warn('shimmed function AudioFrame.close'); - } - - } - export enum AudioProcessing { - default, - raw, - } - export class AutoRepeatModeChangeRequestedEventArgs implements IAutoRepeatModeChangeRequestedEventArgs { - requestedAutoRepeatMode: MediaPlaybackAutoRepeatMode; - - } - export namespace Capture { - export class AdvancedCapturedPhoto implements IAdvancedCapturedPhoto, IAdvancedCapturedPhoto2 { - context: any; - frame: CapturedFrame; - mode: Devices.AdvancedPhotoMode; - frameBoundsRelativeToReferencePhoto: Foundation.Rect | null; - - } - export class AdvancedPhotoCapture implements IAdvancedPhotoCapture { - captureAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AdvancedPhotoCapture.captureAsync'); - } - - captureAsync_1(context: any): Foundation.IAsyncOperation { - throw new Error('shimmed function AdvancedPhotoCapture.captureAsync_1'); - } - - finishAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AdvancedPhotoCapture.finishAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AdvancedPhotoCapture::addEventListener: ${name}`); - switch (name) { - case "allphotoscaptured": // Foundation.TypedEventHandler - case "optionalreferencephotocaptured": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBroadcastBackgroundService implements IAppBroadcastBackgroundService, IAppBroadcastBackgroundService2 { - viewerCount: number; - streamInfo: AppBroadcastBackgroundServiceStreamInfo; - signInInfo: AppBroadcastBackgroundServiceSignInInfo; - plugInState: AppBroadcastPlugInState; - broadcastTitle: string; - appId: string; - titleId: string; - broadcastLanguage: string; - broadcastChannel: string; - - terminateBroadcast(reason: AppBroadcastTerminationReason, providerSpecificReason: number): void { - console.warn('shimmed function AppBroadcastBackgroundService.terminateBroadcast'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastBackgroundService::addEventListener: ${name}`); - switch (name) { - case "heartbeatrequested": // Foundation.TypedEventHandler - case "broadcastchannelchanged": // Foundation.TypedEventHandler - case "broadcastlanguagechanged": // Foundation.TypedEventHandler - case "broadcasttitlechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBroadcastBackgroundServiceSignInInfo implements IAppBroadcastBackgroundServiceSignInInfo, IAppBroadcastBackgroundServiceSignInInfo2 { - userName: string; - oauthRequestUri: Foundation.Uri; - oauthCallbackUri: Foundation.Uri; - authenticationResult: Security.Authentication.Web.WebAuthenticationResult; - signInState: AppBroadcastSignInState; - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastBackgroundServiceSignInInfo::addEventListener: ${name}`); - switch (name) { - case "signinstatechanged": // Foundation.TypedEventHandler - case "usernamechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBroadcastBackgroundServiceStreamInfo implements IAppBroadcastBackgroundServiceStreamInfo, IAppBroadcastBackgroundServiceStreamInfo2 { - desiredVideoEncodingBitrate: number; - bandwidthTestBitrate: number; - audioCodec: string; - broadcastStreamReader: AppBroadcastStreamReader; - streamState: AppBroadcastStreamState; - - reportProblemWithStream(): void { - console.warn('shimmed function AppBroadcastBackgroundServiceStreamInfo.reportProblemWithStream'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastBackgroundServiceStreamInfo::addEventListener: ${name}`); - switch (name) { - case "streamstatechanged": // Foundation.TypedEventHandler - case "videoencodingbitratechanged": // Foundation.TypedEventHandler - case "videoencodingresolutionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppBroadcastCameraCaptureState { - stopped, - started, - failed, - } - export class AppBroadcastCameraCaptureStateChangedEventArgs implements IAppBroadcastCameraCaptureStateChangedEventArgs { - errorCode: number; - state: AppBroadcastCameraCaptureState; - - } - export enum AppBroadcastCameraOverlayLocation { - topLeft, - topCenter, - topRight, - middleLeft, - middleCenter, - middleRight, - bottomLeft, - bottomCenter, - bottomRight, - } - export enum AppBroadcastCameraOverlaySize { - small, - medium, - large, - } - export enum AppBroadcastCaptureTargetType { - appView, - entireDisplay, - } - export interface AppBroadcastContract { - } - export enum AppBroadcastExitBroadcastModeReason { - normalExit, - userCanceled, - authorizationFail, - foregroundAppActivated, - } - export class AppBroadcastGlobalSettings implements IAppBroadcastGlobalSettings { - systemAudioGain: number; - selectedCameraId: string; - microphoneGain: number; - isMicrophoneCaptureEnabledByDefault: Boolean; - isEchoCancellationEnabled: Boolean; - isCursorImageCaptureEnabled: Boolean; - isCameraCaptureEnabledByDefault: Boolean; - isAudioCaptureEnabled: Boolean; - cameraOverlaySize: AppBroadcastCameraOverlaySize; - cameraOverlayLocation: AppBroadcastCameraOverlayLocation; - hasHardwareEncoder: Boolean; - isBroadcastEnabled: Boolean; - isDisabledByPolicy: Boolean; - isGpuConstrained: Boolean; - - } - export class AppBroadcastHeartbeatRequestedEventArgs implements IAppBroadcastHeartbeatRequestedEventArgs { - handled: Boolean; - - } - export class AppBroadcastManager { - static getGlobalSettings(): AppBroadcastGlobalSettings { - throw new Error('shimmed function AppBroadcastManager.getGlobalSettings'); - } - - static applyGlobalSettings(value: AppBroadcastGlobalSettings): void { - console.warn('shimmed function AppBroadcastManager.applyGlobalSettings'); - } - - static getProviderSettings(): AppBroadcastProviderSettings { - throw new Error('shimmed function AppBroadcastManager.getProviderSettings'); - } - - static applyProviderSettings(value: AppBroadcastProviderSettings): void { - console.warn('shimmed function AppBroadcastManager.applyProviderSettings'); - } - - } - export enum AppBroadcastMicrophoneCaptureState { - stopped, - started, - failed, - } - export class AppBroadcastMicrophoneCaptureStateChangedEventArgs implements IAppBroadcastMicrophoneCaptureStateChangedEventArgs { - errorCode: number; - state: AppBroadcastMicrophoneCaptureState; - - } - export class AppBroadcastPlugIn implements IAppBroadcastPlugIn { - appId: string; - displayName: string; - logo: Storage.Streams.IRandomAccessStreamReference; - providerSettings: AppBroadcastProviderSettings; - - } - export class AppBroadcastPlugInManager implements IAppBroadcastPlugInManager { - defaultPlugIn: AppBroadcastPlugIn; - isBroadcastProviderAvailable: Boolean; - plugInList: AppBroadcastPlugIn[]; - - static getDefault(): AppBroadcastPlugInManager { - throw new Error('shimmed function AppBroadcastPlugInManager.getDefault'); - } - - static getForUser(user: System.User): AppBroadcastPlugInManager { - throw new Error('shimmed function AppBroadcastPlugInManager.getForUser'); - } - - } - export enum AppBroadcastPlugInState { - unknown, - initialized, - microsoftSignInRequired, - oauthSignInRequired, - providerSignInRequired, - inBandwidthTest, - readyToBroadcast, - } - export class AppBroadcastPlugInStateChangedEventArgs implements IAppBroadcastPlugInStateChangedEventArgs { - plugInState: AppBroadcastPlugInState; - - } - export class AppBroadcastPreview implements IAppBroadcastPreview { - errorCode: number | null; - previewState: AppBroadcastPreviewState; - previewStreamReader: AppBroadcastPreviewStreamReader; - - stopPreview(): void { - console.warn('shimmed function AppBroadcastPreview.stopPreview'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastPreview::addEventListener: ${name}`); - switch (name) { - case "previewstatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppBroadcastPreviewState { - started, - stopped, - failed, - } - export class AppBroadcastPreviewStateChangedEventArgs implements IAppBroadcastPreviewStateChangedEventArgs { - errorCode: number; - previewState: AppBroadcastPreviewState; - - } - export class AppBroadcastPreviewStreamReader implements IAppBroadcastPreviewStreamReader { - videoBitmapAlphaMode: Graphics.Imaging.BitmapAlphaMode; - videoBitmapPixelFormat: Graphics.Imaging.BitmapPixelFormat; - videoHeight: number; - videoStride: number; - videoWidth: number; - - tryGetNextVideoFrame(): AppBroadcastPreviewStreamVideoFrame { - throw new Error('shimmed function AppBroadcastPreviewStreamReader.tryGetNextVideoFrame'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastPreviewStreamReader::addEventListener: ${name}`); - switch (name) { - case "videoframearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBroadcastPreviewStreamVideoFrame implements IAppBroadcastPreviewStreamVideoFrame { - videoBuffer: Storage.Streams.IBuffer; - videoHeader: AppBroadcastPreviewStreamVideoHeader; - - } - export class AppBroadcastPreviewStreamVideoHeader implements IAppBroadcastPreviewStreamVideoHeader { - absoluteTimestamp: Date; - duration: number; - frameId: number; - relativeTimestamp: number; - - } - export class AppBroadcastProviderSettings implements IAppBroadcastProviderSettings { - videoEncodingResolutionMode: AppBroadcastVideoEncodingResolutionMode; - videoEncodingBitrateMode: AppBroadcastVideoEncodingBitrateMode; - defaultBroadcastTitle: string; - customVideoEncodingWidth: number; - customVideoEncodingHeight: number; - customVideoEncodingBitrate: number; - audioEncodingBitrate: number; - - } - export class AppBroadcastServices implements IAppBroadcastServices { - captureTargetType: AppBroadcastCaptureTargetType; - broadcastTitle: string; - broadcastLanguage: string; - canCapture: Boolean; - state: AppBroadcastState; - userName: string; - - enterBroadcastModeAsync(plugIn: AppBroadcastPlugIn): Foundation.IAsyncOperation { - throw new Error('shimmed function AppBroadcastServices.enterBroadcastModeAsync'); - } - - exitBroadcastMode(reason: AppBroadcastExitBroadcastModeReason): void { - console.warn('shimmed function AppBroadcastServices.exitBroadcastMode'); - } - - startBroadcast(): void { - console.warn('shimmed function AppBroadcastServices.startBroadcast'); - } - - pauseBroadcast(): void { - console.warn('shimmed function AppBroadcastServices.pauseBroadcast'); - } - - resumeBroadcast(): void { - console.warn('shimmed function AppBroadcastServices.resumeBroadcast'); - } - - startPreview(desiredSize: Foundation.Size): AppBroadcastPreview { - throw new Error('shimmed function AppBroadcastServices.startPreview'); - } - - } - export enum AppBroadcastSignInResult { - success, - authenticationFailed, - unauthorized, - serviceUnavailable, - unknown, - } - export enum AppBroadcastSignInState { - notSignedIn, - microsoftSignInInProgress, - microsoftSignInComplete, - oauthSignInInProgress, - oauthSignInComplete, - } - export class AppBroadcastSignInStateChangedEventArgs implements IAppBroadcastSignInStateChangedEventArgs { - result: AppBroadcastSignInResult; - signInState: AppBroadcastSignInState; - - } - export class AppBroadcastState implements IAppBroadcastState { - signInState: AppBroadcastSignInState; - shouldCaptureMicrophone: Boolean; - shouldCaptureCamera: Boolean; - authenticationResult: Security.Authentication.Web.WebAuthenticationResult; - isCaptureTargetRunning: Boolean; - microphoneCaptureError: number; - microphoneCaptureState: AppBroadcastMicrophoneCaptureState; - oauthCallbackUri: Foundation.Uri; - oauthRequestUri: Foundation.Uri; - plugInState: AppBroadcastPlugInState; - cameraCaptureError: number; - cameraCaptureState: AppBroadcastCameraCaptureState; - encodedVideoSize: Foundation.Size; - streamState: AppBroadcastStreamState; - terminationReason: AppBroadcastTerminationReason; - terminationReasonPlugInSpecific: number; - viewerCount: number; - - restartMicrophoneCapture(): void { - console.warn('shimmed function AppBroadcastState.restartMicrophoneCapture'); - } - - restartCameraCapture(): void { - console.warn('shimmed function AppBroadcastState.restartCameraCapture'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastState::addEventListener: ${name}`); - switch (name) { - case "cameracapturestatechanged": // Foundation.TypedEventHandler - case "capturetargetclosed": // Foundation.TypedEventHandler - case "microphonecapturestatechanged": // Foundation.TypedEventHandler - case "pluginstatechanged": // Foundation.TypedEventHandler - case "streamstatechanged": // Foundation.TypedEventHandler - case "viewercountchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBroadcastStreamAudioFrame implements IAppBroadcastStreamAudioFrame { - audioBuffer: Storage.Streams.IBuffer; - audioHeader: AppBroadcastStreamAudioHeader; - - } - export class AppBroadcastStreamAudioHeader implements IAppBroadcastStreamAudioHeader { - absoluteTimestamp: Date; - duration: number; - frameId: number; - hasDiscontinuity: Boolean; - relativeTimestamp: number; - - } - export class AppBroadcastStreamReader implements IAppBroadcastStreamReader { - audioAacSequence: Storage.Streams.IBuffer; - audioBitrate: number; - audioChannels: number; - audioSampleRate: number; - videoBitrate: number; - videoHeight: number; - videoWidth: number; - - tryGetNextAudioFrame(): AppBroadcastStreamAudioFrame { - throw new Error('shimmed function AppBroadcastStreamReader.tryGetNextAudioFrame'); - } - - tryGetNextVideoFrame(): AppBroadcastStreamVideoFrame { - throw new Error('shimmed function AppBroadcastStreamReader.tryGetNextVideoFrame'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBroadcastStreamReader::addEventListener: ${name}`); - switch (name) { - case "audioframearrived": // Foundation.TypedEventHandler - case "videoframearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppBroadcastStreamState { - initializing, - streamReady, - started, - paused, - terminated, - } - export class AppBroadcastStreamStateChangedEventArgs implements IAppBroadcastStreamStateChangedEventArgs { - streamState: AppBroadcastStreamState; - - } - export class AppBroadcastStreamVideoFrame implements IAppBroadcastStreamVideoFrame { - videoBuffer: Storage.Streams.IBuffer; - videoHeader: AppBroadcastStreamVideoHeader; - - } - export class AppBroadcastStreamVideoHeader implements IAppBroadcastStreamVideoHeader { - absoluteTimestamp: Date; - duration: number; - frameId: number; - hasDiscontinuity: Boolean; - isKeyFrame: Boolean; - relativeTimestamp: number; - - } - export enum AppBroadcastTerminationReason { - normalTermination, - lostConnectionToService, - noNetworkConnectivity, - serviceAbort, - serviceError, - serviceUnavailable, - internalError, - unsupportedFormat, - backgroundTaskTerminated, - backgroundTaskUnresponsive, - } - export class AppBroadcastTriggerDetails implements IAppBroadcastTriggerDetails { - backgroundService: AppBroadcastBackgroundService; - - } - export enum AppBroadcastVideoEncodingBitrateMode { - custom, - auto, - } - export enum AppBroadcastVideoEncodingResolutionMode { - custom, - auto, - } - export class AppBroadcastViewerCountChangedEventArgs implements IAppBroadcastViewerCountChangedEventArgs { - viewerCount: number; - - } - export class AppCapture implements IAppCapture { - isCapturingAudio: Boolean; - isCapturingVideo: Boolean; - - static setAllowedAsync(allowed: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function AppCapture.setAllowedAsync'); - } - - static getForCurrentView(): AppCapture { - throw new Error('shimmed function AppCapture.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppCapture::addEventListener: ${name}`); - switch (name) { - case "capturingchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppCaptureAlternateShortcutKeys implements IAppCaptureAlternateShortcutKeys, IAppCaptureAlternateShortcutKeys2, IAppCaptureAlternateShortcutKeys3 { - toggleRecordingKeyModifiers: System.VirtualKeyModifiers; - toggleRecordingKey: System.VirtualKey; - toggleRecordingIndicatorKeyModifiers: System.VirtualKeyModifiers; - toggleRecordingIndicatorKey: System.VirtualKey; - toggleGameBarKeyModifiers: System.VirtualKeyModifiers; - toggleGameBarKey: System.VirtualKey; - takeScreenshotKeyModifiers: System.VirtualKeyModifiers; - takeScreenshotKey: System.VirtualKey; - saveHistoricalVideoKeyModifiers: System.VirtualKeyModifiers; - saveHistoricalVideoKey: System.VirtualKey; - toggleMicrophoneCaptureKeyModifiers: System.VirtualKeyModifiers; - toggleMicrophoneCaptureKey: System.VirtualKey; - toggleCameraCaptureKeyModifiers: System.VirtualKeyModifiers; - toggleCameraCaptureKey: System.VirtualKey; - toggleBroadcastKeyModifiers: System.VirtualKeyModifiers; - toggleBroadcastKey: System.VirtualKey; - - } - export interface AppCaptureContract { - } - export class AppCaptureDurationGeneratedEventArgs implements IAppCaptureDurationGeneratedEventArgs { - duration: number; - - } - export class AppCaptureFileGeneratedEventArgs implements IAppCaptureFileGeneratedEventArgs { - file: Storage.StorageFile; - - } - export enum AppCaptureHistoricalBufferLengthUnit { - megabytes, - seconds, - } - export class AppCaptureManager { - static getCurrentSettings(): AppCaptureSettings { - throw new Error('shimmed function AppCaptureManager.getCurrentSettings'); - } - - static applySettings(appCaptureSettings: AppCaptureSettings): void { - console.warn('shimmed function AppCaptureManager.applySettings'); - } - - } - export interface AppCaptureMetadataContract { - } - export enum AppCaptureMetadataPriority { - informational, - important, - } - export class AppCaptureMetadataWriter implements IAppCaptureMetadataWriter, Foundation.IClosable { - // constructor(); - remainingStorageBytesAvailable: number = 10240; - - addStringEvent(name: string, value: string, priority: AppCaptureMetadataPriority): void { - console.warn('shimmed function AppCaptureMetadataWriter.addStringEvent'); - } - - addInt32Event(name: string, value: number, priority: AppCaptureMetadataPriority): void { - console.warn('shimmed function AppCaptureMetadataWriter.addInt32Event'); - } - - addDoubleEvent(name: string, value: number, priority: AppCaptureMetadataPriority): void { - console.warn('shimmed function AppCaptureMetadataWriter.addDoubleEvent'); - } - - startStringState(name: string, value: string, priority: AppCaptureMetadataPriority): void { - console.warn('shimmed function AppCaptureMetadataWriter.startStringState'); - } - - startInt32State(name: string, value: number, priority: AppCaptureMetadataPriority): void { - console.warn('shimmed function AppCaptureMetadataWriter.startInt32State'); - } - - startDoubleState(name: string, value: number, priority: AppCaptureMetadataPriority): void { - console.warn('shimmed function AppCaptureMetadataWriter.startDoubleState'); - } - - stopState(name: string): void { - console.warn('shimmed function AppCaptureMetadataWriter.stopState'); - } - - stopAllStates(): void { - console.warn('shimmed function AppCaptureMetadataWriter.stopAllStates'); - } - - close(): void { - console.warn('shimmed function AppCaptureMetadataWriter.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppCaptureMetadataWriter::addEventListener: ${name}`); - switch (name) { - case "metadatapurged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppCaptureMicrophoneCaptureState { - stopped, - started, - failed, - } - export class AppCaptureMicrophoneCaptureStateChangedEventArgs implements IAppCaptureMicrophoneCaptureStateChangedEventArgs { - errorCode: number; - state: AppCaptureMicrophoneCaptureState; - - } - export enum AppCaptureRecordingState { - inProgress, - completed, - failed, - } - export class AppCaptureRecordingStateChangedEventArgs implements IAppCaptureRecordingStateChangedEventArgs { - errorCode: number; - state: AppCaptureRecordingState; - - } - export class AppCaptureRecordOperation implements IAppCaptureRecordOperation { - duration: number | null; - errorCode: number | null; - file: Storage.StorageFile; - isFileTruncated: Boolean | null; - state: AppCaptureRecordingState; - - stopRecording(): void { - console.warn('shimmed function AppCaptureRecordOperation.stopRecording'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppCaptureRecordOperation::addEventListener: ${name}`); - switch (name) { - case "durationgenerated": // Foundation.TypedEventHandler - case "filegenerated": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppCaptureServices implements IAppCaptureServices { - canCapture: Boolean; - state: AppCaptureState; - - record(): AppCaptureRecordOperation { - throw new Error('shimmed function AppCaptureServices.record'); - } - - recordTimeSpan(startTime: Date, duration: number): AppCaptureRecordOperation { - throw new Error('shimmed function AppCaptureServices.recordTimeSpan'); - } - - } - export class AppCaptureSettings implements IAppCaptureSettings, IAppCaptureSettings2, IAppCaptureSettings3, IAppCaptureSettings4, IAppCaptureSettings5 { - isHistoricalCaptureOnWirelessDisplayAllowed: Boolean; - videoEncodingBitrateMode: AppCaptureVideoEncodingBitrateMode; - isHistoricalCaptureOnBatteryAllowed: Boolean; - isAudioCaptureEnabled: Boolean; - isAppCaptureEnabled: Boolean; - appCaptureDestinationFolder: Storage.StorageFolder; - historicalBufferLength: number; - isHistoricalCaptureEnabled: Boolean; - customVideoEncodingWidth: number; - customVideoEncodingHeight: number; - customVideoEncodingBitrate: number; - audioEncodingBitrate: number; - historicalBufferLengthUnit: AppCaptureHistoricalBufferLengthUnit; - videoEncodingResolutionMode: AppCaptureVideoEncodingResolutionMode; - screenshotDestinationFolder: Storage.StorageFolder; - maximumRecordLength: number; - hasHardwareEncoder: Boolean; - isCpuConstrained: Boolean; - isMemoryConstrained: Boolean; - isDisabledByPolicy: Boolean; - alternateShortcutKeys: AppCaptureAlternateShortcutKeys; - isGpuConstrained: Boolean; - isMicrophoneCaptureEnabled: Boolean; - videoEncodingFrameRateMode: AppCaptureVideoEncodingFrameRateMode; - systemAudioGain: number; - microphoneGain: number; - isMicrophoneCaptureEnabledByDefault: Boolean; - isEchoCancellationEnabled: Boolean; - isCursorImageCaptureEnabled: Boolean; - - } - export class AppCaptureState implements IAppCaptureState { - shouldCaptureMicrophone: Boolean; - isHistoricalCaptureEnabled: Boolean; - isTargetRunning: Boolean; - microphoneCaptureError: number; - microphoneCaptureState: AppCaptureMicrophoneCaptureState; - - restartMicrophoneCapture(): void { - console.warn('shimmed function AppCaptureState.restartMicrophoneCapture'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppCaptureState::addEventListener: ${name}`); - switch (name) { - case "capturetargetclosed": // Foundation.TypedEventHandler - case "microphonecapturestatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppCaptureVideoEncodingBitrateMode { - custom, - high, - standard, - } - export enum AppCaptureVideoEncodingFrameRateMode { - standard, - high, - } - export enum AppCaptureVideoEncodingResolutionMode { - custom, - high, - standard, - } - export class CameraCaptureUI implements ICameraCaptureUI { - // constructor(); - photoSettings: CameraCaptureUIPhotoCaptureSettings = null; - videoSettings: CameraCaptureUIVideoCaptureSettings = null; - - captureFileAsync(mode: CameraCaptureUIMode): Foundation.IAsyncOperation { - throw new Error('shimmed function CameraCaptureUI.captureFileAsync'); - } - - } - export interface CameraCaptureUIContract { - } - export enum CameraCaptureUIMaxPhotoResolution { - highestAvailable, - verySmallQvga, - smallVga, - mediumXga, - large3M, - veryLarge5M, - } - export enum CameraCaptureUIMaxVideoResolution { - highestAvailable, - lowDefinition, - standardDefinition, - highDefinition, - } - export enum CameraCaptureUIMode { - photoOrVideo, - photo, - video, - } - export class CameraCaptureUIPhotoCaptureSettings implements ICameraCaptureUIPhotoCaptureSettings { - maxResolution: CameraCaptureUIMaxPhotoResolution; - format: CameraCaptureUIPhotoFormat; - croppedSizeInPixels: Foundation.Size; - croppedAspectRatio: Foundation.Size; - allowCropping: Boolean; - - } - export enum CameraCaptureUIPhotoFormat { - jpeg, - png, - jpegXR, - } - export class CameraCaptureUIVideoCaptureSettings implements ICameraCaptureUIVideoCaptureSettings { - maxResolution: CameraCaptureUIMaxVideoResolution; - maxDurationInSeconds: number; - format: CameraCaptureUIVideoFormat; - allowTrimming: Boolean; - - } - export enum CameraCaptureUIVideoFormat { - mp4, - wmv, - } - export class CameraOptionsUI { - static show(mediaCapture: MediaCapture): void { - console.warn('shimmed function CameraOptionsUI.show'); - } - - } - export class CapturedFrame implements ICapturedFrame, Storage.Streams.IRandomAccessStreamWithContentType, Storage.Streams.IRandomAccessStream, Foundation.IClosable, Storage.Streams.IInputStream, Storage.Streams.IOutputStream, Storage.Streams.IContentTypeProvider, ICapturedFrameWithSoftwareBitmap, ICapturedFrame2 { - height: number; - width: number; - bitmapProperties: Graphics.Imaging.BitmapPropertySet; - controlValues: CapturedFrameControlValues; - softwareBitmap: Graphics.Imaging.SoftwareBitmap; - contentType: string; - size: number; - canRead: Boolean; - canWrite: Boolean; - position: number; - - getInputStreamAt(position: number): Storage.Streams.IInputStream { - throw new Error('shimmed function CapturedFrame.getInputStreamAt'); - } - - getOutputStreamAt(position: number): Storage.Streams.IOutputStream { - throw new Error('shimmed function CapturedFrame.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function CapturedFrame.seek'); - } - - cloneStream(): Storage.Streams.IRandomAccessStream { - throw new Error('shimmed function CapturedFrame.cloneStream'); - } - - close(): void { - console.warn('shimmed function CapturedFrame.close'); - } - - readAsync(buffer: Storage.Streams.IBuffer, count: number, options: Storage.Streams.InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function CapturedFrame.readAsync'); - } - - writeAsync(buffer: Storage.Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function CapturedFrame.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CapturedFrame.flushAsync'); - } - - } - export class CapturedFrameControlValues implements ICapturedFrameControlValues, ICapturedFrameControlValues2 { - exposure: number | null; - exposureCompensation: number | null; - flashPowerPercent: number | null; - flashed: Boolean | null; - focus: number | null; - isoSpeed: number | null; - sceneMode: Devices.CaptureSceneMode | null; - whiteBalance: number | null; - zoomFactor: number | null; - focusState: Devices.MediaCaptureFocusState | null; - isoAnalogGain: number | null; - isoDigitalGain: number | null; - sensorFrameRate: MediaProperties.MediaRatio; - whiteBalanceGain: WhiteBalanceGain | null; - - } - export class CapturedPhoto implements ICapturedPhoto { - frame: CapturedFrame; - thumbnail: CapturedFrame; - - } - export namespace Core { - export class VariablePhotoCapturedEventArgs implements IVariablePhotoCapturedEventArgs { - captureTimeOffset: number; - capturedFrameControlValues: CapturedFrameControlValues; - frame: CapturedFrame; - usedFrameControllerIndex: number | null; - - } - export class VariablePhotoSequenceCapture implements IVariablePhotoSequenceCapture, IVariablePhotoSequenceCapture2 { - startAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function VariablePhotoSequenceCapture.startAsync'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function VariablePhotoSequenceCapture.stopAsync'); - } - - finishAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function VariablePhotoSequenceCapture.finishAsync'); - } - - updateSettingsAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function VariablePhotoSequenceCapture.updateSettingsAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VariablePhotoSequenceCapture::addEventListener: ${name}`); - switch (name) { - case "photocaptured": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - } - export enum ForegroundActivationArgument { - signInRequired, - moreSettings, - } - export namespace Frames { - export class AudioMediaFrame implements IAudioMediaFrame { - audioEncodingProperties: MediaProperties.AudioEncodingProperties; - frameReference: MediaFrameReference; - - getAudioFrame(): AudioFrame { - throw new Error('shimmed function AudioMediaFrame.getAudioFrame'); - } - - } - export class BufferMediaFrame implements IBufferMediaFrame { - buffer: Storage.Streams.IBuffer; - frameReference: MediaFrameReference; - - } - export class DepthMediaFrame implements IDepthMediaFrame, IDepthMediaFrame2 { - depthFormat: DepthMediaFrameFormat; - frameReference: MediaFrameReference; - videoMediaFrame: VideoMediaFrame; - maxReliableDepth: number; - minReliableDepth: number; - - tryCreateCoordinateMapper(cameraIntrinsics: Devices.Core.CameraIntrinsics, coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): Devices.Core.DepthCorrelatedCoordinateMapper { - throw new Error('shimmed function DepthMediaFrame.tryCreateCoordinateMapper'); - } - - } - export class DepthMediaFrameFormat implements IDepthMediaFrameFormat { - depthScaleInMeters: number; - videoFormat: VideoMediaFrameFormat; - - } - export class InfraredMediaFrame implements IInfraredMediaFrame { - frameReference: MediaFrameReference; - isIlluminated: Boolean; - videoMediaFrame: VideoMediaFrame; - - } - export class MediaFrameArrivedEventArgs implements IMediaFrameArrivedEventArgs { - } - export class MediaFrameFormat implements IMediaFrameFormat, IMediaFrameFormat2 { - frameRate: MediaProperties.MediaRatio; - majorType: string; - properties: string[]; - subtype: string; - videoFormat: VideoMediaFrameFormat; - audioEncodingProperties: MediaProperties.AudioEncodingProperties; - - } - export class MediaFrameReader implements IMediaFrameReader, Foundation.IClosable, IMediaFrameReader2 { - acquisitionMode: MediaFrameReaderAcquisitionMode; - - tryAcquireLatestFrame(): MediaFrameReference { - throw new Error('shimmed function MediaFrameReader.tryAcquireLatestFrame'); - } - - startAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaFrameReader.startAsync'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MediaFrameReader.stopAsync'); - } - - close(): void { - console.warn('shimmed function MediaFrameReader.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaFrameReader::addEventListener: ${name}`); - switch (name) { - case "framearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MediaFrameReaderAcquisitionMode { - realtime, - buffered, - } - export enum MediaFrameReaderStartStatus { - success, - unknownFailure, - deviceNotAvailable, - outputFormatNotSupported, - exclusiveControlNotAvailable, - } - export class MediaFrameReference implements IMediaFrameReference, Foundation.IClosable, IMediaFrameReference2 { - bufferMediaFrame: BufferMediaFrame; - coordinateSystem: Perception.Spatial.SpatialCoordinateSystem; - duration: number; - format: MediaFrameFormat; - properties: string[]; - sourceKind: MediaFrameSourceKind; - systemRelativeTime: number | null; - videoMediaFrame: VideoMediaFrame; - audioMediaFrame: AudioMediaFrame; - - close(): void { - console.warn('shimmed function MediaFrameReference.close'); - } - - } - export class MediaFrameSource implements IMediaFrameSource { - controller: MediaFrameSourceController; - currentFormat: MediaFrameFormat; - info: MediaFrameSourceInfo; - supportedFormats: MediaFrameFormat[]; - - setFormatAsync(format: MediaFrameFormat): Foundation.IAsyncAction { - throw new Error('shimmed function MediaFrameSource.setFormatAsync'); - } - - tryGetCameraIntrinsics(format: MediaFrameFormat): Devices.Core.CameraIntrinsics { - throw new Error('shimmed function MediaFrameSource.tryGetCameraIntrinsics'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaFrameSource::addEventListener: ${name}`); - switch (name) { - case "formatchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaFrameSourceController implements IMediaFrameSourceController, IMediaFrameSourceController2, IMediaFrameSourceController3 { - videoDeviceController: Devices.VideoDeviceController; - audioDeviceController: Devices.AudioDeviceController; - - getPropertyAsync(propertyId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaFrameSourceController.getPropertyAsync'); - } - - setPropertyAsync(propertyId: string, propertyValue: any): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaFrameSourceController.setPropertyAsync'); - } - - getPropertyByExtendedIdAsync(extendedPropertyId: number[], maxPropertyValueSize: number | null): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaFrameSourceController.getPropertyByExtendedIdAsync'); - } - - setPropertyByExtendedIdAsync(extendedPropertyId: number[], propertyValue: number[]): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaFrameSourceController.setPropertyByExtendedIdAsync'); - } - - } - export class MediaFrameSourceGetPropertyResult implements IMediaFrameSourceGetPropertyResult { - status: MediaFrameSourceGetPropertyStatus; - value: any; - - } - export enum MediaFrameSourceGetPropertyStatus { - success, - unknownFailure, - notSupported, - deviceNotAvailable, - maxPropertyValueSizeTooSmall, - maxPropertyValueSizeRequired, - } - export class MediaFrameSourceGroup implements IMediaFrameSourceGroup { - displayName: string; - id: string; - sourceInfos: MediaFrameSourceInfo[]; - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaFrameSourceGroup.findAllAsync'); - } - - static fromIdAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaFrameSourceGroup.fromIdAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function MediaFrameSourceGroup.getDeviceSelector'); - } - - } - export class MediaFrameSourceInfo implements IMediaFrameSourceInfo, IMediaFrameSourceInfo2 { - coordinateSystem: Perception.Spatial.SpatialCoordinateSystem; - deviceInformation: Devices.Enumeration.DeviceInformation; - id: string; - mediaStreamType: MediaStreamType; - properties: string[]; - sourceGroup: MediaFrameSourceGroup; - sourceKind: MediaFrameSourceKind; - profileId: string; - videoProfileMediaDescription: MediaCaptureVideoProfileMediaDescription[]; - - } - export enum MediaFrameSourceKind { - custom, - color, - infrared, - depth, - audio, - image, - } - export enum MediaFrameSourceSetPropertyStatus { - success, - unknownFailure, - notSupported, - invalidValue, - deviceNotAvailable, - notInControl, - } - export class MultiSourceMediaFrameArrivedEventArgs implements IMultiSourceMediaFrameArrivedEventArgs { - } - export class MultiSourceMediaFrameReader implements IMultiSourceMediaFrameReader, Foundation.IClosable, IMultiSourceMediaFrameReader2 { - acquisitionMode: MediaFrameReaderAcquisitionMode; - - tryAcquireLatestFrame(): MultiSourceMediaFrameReference { - throw new Error('shimmed function MultiSourceMediaFrameReader.tryAcquireLatestFrame'); - } - - startAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MultiSourceMediaFrameReader.startAsync'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MultiSourceMediaFrameReader.stopAsync'); - } - - close(): void { - console.warn('shimmed function MultiSourceMediaFrameReader.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MultiSourceMediaFrameReader::addEventListener: ${name}`); - switch (name) { - case "framearrived": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MultiSourceMediaFrameReaderStartStatus { - success, - notSupported, - insufficientResources, - deviceNotAvailable, - unknownFailure, - } - export class MultiSourceMediaFrameReference implements IMultiSourceMediaFrameReference, Foundation.IClosable { - tryGetFrameReferenceBySourceId(sourceId: string): MediaFrameReference { - throw new Error('shimmed function MultiSourceMediaFrameReference.tryGetFrameReferenceBySourceId'); - } - - close(): void { - console.warn('shimmed function MultiSourceMediaFrameReference.close'); - } - - } - export class VideoMediaFrame implements IVideoMediaFrame { - cameraIntrinsics: Devices.Core.CameraIntrinsics; - depthMediaFrame: DepthMediaFrame; - direct3DSurface: Graphics.DirectX.Direct3D11.IDirect3DSurface; - frameReference: MediaFrameReference; - infraredMediaFrame: InfraredMediaFrame; - softwareBitmap: Graphics.Imaging.SoftwareBitmap; - videoFormat: VideoMediaFrameFormat; - - getVideoFrame(): VideoFrame { - throw new Error('shimmed function VideoMediaFrame.getVideoFrame'); - } - - } - export class VideoMediaFrameFormat implements IVideoMediaFrameFormat { - depthFormat: DepthMediaFrameFormat; - height: number; - mediaFrameFormat: MediaFrameFormat; - width: number; - - } - } - export enum GameBarCommand { - openGameBar, - recordHistoricalBuffer, - toggleStartStopRecord, - startRecord, - stopRecord, - takeScreenshot, - startBroadcast, - stopBroadcast, - pauseBroadcast, - resumeBroadcast, - toggleStartStopBroadcast, - toggleMicrophoneCapture, - toggleCameraCapture, - toggleRecordingIndicator, - } - export enum GameBarCommandOrigin { - shortcutKey, - cortana, - appCommand, - } - export interface GameBarContract { - } - export class GameBarServices implements IGameBarServices { - appBroadcastServices: AppBroadcastServices; - appCaptureServices: AppCaptureServices; - sessionId: string; - targetCapturePolicy: GameBarTargetCapturePolicy; - targetInfo: GameBarServicesTargetInfo; - - enableCapture(): void { - console.warn('shimmed function GameBarServices.enableCapture'); - } - - disableCapture(): void { - console.warn('shimmed function GameBarServices.disableCapture'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GameBarServices::addEventListener: ${name}`); - switch (name) { - case "commandreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class GameBarServicesCommandEventArgs implements IGameBarServicesCommandEventArgs { - command: GameBarCommand; - origin: GameBarCommandOrigin; - - } - export enum GameBarServicesDisplayMode { - windowed, - fullScreenExclusive, - } - export class GameBarServicesManager implements IGameBarServicesManager { - static getDefault(): GameBarServicesManager { - throw new Error('shimmed function GameBarServicesManager.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GameBarServicesManager::addEventListener: ${name}`); - switch (name) { - case "gamebarservicescreated": // Foundation.TypedEventHandler - break; - } - - } - } - export class GameBarServicesManagerGameBarServicesCreatedEventArgs implements IGameBarServicesManagerGameBarServicesCreatedEventArgs { - gameBarServices: GameBarServices; - - } - export class GameBarServicesTargetInfo implements IGameBarServicesTargetInfo { - appId: string; - displayMode: GameBarServicesDisplayMode; - displayName: string; - titleId: string; - - } - export enum GameBarTargetCapturePolicy { - enabledBySystem, - enabledByUser, - notEnabled, - prohibitedBySystem, - prohibitedByPublisher, - } - export enum KnownVideoProfile { - videoRecording, - highQualityPhoto, - balancedVideoAndPhoto, - videoConferencing, - photoSequence, - highFrameRate, - variablePhotoSequence, - hdrWithWcgVideo, - hdrWithWcgPhoto, - videoHdr8, - } - export class LowLagMediaRecording implements ILowLagMediaRecording, ILowLagMediaRecording2, ILowLagMediaRecording3 { - startAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagMediaRecording.startAsync'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagMediaRecording.stopAsync'); - } - - finishAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagMediaRecording.finishAsync'); - } - - pauseAsync(behavior: Devices.MediaCapturePauseBehavior): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagMediaRecording.pauseAsync'); - } - - resumeAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagMediaRecording.resumeAsync'); - } - - pauseWithResultAsync(behavior: Devices.MediaCapturePauseBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function LowLagMediaRecording.pauseWithResultAsync'); - } - - stopWithResultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LowLagMediaRecording.stopWithResultAsync'); - } - - } - export class LowLagPhotoCapture implements ILowLagPhotoCapture { - captureAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function LowLagPhotoCapture.captureAsync'); - } - - finishAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagPhotoCapture.finishAsync'); - } - - } - export class LowLagPhotoSequenceCapture implements ILowLagPhotoSequenceCapture { - startAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagPhotoSequenceCapture.startAsync'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagPhotoSequenceCapture.stopAsync'); - } - - finishAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function LowLagPhotoSequenceCapture.finishAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LowLagPhotoSequenceCapture::addEventListener: ${name}`); - switch (name) { - case "photocaptured": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaCapture implements IMediaCapture, IMediaCaptureVideoPreview, IMediaCapture2, Foundation.IClosable, IMediaCapture3, IMediaCapture4, IMediaCapture5, IMediaCapture6 { - // constructor(); - audioDeviceController: Devices.AudioDeviceController; - mediaCaptureSettings: MediaCaptureSettings; - videoDeviceController: Devices.VideoDeviceController; - cameraStreamState: Devices.CameraStreamState = CameraStreamState.notStreaming; - thermalStatus: MediaCaptureThermalStatus = MediaCaptureThermalStatus.normal; - frameSources: string[]; - - initializeAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.initializeAsync'); - } - - initializeAsync_1(mediaCaptureInitializationSettings: MediaCaptureInitializationSettings): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.initializeAsync_1'); - } - - startRecordToStorageFileAsync(encodingProfile: MediaProperties.MediaEncodingProfile, file: Storage.IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.startRecordToStorageFileAsync'); - } - - startRecordToStreamAsync(encodingProfile: MediaProperties.MediaEncodingProfile, stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.startRecordToStreamAsync'); - } - - startRecordToCustomSinkAsync(encodingProfile: MediaProperties.MediaEncodingProfile, customMediaSink: IMediaExtension): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.startRecordToCustomSinkAsync'); - } - - startRecordToCustomSinkAsync_1(encodingProfile: MediaProperties.MediaEncodingProfile, customSinkActivationId: string, customSinkSettings: Foundation.Collections.IPropertySet): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.startRecordToCustomSinkAsync_1'); - } - - stopRecordAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.stopRecordAsync'); - } - - capturePhotoToStorageFileAsync(type: MediaProperties.ImageEncodingProperties, file: Storage.IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.capturePhotoToStorageFileAsync'); - } - - capturePhotoToStreamAsync(type: MediaProperties.ImageEncodingProperties, stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.capturePhotoToStreamAsync'); - } - - addEffectAsync(mediaStreamType: MediaStreamType, effectActivationID: string, effectSettings: Foundation.Collections.IPropertySet): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.addEffectAsync'); - } - - clearEffectsAsync(mediaStreamType: MediaStreamType): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.clearEffectsAsync'); - } - - setEncoderProperty(mediaStreamType: MediaStreamType, propertyId: string, propertyValue: any): void { - console.warn('shimmed function MediaCapture.setEncoderProperty'); - } - - getEncoderProperty(mediaStreamType: MediaStreamType, propertyId: string): any { - throw new Error('shimmed function MediaCapture.getEncoderProperty'); - } - - setPreviewMirroring(value: Boolean): void { - console.warn('shimmed function MediaCapture.setPreviewMirroring'); - } - - getPreviewMirroring(): Boolean { - throw new Error('shimmed function MediaCapture.getPreviewMirroring'); - } - - setPreviewRotation(value: VideoRotation): void { - console.warn('shimmed function MediaCapture.setPreviewRotation'); - } - - getPreviewRotation(): VideoRotation { - throw new Error('shimmed function MediaCapture.getPreviewRotation'); - } - - setRecordRotation(value: VideoRotation): void { - console.warn('shimmed function MediaCapture.setRecordRotation'); - } - - getRecordRotation(): VideoRotation { - throw new Error('shimmed function MediaCapture.getRecordRotation'); - } - - startPreviewAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.startPreviewAsync'); - } - - startPreviewToCustomSinkAsync(encodingProfile: MediaProperties.MediaEncodingProfile, customMediaSink: IMediaExtension): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.startPreviewToCustomSinkAsync'); - } - - startPreviewToCustomSinkAsync_1(encodingProfile: MediaProperties.MediaEncodingProfile, customSinkActivationId: string, customSinkSettings: Foundation.Collections.IPropertySet): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.startPreviewToCustomSinkAsync_1'); - } - - stopPreviewAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.stopPreviewAsync'); - } - - prepareLowLagRecordToStorageFileAsync(encodingProfile: MediaProperties.MediaEncodingProfile, file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareLowLagRecordToStorageFileAsync'); - } - - prepareLowLagRecordToStreamAsync(encodingProfile: MediaProperties.MediaEncodingProfile, stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareLowLagRecordToStreamAsync'); - } - - prepareLowLagRecordToCustomSinkAsync(encodingProfile: MediaProperties.MediaEncodingProfile, customMediaSink: IMediaExtension): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareLowLagRecordToCustomSinkAsync'); - } - - prepareLowLagRecordToCustomSinkAsync_1(encodingProfile: MediaProperties.MediaEncodingProfile, customSinkActivationId: string, customSinkSettings: Foundation.Collections.IPropertySet): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareLowLagRecordToCustomSinkAsync_1'); - } - - prepareLowLagPhotoCaptureAsync(type: MediaProperties.ImageEncodingProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareLowLagPhotoCaptureAsync'); - } - - prepareLowLagPhotoSequenceCaptureAsync(type: MediaProperties.ImageEncodingProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareLowLagPhotoSequenceCaptureAsync'); - } - - setEncodingPropertiesAsync(mediaStreamType: MediaStreamType, mediaEncodingProperties: MediaProperties.IMediaEncodingProperties, encoderProperties: MediaProperties.MediaPropertySet): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.setEncodingPropertiesAsync'); - } - - close(): void { - console.warn('shimmed function MediaCapture.close'); - } - - prepareVariablePhotoSequenceCaptureAsync(type: MediaProperties.ImageEncodingProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareVariablePhotoSequenceCaptureAsync'); - } - - addAudioEffectAsync(definition: Effects.IAudioEffectDefinition): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.addAudioEffectAsync'); - } - - addVideoEffectAsync(definition: Effects.IVideoEffectDefinition, mediaStreamType: MediaStreamType): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.addVideoEffectAsync'); - } - - pauseRecordAsync(behavior: Devices.MediaCapturePauseBehavior): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.pauseRecordAsync'); - } - - resumeRecordAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.resumeRecordAsync'); - } - - getPreviewFrameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.getPreviewFrameAsync'); - } - - getPreviewFrameAsync_1(destination: VideoFrame): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.getPreviewFrameAsync_1'); - } - - prepareAdvancedPhotoCaptureAsync(encodingProperties: MediaProperties.ImageEncodingProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.prepareAdvancedPhotoCaptureAsync'); - } - - removeEffectAsync(effect: IMediaExtension): Foundation.IAsyncAction { - throw new Error('shimmed function MediaCapture.removeEffectAsync'); - } - - pauseRecordWithResultAsync(behavior: Devices.MediaCapturePauseBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.pauseRecordWithResultAsync'); - } - - stopRecordWithResultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.stopRecordWithResultAsync'); - } - - createFrameReaderAsync(inputSource: Frames.MediaFrameSource): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.createFrameReaderAsync'); - } - - createFrameReaderAsync_1(inputSource: Frames.MediaFrameSource, outputSubtype: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.createFrameReaderAsync_1'); - } - - createFrameReaderAsync_2(inputSource: Frames.MediaFrameSource, outputSubtype: string, outputSize: Graphics.Imaging.BitmapSize): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.createFrameReaderAsync_2'); - } - - createMultiSourceFrameReaderAsync(inputSources: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaCapture.createMultiSourceFrameReaderAsync'); - } - - static isVideoProfileSupported(videoDeviceId: string): Boolean { - throw new Error('shimmed function MediaCapture.isVideoProfileSupported'); - } - - static findAllVideoProfiles(videoDeviceId: string): MediaCaptureVideoProfile[] { - throw new Error('shimmed function MediaCapture.findAllVideoProfiles'); - } - - static findConcurrentProfiles(videoDeviceId: string): MediaCaptureVideoProfile[] { - throw new Error('shimmed function MediaCapture.findConcurrentProfiles'); - } - - static findKnownVideoProfiles(videoDeviceId: string, name: KnownVideoProfile): MediaCaptureVideoProfile[] { - throw new Error('shimmed function MediaCapture.findKnownVideoProfiles'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaCapture::addEventListener: ${name}`); - switch (name) { - case "failed": // MediaCaptureFailedEventHandler - case "recordlimitationexceeded": // RecordLimitationExceededEventHandler - case "focuschanged": // Foundation.TypedEventHandler - case "photoconfirmationcaptured": // Foundation.TypedEventHandler - case "camerastreamstatechanged": // Foundation.TypedEventHandler - case "thermalstatuschanged": // Foundation.TypedEventHandler - case "capturedeviceexclusivecontrolstatuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MediaCaptureDeviceExclusiveControlStatus { - exclusiveControlAvailable, - sharedReadOnlyAvailable, - } - export class MediaCaptureDeviceExclusiveControlStatusChangedEventArgs implements IMediaCaptureDeviceExclusiveControlStatusChangedEventArgs { - deviceId: string; - status: MediaCaptureDeviceExclusiveControlStatus; - - } - export class MediaCaptureFailedEventArgs implements IMediaCaptureFailedEventArgs { - code: number; - message: string; - - } - export type MediaCaptureFailedEventHandler = (errorEventArgs: MediaCaptureFailedEventArgs) => void; - export class MediaCaptureFocusChangedEventArgs implements IMediaCaptureFocusChangedEventArgs { - focusState: Devices.MediaCaptureFocusState; - - } - export class MediaCaptureInitializationSettings implements IMediaCaptureInitializationSettings, IMediaCaptureInitializationSettings2, IMediaCaptureInitializationSettings3, IMediaCaptureInitializationSettings4, IMediaCaptureInitializationSettings5, IMediaCaptureInitializationSettings6 { - // constructor(); - videoDeviceId: string = ''; - streamingCaptureMode: StreamingCaptureMode = StreamingCaptureMode.audioAndVideo; - photoCaptureSource: PhotoCaptureSource = PhotoCaptureSource.auto; - audioDeviceId: string = ''; - mediaCategory: MediaCategory = MediaCategory.other; - audioProcessing: AudioProcessing = AudioProcessing.default; - videoSource: Core.IMediaSource; - audioSource: Core.IMediaSource; - videoProfile: MediaCaptureVideoProfile; - recordMediaDescription: MediaCaptureVideoProfileMediaDescription; - previewMediaDescription: MediaCaptureVideoProfileMediaDescription; - photoMediaDescription: MediaCaptureVideoProfileMediaDescription; - sourceGroup: Frames.MediaFrameSourceGroup; - sharingMode: MediaCaptureSharingMode = MediaCaptureSharingMode.exclusiveControl; - memoryPreference: MediaCaptureMemoryPreference = MediaCaptureMemoryPreference.auto; - alwaysPlaySystemShutterSound: Boolean = false; - - } - export enum MediaCaptureMemoryPreference { - auto, - cpu, - } - export class MediaCapturePauseResult implements IMediaCapturePauseResult, Foundation.IClosable { - lastFrame: VideoFrame; - recordDuration: number; - - close(): void { - console.warn('shimmed function MediaCapturePauseResult.close'); - } - - } - export class MediaCaptureSettings implements IMediaCaptureSettings, IMediaCaptureSettings2, IMediaCaptureSettings3 { - audioDeviceId: string; - photoCaptureSource: PhotoCaptureSource; - streamingCaptureMode: StreamingCaptureMode; - videoDeviceCharacteristic: VideoDeviceCharacteristic; - videoDeviceId: string; - audioProcessing: AudioProcessing; - cameraSoundRequiredForRegion: Boolean; - concurrentRecordAndPhotoSequenceSupported: Boolean; - concurrentRecordAndPhotoSupported: Boolean; - horizontal35mmEquivalentFocalLength: number | null; - mediaCategory: MediaCategory; - pitchOffsetDegrees: number | null; - vertical35mmEquivalentFocalLength: number | null; - direct3D11Device: Graphics.DirectX.Direct3D11.IDirect3DDevice; - - } - export enum MediaCaptureSharingMode { - exclusiveControl, - sharedReadOnly, - } - export class MediaCaptureStopResult implements IMediaCaptureStopResult, Foundation.IClosable { - lastFrame: VideoFrame; - recordDuration: number; - - close(): void { - console.warn('shimmed function MediaCaptureStopResult.close'); - } - - } - export enum MediaCaptureThermalStatus { - normal, - overheated, - } - export class MediaCaptureVideoProfile implements IMediaCaptureVideoProfile, IMediaCaptureVideoProfile2 { - id: string; - supportedPhotoMediaDescription: MediaCaptureVideoProfileMediaDescription[]; - supportedPreviewMediaDescription: MediaCaptureVideoProfileMediaDescription[]; - supportedRecordMediaDescription: MediaCaptureVideoProfileMediaDescription[]; - videoDeviceId: string; - frameSourceInfos: Frames.MediaFrameSourceInfo[]; - properties: string[]; - - getConcurrency(): MediaCaptureVideoProfile[] { - throw new Error('shimmed function MediaCaptureVideoProfile.getConcurrency'); - } - - } - export class MediaCaptureVideoProfileMediaDescription implements IMediaCaptureVideoProfileMediaDescription, IMediaCaptureVideoProfileMediaDescription2 { - frameRate: number; - height: number; - isHdrVideoSupported: Boolean; - isVariablePhotoSequenceSupported: Boolean; - width: number; - properties: string[]; - subtype: string; - - } - export enum MediaCategory { - other, - communications, - media, - gameChat, - speech, - } - export enum MediaStreamType { - videoPreview, - videoRecord, - audio, - photo, - } - export class OptionalReferencePhotoCapturedEventArgs implements IOptionalReferencePhotoCapturedEventArgs { - context: any; - frame: CapturedFrame; - - } - export class PhotoCapturedEventArgs implements IPhotoCapturedEventArgs { - captureTimeOffset: number; - frame: CapturedFrame; - thumbnail: CapturedFrame; - - } - export enum PhotoCaptureSource { - auto, - videoPreview, - photo, - } - export class PhotoConfirmationCapturedEventArgs implements IPhotoConfirmationCapturedEventArgs { - captureTimeOffset: number; - frame: CapturedFrame; - - } - export enum PowerlineFrequency { - disabled, - fiftyHertz, - sixtyHertz, - auto, - } - export type RecordLimitationExceededEventHandler = () => void; - export class ScreenCapture implements IScreenCapture { - audioSource: Core.IMediaSource; - isAudioSuspended: Boolean; - isVideoSuspended: Boolean; - videoSource: Core.IMediaSource; - - static getForCurrentView(): ScreenCapture { - throw new Error('shimmed function ScreenCapture.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ScreenCapture::addEventListener: ${name}`); - switch (name) { - case "sourcesuspensionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class SourceSuspensionChangedEventArgs implements ISourceSuspensionChangedEventArgs { - isAudioSuspended: Boolean; - isVideoSuspended: Boolean; - - } - export enum StreamingCaptureMode { - audioAndVideo, - audio, - video, - } - export enum VideoDeviceCharacteristic { - allStreamsIndependent, - previewRecordStreamsIdentical, - previewPhotoStreamsIdentical, - recordPhotoStreamsIdentical, - allStreamsIdentical, - } - export enum VideoRotation { - none, - clockwise90Degrees, - clockwise180Degrees, - clockwise270Degrees, - } - export class VideoStreamConfiguration implements IVideoStreamConfiguration { - inputProperties: MediaProperties.VideoEncodingProperties; - outputProperties: MediaProperties.VideoEncodingProperties; - - } - export interface WhiteBalanceGain { - r: number; - g: number; - b: number; - } - } - export namespace Casting { - export class CastingConnection implements ICastingConnection, Foundation.IClosable { - source: CastingSource; - device: CastingDevice; - state: CastingConnectionState; - - requestStartCastingAsync(value: CastingSource): Foundation.IAsyncOperation { - throw new Error('shimmed function CastingConnection.requestStartCastingAsync'); - } - - disconnectAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CastingConnection.disconnectAsync'); - } - - close(): void { - console.warn('shimmed function CastingConnection.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CastingConnection::addEventListener: ${name}`); - switch (name) { - case "erroroccurred": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class CastingConnectionErrorOccurredEventArgs implements ICastingConnectionErrorOccurredEventArgs { - errorStatus: CastingConnectionErrorStatus; - message: string; - - } - export enum CastingConnectionErrorStatus { - succeeded, - deviceDidNotRespond, - deviceError, - deviceLocked, - protectedPlaybackFailed, - invalidCastingSource, - unknown, - } - export enum CastingConnectionState { - disconnected, - connected, - rendering, - disconnecting, - connecting, - } - export class CastingDevice implements ICastingDevice { - friendlyName: string; - icon: Storage.Streams.IRandomAccessStreamWithContentType; - id: string; - - getSupportedCastingPlaybackTypesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CastingDevice.getSupportedCastingPlaybackTypesAsync'); - } - - createCastingConnection(): CastingConnection { - throw new Error('shimmed function CastingDevice.createCastingConnection'); - } - - static getDeviceSelector(type: CastingPlaybackTypes): string { - throw new Error('shimmed function CastingDevice.getDeviceSelector'); - } - - static getDeviceSelectorFromCastingSourceAsync(castingSource: CastingSource): Foundation.IAsyncOperation { - throw new Error('shimmed function CastingDevice.getDeviceSelectorFromCastingSourceAsync'); - } - - static fromIdAsync(value: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CastingDevice.fromIdAsync'); - } - - static deviceInfoSupportsCastingAsync(device: Devices.Enumeration.DeviceInformation): Foundation.IAsyncOperation { - throw new Error('shimmed function CastingDevice.deviceInfoSupportsCastingAsync'); - } - - } - export class CastingDevicePicker implements ICastingDevicePicker { - // constructor(); - appearance: Devices.Enumeration.DevicePickerAppearance = null; - filter: CastingDevicePickerFilter = null; - - show(selection: Foundation.Rect): void { - console.warn('shimmed function CastingDevicePicker.show'); - } - - show_1(selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): void { - console.warn('shimmed function CastingDevicePicker.show_1'); - } - - hide(): void { - console.warn('shimmed function CastingDevicePicker.hide'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CastingDevicePicker::addEventListener: ${name}`); - switch (name) { - case "castingdevicepickerdismissed": // Foundation.TypedEventHandler - case "castingdeviceselected": // Foundation.TypedEventHandler - break; - } - - } - } - export class CastingDevicePickerFilter implements ICastingDevicePickerFilter { - supportsVideo: Boolean; - supportsPictures: Boolean; - supportsAudio: Boolean; - supportedCastingSources: CastingSource[]; - - } - export class CastingDeviceSelectedEventArgs implements ICastingDeviceSelectedEventArgs { - selectedCastingDevice: CastingDevice; - - } - export enum CastingPlaybackTypes { - none, - audio, - video, - picture = 4, - } - export class CastingSource implements ICastingSource { - preferredSourceUri: Foundation.Uri; - - } - } - export namespace ClosedCaptioning { - export enum ClosedCaptionColor { - default, - white, - black, - red, - green, - blue, - yellow, - magenta, - cyan, - } - export enum ClosedCaptionEdgeEffect { - default, - none, - raised, - depressed, - uniform, - dropShadow, - } - export enum ClosedCaptionOpacity { - default, - oneHundredPercent, - seventyFivePercent, - twentyFivePercent, - zeroPercent, - } - export class ClosedCaptionProperties { - static backgroundColor: ClosedCaptionColor = ClosedCaptionColor.default; - static backgroundOpacity: ClosedCaptionOpacity = ClosedCaptionOpacity.default; - static computedBackgroundColor: UI.Color; - static computedFontColor: UI.Color; - static computedRegionColor: UI.Color; - static fontColor: ClosedCaptionColor = ClosedCaptionColor.default; - static fontEffect: ClosedCaptionEdgeEffect = ClosedCaptionEdgeEffect.default; - static fontOpacity: ClosedCaptionOpacity = ClosedCaptionOpacity.default; - static fontSize: ClosedCaptionSize = ClosedCaptionSize.default; - static fontStyle: ClosedCaptionStyle = ClosedCaptionStyle.default; - static regionColor: ClosedCaptionColor = ClosedCaptionColor.default; - static regionOpacity: ClosedCaptionOpacity = ClosedCaptionOpacity.default; - - } - export enum ClosedCaptionSize { - default, - fiftyPercent, - oneHundredPercent, - oneHundredFiftyPercent, - twoHundredPercent, - } - export enum ClosedCaptionStyle { - default, - monospacedWithSerifs, - proportionalWithSerifs, - monospacedWithoutSerifs, - proportionalWithoutSerifs, - casual, - cursive, - smallCapitals, - } - } - export namespace ContentRestrictions { - export enum ContentAccessRestrictionLevel { - allow, - warn, - block, - hide, - } - export class ContentRestrictionsBrowsePolicy implements IContentRestrictionsBrowsePolicy { - geographicRegion: string; - maxBrowsableAgeRating: number | null; - preferredAgeRating: number | null; - - } - export enum RatedContentCategory { - general, - application, - game, - movie, - television, - music, - } - export class RatedContentDescription implements IRatedContentDescription { - // constructor(id: string, title: string, category: RatedContentCategory); - constructor(id: string, title: string, category: RatedContentCategory) {} - - title: string; - ratings: string[]; - image: Storage.Streams.IRandomAccessStreamReference; - id: string; - category: RatedContentCategory; - - } - export class RatedContentRestrictions implements IRatedContentRestrictions { - // constructor(maxAgeRating: number); - // constructor(); - constructor(maxAgeRating: number) {} - - getBrowsePolicyAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RatedContentRestrictions.getBrowsePolicyAsync'); - } - - getRestrictionLevelAsync(ratedContentDescription: RatedContentDescription): Foundation.IAsyncOperation { - throw new Error('shimmed function RatedContentRestrictions.getRestrictionLevelAsync'); - } - - requestContentAccessAsync(ratedContentDescription: RatedContentDescription): Foundation.IAsyncOperation { - throw new Error('shimmed function RatedContentRestrictions.requestContentAccessAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RatedContentRestrictions::addEventListener: ${name}`); - switch (name) { - case "restrictionschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - } - export namespace Control { - export class CurrentSessionChangedEventArgs implements ICurrentSessionChangedEventArgs { - } - export class GlobalSystemMediaTransportControlsSession implements IGlobalSystemMediaTransportControlsSession { - sourceAppUserModelId: string; - - tryGetMediaPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryGetMediaPropertiesAsync'); - } - - getTimelineProperties(): GlobalSystemMediaTransportControlsSessionTimelineProperties { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.getTimelineProperties'); - } - - getPlaybackInfo(): GlobalSystemMediaTransportControlsSessionPlaybackInfo { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.getPlaybackInfo'); - } - - tryPlayAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryPlayAsync'); - } - - tryPauseAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryPauseAsync'); - } - - tryStopAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryStopAsync'); - } - - tryRecordAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryRecordAsync'); - } - - tryFastForwardAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryFastForwardAsync'); - } - - tryRewindAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryRewindAsync'); - } - - trySkipNextAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.trySkipNextAsync'); - } - - trySkipPreviousAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.trySkipPreviousAsync'); - } - - tryChangeChannelUpAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryChangeChannelUpAsync'); - } - - tryChangeChannelDownAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryChangeChannelDownAsync'); - } - - tryTogglePlayPauseAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryTogglePlayPauseAsync'); - } - - tryChangeAutoRepeatModeAsync(requestedAutoRepeatMode: MediaPlaybackAutoRepeatMode): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryChangeAutoRepeatModeAsync'); - } - - tryChangePlaybackRateAsync(requestedPlaybackRate: number): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryChangePlaybackRateAsync'); - } - - tryChangeShuffleActiveAsync(requestedShuffleState: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryChangeShuffleActiveAsync'); - } - - tryChangePlaybackPositionAsync(requestedPlaybackPosition: number): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSession.tryChangePlaybackPositionAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GlobalSystemMediaTransportControlsSession::addEventListener: ${name}`); - switch (name) { - case "mediapropertieschanged": // Foundation.TypedEventHandler - case "playbackinfochanged": // Foundation.TypedEventHandler - case "timelinepropertieschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class GlobalSystemMediaTransportControlsSessionManager implements IGlobalSystemMediaTransportControlsSessionManager { - getCurrentSession(): GlobalSystemMediaTransportControlsSession { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSessionManager.getCurrentSession'); - } - - getSessions(): GlobalSystemMediaTransportControlsSession[] { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSessionManager.getSessions'); - } - - static requestAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GlobalSystemMediaTransportControlsSessionManager.requestAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GlobalSystemMediaTransportControlsSessionManager::addEventListener: ${name}`); - switch (name) { - case "currentsessionchanged": // Foundation.TypedEventHandler - case "sessionschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class GlobalSystemMediaTransportControlsSessionMediaProperties implements IGlobalSystemMediaTransportControlsSessionMediaProperties { - albumArtist: string; - albumTitle: string; - albumTrackCount: number; - artist: string; - genres: string[]; - playbackType: MediaPlaybackType | null; - subtitle: string; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - title: string; - trackNumber: number; - - } - export class GlobalSystemMediaTransportControlsSessionPlaybackControls implements IGlobalSystemMediaTransportControlsSessionPlaybackControls { - isChannelDownEnabled: Boolean; - isChannelUpEnabled: Boolean; - isFastForwardEnabled: Boolean; - isNextEnabled: Boolean; - isPauseEnabled: Boolean; - isPlayEnabled: Boolean; - isPlayPauseToggleEnabled: Boolean; - isPlaybackPositionEnabled: Boolean; - isPlaybackRateEnabled: Boolean; - isPreviousEnabled: Boolean; - isRecordEnabled: Boolean; - isRepeatEnabled: Boolean; - isRewindEnabled: Boolean; - isShuffleEnabled: Boolean; - isStopEnabled: Boolean; - - } - export class GlobalSystemMediaTransportControlsSessionPlaybackInfo implements IGlobalSystemMediaTransportControlsSessionPlaybackInfo { - autoRepeatMode: MediaPlaybackAutoRepeatMode | null; - controls: GlobalSystemMediaTransportControlsSessionPlaybackControls; - isShuffleActive: Boolean | null; - playbackRate: number | null; - playbackStatus: GlobalSystemMediaTransportControlsSessionPlaybackStatus; - playbackType: MediaPlaybackType | null; - - } - export enum GlobalSystemMediaTransportControlsSessionPlaybackStatus { - closed, - opened, - changing, - stopped, - playing, - paused, - } - export class GlobalSystemMediaTransportControlsSessionTimelineProperties implements IGlobalSystemMediaTransportControlsSessionTimelineProperties { - endTime: number; - lastUpdatedTime: Date; - maxSeekTime: number; - minSeekTime: number; - position: number; - startTime: number; - - } - export class MediaPropertiesChangedEventArgs implements IMediaPropertiesChangedEventArgs { - } - export class PlaybackInfoChangedEventArgs implements IPlaybackInfoChangedEventArgs { - } - export class SessionsChangedEventArgs implements ISessionsChangedEventArgs { - } - export class TimelinePropertiesChangedEventArgs implements ITimelinePropertiesChangedEventArgs { - } - } - export namespace Core { - export enum AudioDecoderDegradation { - none, - downmixTo2Channels, - downmixTo6Channels, - downmixTo8Channels, - } - export enum AudioDecoderDegradationReason { - none, - licensingRequirement, - spatialAudioNotSupported, - } - export class AudioStreamDescriptor implements IAudioStreamDescriptor, IMediaStreamDescriptor, IAudioStreamDescriptor2, IMediaStreamDescriptor2, IAudioStreamDescriptor3 { - // constructor(encodingProperties: MediaProperties.AudioEncodingProperties); - constructor(encodingProperties: MediaProperties.AudioEncodingProperties) {} - - encodingProperties: MediaProperties.AudioEncodingProperties; - trailingEncoderPadding: number | null; - leadingEncoderPadding: number | null; - name: string; - language: string; - isSelected: Boolean; - label: string; - - copy(): AudioStreamDescriptor { - throw new Error('shimmed function AudioStreamDescriptor.copy'); - } - - } - export class AudioTrack implements IMediaTrack, IAudioTrack { - name: string; - playbackItem: Playback.MediaPlaybackItem; - supportInfo: AudioTrackSupportInfo; - label: string; - id: string; - language: string; - trackKind: MediaTrackKind; - - getEncodingProperties(): MediaProperties.AudioEncodingProperties { - throw new Error('shimmed function AudioTrack.getEncodingProperties'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioTrack::addEventListener: ${name}`); - switch (name) { - case "openfailed": // Foundation.TypedEventHandler - break; - } - - } - } - export class AudioTrackOpenFailedEventArgs implements IAudioTrackOpenFailedEventArgs { - extendedError: number; - - } - export class AudioTrackSupportInfo implements IAudioTrackSupportInfo { - decoderStatus: MediaDecoderStatus; - degradation: AudioDecoderDegradation; - degradationReason: AudioDecoderDegradationReason; - mediaSourceStatus: MediaSourceStatus; - - } - export class ChapterCue implements IChapterCue, IMediaCue { - // constructor(); - title: string = ''; - startTime: number = 0; - id: string = ''; - duration: number = 0; - - } - export enum CodecCategory { - encoder, - decoder, - } - export class CodecInfo implements ICodecInfo { - category: CodecCategory; - displayName: string; - isTrusted: Boolean; - kind: CodecKind; - subtypes: string[]; - - } - export enum CodecKind { - audio, - video, - } - export class CodecQuery implements ICodecQuery { - // constructor(); - findAllAsync(kind: CodecKind, category: CodecCategory, subType: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CodecQuery.findAllAsync'); - } - - } - export class CodecSubtypes { - static audioFormatAac: string = '{00001610-0000-0010-8000-00AA00389B71}'; - static audioFormatAdts: string = '{00001600-0000-0010-8000-00AA00389B71}'; - static audioFormatAlac: string = '{00006C61-0000-0010-8000-00AA00389B71}'; - static audioFormatAmrNB: string = '{00007361-0000-0010-8000-00AA00389B71}'; - static audioFormatAmrWB: string = '{00007362-0000-0010-8000-00AA00389B71}'; - static audioFormatAmrWP: string = '{00007363-0000-0010-8000-00AA00389B71}'; - static audioFormatDolbyAC3: string = '{E06D802C-DB46-11CF-B4D1-00805F6CBBEA}'; - static audioFormatDolbyAC3Spdif: string = '{00000092-0000-0010-8000-00AA00389B71}'; - static audioFormatDolbyDDPlus: string = '{A7FB87AF-2D02-42FB-A4D4-05CD93843BDD}'; - static audioFormatDrm: string = '{00000009-0000-0010-8000-00AA00389B71}'; - static audioFormatDts: string = '{00000008-0000-0010-8000-00AA00389B71}'; - static audioFormatFlac: string = '{0000F1AC-0000-0010-8000-00AA00389B71}'; - static audioFormatFloat: string = '{00000003-0000-0010-8000-00AA00389B71}'; - static audioFormatMP3: string = '{00000055-0000-0010-8000-00AA00389B71}'; - static audioFormatMPeg: string = '{00000050-0000-0010-8000-00AA00389B71}'; - static audioFormatMsp1: string = '{0000000A-0000-0010-8000-00AA00389B71}'; - static audioFormatOpus: string = '{0000704F-0000-0010-8000-00AA00389B71}'; - static audioFormatPcm: string = '{00000001-0000-0010-8000-00AA00389B71}'; - static audioFormatWMAudioLossless: string = '{00000163-0000-0010-8000-00AA00389B71}'; - static audioFormatWMAudioV8: string = '{00000161-0000-0010-8000-00AA00389B71}'; - static audioFormatWMAudioV9: string = '{00000162-0000-0010-8000-00AA00389B71}'; - static audioFormatWmaSpdif: string = '{00000164-0000-0010-8000-00AA00389B71}'; - static videoFormat420O: string = '{4F303234-0000-0010-8000-00AA00389B71}'; - static videoFormatDV25: string = '{35327664-0000-0010-8000-00AA00389B71}'; - static videoFormatDV50: string = '{30357664-0000-0010-8000-00AA00389B71}'; - static videoFormatDvc: string = '{20637664-0000-0010-8000-00AA00389B71}'; - static videoFormatDvh1: string = '{31687664-0000-0010-8000-00AA00389B71}'; - static videoFormatDvhD: string = '{64687664-0000-0010-8000-00AA00389B71}'; - static videoFormatDvsd: string = '{64737664-0000-0010-8000-00AA00389B71}'; - static videoFormatDvsl: string = '{6C737664-0000-0010-8000-00AA00389B71}'; - static videoFormatH263: string = '{33363248-0000-0010-8000-00AA00389B71}'; - static videoFormatH264: string = '{34363248-0000-0010-8000-00AA00389B71}'; - static videoFormatH264ES: string = '{3F40F4F0-5622-4FF8-B6D8-A17A584BEE5E}'; - static videoFormatH265: string = '{35363248-0000-0010-8000-00AA00389B71}'; - static videoFormatHevc: string = '{43564548-0000-0010-8000-00AA00389B71}'; - static videoFormatHevcES: string = '{53564548-0000-0010-8000-00AA00389B71}'; - static videoFormatM4S2: string = '{3253344D-0000-0010-8000-00AA00389B71}'; - static videoFormatMP43: string = '{3334504D-0000-0010-8000-00AA00389B71}'; - static videoFormatMP4S: string = '{5334504D-0000-0010-8000-00AA00389B71}'; - static videoFormatMP4V: string = '{5634504D-0000-0010-8000-00AA00389B71}'; - static videoFormatMjpg: string = '{47504A4D-0000-0010-8000-00AA00389B71}'; - static videoFormatMpeg2: string = '{E06D8026-DB46-11CF-B4D1-00805F6CBBEA}'; - static videoFormatMpg1: string = '{3147504D-0000-0010-8000-00AA00389B71}'; - static videoFormatMss1: string = '{3153534D-0000-0010-8000-00AA00389B71}'; - static videoFormatMss2: string = '{3253534D-0000-0010-8000-00AA00389B71}'; - static videoFormatVP80: string = '{30385056-0000-0010-8000-00AA00389B71}'; - static videoFormatVP90: string = '{30395056-0000-0010-8000-00AA00389B71}'; - static videoFormatWmv1: string = '{31564D57-0000-0010-8000-00AA00389B71}'; - static videoFormatWmv2: string = '{32564D57-0000-0010-8000-00AA00389B71}'; - static videoFormatWmv3: string = '{33564D57-0000-0010-8000-00AA00389B71}'; - static videoFormatWvc1: string = '{31435657-0000-0010-8000-00AA00389B71}'; - - } - export class DataCue implements IDataCue, IMediaCue, IDataCue2 { - // constructor(); - data: Storage.Streams.IBuffer; - properties: Foundation.Collections.PropertySet = [ ]; - startTime: number = 0; - id: string = ''; - duration: number = 0; - - } - export class FaceDetectedEventArgs implements IFaceDetectedEventArgs { - resultFrame: FaceDetectionEffectFrame; - - } - export class FaceDetectionEffect implements IFaceDetectionEffect, IMediaExtension { - enabled: Boolean; - desiredDetectionInterval: number; - - setProperties(configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function FaceDetectionEffect.setProperties'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FaceDetectionEffect::addEventListener: ${name}`); - switch (name) { - case "facedetected": // Foundation.TypedEventHandler - break; - } - - } - } - export class FaceDetectionEffectDefinition implements Effects.IVideoEffectDefinition, IFaceDetectionEffectDefinition { - // constructor(); - synchronousDetectionEnabled: Boolean = false; - detectionMode: FaceDetectionMode = FaceDetectionMode.highQuality; - activatableClassId: string = 'Windows.Media.Core.FaceDetectionEffect'; - properties: Foundation.Collections.IPropertySet = [ null, null ]; - - } - export class FaceDetectionEffectFrame implements IFaceDetectionEffectFrame, IMediaFrame, Foundation.IClosable { - detectedFaces: FaceAnalysis.DetectedFace[]; - systemRelativeTime: number | null; - relativeTime: number | null; - isDiscontinuous: Boolean; - duration: number | null; - extendedProperties: Foundation.Collections.IPropertySet; - isReadOnly: Boolean; - type: string; - - close(): void { - console.warn('shimmed function FaceDetectionEffectFrame.close'); - } - - } - export enum FaceDetectionMode { - highPerformance, - balanced, - highQuality, - } - export class HighDynamicRangeControl implements IHighDynamicRangeControl { - enabled: Boolean; - - } - export class HighDynamicRangeOutput implements IHighDynamicRangeOutput { - certainty: number; - frameControllers: Devices.Core.FrameController[]; - - } - export class ImageCue implements IImageCue, IMediaCue { - // constructor(); - softwareBitmap: Graphics.Imaging.SoftwareBitmap; - position: TimedTextPoint = null; - extent: TimedTextSize = null; - startTime: number = 0; - id: string = ''; - duration: number = 0; - - } - export interface IMediaCue { - duration: number; - id: string; - startTime: number; - } - export interface IMediaSource { - } - export interface IMediaStreamDescriptor { - isSelected: Boolean; - language: string; - name: string; - } - export interface IMediaStreamDescriptor2 extends IMediaStreamDescriptor { - label: string; - } - export interface IMediaTrack { - id: string; - label: string; - language: string; - trackKind: MediaTrackKind; - } - export class InitializeMediaStreamSourceRequestedEventArgs implements IInitializeMediaStreamSourceRequestedEventArgs { - randomAccessStream: Storage.Streams.IRandomAccessStream; - source: MediaStreamSource; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function InitializeMediaStreamSourceRequestedEventArgs.getDeferral'); - } - - } - export interface ISingleSelectMediaTrackList { - selectedIndex: number; - } - export interface ITimedMetadataTrackProvider { - timedMetadataTracks: TimedMetadataTrack[]; - } - export class LowLightFusion { - static maxSupportedFrameCount: number = 2; - static supportedBitmapPixelFormats: Graphics.Imaging.BitmapPixelFormat[] = [ BitmapPixelFormat.nv12 ]; - - static fuseAsync(frameSet: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function LowLightFusion.fuseAsync'); - } - - } - export class LowLightFusionResult implements ILowLightFusionResult, Foundation.IClosable { - frame: Graphics.Imaging.SoftwareBitmap; - - close(): void { - console.warn('shimmed function LowLightFusionResult.close'); - } - - } - export class MediaBinder implements IMediaBinder { - // constructor(); - token: string = ''; - source: MediaSource; - - addEventListener(name: string, handler: Function) { - console.warn(`MediaBinder::addEventListener: ${name}`); - switch (name) { - case "binding": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaBindingEventArgs implements IMediaBindingEventArgs, IMediaBindingEventArgs2, IMediaBindingEventArgs3 { - mediaBinder: MediaBinder; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaBindingEventArgs.getDeferral'); - } - - setUri(uri: Foundation.Uri): void { - console.warn('shimmed function MediaBindingEventArgs.setUri'); - } - - setStream(stream: Storage.Streams.IRandomAccessStream, contentType: string): void { - console.warn('shimmed function MediaBindingEventArgs.setStream'); - } - - setStreamReference(stream: Storage.Streams.IRandomAccessStreamReference, contentType: string): void { - console.warn('shimmed function MediaBindingEventArgs.setStreamReference'); - } - - setAdaptiveMediaSource(mediaSource: Streaming.Adaptive.AdaptiveMediaSource): void { - console.warn('shimmed function MediaBindingEventArgs.setAdaptiveMediaSource'); - } - - setStorageFile(file: Storage.IStorageFile): void { - console.warn('shimmed function MediaBindingEventArgs.setStorageFile'); - } - - setDownloadOperation(downloadOperation: Networking.BackgroundTransfer.DownloadOperation): void { - console.warn('shimmed function MediaBindingEventArgs.setDownloadOperation'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaBindingEventArgs::addEventListener: ${name}`); - switch (name) { - case "canceled": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaCueEventArgs implements IMediaCueEventArgs { - cue: IMediaCue; - - } - export enum MediaDecoderStatus { - fullySupported, - unsupportedSubtype, - unsupportedEncoderProperties, - degraded, - } - export class MediaSource implements IMediaSource2, Playback.IMediaPlaybackSource, Foundation.IClosable, IMediaSource3, IMediaSource4, IMediaSource5 { - customProperties: Foundation.Collections.ValueSet; - duration: number | null; - externalTimedMetadataTracks: TimedMetadataTrack[]; - externalTimedTextSources: TimedTextSource[]; - isOpen: Boolean; - state: MediaSourceState; - adaptiveMediaSource: Streaming.Adaptive.AdaptiveMediaSource; - mediaStreamSource: MediaStreamSource; - mseStreamSource: MseStreamSource; - uri: Foundation.Uri; - downloadOperation: Networking.BackgroundTransfer.DownloadOperation; - - close(): void { - console.warn('shimmed function MediaSource.close'); - } - - reset(): void { - console.warn('shimmed function MediaSource.reset'); - } - - openAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MediaSource.openAsync'); - } - - static createFromDownloadOperation(downloadOperation: Networking.BackgroundTransfer.DownloadOperation): MediaSource { - throw new Error('shimmed function MediaSource.createFromDownloadOperation'); - } - - static createFromMediaFrameSource(frameSource: Capture.Frames.MediaFrameSource): MediaSource { - throw new Error('shimmed function MediaSource.createFromMediaFrameSource'); - } - - static createFromMediaBinder(binder: MediaBinder): MediaSource { - throw new Error('shimmed function MediaSource.createFromMediaBinder'); - } - - static createFromAdaptiveMediaSource(mediaSource: Streaming.Adaptive.AdaptiveMediaSource): MediaSource { - throw new Error('shimmed function MediaSource.createFromAdaptiveMediaSource'); - } - - static createFromMediaStreamSource(mediaSource: MediaStreamSource): MediaSource { - throw new Error('shimmed function MediaSource.createFromMediaStreamSource'); - } - - static createFromMseStreamSource(mediaSource: MseStreamSource): MediaSource { - throw new Error('shimmed function MediaSource.createFromMseStreamSource'); - } - - static createFromIMediaSource(mediaSource: IMediaSource): MediaSource { - throw new Error('shimmed function MediaSource.createFromIMediaSource'); - } - - static createFromStorageFile(file: Storage.IStorageFile): MediaSource { - throw new Error('shimmed function MediaSource.createFromStorageFile'); - } - - static createFromStream(stream: Storage.Streams.IRandomAccessStream, contentType: string): MediaSource { - throw new Error('shimmed function MediaSource.createFromStream'); - } - - static createFromStreamReference(stream: Storage.Streams.IRandomAccessStreamReference, contentType: string): MediaSource { - throw new Error('shimmed function MediaSource.createFromStreamReference'); - } - - static createFromUri(uri: Foundation.Uri): MediaSource { - throw new Error('shimmed function MediaSource.createFromUri'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaSource::addEventListener: ${name}`); - switch (name) { - case "openoperationcompleted": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaSourceAppServiceConnection implements IMediaSourceAppServiceConnection { - // constructor(appServiceConnection: ApplicationModel.AppService.AppServiceConnection); - constructor(appServiceConnection: ApplicationModel.AppService.AppServiceConnection) {} - - start(): void { - console.warn('shimmed function MediaSourceAppServiceConnection.start'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaSourceAppServiceConnection::addEventListener: ${name}`); - switch (name) { - case "initializemediastreamsourcerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaSourceError implements IMediaSourceError { - extendedError: number; - - } - export class MediaSourceOpenOperationCompletedEventArgs implements IMediaSourceOpenOperationCompletedEventArgs { - error: MediaSourceError; - - } - export enum MediaSourceState { - initial, - opening, - opened, - failed, - closed, - } - export class MediaSourceStateChangedEventArgs implements IMediaSourceStateChangedEventArgs { - newState: MediaSourceState; - oldState: MediaSourceState; - - } - export enum MediaSourceStatus { - fullySupported, - unknown, - } - export class MediaStreamSample implements IMediaStreamSample, IMediaStreamSample2 { - keyFrame: Boolean; - duration: number; - discontinuous: Boolean; - decodeTimestamp: number; - buffer: Storage.Streams.Buffer; - extendedProperties: MediaStreamSamplePropertySet; - protection: MediaStreamSampleProtectionProperties; - timestamp: number; - direct3D11Surface: Graphics.DirectX.Direct3D11.IDirect3DSurface; - - static createFromDirect3D11Surface(surface: Graphics.DirectX.Direct3D11.IDirect3DSurface, timestamp: number): MediaStreamSample { - throw new Error('shimmed function MediaStreamSample.createFromDirect3D11Surface'); - } - - static createFromBuffer(buffer: Storage.Streams.IBuffer, timestamp: number): MediaStreamSample { - throw new Error('shimmed function MediaStreamSample.createFromBuffer'); - } - - static createFromStreamAsync(stream: Storage.Streams.IInputStream, count: number, timestamp: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaStreamSample.createFromStreamAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaStreamSample::addEventListener: ${name}`); - switch (name) { - case "processed": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaStreamSamplePropertySet implements Foundation.Collections.IMap, Foundation.Collections.IIterable> { - size: number; - - lookup(key: string): any { - throw new Error('shimmed function MediaStreamSamplePropertySet.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function MediaStreamSamplePropertySet.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function MediaStreamSamplePropertySet.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function MediaStreamSamplePropertySet.insert'); - } - - clear(): void { - console.warn('shimmed function MediaStreamSamplePropertySet.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function MediaStreamSamplePropertySet.first'); - } - - } - export class MediaStreamSampleProtectionProperties implements IMediaStreamSampleProtectionProperties { - setKeyIdentifier(value: number[]): void { - console.warn('shimmed function MediaStreamSampleProtectionProperties.setKeyIdentifier'); - } - - getKeyIdentifier(): number[] { - throw new Error('shimmed function MediaStreamSampleProtectionProperties.getKeyIdentifier'); - } - - setInitializationVector(value: number[]): void { - console.warn('shimmed function MediaStreamSampleProtectionProperties.setInitializationVector'); - } - - getInitializationVector(): number[] { - throw new Error('shimmed function MediaStreamSampleProtectionProperties.getInitializationVector'); - } - - setSubSampleMapping(value: number[]): void { - console.warn('shimmed function MediaStreamSampleProtectionProperties.setSubSampleMapping'); - } - - getSubSampleMapping(): number[] { - throw new Error('shimmed function MediaStreamSampleProtectionProperties.getSubSampleMapping'); - } - - } - export class MediaStreamSource implements IMediaStreamSource, IMediaSource, IMediaStreamSource2, IMediaStreamSource3, IMediaStreamSource4 { - // constructor(descriptor: IMediaStreamDescriptor); - // constructor(descriptor: IMediaStreamDescriptor, descriptor2: IMediaStreamDescriptor); - constructor(descriptor: IMediaStreamDescriptor, descriptor2: IMediaStreamDescriptor) {} - - thumbnail: Storage.Streams.IRandomAccessStreamReference; - mediaProtectionManager: Protection.MediaProtectionManager; - duration: number; - canSeek: Boolean; - bufferTime: number; - musicProperties: Storage.FileProperties.MusicProperties; - videoProperties: Storage.FileProperties.VideoProperties; - maxSupportedPlaybackRate: number | null; - isLive: Boolean; - - notifyError(errorStatus: MediaStreamSourceErrorStatus): void { - console.warn('shimmed function MediaStreamSource.notifyError'); - } - - addStreamDescriptor(descriptor: IMediaStreamDescriptor): void { - console.warn('shimmed function MediaStreamSource.addStreamDescriptor'); - } - - setBufferedRange(startOffset: number, endOffset: number): void { - console.warn('shimmed function MediaStreamSource.setBufferedRange'); - } - - addProtectionKey(streamDescriptor: IMediaStreamDescriptor, keyIdentifier: number[], licenseData: number[]): void { - console.warn('shimmed function MediaStreamSource.addProtectionKey'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaStreamSource::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "paused": // Foundation.TypedEventHandler - case "samplerequested": // Foundation.TypedEventHandler - case "starting": // Foundation.TypedEventHandler - case "switchstreamsrequested": // Foundation.TypedEventHandler - case "samplerendered": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaStreamSourceClosedEventArgs implements IMediaStreamSourceClosedEventArgs { - request: MediaStreamSourceClosedRequest; - - } - export enum MediaStreamSourceClosedReason { - done, - unknownError, - appReportedError, - unsupportedProtectionSystem, - protectionSystemFailure, - unsupportedEncodingFormat, - missingSampleRequestedEventHandler, - } - export class MediaStreamSourceClosedRequest implements IMediaStreamSourceClosedRequest { - reason: MediaStreamSourceClosedReason; - - } - export enum MediaStreamSourceErrorStatus { - other, - outOfMemory, - failedToOpenFile, - failedToConnectToServer, - connectionToServerLost, - unspecifiedNetworkError, - decodeError, - unsupportedMediaFormat, - } - export class MediaStreamSourceSampleRenderedEventArgs implements IMediaStreamSourceSampleRenderedEventArgs { - sampleLag: number; - - } - export class MediaStreamSourceSampleRequest implements IMediaStreamSourceSampleRequest { - sample: MediaStreamSample; - streamDescriptor: IMediaStreamDescriptor; - - getDeferral(): MediaStreamSourceSampleRequestDeferral { - throw new Error('shimmed function MediaStreamSourceSampleRequest.getDeferral'); - } - - reportSampleProgress(progress: number): void { - console.warn('shimmed function MediaStreamSourceSampleRequest.reportSampleProgress'); - } - - } - export class MediaStreamSourceSampleRequestDeferral implements IMediaStreamSourceSampleRequestDeferral { - complete(): void { - console.warn('shimmed function MediaStreamSourceSampleRequestDeferral.complete'); - } - - } - export class MediaStreamSourceSampleRequestedEventArgs implements IMediaStreamSourceSampleRequestedEventArgs { - request: MediaStreamSourceSampleRequest; - - } - export class MediaStreamSourceStartingEventArgs implements IMediaStreamSourceStartingEventArgs { - request: MediaStreamSourceStartingRequest; - - } - export class MediaStreamSourceStartingRequest implements IMediaStreamSourceStartingRequest { - startPosition: number | null; - - getDeferral(): MediaStreamSourceStartingRequestDeferral { - throw new Error('shimmed function MediaStreamSourceStartingRequest.getDeferral'); - } - - setActualStartPosition(position: number): void { - console.warn('shimmed function MediaStreamSourceStartingRequest.setActualStartPosition'); - } - - } - export class MediaStreamSourceStartingRequestDeferral implements IMediaStreamSourceStartingRequestDeferral { - complete(): void { - console.warn('shimmed function MediaStreamSourceStartingRequestDeferral.complete'); - } - - } - export class MediaStreamSourceSwitchStreamsRequest implements IMediaStreamSourceSwitchStreamsRequest { - newStreamDescriptor: IMediaStreamDescriptor; - oldStreamDescriptor: IMediaStreamDescriptor; - - getDeferral(): MediaStreamSourceSwitchStreamsRequestDeferral { - throw new Error('shimmed function MediaStreamSourceSwitchStreamsRequest.getDeferral'); - } - - } - export class MediaStreamSourceSwitchStreamsRequestDeferral implements IMediaStreamSourceSwitchStreamsRequestDeferral { - complete(): void { - console.warn('shimmed function MediaStreamSourceSwitchStreamsRequestDeferral.complete'); - } - - } - export class MediaStreamSourceSwitchStreamsRequestedEventArgs implements IMediaStreamSourceSwitchStreamsRequestedEventArgs { - request: MediaStreamSourceSwitchStreamsRequest; - - } - export enum MediaTrackKind { - audio, - video, - timedMetadata, - } - export enum MseAppendMode { - segments, - sequence, - } - export enum MseEndOfStreamStatus { - success, - networkError, - decodeError, - unknownError, - } - export enum MseReadyState { - closed, - open, - ended, - } - export class MseSourceBuffer implements IMseSourceBuffer { - timestampOffset: number; - mode: MseAppendMode; - appendWindowStart: number; - appendWindowEnd: number | null; - buffered: MseTimeRange[]; - isUpdating: Boolean; - - appendBuffer(buffer: Storage.Streams.IBuffer): void { - console.warn('shimmed function MseSourceBuffer.appendBuffer'); - } - - appendStream(stream: Storage.Streams.IInputStream): void { - console.warn('shimmed function MseSourceBuffer.appendStream'); - } - - appendStream_1(stream: Storage.Streams.IInputStream, maxSize: number): void { - console.warn('shimmed function MseSourceBuffer.appendStream_1'); - } - - abort(): void { - console.warn('shimmed function MseSourceBuffer.abort'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MseSourceBuffer::addEventListener: ${name}`); - switch (name) { - case "aborted": // Foundation.TypedEventHandler - case "erroroccurred": // Foundation.TypedEventHandler - case "updateended": // Foundation.TypedEventHandler - case "updatestarting": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export class MseSourceBufferList implements IMseSourceBufferList { - buffers: MseSourceBuffer[]; - - addEventListener(name: string, handler: Function) { - console.warn(`MseSourceBufferList::addEventListener: ${name}`); - switch (name) { - case "sourcebufferadded": // Foundation.TypedEventHandler - case "sourcebufferremoved": // Foundation.TypedEventHandler - break; - } - - } - } - export class MseStreamSource implements IMseStreamSource, IMediaSource, IMseStreamSource2 { - // constructor(); - duration: number | null; - activeSourceBuffers: MseSourceBufferList = null; - readyState: MseReadyState = MseReadyState.closed; - sourceBuffers: MseSourceBufferList = null; - liveSeekableRange: MseTimeRange | null; - - addSourceBuffer(mimeType: string): MseSourceBuffer { - throw new Error('shimmed function MseStreamSource.addSourceBuffer'); - } - - removeSourceBuffer(buffer: MseSourceBuffer): void { - console.warn('shimmed function MseStreamSource.removeSourceBuffer'); - } - - endOfStream(status: MseEndOfStreamStatus): void { - console.warn('shimmed function MseStreamSource.endOfStream'); - } - - static isContentTypeSupported(contentType: string): Boolean { - throw new Error('shimmed function MseStreamSource.isContentTypeSupported'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MseStreamSource::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "ended": // Foundation.TypedEventHandler - case "opened": // Foundation.TypedEventHandler - break; - } - - } - } - export interface MseTimeRange { - start: number; - end: number; - } - export namespace Preview { - export class SoundLevelBroker { - static soundLevel: SoundLevel = SoundLevel.full; - - static addEventListener(name: string, handler: Function) { - console.warn(`SoundLevelBroker::addEventListener: ${name}`); - switch (name) { - case "soundlevelchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - } - export class SceneAnalysisEffect implements ISceneAnalysisEffect, IMediaExtension { - desiredAnalysisInterval: number; - highDynamicRangeAnalyzer: HighDynamicRangeControl; - - setProperties(configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function SceneAnalysisEffect.setProperties'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SceneAnalysisEffect::addEventListener: ${name}`); - switch (name) { - case "sceneanalyzed": // Foundation.TypedEventHandler - break; - } - - } - } - export class SceneAnalysisEffectDefinition implements Effects.IVideoEffectDefinition { - // constructor(); - activatableClassId: string = 'Windows.Media.Core.SceneAnalysisEffect'; - properties: Foundation.Collections.IPropertySet; - - } - export class SceneAnalysisEffectFrame implements ISceneAnalysisEffectFrame, IMediaFrame, Foundation.IClosable, ISceneAnalysisEffectFrame2 { - frameControlValues: Capture.CapturedFrameControlValues; - highDynamicRange: HighDynamicRangeOutput; - analysisRecommendation: SceneAnalysisRecommendation; - systemRelativeTime: number | null; - relativeTime: number | null; - isDiscontinuous: Boolean; - duration: number | null; - extendedProperties: Foundation.Collections.IPropertySet; - isReadOnly: Boolean; - type: string; - - close(): void { - console.warn('shimmed function SceneAnalysisEffectFrame.close'); - } - - } - export enum SceneAnalysisRecommendation { - standard, - hdr, - lowLight, - } - export class SceneAnalyzedEventArgs implements ISceneAnalyzedEventArgs { - resultFrame: SceneAnalysisEffectFrame; - - } - export class SpeechCue implements ISpeechCue, IMediaCue { - // constructor(); - startTime: number = 0; - id: string = ''; - duration: number = 0; - text: string = ''; - startPositionInInput: number | null; - endPositionInInput: number | null; - - } - export enum TimedMetadataKind { - caption, - chapter, - custom, - data, - description, - subtitle, - imageSubtitle, - speech, - } - export class TimedMetadataStreamDescriptor implements ITimedMetadataStreamDescriptor, IMediaStreamDescriptor2, IMediaStreamDescriptor { - // constructor(encodingProperties: MediaProperties.TimedMetadataEncodingProperties); - constructor(encodingProperties: MediaProperties.TimedMetadataEncodingProperties) {} - - name: string; - language: string; - isSelected: Boolean; - label: string; - encodingProperties: MediaProperties.TimedMetadataEncodingProperties; - - copy(): TimedMetadataStreamDescriptor { - throw new Error('shimmed function TimedMetadataStreamDescriptor.copy'); - } - - } - export class TimedMetadataTrack implements ITimedMetadataTrack, IMediaTrack, ITimedMetadataTrack2 { - // constructor(id: string, language: string, kind: TimedMetadataKind); - constructor(id: string, language: string, kind: TimedMetadataKind) {} - - label: string; - id: string; - language: string; - trackKind: MediaTrackKind; - activeCues: IMediaCue[]; - cues: IMediaCue[]; - dispatchType: string; - timedMetadataKind: TimedMetadataKind; - name: string; - playbackItem: Playback.MediaPlaybackItem; - - addCue(cue: IMediaCue): void { - console.warn('shimmed function TimedMetadataTrack.addCue'); - } - - removeCue(cue: IMediaCue): void { - console.warn('shimmed function TimedMetadataTrack.removeCue'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TimedMetadataTrack::addEventListener: ${name}`); - switch (name) { - case "cueentered": // Foundation.TypedEventHandler - case "cueexited": // Foundation.TypedEventHandler - case "trackfailed": // Foundation.TypedEventHandler - break; - } - - } - } - export class TimedMetadataTrackError implements ITimedMetadataTrackError { - errorCode: TimedMetadataTrackErrorCode; - extendedError: number; - - } - export enum TimedMetadataTrackErrorCode { - none, - dataFormatError, - networkError, - internalError, - } - export class TimedMetadataTrackFailedEventArgs implements ITimedMetadataTrackFailedEventArgs { - error: TimedMetadataTrackError; - - } - export class TimedTextCue implements ITimedTextCue, IMediaCue { - // constructor(); - startTime: number = 0; - id: string = ''; - duration: number = 0; - cueStyle: TimedTextStyle; - cueRegion: TimedTextRegion; - lines: TimedTextLine[] = [ ]; - - } - export enum TimedTextDisplayAlignment { - before, - after, - center, - } - export interface TimedTextDouble { - value: number; - unit: TimedTextUnit; - } - export enum TimedTextFlowDirection { - leftToRight, - rightToLeft, - } - export enum TimedTextFontStyle { - normal, - oblique, - italic, - } - export class TimedTextLine implements ITimedTextLine { - // constructor(); - text: string = ''; - subformats: TimedTextSubformat[] = [ ]; - - } - export enum TimedTextLineAlignment { - start, - end, - center, - } - export interface TimedTextPadding { - before: number; - after: number; - start: number; - end: number; - unit: TimedTextUnit; - } - export interface TimedTextPoint { - x: number; - y: number; - unit: TimedTextUnit; - } - export class TimedTextRegion implements ITimedTextRegion { - // constructor(); - name: string = ''; - lineHeight: TimedTextDouble = null; - isOverflowClipped: Boolean = false; - extent: TimedTextSize = null; - displayAlignment: TimedTextDisplayAlignment = TimedTextDisplayAlignment.center; - padding: TimedTextPadding = null; - background: UI.Color = { a: 0, r: 0, g: 0, b: 0 }; - zindex: number = 0; - writingMode: TimedTextWritingMode = TimedTextWritingMode.leftRightTopBottom; - textWrapping: TimedTextWrapping = TimedTextWrapping.noWrap; - scrollMode: TimedTextScrollMode = TimedTextScrollMode.popon; - position: TimedTextPoint = null; - - } - export enum TimedTextScrollMode { - popon, - rollup, - } - export interface TimedTextSize { - height: number; - width: number; - unit: TimedTextUnit; - } - export class TimedTextSource implements ITimedTextSource { - static createFromStreamWithIndex(stream: Storage.Streams.IRandomAccessStream, indexStream: Storage.Streams.IRandomAccessStream): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromStreamWithIndex'); - } - - static createFromUriWithIndex(uri: Foundation.Uri, indexUri: Foundation.Uri): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromUriWithIndex'); - } - - static createFromStreamWithIndex_1(stream: Storage.Streams.IRandomAccessStream, indexStream: Storage.Streams.IRandomAccessStream, defaultLanguage: string): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromStreamWithIndex_1'); - } - - static createFromUriWithIndex_1(uri: Foundation.Uri, indexUri: Foundation.Uri, defaultLanguage: string): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromUriWithIndex_1'); - } - - static createFromStream(stream: Storage.Streams.IRandomAccessStream): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromStream'); - } - - static createFromUri(uri: Foundation.Uri): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromUri'); - } - - static createFromStream_1(stream: Storage.Streams.IRandomAccessStream, defaultLanguage: string): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromStream_1'); - } - - static createFromUri_1(uri: Foundation.Uri, defaultLanguage: string): TimedTextSource { - throw new Error('shimmed function TimedTextSource.createFromUri_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TimedTextSource::addEventListener: ${name}`); - switch (name) { - case "resolved": // Foundation.TypedEventHandler - break; - } - - } - } - export class TimedTextSourceResolveResultEventArgs implements ITimedTextSourceResolveResultEventArgs { - error: TimedMetadataTrackError; - tracks: TimedMetadataTrack[]; - - } - export class TimedTextStyle implements ITimedTextStyle, ITimedTextStyle2 { - // constructor(); - lineAlignment: TimedTextLineAlignment = TimedTextLineAlignment.center; - outlineRadius: TimedTextDouble = null; - foreground: UI.Color = { a: 0, r: 0, g: 0, b: 0 }; - background: UI.Color = { a: 0, r: 0, g: 0, b: 0 }; - fontSize: TimedTextDouble = null; - name: string = ''; - flowDirection: TimedTextFlowDirection = TimedTextFlowDirection.leftToRight; - fontWeight: TimedTextWeight = TimedTextWeight.normal; - fontFamily: string = ''; - outlineThickness: TimedTextDouble = null; - isBackgroundAlwaysShown: Boolean = false; - outlineColor: UI.Color = { a: 0, r: 0, g: 0, b: 0 }; - isUnderlineEnabled: Boolean = false; - isOverlineEnabled: Boolean = false; - isLineThroughEnabled: Boolean = false; - fontStyle: TimedTextFontStyle = TimedTextFontStyle.normal; - - } - export class TimedTextSubformat implements ITimedTextSubformat { - // constructor(); - subformatStyle: TimedTextStyle; - startIndex: number = 0; - length: number = 0; - - } - export enum TimedTextUnit { - pixels, - percentage, - } - export enum TimedTextWeight { - normal = 400, - bold = 700, - } - export enum TimedTextWrapping { - noWrap, - wrap, - } - export enum TimedTextWritingMode { - leftRightTopBottom, - rightLeftTopBottom, - topBottomRightLeft, - topBottomLeftRight, - leftRight, - rightLeft, - topBottom, - } - export class VideoStabilizationEffect implements IVideoStabilizationEffect, IMediaExtension { - enabled: Boolean; - - getRecommendedStreamConfiguration(controller: Devices.VideoDeviceController, desiredProperties: MediaProperties.VideoEncodingProperties): Capture.VideoStreamConfiguration { - throw new Error('shimmed function VideoStabilizationEffect.getRecommendedStreamConfiguration'); - } - - setProperties(configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function VideoStabilizationEffect.setProperties'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VideoStabilizationEffect::addEventListener: ${name}`); - switch (name) { - case "enabledchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class VideoStabilizationEffectDefinition implements Effects.IVideoEffectDefinition { - // constructor(); - activatableClassId: string = 'Windows.Media.Core.VideoStabilizationEffect'; - properties: Foundation.Collections.IPropertySet; - - } - export class VideoStabilizationEffectEnabledChangedEventArgs implements IVideoStabilizationEffectEnabledChangedEventArgs { - reason: VideoStabilizationEffectEnabledChangedReason; - - } - export enum VideoStabilizationEffectEnabledChangedReason { - programmatic, - pixelRateTooHigh, - runningSlowly, - } - export class VideoStreamDescriptor implements IVideoStreamDescriptor, IMediaStreamDescriptor, IMediaStreamDescriptor2, IVideoStreamDescriptor2 { - // constructor(encodingProperties: MediaProperties.VideoEncodingProperties); - constructor(encodingProperties: MediaProperties.VideoEncodingProperties) {} - - name: string; - language: string; - isSelected: Boolean; - label: string; - encodingProperties: MediaProperties.VideoEncodingProperties; - - copy(): VideoStreamDescriptor { - throw new Error('shimmed function VideoStreamDescriptor.copy'); - } - - } - export class VideoTrack implements IMediaTrack, IVideoTrack { - label: string; - id: string; - language: string; - trackKind: MediaTrackKind; - name: string; - playbackItem: Playback.MediaPlaybackItem; - supportInfo: VideoTrackSupportInfo; - - getEncodingProperties(): MediaProperties.VideoEncodingProperties { - throw new Error('shimmed function VideoTrack.getEncodingProperties'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VideoTrack::addEventListener: ${name}`); - switch (name) { - case "openfailed": // Foundation.TypedEventHandler - break; - } - - } - } - export class VideoTrackOpenFailedEventArgs implements IVideoTrackOpenFailedEventArgs { - extendedError: number; - - } - export class VideoTrackSupportInfo implements IVideoTrackSupportInfo { - decoderStatus: MediaDecoderStatus; - mediaSourceStatus: MediaSourceStatus; - - } - } - export namespace Devices { - export class AdvancedPhotoCaptureSettings implements IAdvancedPhotoCaptureSettings { - // constructor(); - mode: AdvancedPhotoMode = AdvancedPhotoMode.standard; - - } - export class AdvancedPhotoControl implements IAdvancedPhotoControl { - mode: AdvancedPhotoMode; - supported: Boolean; - supportedModes: AdvancedPhotoMode[]; - - configure(settings: AdvancedPhotoCaptureSettings): void { - console.warn('shimmed function AdvancedPhotoControl.configure'); - } - - } - export enum AdvancedPhotoMode { - auto, - standard, - hdr, - lowLight, - } - export class AudioDeviceController implements IAudioDeviceController, IMediaDeviceController { - volumePercent: number; - muted: Boolean; - - getAvailableMediaStreamProperties(mediaStreamType: Capture.MediaStreamType): MediaProperties.IMediaEncodingProperties[] { - throw new Error('shimmed function AudioDeviceController.getAvailableMediaStreamProperties'); - } - - getMediaStreamProperties(mediaStreamType: Capture.MediaStreamType): MediaProperties.IMediaEncodingProperties { - throw new Error('shimmed function AudioDeviceController.getMediaStreamProperties'); - } - - setMediaStreamPropertiesAsync(mediaStreamType: Capture.MediaStreamType, mediaEncodingProperties: MediaProperties.IMediaEncodingProperties): Foundation.IAsyncAction { - throw new Error('shimmed function AudioDeviceController.setMediaStreamPropertiesAsync'); - } - - } - export class AudioDeviceModule implements IAudioDeviceModule { - classId: string; - displayName: string; - instanceId: number; - majorVersion: number; - minorVersion: number; - - sendCommandAsync(command: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function AudioDeviceModule.sendCommandAsync'); - } - - } - export class AudioDeviceModuleNotificationEventArgs implements IAudioDeviceModuleNotificationEventArgs { - module: AudioDeviceModule; - notificationData: Storage.Streams.IBuffer; - - } - export class AudioDeviceModulesManager implements IAudioDeviceModulesManager { - // constructor(deviceId: string); - constructor(deviceId: string) {} - - findAllById(moduleId: string): AudioDeviceModule[] { - throw new Error('shimmed function AudioDeviceModulesManager.findAllById'); - } - - findAll(): AudioDeviceModule[] { - throw new Error('shimmed function AudioDeviceModulesManager.findAll'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioDeviceModulesManager::addEventListener: ${name}`); - switch (name) { - case "modulenotificationreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AudioDeviceRole { - default, - communications, - } - export enum AutoFocusRange { - fullRange, - macro, - normal, - } - export class CallControl implements ICallControl { - hasRinger: Boolean; - - indicateNewIncomingCall(enableRinger: Boolean, callerId: string): number { - throw new Error('shimmed function CallControl.indicateNewIncomingCall'); - } - - indicateNewOutgoingCall(): number { - throw new Error('shimmed function CallControl.indicateNewOutgoingCall'); - } - - indicateActiveCall(callToken: number): void { - console.warn('shimmed function CallControl.indicateActiveCall'); - } - - endCall(callToken: number): void { - console.warn('shimmed function CallControl.endCall'); - } - - static getDefault(): CallControl { - throw new Error('shimmed function CallControl.getDefault'); - } - - static fromId(deviceId: string): CallControl { - throw new Error('shimmed function CallControl.fromId'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CallControl::addEventListener: ${name}`); - switch (name) { - case "answerrequested": // CallControlEventHandler - case "audiotransferrequested": // CallControlEventHandler - case "dialrequested": // DialRequestedEventHandler - case "hanguprequested": // CallControlEventHandler - case "keypadpressed": // KeypadPressedEventHandler - case "redialrequested": // RedialRequestedEventHandler - break; - } - - } - } - export interface CallControlContract { - } - export type CallControlEventHandler = () => void; - export enum CameraStreamState { - notStreaming, - streaming, - blockedForPrivacy, - shutdown, - } - export enum CaptureSceneMode { - auto, - manual, - macro, - portrait, - sport, - snow, - night, - beach, - sunset, - candlelight, - landscape, - nightPortrait, - backlit, - } - export enum CaptureUse { - none, - photo, - video, - } - export enum ColorTemperaturePreset { - auto, - manual, - cloudy, - daylight, - flash, - fluorescent, - tungsten, - candlelight, - } - export namespace Core { - export class CameraIntrinsics implements ICameraIntrinsics, ICameraIntrinsics2 { - // constructor(focalLength: Foundation.Numerics.Vector2, principalPoint: Foundation.Numerics.Vector2, radialDistortion: Foundation.Numerics.Vector3, tangentialDistortion: Foundation.Numerics.Vector2, imageWidth: number, imageHeight: number); - constructor(focalLength: Foundation.Numerics.Vector2, principalPoint: Foundation.Numerics.Vector2, radialDistortion: Foundation.Numerics.Vector3, tangentialDistortion: Foundation.Numerics.Vector2, imageWidth: number, imageHeight: number) {} - - focalLength: Foundation.Numerics.Vector2; - imageHeight: number; - imageWidth: number; - principalPoint: Foundation.Numerics.Vector2; - radialDistortion: Foundation.Numerics.Vector3; - tangentialDistortion: Foundation.Numerics.Vector2; - undistortedProjectionTransform: Foundation.Numerics.Matrix4x4; - - projectOntoFrame(coordinate: Foundation.Numerics.Vector3): Foundation.Point { - throw new Error('shimmed function CameraIntrinsics.projectOntoFrame'); - } - - unprojectAtUnitDepth(pixelCoordinate: Foundation.Point): Foundation.Numerics.Vector2 { - throw new Error('shimmed function CameraIntrinsics.unprojectAtUnitDepth'); - } - - projectManyOntoFrame(coordinates: Foundation.Numerics.Vector3[], results: Foundation.Point[]): void { - console.warn('shimmed function CameraIntrinsics.projectManyOntoFrame'); - } - - unprojectPixelsAtUnitDepth(pixelCoordinates: Foundation.Point[], results: Foundation.Numerics.Vector2[]): void { - console.warn('shimmed function CameraIntrinsics.unprojectPixelsAtUnitDepth'); - } - - distortPoint(input: Foundation.Point): Foundation.Point { - throw new Error('shimmed function CameraIntrinsics.distortPoint'); - } - - distortPoints(inputs: Foundation.Point[], results: Foundation.Point[]): void { - console.warn('shimmed function CameraIntrinsics.distortPoints'); - } - - undistortPoint(input: Foundation.Point): Foundation.Point { - throw new Error('shimmed function CameraIntrinsics.undistortPoint'); - } - - undistortPoints(inputs: Foundation.Point[], results: Foundation.Point[]): void { - console.warn('shimmed function CameraIntrinsics.undistortPoints'); - } - - } - export class DepthCorrelatedCoordinateMapper implements IDepthCorrelatedCoordinateMapper, Foundation.IClosable { - unprojectPoint(sourcePoint: Foundation.Point, targetCoordinateSystem: Perception.Spatial.SpatialCoordinateSystem): Foundation.Numerics.Vector3 { - throw new Error('shimmed function DepthCorrelatedCoordinateMapper.unprojectPoint'); - } - - unprojectPoints(sourcePoints: Foundation.Point[], targetCoordinateSystem: Perception.Spatial.SpatialCoordinateSystem, results: Foundation.Numerics.Vector3[]): void { - console.warn('shimmed function DepthCorrelatedCoordinateMapper.unprojectPoints'); - } - - mapPoint(sourcePoint: Foundation.Point, targetCoordinateSystem: Perception.Spatial.SpatialCoordinateSystem, targetCameraIntrinsics: CameraIntrinsics): Foundation.Point { - throw new Error('shimmed function DepthCorrelatedCoordinateMapper.mapPoint'); - } - - mapPoints(sourcePoints: Foundation.Point[], targetCoordinateSystem: Perception.Spatial.SpatialCoordinateSystem, targetCameraIntrinsics: CameraIntrinsics, results: Foundation.Point[]): void { - console.warn('shimmed function DepthCorrelatedCoordinateMapper.mapPoints'); - } - - close(): void { - console.warn('shimmed function DepthCorrelatedCoordinateMapper.close'); - } - - } - export class FrameControlCapabilities implements IFrameControlCapabilities, IFrameControlCapabilities2 { - exposure: FrameExposureCapabilities; - exposureCompensation: FrameExposureCompensationCapabilities; - focus: FrameFocusCapabilities; - isoSpeed: FrameIsoSpeedCapabilities; - photoConfirmationSupported: Boolean; - flash: FrameFlashCapabilities; - - } - export class FrameController implements IFrameController, IFrameController2 { - // constructor(); - photoConfirmationEnabled: Boolean | null; - exposureCompensationControl: FrameExposureCompensationControl = null; - exposureControl: FrameExposureControl = null; - focusControl: FrameFocusControl = null; - isoSpeedControl: FrameIsoSpeedControl = null; - flashControl: FrameFlashControl = null; - - } - export class FrameExposureCapabilities implements IFrameExposureCapabilities { - max: number; - min: number; - step: number; - supported: Boolean; - - } - export class FrameExposureCompensationCapabilities implements IFrameExposureCompensationCapabilities { - max: number; - min: number; - step: number; - supported: Boolean; - - } - export class FrameExposureCompensationControl implements IFrameExposureCompensationControl { - value: number | null; - - } - export class FrameExposureControl implements IFrameExposureControl { - value: number | null; - auto: Boolean; - - } - export class FrameFlashCapabilities implements IFrameFlashCapabilities { - powerSupported: Boolean; - redEyeReductionSupported: Boolean; - supported: Boolean; - - } - export class FrameFlashControl implements IFrameFlashControl { - redEyeReduction: Boolean; - powerPercent: number; - mode: FrameFlashMode; - auto: Boolean; - - } - export enum FrameFlashMode { - disable, - enable, - global, - } - export class FrameFocusCapabilities implements IFrameFocusCapabilities { - max: number; - min: number; - step: number; - supported: Boolean; - - } - export class FrameFocusControl implements IFrameFocusControl { - value: number | null; - - } - export class FrameIsoSpeedCapabilities implements IFrameIsoSpeedCapabilities { - max: number; - min: number; - step: number; - supported: Boolean; - - } - export class FrameIsoSpeedControl implements IFrameIsoSpeedControl { - value: number | null; - auto: Boolean; - - } - export class VariablePhotoSequenceController implements IVariablePhotoSequenceController { - photosPerSecondLimit: number; - desiredFrameControllers: FrameController[]; - frameCapabilities: FrameControlCapabilities; - maxPhotosPerSecond: number; - supported: Boolean; - - getHighestConcurrentFrameRate(captureProperties: MediaProperties.IMediaEncodingProperties): MediaProperties.MediaRatio { - throw new Error('shimmed function VariablePhotoSequenceController.getHighestConcurrentFrameRate'); - } - - getCurrentFrameRate(): MediaProperties.MediaRatio { - throw new Error('shimmed function VariablePhotoSequenceController.getCurrentFrameRate'); - } - - } - } - export class DefaultAudioCaptureDeviceChangedEventArgs implements IDefaultAudioDeviceChangedEventArgs { - id: string; - role: AudioDeviceRole; - - } - export class DefaultAudioRenderDeviceChangedEventArgs implements IDefaultAudioDeviceChangedEventArgs { - id: string; - role: AudioDeviceRole; - - } - export class DialRequestedEventArgs implements IDialRequestedEventArgs { - contact: any; - - handled(): void { - console.warn('shimmed function DialRequestedEventArgs.handled'); - } - - } - export type DialRequestedEventHandler = (e: DialRequestedEventArgs) => void; - export class ExposureCompensationControl implements IExposureCompensationControl { - max: number; - min: number; - step: number; - supported: Boolean; - value: number; - - setValueAsync(value: number): Foundation.IAsyncAction { - throw new Error('shimmed function ExposureCompensationControl.setValueAsync'); - } - - } - export class ExposureControl implements IExposureControl { - auto: Boolean; - max: number; - min: number; - step: number; - supported: Boolean; - value: number; - - setAutoAsync(value: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function ExposureControl.setAutoAsync'); - } - - setValueAsync(shutterDuration: number): Foundation.IAsyncAction { - throw new Error('shimmed function ExposureControl.setValueAsync'); - } - - } - export class ExposurePriorityVideoControl implements IExposurePriorityVideoControl { - enabled: Boolean; - supported: Boolean; - - } - export class FlashControl implements IFlashControl, IFlashControl2 { - redEyeReduction: Boolean; - powerPercent: number; - enabled: Boolean; - auto: Boolean; - powerSupported: Boolean; - redEyeReductionSupported: Boolean; - supported: Boolean; - assistantLightEnabled: Boolean; - assistantLightSupported: Boolean; - - } - export class FocusControl implements IFocusControl, IFocusControl2 { - max: number; - min: number; - preset: FocusPreset; - step: number; - supported: Boolean; - supportedPresets: FocusPreset[]; - value: number; - focusChangedSupported: Boolean; - focusState: MediaCaptureFocusState; - mode: FocusMode; - supportedFocusDistances: ManualFocusDistance[]; - supportedFocusModes: FocusMode[]; - supportedFocusRanges: AutoFocusRange[]; - waitForFocusSupported: Boolean; - - setPresetAsync(preset: FocusPreset): Foundation.IAsyncAction { - throw new Error('shimmed function FocusControl.setPresetAsync'); - } - - setPresetAsync_1(preset: FocusPreset, completeBeforeFocus: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function FocusControl.setPresetAsync_1'); - } - - setValueAsync(focus: number): Foundation.IAsyncAction { - throw new Error('shimmed function FocusControl.setValueAsync'); - } - - focusAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function FocusControl.focusAsync'); - } - - unlockAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function FocusControl.unlockAsync'); - } - - lockAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function FocusControl.lockAsync'); - } - - configure(settings: FocusSettings): void { - console.warn('shimmed function FocusControl.configure'); - } - - } - export enum FocusMode { - auto, - single, - continuous, - manual, - } - export enum FocusPreset { - auto, - manual, - autoMacro, - autoNormal, - autoInfinity, - autoHyperfocal, - } - export class FocusSettings implements IFocusSettings { - // constructor(); - waitForFocus: Boolean = false; - value: number | null; - mode: FocusMode = FocusMode.auto; - distance: ManualFocusDistance | null; - disableDriverFallback: Boolean = false; - autoFocusRange: AutoFocusRange = AutoFocusRange.fullRange; - - } - export class HdrVideoControl implements IHdrVideoControl { - mode: HdrVideoMode; - supported: Boolean; - supportedModes: HdrVideoMode[]; - - } - export enum HdrVideoMode { - off, - on, - auto, - } - export interface IDefaultAudioDeviceChangedEventArgs { - id: string; - role: AudioDeviceRole; - } - export interface IMediaDeviceController { - getAvailableMediaStreamProperties(mediaStreamType: Capture.MediaStreamType): MediaProperties.IMediaEncodingProperties[]; - getMediaStreamProperties(mediaStreamType: Capture.MediaStreamType): MediaProperties.IMediaEncodingProperties; - setMediaStreamPropertiesAsync(mediaStreamType: Capture.MediaStreamType, mediaEncodingProperties: MediaProperties.IMediaEncodingProperties): Foundation.IAsyncAction; - } - export class InfraredTorchControl implements IInfraredTorchControl { - power: number; - currentMode: InfraredTorchMode; - isSupported: Boolean; - maxPower: number; - minPower: number; - powerStep: number; - supportedModes: InfraredTorchMode[]; - - } - export enum InfraredTorchMode { - off, - on, - alternatingFrameIllumination, - } - export class IsoSpeedControl implements IIsoSpeedControl, IIsoSpeedControl2 { - preset: IsoSpeedPreset; - supported: Boolean; - supportedPresets: IsoSpeedPreset[]; - auto: Boolean; - max: number; - min: number; - step: number; - value: number; - - setPresetAsync(preset: IsoSpeedPreset): Foundation.IAsyncAction { - throw new Error('shimmed function IsoSpeedControl.setPresetAsync'); - } - - setValueAsync(isoSpeed: number): Foundation.IAsyncAction { - throw new Error('shimmed function IsoSpeedControl.setValueAsync'); - } - - setAutoAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function IsoSpeedControl.setAutoAsync'); - } - - } - export enum IsoSpeedPreset { - auto, - iso50, - iso80, - iso100, - iso200, - iso400, - iso800, - iso1600, - iso3200, - iso6400, - iso12800, - iso25600, - } - export class KeypadPressedEventArgs implements IKeypadPressedEventArgs { - telephonyKey: TelephonyKey; - - } - export type KeypadPressedEventHandler = (e: KeypadPressedEventArgs) => void; - export class LowLagPhotoControl implements ILowLagPhotoControl { - thumbnailFormat: MediaProperties.MediaThumbnailFormat; - thumbnailEnabled: Boolean; - desiredThumbnailSize: number; - hardwareAcceleratedThumbnailSupported: number; - - getHighestConcurrentFrameRate(captureProperties: MediaProperties.IMediaEncodingProperties): MediaProperties.MediaRatio { - throw new Error('shimmed function LowLagPhotoControl.getHighestConcurrentFrameRate'); - } - - getCurrentFrameRate(): MediaProperties.MediaRatio { - throw new Error('shimmed function LowLagPhotoControl.getCurrentFrameRate'); - } - - } - export class LowLagPhotoSequenceControl implements ILowLagPhotoSequenceControl { - thumbnailFormat: MediaProperties.MediaThumbnailFormat; - thumbnailEnabled: Boolean; - photosPerSecondLimit: number; - pastPhotoLimit: number; - desiredThumbnailSize: number; - hardwareAcceleratedThumbnailSupported: number; - maxPastPhotos: number; - maxPhotosPerSecond: number; - supported: Boolean; - - getHighestConcurrentFrameRate(captureProperties: MediaProperties.IMediaEncodingProperties): MediaProperties.MediaRatio { - throw new Error('shimmed function LowLagPhotoSequenceControl.getHighestConcurrentFrameRate'); - } - - getCurrentFrameRate(): MediaProperties.MediaRatio { - throw new Error('shimmed function LowLagPhotoSequenceControl.getCurrentFrameRate'); - } - - } - export enum ManualFocusDistance { - infinity, - hyperfocal, - nearest, - } - export enum MediaCaptureFocusState { - uninitialized, - lost, - searching, - focused, - failed, - } - export enum MediaCaptureOptimization { - default, - quality, - latency, - power, - latencyThenQuality, - latencyThenPower, - powerAndQuality, - } - export enum MediaCapturePauseBehavior { - retainHardwareResources, - releaseHardwareResources, - } - export class MediaDevice { - static getAudioCaptureSelector(): string { - throw new Error('shimmed function MediaDevice.getAudioCaptureSelector'); - } - - static getAudioRenderSelector(): string { - throw new Error('shimmed function MediaDevice.getAudioRenderSelector'); - } - - static getVideoCaptureSelector(): string { - throw new Error('shimmed function MediaDevice.getVideoCaptureSelector'); - } - - static getDefaultAudioCaptureId(role: AudioDeviceRole): string { - throw new Error('shimmed function MediaDevice.getDefaultAudioCaptureId'); - } - - static getDefaultAudioRenderId(role: AudioDeviceRole): string { - throw new Error('shimmed function MediaDevice.getDefaultAudioRenderId'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`MediaDevice::addEventListener: ${name}`); - switch (name) { - case "defaultaudiocapturedevicechanged": // Foundation.TypedEventHandler - case "defaultaudiorenderdevicechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaDeviceControl implements IMediaDeviceControl { - capabilities: MediaDeviceControlCapabilities; - - tryGetValue(): { returnValue: Boolean, value: number } { - throw new Error('shimmed function MediaDeviceControl.tryGetValue'); - } - - trySetValue(value: number): Boolean { - throw new Error('shimmed function MediaDeviceControl.trySetValue'); - } - - tryGetAuto(): { returnValue: Boolean, value: Boolean } { - throw new Error('shimmed function MediaDeviceControl.tryGetAuto'); - } - - trySetAuto(value: Boolean): Boolean { - throw new Error('shimmed function MediaDeviceControl.trySetAuto'); - } - - } - export class MediaDeviceControlCapabilities implements IMediaDeviceControlCapabilities { - autoModeSupported: Boolean; - default: number; - max: number; - min: number; - step: number; - supported: Boolean; - - } - export class ModuleCommandResult implements IModuleCommandResult { - result: Storage.Streams.IBuffer; - status: SendCommandStatus; - - } - export class OpticalImageStabilizationControl implements IOpticalImageStabilizationControl { - mode: OpticalImageStabilizationMode; - supported: Boolean; - supportedModes: OpticalImageStabilizationMode[]; - - } - export enum OpticalImageStabilizationMode { - off, - on, - auto, - } - export class PhotoConfirmationControl implements IPhotoConfirmationControl { - pixelFormat: MediaProperties.MediaPixelFormat; - enabled: Boolean; - supported: Boolean; - - } - export class RedialRequestedEventArgs implements IRedialRequestedEventArgs { - handled(): void { - console.warn('shimmed function RedialRequestedEventArgs.handled'); - } - - } - export type RedialRequestedEventHandler = (e: RedialRequestedEventArgs) => void; - export class RegionOfInterest implements IRegionOfInterest, IRegionOfInterest2 { - // constructor(); - bounds: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - autoWhiteBalanceEnabled: Boolean = false; - autoFocusEnabled: Boolean = false; - autoExposureEnabled: Boolean = false; - weight: number = 100; - type: RegionOfInterestType = RegionOfInterestType.unknown; - boundsNormalized: Boolean = false; - - } - export enum RegionOfInterestType { - unknown, - face, - } - export class RegionsOfInterestControl implements IRegionsOfInterestControl { - autoExposureSupported: Boolean; - autoFocusSupported: Boolean; - autoWhiteBalanceSupported: Boolean; - maxRegions: number; - - setRegionsAsync(regions: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function RegionsOfInterestControl.setRegionsAsync'); - } - - setRegionsAsync_1(regions: Foundation.Collections.IIterable, lockValues: Boolean): Foundation.IAsyncAction { - throw new Error('shimmed function RegionsOfInterestControl.setRegionsAsync_1'); - } - - clearRegionsAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function RegionsOfInterestControl.clearRegionsAsync'); - } - - } - export class SceneModeControl implements ISceneModeControl { - supportedModes: CaptureSceneMode[]; - value: CaptureSceneMode; - - setValueAsync(sceneMode: CaptureSceneMode): Foundation.IAsyncAction { - throw new Error('shimmed function SceneModeControl.setValueAsync'); - } - - } - export enum SendCommandStatus { - success, - deviceNotAvailable, - } - export enum TelephonyKey { - d0, - d1, - d2, - d3, - d4, - d5, - d6, - d7, - d8, - d9, - star, - pound, - a, - b, - c, - d, - } - export class TorchControl implements ITorchControl { - powerPercent: number; - enabled: Boolean; - powerSupported: Boolean; - supported: Boolean; - - } - export class VideoDeviceController implements IVideoDeviceController, IMediaDeviceController, IAdvancedVideoCaptureDeviceController, IAdvancedVideoCaptureDeviceController2, IAdvancedVideoCaptureDeviceController3, IAdvancedVideoCaptureDeviceController4, IAdvancedVideoCaptureDeviceController5, IAdvancedVideoCaptureDeviceController6, IAdvancedVideoCaptureDeviceController7 { - primaryUse: CaptureUse; - isoSpeedControl: IsoSpeedControl; - focusControl: FocusControl; - lowLagPhoto: LowLagPhotoControl; - whiteBalanceControl: WhiteBalanceControl; - torchControl: TorchControl; - sceneModeControl: SceneModeControl; - flashControl: FlashControl; - regionsOfInterestControl: RegionsOfInterestControl; - lowLagPhotoSequence: LowLagPhotoSequenceControl; - exposureCompensationControl: ExposureCompensationControl; - exposureControl: ExposureControl; - variablePhotoSequenceController: Core.VariablePhotoSequenceController; - zoomControl: ZoomControl; - photoConfirmationControl: PhotoConfirmationControl; - desiredOptimization: MediaCaptureOptimization; - advancedPhotoControl: AdvancedPhotoControl; - exposurePriorityVideoControl: ExposurePriorityVideoControl; - hdrVideoControl: HdrVideoControl; - opticalImageStabilizationControl: OpticalImageStabilizationControl; - id: string; - videoTemporalDenoisingControl: VideoTemporalDenoisingControl; - infraredTorchControl: InfraredTorchControl; - pan: MediaDeviceControl; - hue: MediaDeviceControl; - contrast: MediaDeviceControl; - brightness: MediaDeviceControl; - backlightCompensation: MediaDeviceControl; - zoom: MediaDeviceControl; - whiteBalance: MediaDeviceControl; - tilt: MediaDeviceControl; - exposure: MediaDeviceControl; - roll: MediaDeviceControl; - focus: MediaDeviceControl; - - trySetPowerlineFrequency(value: Capture.PowerlineFrequency): Boolean { - throw new Error('shimmed function VideoDeviceController.trySetPowerlineFrequency'); - } - - tryGetPowerlineFrequency(): { returnValue: Boolean, value: Capture.PowerlineFrequency } { - throw new Error('shimmed function VideoDeviceController.tryGetPowerlineFrequency'); - } - - getAvailableMediaStreamProperties(mediaStreamType: Capture.MediaStreamType): MediaProperties.IMediaEncodingProperties[] { - throw new Error('shimmed function VideoDeviceController.getAvailableMediaStreamProperties'); - } - - getMediaStreamProperties(mediaStreamType: Capture.MediaStreamType): MediaProperties.IMediaEncodingProperties { - throw new Error('shimmed function VideoDeviceController.getMediaStreamProperties'); - } - - setMediaStreamPropertiesAsync(mediaStreamType: Capture.MediaStreamType, mediaEncodingProperties: MediaProperties.IMediaEncodingProperties): Foundation.IAsyncAction { - throw new Error('shimmed function VideoDeviceController.setMediaStreamPropertiesAsync'); - } - - setDeviceProperty(propertyId: string, propertyValue: any): void { - console.warn('shimmed function VideoDeviceController.setDeviceProperty'); - } - - getDeviceProperty(propertyId: string): any { - throw new Error('shimmed function VideoDeviceController.getDeviceProperty'); - } - - getDevicePropertyById(propertyId: string, maxPropertyValueSize: number | null): VideoDeviceControllerGetDevicePropertyResult { - throw new Error('shimmed function VideoDeviceController.getDevicePropertyById'); - } - - setDevicePropertyById(propertyId: string, propertyValue: any): VideoDeviceControllerSetDevicePropertyStatus { - throw new Error('shimmed function VideoDeviceController.setDevicePropertyById'); - } - - getDevicePropertyByExtendedId(extendedPropertyId: number[], maxPropertyValueSize: number | null): VideoDeviceControllerGetDevicePropertyResult { - throw new Error('shimmed function VideoDeviceController.getDevicePropertyByExtendedId'); - } - - setDevicePropertyByExtendedId(extendedPropertyId: number[], propertyValue: number[]): VideoDeviceControllerSetDevicePropertyStatus { - throw new Error('shimmed function VideoDeviceController.setDevicePropertyByExtendedId'); - } - - } - export class VideoDeviceControllerGetDevicePropertyResult implements IVideoDeviceControllerGetDevicePropertyResult { - status: VideoDeviceControllerGetDevicePropertyStatus; - value: any; - - } - export enum VideoDeviceControllerGetDevicePropertyStatus { - success, - unknownFailure, - bufferTooSmall, - notSupported, - deviceNotAvailable, - maxPropertyValueSizeTooSmall, - maxPropertyValueSizeRequired, - } - export enum VideoDeviceControllerSetDevicePropertyStatus { - success, - unknownFailure, - notSupported, - invalidValue, - deviceNotAvailable, - notInControl, - } - export class VideoTemporalDenoisingControl implements IVideoTemporalDenoisingControl { - mode: VideoTemporalDenoisingMode; - supported: Boolean; - supportedModes: VideoTemporalDenoisingMode[]; - - } - export enum VideoTemporalDenoisingMode { - off, - on, - auto, - } - export class WhiteBalanceControl implements IWhiteBalanceControl { - max: number; - min: number; - preset: ColorTemperaturePreset; - step: number; - supported: Boolean; - value: number; - - setPresetAsync(preset: ColorTemperaturePreset): Foundation.IAsyncAction { - throw new Error('shimmed function WhiteBalanceControl.setPresetAsync'); - } - - setValueAsync(temperature: number): Foundation.IAsyncAction { - throw new Error('shimmed function WhiteBalanceControl.setValueAsync'); - } - - } - export class ZoomControl implements IZoomControl, IZoomControl2 { - value: number; - max: number; - min: number; - step: number; - supported: Boolean; - mode: ZoomTransitionMode; - supportedModes: ZoomTransitionMode[]; - - configure(settings: ZoomSettings): void { - console.warn('shimmed function ZoomControl.configure'); - } - - } - export class ZoomSettings implements IZoomSettings { - // constructor(); - value: number = 1.620316E+25; - mode: ZoomTransitionMode = ZoomTransitionMode.auto; - - } - export enum ZoomTransitionMode { - auto, - direct, - smooth, - } - } - export namespace DialProtocol { - export class DialApp implements IDialApp { - appName: string; - - requestLaunchAsync(appArgument: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DialApp.requestLaunchAsync'); - } - - stopAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DialApp.stopAsync'); - } - - getAppStateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DialApp.getAppStateAsync'); - } - - } - export enum DialAppLaunchResult { - launched, - failedToLaunch, - notFound, - networkFailure, - } - export enum DialAppState { - unknown, - stopped, - running, - networkFailure, - } - export class DialAppStateDetails implements IDialAppStateDetails { - fullXml: string; - state: DialAppState; - - } - export enum DialAppStopResult { - stopped, - stopFailed, - operationNotSupported, - networkFailure, - } - export class DialDevice implements IDialDevice, IDialDevice2 { - id: string; - friendlyName: string; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - - getDialApp(appName: string): DialApp { - throw new Error('shimmed function DialDevice.getDialApp'); - } - - static getDeviceSelector(appName: string): string { - throw new Error('shimmed function DialDevice.getDeviceSelector'); - } - - static fromIdAsync(value: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DialDevice.fromIdAsync'); - } - - static deviceInfoSupportsDialAsync(device: Devices.Enumeration.DeviceInformation): Foundation.IAsyncOperation { - throw new Error('shimmed function DialDevice.deviceInfoSupportsDialAsync'); - } - - } - export enum DialDeviceDisplayStatus { - none, - connecting, - connected, - disconnecting, - disconnected, - error, - } - export class DialDevicePicker implements IDialDevicePicker { - // constructor(); - appearance: Devices.Enumeration.DevicePickerAppearance = null; - filter: DialDevicePickerFilter = null; - - show(selection: Foundation.Rect): void { - console.warn('shimmed function DialDevicePicker.show'); - } - - show_1(selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): void { - console.warn('shimmed function DialDevicePicker.show_1'); - } - - pickSingleDialDeviceAsync(selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function DialDevicePicker.pickSingleDialDeviceAsync'); - } - - pickSingleDialDeviceAsync_1(selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function DialDevicePicker.pickSingleDialDeviceAsync_1'); - } - - hide(): void { - console.warn('shimmed function DialDevicePicker.hide'); - } - - setDisplayStatus(device: DialDevice, status: DialDeviceDisplayStatus): void { - console.warn('shimmed function DialDevicePicker.setDisplayStatus'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DialDevicePicker::addEventListener: ${name}`); - switch (name) { - case "dialdevicepickerdismissed": // Foundation.TypedEventHandler - case "dialdeviceselected": // Foundation.TypedEventHandler - case "disconnectbuttonclicked": // Foundation.TypedEventHandler - break; - } - - } - } - export class DialDevicePickerFilter implements IDialDevicePickerFilter { - supportedAppNames: string[]; - - } - export class DialDeviceSelectedEventArgs implements IDialDeviceSelectedEventArgs { - selectedDialDevice: DialDevice; - - } - export class DialDisconnectButtonClickedEventArgs implements IDialDisconnectButtonClickedEventArgs { - device: DialDevice; - - } - export class DialReceiverApp implements IDialReceiverApp, IDialReceiverApp2 { - static current: DialReceiverApp = null; - - getAdditionalDataAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DialReceiverApp.getAdditionalDataAsync'); - } - - setAdditionalDataAsync(additionalData: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function DialReceiverApp.setAdditionalDataAsync'); - } - - getUniqueDeviceNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DialReceiverApp.getUniqueDeviceNameAsync'); - } - - } - } - export namespace Editing { - export class BackgroundAudioTrack implements IBackgroundAudioTrack { - volume: number; - trimTimeFromStart: number; - trimTimeFromEnd: number; - delay: number; - audioEffectDefinitions: Effects.IAudioEffectDefinition[]; - originalDuration: number; - trimmedDuration: number; - userData: string[]; - - getAudioEncodingProperties(): MediaProperties.AudioEncodingProperties { - throw new Error('shimmed function BackgroundAudioTrack.getAudioEncodingProperties'); - } - - static createFromEmbeddedAudioTrack(embeddedAudioTrack: EmbeddedAudioTrack): BackgroundAudioTrack { - throw new Error('shimmed function BackgroundAudioTrack.createFromEmbeddedAudioTrack'); - } - - static createFromFileAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundAudioTrack.createFromFileAsync'); - } - - } - export class EmbeddedAudioTrack implements IEmbeddedAudioTrack { - getAudioEncodingProperties(): MediaProperties.AudioEncodingProperties { - throw new Error('shimmed function EmbeddedAudioTrack.getAudioEncodingProperties'); - } - - } - export class MediaClip implements IMediaClip { - selectedEmbeddedAudioTrackIndex: number; - trimTimeFromEnd: number; - volume: number; - trimTimeFromStart: number; - embeddedAudioTracks: EmbeddedAudioTrack[]; - endTimeInComposition: number; - originalDuration: number; - startTimeInComposition: number; - trimmedDuration: number; - userData: string[]; - videoEffectDefinitions: Effects.IVideoEffectDefinition[]; - audioEffectDefinitions: Effects.IAudioEffectDefinition[]; - - getVideoEncodingProperties(): MediaProperties.VideoEncodingProperties { - throw new Error('shimmed function MediaClip.getVideoEncodingProperties'); - } - - static createFromSurface(surface: Graphics.DirectX.Direct3D11.IDirect3DSurface, originalDuration: number): MediaClip { - throw new Error('shimmed function MediaClip.createFromSurface'); - } - - static createFromColor(color: UI.Color, originalDuration: number): MediaClip { - throw new Error('shimmed function MediaClip.createFromColor'); - } - - static createFromFileAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaClip.createFromFileAsync'); - } - - static createFromImageFileAsync(file: Storage.IStorageFile, originalDuration: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaClip.createFromImageFileAsync'); - } - - } - export class MediaComposition implements IMediaComposition, IMediaComposition2 { - // constructor(); - backgroundAudioTracks: BackgroundAudioTrack[] = [ ]; - clips: MediaClip[] = [ ]; - duration: number = 0; - userData: string[] = [ ]; - overlayLayers: MediaOverlayLayer[] = [ ]; - - saveAsync(file: Storage.IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function MediaComposition.saveAsync'); - } - - getThumbnailAsync(timeFromStart: number, scaledWidth: number, scaledHeight: number, framePrecision: VideoFramePrecision): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaComposition.getThumbnailAsync'); - } - - getThumbnailsAsync(timesFromStart: Foundation.Collections.IIterable, scaledWidth: number, scaledHeight: number, framePrecision: VideoFramePrecision): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaComposition.getThumbnailsAsync'); - } - - renderToFileAsync(destination: Storage.IStorageFile): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function MediaComposition.renderToFileAsync'); - } - - renderToFileAsync_1(destination: Storage.IStorageFile, trimmingPreference: MediaTrimmingPreference): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function MediaComposition.renderToFileAsync_1'); - } - - renderToFileAsync_2(destination: Storage.IStorageFile, trimmingPreference: MediaTrimmingPreference, encodingProfile: MediaProperties.MediaEncodingProfile): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function MediaComposition.renderToFileAsync_2'); - } - - createDefaultEncodingProfile(): MediaProperties.MediaEncodingProfile { - throw new Error('shimmed function MediaComposition.createDefaultEncodingProfile'); - } - - generateMediaStreamSource(): Core.MediaStreamSource { - throw new Error('shimmed function MediaComposition.generateMediaStreamSource'); - } - - generateMediaStreamSource_1(encodingProfile: MediaProperties.MediaEncodingProfile): Core.MediaStreamSource { - throw new Error('shimmed function MediaComposition.generateMediaStreamSource_1'); - } - - generatePreviewMediaStreamSource(scaledWidth: number, scaledHeight: number): Core.MediaStreamSource { - throw new Error('shimmed function MediaComposition.generatePreviewMediaStreamSource'); - } - - static loadAsync(file: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaComposition.loadAsync'); - } - - } - export class MediaOverlay implements IMediaOverlay { - // constructor(clip: MediaClip); - // constructor(clip: MediaClip, position: Foundation.Rect, opacity: number); - constructor(clip: MediaClip, position: Foundation.Rect, opacity: number) {} - - position: Foundation.Rect; - opacity: number; - delay: number; - audioEnabled: Boolean; - clip: MediaClip; - - } - export class MediaOverlayLayer implements IMediaOverlayLayer { - // constructor(compositorDefinition: Effects.IVideoCompositorDefinition); - // constructor(); - constructor(compositorDefinition: Effects.IVideoCompositorDefinition) {} - - customCompositorDefinition: Effects.IVideoCompositorDefinition; - overlays: MediaOverlay[] = [ ]; - - } - export enum MediaTrimmingPreference { - fast, - precise, - } - export enum VideoFramePrecision { - nearestFrame, - nearestKeyFrame, - } - } - export namespace Effects { - export class AudioCaptureEffectsManager implements IAudioCaptureEffectsManager { - getAudioCaptureEffects(): AudioEffect[] { - throw new Error('shimmed function AudioCaptureEffectsManager.getAudioCaptureEffects'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioCaptureEffectsManager::addEventListener: ${name}`); - switch (name) { - case "audiocaptureeffectschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AudioEffect implements IAudioEffect { - audioEffectType: AudioEffectType; - - } - export class AudioEffectDefinition implements IAudioEffectDefinition { - // constructor(activatableClassId: string); - // constructor(activatableClassId: string, props: Foundation.Collections.IPropertySet); - constructor(activatableClassId: string, props: Foundation.Collections.IPropertySet) {} - - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class AudioEffectsManager { - static createAudioRenderEffectsManager(deviceId: string, category: Render.AudioRenderCategory): AudioRenderEffectsManager { - throw new Error('shimmed function AudioEffectsManager.createAudioRenderEffectsManager'); - } - - static createAudioRenderEffectsManager_1(deviceId: string, category: Render.AudioRenderCategory, mode: AudioProcessing): AudioRenderEffectsManager { - throw new Error('shimmed function AudioEffectsManager.createAudioRenderEffectsManager_1'); - } - - static createAudioCaptureEffectsManager(deviceId: string, category: Capture.MediaCategory): AudioCaptureEffectsManager { - throw new Error('shimmed function AudioEffectsManager.createAudioCaptureEffectsManager'); - } - - static createAudioCaptureEffectsManager_1(deviceId: string, category: Capture.MediaCategory, mode: AudioProcessing): AudioCaptureEffectsManager { - throw new Error('shimmed function AudioEffectsManager.createAudioCaptureEffectsManager_1'); - } - - } - export enum AudioEffectType { - other, - acousticEchoCancellation, - noiseSuppression, - automaticGainControl, - beamForming, - constantToneRemoval, - equalizer, - loudnessEqualizer, - bassBoost, - virtualSurround, - virtualHeadphones, - speakerFill, - roomCorrection, - bassManagement, - environmentalEffects, - speakerProtection, - speakerCompensation, - dynamicRangeCompression, - } - export class AudioRenderEffectsManager implements IAudioRenderEffectsManager, IAudioRenderEffectsManager2 { - effectsProviderSettingsLabel: string; - effectsProviderThumbnail: Storage.Streams.IRandomAccessStreamWithContentType; - - getAudioRenderEffects(): AudioEffect[] { - throw new Error('shimmed function AudioRenderEffectsManager.getAudioRenderEffects'); - } - - showSettingsUI(): void { - console.warn('shimmed function AudioRenderEffectsManager.showSettingsUI'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioRenderEffectsManager::addEventListener: ${name}`); - switch (name) { - case "audiorendereffectschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class CompositeVideoFrameContext implements ICompositeVideoFrameContext { - backgroundFrame: VideoFrame; - outputFrame: VideoFrame; - surfacesToOverlay: Graphics.DirectX.Direct3D11.IDirect3DSurface[]; - - getOverlayForSurface(surfaceToOverlay: Graphics.DirectX.Direct3D11.IDirect3DSurface): Editing.MediaOverlay { - throw new Error('shimmed function CompositeVideoFrameContext.getOverlayForSurface'); - } - - } - export interface IAudioEffectDefinition { - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - } - export interface IBasicAudioEffect extends IMediaExtension { - supportedEncodingProperties: MediaProperties.AudioEncodingProperties[]; - useInputFrameForOutput: Boolean; - setEncodingProperties(encodingProperties: MediaProperties.AudioEncodingProperties): void; - processFrame(context: ProcessAudioFrameContext): void; - close(reason: MediaEffectClosedReason): void; - discardQueuedFrames(): void; - } - export interface IBasicVideoEffect extends IMediaExtension { - isReadOnly: Boolean; - supportedEncodingProperties: MediaProperties.VideoEncodingProperties[]; - supportedMemoryTypes: MediaMemoryTypes; - timeIndependent: Boolean; - setEncodingProperties(encodingProperties: MediaProperties.VideoEncodingProperties, device: Graphics.DirectX.Direct3D11.IDirect3DDevice): void; - processFrame(context: ProcessVideoFrameContext): void; - close(reason: MediaEffectClosedReason): void; - discardQueuedFrames(): void; - } - export interface IVideoCompositor extends IMediaExtension { - timeIndependent: Boolean; - setEncodingProperties(backgroundProperties: MediaProperties.VideoEncodingProperties, device: Graphics.DirectX.Direct3D11.IDirect3DDevice): void; - compositeFrame(context: CompositeVideoFrameContext): void; - close(reason: MediaEffectClosedReason): void; - discardQueuedFrames(): void; - } - export interface IVideoCompositorDefinition { - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - } - export interface IVideoEffectDefinition { - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - } - export enum MediaEffectClosedReason { - done, - unknownError, - unsupportedEncodingFormat, - effectCurrentlyUnloaded, - } - export enum MediaMemoryTypes { - gpu, - cpu, - gpuAndCpu, - } - export class ProcessAudioFrameContext implements IProcessAudioFrameContext { - inputFrame: AudioFrame; - outputFrame: AudioFrame; - - } - export class ProcessVideoFrameContext implements IProcessVideoFrameContext { - inputFrame: VideoFrame; - outputFrame: VideoFrame; - - } - export class SlowMotionEffectDefinition implements ISlowMotionEffectDefinition, IVideoEffectDefinition { - // constructor(); - timeStretchRate: number; - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class VideoCompositorDefinition implements IVideoCompositorDefinition { - // constructor(activatableClassId: string); - // constructor(activatableClassId: string, props: Foundation.Collections.IPropertySet); - constructor(activatableClassId: string, props: Foundation.Collections.IPropertySet) {} - - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class VideoEffectDefinition implements IVideoEffectDefinition { - // constructor(activatableClassId: string); - // constructor(activatableClassId: string, props: Foundation.Collections.IPropertySet); - constructor(activatableClassId: string, props: Foundation.Collections.IPropertySet) {} - - activatableClassId: string; - properties: Foundation.Collections.IPropertySet; - - } - export class VideoTransformEffectDefinition implements IVideoEffectDefinition, IVideoTransformEffectDefinition, IVideoTransformEffectDefinition2 { - // constructor(); - activatableClassId: string = 'Windows.Media.Effects.VideoTransformEffect'; - properties: Foundation.Collections.IPropertySet = [ ]; - rotation: MediaProperties.MediaRotation = MediaRotation.none; - processingAlgorithm: Transcoding.MediaVideoProcessingAlgorithm = MediaVideoProcessingAlgorithm.default; - paddingColor: UI.Color = { a: 0, r: 0, g: 0, b: 0 }; - outputSize: Foundation.Size = { 0, height: 0 }; - mirror: MediaProperties.MediaMirroringOptions = MediaMirroringOptions.none; - cropRectangle: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - sphericalProjection: VideoTransformSphericalProjection = null; - - } - export class VideoTransformSphericalProjection implements IVideoTransformSphericalProjection { - viewOrientation: Foundation.Numerics.Quaternion; - projectionMode: Playback.SphericalVideoProjectionMode; - isEnabled: Boolean; - horizontalFieldOfViewInDegrees: number; - frameFormat: MediaProperties.SphericalVideoFrameFormat; - - } - } - export namespace FaceAnalysis { - export class DetectedFace implements IDetectedFace { - faceBox: Graphics.Imaging.BitmapBounds; - - } - export class FaceDetector implements IFaceDetector { - minDetectableFaceSize: Graphics.Imaging.BitmapSize; - maxDetectableFaceSize: Graphics.Imaging.BitmapSize; - static isSupported: Boolean = true; - - detectFacesAsync(image: Graphics.Imaging.SoftwareBitmap): Foundation.IAsyncOperation { - throw new Error('shimmed function FaceDetector.detectFacesAsync'); - } - - detectFacesAsync_1(image: Graphics.Imaging.SoftwareBitmap, searchArea: Graphics.Imaging.BitmapBounds): Foundation.IAsyncOperation { - throw new Error('shimmed function FaceDetector.detectFacesAsync_1'); - } - - static createAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FaceDetector.createAsync'); - } - - static getSupportedBitmapPixelFormats(): Graphics.Imaging.BitmapPixelFormat[] { - throw new Error('shimmed function FaceDetector.getSupportedBitmapPixelFormats'); - } - - static isBitmapPixelFormatSupported(bitmapPixelFormat: Graphics.Imaging.BitmapPixelFormat): Boolean { - throw new Error('shimmed function FaceDetector.isBitmapPixelFormatSupported'); - } - - } - export class FaceTracker implements IFaceTracker { - minDetectableFaceSize: Graphics.Imaging.BitmapSize; - maxDetectableFaceSize: Graphics.Imaging.BitmapSize; - static isSupported: Boolean = true; - - processNextFrameAsync(videoFrame: VideoFrame): Foundation.IAsyncOperation { - throw new Error('shimmed function FaceTracker.processNextFrameAsync'); - } - - static createAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FaceTracker.createAsync'); - } - - static getSupportedBitmapPixelFormats(): Graphics.Imaging.BitmapPixelFormat[] { - throw new Error('shimmed function FaceTracker.getSupportedBitmapPixelFormats'); - } - - static isBitmapPixelFormatSupported(bitmapPixelFormat: Graphics.Imaging.BitmapPixelFormat): Boolean { - throw new Error('shimmed function FaceTracker.isBitmapPixelFormatSupported'); - } - - } - } - export class ImageDisplayProperties implements IImageDisplayProperties { - title: string; - subtitle: string; - - } - export interface IMediaExtension { - setProperties(configuration: Foundation.Collections.IPropertySet): void; - } - export interface IMediaFrame extends Foundation.IClosable { - duration: number | null; - extendedProperties: Foundation.Collections.IPropertySet; - isDiscontinuous: Boolean; - isReadOnly: Boolean; - relativeTime: number | null; - systemRelativeTime: number | null; - type: string; - } - export interface IMediaMarker { - mediaMarkerType: string; - text: string; - time: number; - } - export interface IMediaMarkers { - markers: IMediaMarker[]; - } - export namespace Import { - export enum PhotoImportAccessMode { - readWrite, - readOnly, - readAndDelete, - } - export enum PhotoImportConnectionTransport { - unknown, - usb, - ip, - bluetooth, - } - export enum PhotoImportContentType { - unknown, - image, - video, - } - export enum PhotoImportContentTypeFilter { - onlyImages, - onlyVideos, - imagesAndVideos, - imagesAndVideosFromCameraRoll, - } - export class PhotoImportDeleteImportedItemsFromSourceResult implements IPhotoImportDeleteImportedItemsFromSourceResult { - deletedItems: PhotoImportItem[]; - hasSucceeded: Boolean; - photosCount: number; - photosSizeInBytes: number; - session: PhotoImportSession; - siblingsCount: number; - siblingsSizeInBytes: number; - sidecarsCount: number; - sidecarsSizeInBytes: number; - totalCount: number; - totalSizeInBytes: number; - videosCount: number; - videosSizeInBytes: number; - - } - export class PhotoImportFindItemsResult implements IPhotoImportFindItemsResult, IPhotoImportFindItemsResult2 { - foundItems: PhotoImportItem[]; - hasSucceeded: Boolean; - importMode: PhotoImportImportMode; - photosCount: number; - photosSizeInBytes: number; - selectedPhotosCount: number; - selectedPhotosSizeInBytes: number; - selectedSiblingsCount: number; - selectedSiblingsSizeInBytes: number; - selectedSidecarsCount: number; - selectedSidecarsSizeInBytes: number; - selectedTotalCount: number; - selectedTotalSizeInBytes: number; - selectedVideosCount: number; - selectedVideosSizeInBytes: number; - session: PhotoImportSession; - siblingsCount: number; - siblingsSizeInBytes: number; - sidecarsCount: number; - sidecarsSizeInBytes: number; - totalCount: number; - totalSizeInBytes: number; - videosCount: number; - videosSizeInBytes: number; - - selectAll(): void { - console.warn('shimmed function PhotoImportFindItemsResult.selectAll'); - } - - selectNone(): void { - console.warn('shimmed function PhotoImportFindItemsResult.selectNone'); - } - - selectNewAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PhotoImportFindItemsResult.selectNewAsync'); - } - - setImportMode(value: PhotoImportImportMode): void { - console.warn('shimmed function PhotoImportFindItemsResult.setImportMode'); - } - - importItemsAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PhotoImportFindItemsResult.importItemsAsync'); - } - - addItemsInDateRangeToSelection(rangeStart: Date, rangeLength: number): void { - console.warn('shimmed function PhotoImportFindItemsResult.addItemsInDateRangeToSelection'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PhotoImportFindItemsResult::addEventListener: ${name}`); - switch (name) { - case "itemimported": // Foundation.TypedEventHandler - case "selectionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class PhotoImportImportItemsResult implements IPhotoImportImportItemsResult { - hasSucceeded: Boolean; - importedItems: PhotoImportItem[]; - photosCount: number; - photosSizeInBytes: number; - session: PhotoImportSession; - siblingsCount: number; - siblingsSizeInBytes: number; - sidecarsCount: number; - sidecarsSizeInBytes: number; - totalCount: number; - totalSizeInBytes: number; - videosCount: number; - videosSizeInBytes: number; - - deleteImportedItemsFromSourceAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PhotoImportImportItemsResult.deleteImportedItemsFromSourceAsync'); - } - - } - export enum PhotoImportImportMode { - importEverything, - ignoreSidecars, - ignoreSiblings, - ignoreSidecarsAndSiblings, - } - export class PhotoImportItem implements IPhotoImportItem, IPhotoImportItem2 { - isSelected: Boolean; - contentType: PhotoImportContentType; - date: Date; - deletedFileNames: string[]; - importedFileNames: string[]; - itemKey: number; - name: string; - sibling: PhotoImportSidecar; - sidecars: PhotoImportSidecar[]; - sizeInBytes: number; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - videoSegments: PhotoImportVideoSegment[]; - path: string; - - } - export class PhotoImportItemImportedEventArgs implements IPhotoImportItemImportedEventArgs { - importedItem: PhotoImportItem; - - } - export enum PhotoImportItemSelectionMode { - selectAll, - selectNone, - selectNew, - } - export class PhotoImportManager { - static isSupportedAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhotoImportManager.isSupportedAsync'); - } - - static findAllSourcesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PhotoImportManager.findAllSourcesAsync'); - } - - static getPendingOperations(): PhotoImportOperation[] { - throw new Error('shimmed function PhotoImportManager.getPendingOperations'); - } - - } - export class PhotoImportOperation implements IPhotoImportOperation { - continueDeletingImportedItemsFromSourceAsync: Foundation.IAsyncOperationWithProgress; - continueFindingItemsAsync: Foundation.IAsyncOperationWithProgress; - continueImportingItemsAsync: Foundation.IAsyncOperationWithProgress; - session: PhotoImportSession; - stage: PhotoImportStage; - - } - export enum PhotoImportPowerSource { - unknown, - battery, - external, - } - export interface PhotoImportProgress { - itemsImported: number; - totalItemsToImport: number; - bytesImported: number; - totalBytesToImport: number; - importProgress: number; - } - export class PhotoImportSelectionChangedEventArgs implements IPhotoImportSelectionChangedEventArgs { - isSelectionEmpty: Boolean; - - } - export class PhotoImportSession implements IPhotoImportSession, Foundation.IClosable, IPhotoImportSession2 { - subfolderCreationMode: PhotoImportSubfolderCreationMode; - destinationFolder: Storage.IStorageFolder; - destinationFileNamePrefix: string; - appendSessionDateToDestinationFolder: Boolean; - sessionId: string; - source: PhotoImportSource; - subfolderDateFormat: PhotoImportSubfolderDateFormat; - rememberDeselectedItems: Boolean; - - findItemsAsync(contentTypeFilter: PhotoImportContentTypeFilter, itemSelectionMode: PhotoImportItemSelectionMode): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function PhotoImportSession.findItemsAsync'); - } - - close(): void { - console.warn('shimmed function PhotoImportSession.close'); - } - - } - export class PhotoImportSidecar implements IPhotoImportSidecar { - date: Date; - name: string; - sizeInBytes: number; - - } - export class PhotoImportSource implements IPhotoImportSource { - batteryLevelPercent: number | null; - connectionProtocol: string; - connectionTransport: PhotoImportConnectionTransport; - dateTime: Date | null; - description: string; - displayName: string; - id: string; - isLocked: Boolean | null; - isMassStorage: Boolean; - manufacturer: string; - model: string; - powerSource: PhotoImportPowerSource; - serialNumber: string; - storageMedia: PhotoImportStorageMedium[]; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - type: PhotoImportSourceType; - - createImportSession(): PhotoImportSession { - throw new Error('shimmed function PhotoImportSource.createImportSession'); - } - - static fromIdAsync(sourceId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PhotoImportSource.fromIdAsync'); - } - - static fromFolderAsync(sourceRootFolder: Storage.IStorageFolder): Foundation.IAsyncOperation { - throw new Error('shimmed function PhotoImportSource.fromFolderAsync'); - } - - } - export enum PhotoImportSourceType { - generic, - camera, - mediaPlayer, - phone, - video, - personalInfoManager, - audioRecorder, - } - export enum PhotoImportStage { - notStarted, - findingItems, - importingItems, - deletingImportedItemsFromSource, - } - export class PhotoImportStorageMedium implements IPhotoImportStorageMedium { - availableSpaceInBytes: number; - capacityInBytes: number; - description: string; - name: string; - serialNumber: string; - storageMediumType: PhotoImportStorageMediumType; - supportedAccessMode: PhotoImportAccessMode; - - refresh(): void { - console.warn('shimmed function PhotoImportStorageMedium.refresh'); - } - - } - export enum PhotoImportStorageMediumType { - undefined, - fixed, - removable, - } - export enum PhotoImportSubfolderCreationMode { - doNotCreateSubfolders, - createSubfoldersFromFileDate, - createSubfoldersFromExifDate, - keepOriginalFolderStructure, - } - export enum PhotoImportSubfolderDateFormat { - year, - yearMonth, - yearMonthDay, - } - export class PhotoImportVideoSegment implements IPhotoImportVideoSegment { - date: Date; - name: string; - sibling: PhotoImportSidecar; - sidecars: PhotoImportSidecar[]; - sizeInBytes: number; - - } - } - export class MediaControl { - static trackName: string = ''; - static isPlaying: Boolean = false; - static artistName: string = ''; - static albumArt: Foundation.Uri; - static soundLevel: SoundLevel = SoundLevel.full; - - static addEventListener(name: string, handler: Function) { - console.warn(`MediaControl::addEventListener: ${name}`); - switch (name) { - case "channeldownpressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "channeluppressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "fastforwardpressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "nexttrackpressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "pausepressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "playpausetogglepressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "playpressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "previoustrackpressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "recordpressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "rewindpressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "soundlevelchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "stoppressed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export interface MediaControlContract { - } - export class MediaExtensionManager implements IMediaExtensionManager, IMediaExtensionManager2 { - // constructor(); - registerSchemeHandler(activatableClassId: string, scheme: string): void { - console.warn('shimmed function MediaExtensionManager.registerSchemeHandler'); - } - - registerSchemeHandler_1(activatableClassId: string, scheme: string, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaExtensionManager.registerSchemeHandler_1'); - } - - registerByteStreamHandler(activatableClassId: string, fileExtension: string, mimeType: string): void { - console.warn('shimmed function MediaExtensionManager.registerByteStreamHandler'); - } - - registerByteStreamHandler_1(activatableClassId: string, fileExtension: string, mimeType: string, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaExtensionManager.registerByteStreamHandler_1'); - } - - registerAudioDecoder(activatableClassId: string, inputSubtype: string, outputSubtype: string): void { - console.warn('shimmed function MediaExtensionManager.registerAudioDecoder'); - } - - registerAudioDecoder_1(activatableClassId: string, inputSubtype: string, outputSubtype: string, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaExtensionManager.registerAudioDecoder_1'); - } - - registerAudioEncoder(activatableClassId: string, inputSubtype: string, outputSubtype: string): void { - console.warn('shimmed function MediaExtensionManager.registerAudioEncoder'); - } - - registerAudioEncoder_1(activatableClassId: string, inputSubtype: string, outputSubtype: string, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaExtensionManager.registerAudioEncoder_1'); - } - - registerVideoDecoder(activatableClassId: string, inputSubtype: string, outputSubtype: string): void { - console.warn('shimmed function MediaExtensionManager.registerVideoDecoder'); - } - - registerVideoDecoder_1(activatableClassId: string, inputSubtype: string, outputSubtype: string, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaExtensionManager.registerVideoDecoder_1'); - } - - registerVideoEncoder(activatableClassId: string, inputSubtype: string, outputSubtype: string): void { - console.warn('shimmed function MediaExtensionManager.registerVideoEncoder'); - } - - registerVideoEncoder_1(activatableClassId: string, inputSubtype: string, outputSubtype: string, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaExtensionManager.registerVideoEncoder_1'); - } - - registerMediaExtensionForAppService(extension: IMediaExtension, connection: ApplicationModel.AppService.AppServiceConnection): void { - console.warn('shimmed function MediaExtensionManager.registerMediaExtensionForAppService'); - } - - } - export class MediaMarkerTypes { - static bookmark: string = 'Speech:Bookmark'; - - } - export enum MediaPlaybackAutoRepeatMode { - none, - track, - list, - } - export enum MediaPlaybackStatus { - closed, - changing, - stopped, - playing, - paused, - } - export enum MediaPlaybackType { - unknown, - music, - video, - image, - } - export class MediaProcessingTriggerDetails implements IMediaProcessingTriggerDetails { - __arguments: Foundation.Collections.ValueSet; - - } - export namespace MediaProperties { - export class AudioEncodingProperties implements IAudioEncodingProperties, IMediaEncodingProperties, IAudioEncodingPropertiesWithFormatUserData, IAudioEncodingProperties2, IAudioEncodingProperties3 { - // constructor(); - sampleRate: number = 0; - channelCount: number = 0; - bitsPerSample: number = 0; - bitrate: number = 0; - isSpatial: Boolean = false; - subtype: string = ''; - properties: MediaPropertySet = [ null ]; - type: string = 'Audio'; - - setFormatUserData(value: number[]): void { - console.warn('shimmed function AudioEncodingProperties.setFormatUserData'); - } - - getFormatUserData(): number[] { - throw new Error('shimmed function AudioEncodingProperties.getFormatUserData'); - } - - copy(): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.copy'); - } - - static createAlac(sampleRate: number, channelCount: number, bitsPerSample: number): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.createAlac'); - } - - static createFlac(sampleRate: number, channelCount: number, bitsPerSample: number): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.createFlac'); - } - - static createAac(sampleRate: number, channelCount: number, bitrate: number): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.createAac'); - } - - static createAacAdts(sampleRate: number, channelCount: number, bitrate: number): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.createAacAdts'); - } - - static createMp3(sampleRate: number, channelCount: number, bitrate: number): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.createMp3'); - } - - static createPcm(sampleRate: number, channelCount: number, bitsPerSample: number): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.createPcm'); - } - - static createWma(sampleRate: number, channelCount: number, bitrate: number): AudioEncodingProperties { - throw new Error('shimmed function AudioEncodingProperties.createWma'); - } - - } - export enum AudioEncodingQuality { - auto, - high, - medium, - low, - } - export class ContainerEncodingProperties implements IContainerEncodingProperties, IMediaEncodingProperties, IContainerEncodingProperties2 { - // constructor(); - subtype: string = ''; - properties: MediaPropertySet = [ null ]; - type: string = 'Container'; - - copy(): ContainerEncodingProperties { - throw new Error('shimmed function ContainerEncodingProperties.copy'); - } - - } - export class H264ProfileIds { - static baseline: number = 66; - static constrainedBaseline: number = 256; - static extended: number = 88; - static high: number = 100; - static high10: number = 110; - static high422: number = 122; - static high444: number = 244; - static main: number = 77; - static multiviewHigh: number = 118; - static stereoHigh: number = 128; - - } - export class ImageEncodingProperties implements IImageEncodingProperties, IMediaEncodingProperties, IImageEncodingProperties2 { - // constructor(); - width: number = 0; - height: number = 0; - subtype: string = ''; - properties: MediaPropertySet = [ null ]; - type: string = 'Image'; - - copy(): ImageEncodingProperties { - throw new Error('shimmed function ImageEncodingProperties.copy'); - } - - static createHeif(): ImageEncodingProperties { - throw new Error('shimmed function ImageEncodingProperties.createHeif'); - } - - static createUncompressed(format: MediaPixelFormat): ImageEncodingProperties { - throw new Error('shimmed function ImageEncodingProperties.createUncompressed'); - } - - static createBmp(): ImageEncodingProperties { - throw new Error('shimmed function ImageEncodingProperties.createBmp'); - } - - static createJpeg(): ImageEncodingProperties { - throw new Error('shimmed function ImageEncodingProperties.createJpeg'); - } - - static createPng(): ImageEncodingProperties { - throw new Error('shimmed function ImageEncodingProperties.createPng'); - } - - static createJpegXR(): ImageEncodingProperties { - throw new Error('shimmed function ImageEncodingProperties.createJpegXR'); - } - - } - export interface IMediaEncodingProperties { - properties: MediaPropertySet; - subtype: string; - type: string; - } - export class MediaEncodingProfile implements IMediaEncodingProfile, IMediaEncodingProfile2, IMediaEncodingProfile3 { - // constructor(); - video: VideoEncodingProperties = null; - container: ContainerEncodingProperties = null; - audio: AudioEncodingProperties = null; - - setAudioTracks(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function MediaEncodingProfile.setAudioTracks'); - } - - getAudioTracks(): Core.AudioStreamDescriptor[] { - throw new Error('shimmed function MediaEncodingProfile.getAudioTracks'); - } - - setVideoTracks(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function MediaEncodingProfile.setVideoTracks'); - } - - getVideoTracks(): Core.VideoStreamDescriptor[] { - throw new Error('shimmed function MediaEncodingProfile.getVideoTracks'); - } - - setTimedMetadataTracks(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function MediaEncodingProfile.setTimedMetadataTracks'); - } - - getTimedMetadataTracks(): Core.TimedMetadataStreamDescriptor[] { - throw new Error('shimmed function MediaEncodingProfile.getTimedMetadataTracks'); - } - - static createAlac(quality: AudioEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createAlac'); - } - - static createFlac(quality: AudioEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createFlac'); - } - - static createHevc(quality: VideoEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createHevc'); - } - - static createWav(quality: AudioEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createWav'); - } - - static createAvi(quality: VideoEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createAvi'); - } - - static createM4a(quality: AudioEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createM4a'); - } - - static createMp3(quality: AudioEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createMp3'); - } - - static createWma(quality: AudioEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createWma'); - } - - static createMp4(quality: VideoEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createMp4'); - } - - static createWmv(quality: VideoEncodingQuality): MediaEncodingProfile { - throw new Error('shimmed function MediaEncodingProfile.createWmv'); - } - - static createFromFileAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaEncodingProfile.createFromFileAsync'); - } - - static createFromStreamAsync(stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaEncodingProfile.createFromStreamAsync'); - } - - } - export class MediaEncodingSubtypes { - static bmp: string = 'Bmp'; - static aac: string = 'Aac'; - static aacAdts: string = 'AacAdts'; - static ac3: string = 'Ac3'; - static amrNb: string = 'AmrNb'; - static amrWb: string = 'AmrWb'; - static argb32: string = 'Argb32'; - static asf: string = 'Asf'; - static avi: string = 'Avi'; - static bgra8: string = 'Bgra8'; - static mpeg4: string = 'Mpeg4'; - static eac3: string = 'Eac3'; - static float: string = 'Float'; - static gif: string = 'Gif'; - static h263: string = 'H263'; - static h264: string = 'H264'; - static h264Es: string = 'H264Es'; - static hevc: string = 'Hevc'; - static hevcEs: string = 'HevcEs'; - static iyuv: string = 'Iyuv'; - static jpeg: string = 'Jpeg'; - static jpegXr: string = 'JpegXr'; - static mjpg: string = 'Mjpg'; - static mp3: string = 'Mp3'; - static mpeg: string = 'Mpeg'; - static mpeg1: string = 'Mpeg1'; - static mpeg2: string = 'Mpeg2'; - static nv12: string = 'Nv12'; - static pcm: string = 'Pcm'; - static png: string = 'Png'; - static rgb24: string = 'Rgb24'; - static rgb32: string = 'Rgb32'; - static tiff: string = 'Tiff'; - static wave: string = 'Wave'; - static wma8: string = 'Wma8'; - static wma9: string = 'Wma9'; - static wmv3: string = 'Wmv3'; - static wvc1: string = 'Wvc1'; - static yuy2: string = 'Yuy2'; - static yv12: string = 'Yv12'; - static d16: string = 'D16'; - static l16: string = 'L16'; - static l8: string = 'L8'; - static vp9: string = 'Vp9'; - static alac: string = 'Alac'; - static flac: string = 'Flac'; - static p010: string = 'P010'; - static heif: string = 'Heif'; - - } - export enum MediaMirroringOptions { - none, - horizontal, - vertical, - } - export enum MediaPixelFormat { - nv12, - bgra8, - p010, - } - export class MediaPropertySet implements Foundation.Collections.IMap, Foundation.Collections.IIterable> { - // constructor(); - size: number; - - lookup(key: string): any { - throw new Error('shimmed function MediaPropertySet.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function MediaPropertySet.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function MediaPropertySet.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function MediaPropertySet.insert'); - } - - clear(): void { - console.warn('shimmed function MediaPropertySet.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function MediaPropertySet.first'); - } - - } - export class MediaRatio implements IMediaRatio { - numerator: number; - denominator: number; - - } - export enum MediaRotation { - none, - clockwise90Degrees, - clockwise180Degrees, - clockwise270Degrees, - } - export enum MediaThumbnailFormat { - bmp, - bgra8, - } - export class Mpeg2ProfileIds { - static high: number = 5; - static main: number = 2; - static signalNoiseRatioScalable: number = 3; - static simple: number = 1; - static spatiallyScalable: number = 4; - - } - export enum SphericalVideoFrameFormat { - none, - unsupported, - equirectangular, - } - export enum StereoscopicVideoPackingMode { - none, - sideBySide, - topBottom, - } - export class TimedMetadataEncodingProperties implements ITimedMetadataEncodingProperties, IMediaEncodingProperties { - // constructor(); - subtype: string = ''; - properties: MediaPropertySet = [ null ]; - type: string = 'Binary'; - - setFormatUserData(value: number[]): void { - console.warn('shimmed function TimedMetadataEncodingProperties.setFormatUserData'); - } - - getFormatUserData(): number[] { - throw new Error('shimmed function TimedMetadataEncodingProperties.getFormatUserData'); - } - - copy(): TimedMetadataEncodingProperties { - throw new Error('shimmed function TimedMetadataEncodingProperties.copy'); - } - - } - export class VideoEncodingProperties implements IVideoEncodingProperties, IMediaEncodingProperties, IVideoEncodingProperties2, IVideoEncodingProperties3, IVideoEncodingProperties4, IVideoEncodingProperties5 { - // constructor(); - subtype: string = ''; - type: string = 'Video'; - properties: MediaPropertySet = [ null, null ]; - width: number = 0; - height: number = 0; - bitrate: number = 0; - pixelAspectRatio: MediaRatio = null; - frameRate: MediaRatio = null; - profileId: number = 0; - stereoscopicVideoPackingMode: StereoscopicVideoPackingMode = StereoscopicVideoPackingMode.none; - sphericalVideoFrameFormat: SphericalVideoFrameFormat = SphericalVideoFrameFormat.none; - - setFormatUserData(value: number[]): void { - console.warn('shimmed function VideoEncodingProperties.setFormatUserData'); - } - - getFormatUserData(): number[] { - throw new Error('shimmed function VideoEncodingProperties.getFormatUserData'); - } - - copy(): VideoEncodingProperties { - throw new Error('shimmed function VideoEncodingProperties.copy'); - } - - static createHevc(): VideoEncodingProperties { - throw new Error('shimmed function VideoEncodingProperties.createHevc'); - } - - static createH264(): VideoEncodingProperties { - throw new Error('shimmed function VideoEncodingProperties.createH264'); - } - - static createMpeg2(): VideoEncodingProperties { - throw new Error('shimmed function VideoEncodingProperties.createMpeg2'); - } - - static createUncompressed(subtype: string, width: number, height: number): VideoEncodingProperties { - throw new Error('shimmed function VideoEncodingProperties.createUncompressed'); - } - - } - export enum VideoEncodingQuality { - auto, - hd1080p, - hd720p, - wvga, - ntsc, - pal, - vga, - qvga, - uhd2160p, - uhd4320p, - } - } - export class MediaTimelineController implements IMediaTimelineController, IMediaTimelineController2 { - // constructor(); - position: number = 0; - clockRate: number = 1; - state: MediaTimelineControllerState = MediaTimelineControllerState.paused; - isLoopingEnabled: Boolean = false; - duration: number | null; - - start(): void { - console.warn('shimmed function MediaTimelineController.start'); - } - - resume(): void { - console.warn('shimmed function MediaTimelineController.resume'); - } - - pause(): void { - console.warn('shimmed function MediaTimelineController.pause'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaTimelineController::addEventListener: ${name}`); - switch (name) { - case "positionchanged": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - case "ended": // Foundation.TypedEventHandler - case "failed": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaTimelineControllerFailedEventArgs implements IMediaTimelineControllerFailedEventArgs { - extendedError: number; - - } - export enum MediaTimelineControllerState { - paused, - running, - stalled, - error, - } - export interface MediaTimeRange { - start: number; - end: number; - } - export namespace Miracast { - export class MiracastReceiver implements IMiracastReceiver { - // constructor(); - getDefaultSettings(): MiracastReceiverSettings { - throw new Error('shimmed function MiracastReceiver.getDefaultSettings'); - } - - getCurrentSettings(): MiracastReceiverSettings { - throw new Error('shimmed function MiracastReceiver.getCurrentSettings'); - } - - getCurrentSettingsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MiracastReceiver.getCurrentSettingsAsync'); - } - - disconnectAllAndApplySettings(settings: MiracastReceiverSettings): MiracastReceiverApplySettingsResult { - throw new Error('shimmed function MiracastReceiver.disconnectAllAndApplySettings'); - } - - disconnectAllAndApplySettingsAsync(settings: MiracastReceiverSettings): Foundation.IAsyncOperation { - throw new Error('shimmed function MiracastReceiver.disconnectAllAndApplySettingsAsync'); - } - - getStatus(): MiracastReceiverStatus { - throw new Error('shimmed function MiracastReceiver.getStatus'); - } - - getStatusAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MiracastReceiver.getStatusAsync'); - } - - createSession(view: ApplicationModel.Core.CoreApplicationView): MiracastReceiverSession { - throw new Error('shimmed function MiracastReceiver.createSession'); - } - - createSessionAsync(view: ApplicationModel.Core.CoreApplicationView): Foundation.IAsyncOperation { - throw new Error('shimmed function MiracastReceiver.createSessionAsync'); - } - - clearKnownTransmitters(): void { - console.warn('shimmed function MiracastReceiver.clearKnownTransmitters'); - } - - removeKnownTransmitter(transmitter: MiracastTransmitter): void { - console.warn('shimmed function MiracastReceiver.removeKnownTransmitter'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MiracastReceiver::addEventListener: ${name}`); - switch (name) { - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MiracastReceiverApplySettingsResult implements IMiracastReceiverApplySettingsResult { - extendedError: number; - status: MiracastReceiverApplySettingsStatus; - - } - export enum MiracastReceiverApplySettingsStatus { - success, - unknownFailure, - miracastNotSupported, - accessDenied, - friendlyNameTooLong, - modelNameTooLong, - modelNumberTooLong, - invalidSettings, - } - export enum MiracastReceiverAuthorizationMethod { - none, - confirmConnection, - pinDisplayIfRequested, - pinDisplayRequired, - } - export class MiracastReceiverConnection implements IMiracastReceiverConnection, Foundation.IClosable { - cursorImageChannel: MiracastReceiverCursorImageChannel; - inputDevices: MiracastReceiverInputDevices; - streamControl: MiracastReceiverStreamControl; - transmitter: MiracastTransmitter; - - disconnect(reason: MiracastReceiverDisconnectReason): void { - console.warn('shimmed function MiracastReceiverConnection.disconnect'); - } - - disconnect_1(reason: MiracastReceiverDisconnectReason, message: string): void { - console.warn('shimmed function MiracastReceiverConnection.disconnect_1'); - } - - pause(): void { - console.warn('shimmed function MiracastReceiverConnection.pause'); - } - - pauseAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MiracastReceiverConnection.pauseAsync'); - } - - resume(): void { - console.warn('shimmed function MiracastReceiverConnection.resume'); - } - - resumeAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MiracastReceiverConnection.resumeAsync'); - } - - close(): void { - console.warn('shimmed function MiracastReceiverConnection.close'); - } - - } - export class MiracastReceiverConnectionCreatedEventArgs implements IMiracastReceiverConnectionCreatedEventArgs { - connection: MiracastReceiverConnection; - pin: string; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MiracastReceiverConnectionCreatedEventArgs.getDeferral'); - } - - } - export class MiracastReceiverCursorImageChannel implements IMiracastReceiverCursorImageChannel { - imageStream: Storage.Streams.IRandomAccessStreamWithContentType; - isEnabled: Boolean; - maxImageSize: Graphics.SizeInt32; - position: Graphics.PointInt32; - - addEventListener(name: string, handler: Function) { - console.warn(`MiracastReceiverCursorImageChannel::addEventListener: ${name}`); - switch (name) { - case "imagestreamchanged": // Foundation.TypedEventHandler - case "positionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MiracastReceiverCursorImageChannelSettings implements IMiracastReceiverCursorImageChannelSettings { - maxImageSize: Graphics.SizeInt32; - isEnabled: Boolean; - - } - export class MiracastReceiverDisconnectedEventArgs implements IMiracastReceiverDisconnectedEventArgs { - connection: MiracastReceiverConnection; - - } - export enum MiracastReceiverDisconnectReason { - finished, - appSpecificError, - connectionNotAccepted, - disconnectedByUser, - failedToStartStreaming, - mediaDecodingError, - mediaStreamingError, - mediaDecryptionError, - } - export class MiracastReceiverGameControllerDevice implements IMiracastReceiverGameControllerDevice { - transmitInput: Boolean; - mode: MiracastReceiverGameControllerDeviceUsageMode; - isRequestedByTransmitter: Boolean; - isTransmittingInput: Boolean; - - addEventListener(name: string, handler: Function) { - console.warn(`MiracastReceiverGameControllerDevice::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MiracastReceiverGameControllerDeviceUsageMode { - asGameController, - asMouseAndKeyboard, - } - export class MiracastReceiverInputDevices implements IMiracastReceiverInputDevices { - gameController: MiracastReceiverGameControllerDevice; - keyboard: MiracastReceiverKeyboardDevice; - - } - export class MiracastReceiverKeyboardDevice implements IMiracastReceiverKeyboardDevice { - transmitInput: Boolean; - isRequestedByTransmitter: Boolean; - isTransmittingInput: Boolean; - - addEventListener(name: string, handler: Function) { - console.warn(`MiracastReceiverKeyboardDevice::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MiracastReceiverListeningStatus { - notListening, - listening, - connectionPending, - connected, - disabledByPolicy, - temporarilyDisabled, - } - export class MiracastReceiverMediaSourceCreatedEventArgs implements IMiracastReceiverMediaSourceCreatedEventArgs { - connection: MiracastReceiverConnection; - cursorImageChannelSettings: MiracastReceiverCursorImageChannelSettings; - mediaSource: Core.MediaSource; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MiracastReceiverMediaSourceCreatedEventArgs.getDeferral'); - } - - } - export class MiracastReceiverSession implements IMiracastReceiverSession, Foundation.IClosable { - maxSimultaneousConnections: number; - allowConnectionTakeover: Boolean; - - start(): MiracastReceiverSessionStartResult { - throw new Error('shimmed function MiracastReceiverSession.start'); - } - - startAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MiracastReceiverSession.startAsync'); - } - - close(): void { - console.warn('shimmed function MiracastReceiverSession.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MiracastReceiverSession::addEventListener: ${name}`); - switch (name) { - case "connectioncreated": // Foundation.TypedEventHandler - case "disconnected": // Foundation.TypedEventHandler - case "mediasourcecreated": // Foundation.TypedEventHandler - break; - } - - } - } - export class MiracastReceiverSessionStartResult implements IMiracastReceiverSessionStartResult { - extendedError: number; - status: MiracastReceiverSessionStartStatus; - - } - export enum MiracastReceiverSessionStartStatus { - success, - unknownFailure, - miracastNotSupported, - accessDenied, - } - export class MiracastReceiverSettings implements IMiracastReceiverSettings { - requireAuthorizationFromKnownTransmitters: Boolean; - modelNumber: string; - modelName: string; - friendlyName: string; - authorizationMethod: MiracastReceiverAuthorizationMethod; - - } - export class MiracastReceiverStatus implements IMiracastReceiverStatus { - isConnectionTakeoverSupported: Boolean; - knownTransmitters: MiracastTransmitter[]; - listeningStatus: MiracastReceiverListeningStatus; - maxSimultaneousConnections: number; - wiFiStatus: MiracastReceiverWiFiStatus; - - } - export class MiracastReceiverStreamControl implements IMiracastReceiverStreamControl { - muteAudio: Boolean; - - getVideoStreamSettings(): MiracastReceiverVideoStreamSettings { - throw new Error('shimmed function MiracastReceiverStreamControl.getVideoStreamSettings'); - } - - getVideoStreamSettingsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MiracastReceiverStreamControl.getVideoStreamSettingsAsync'); - } - - suggestVideoStreamSettings(settings: MiracastReceiverVideoStreamSettings): void { - console.warn('shimmed function MiracastReceiverStreamControl.suggestVideoStreamSettings'); - } - - suggestVideoStreamSettingsAsync(settings: MiracastReceiverVideoStreamSettings): Foundation.IAsyncAction { - throw new Error('shimmed function MiracastReceiverStreamControl.suggestVideoStreamSettingsAsync'); - } - - } - export class MiracastReceiverVideoStreamSettings implements IMiracastReceiverVideoStreamSettings { - size: Graphics.SizeInt32; - bitrate: number; - - } - export enum MiracastReceiverWiFiStatus { - miracastSupportUndetermined, - miracastNotSupported, - miracastSupportNotOptimized, - miracastSupported, - } - export class MiracastTransmitter implements IMiracastTransmitter { - name: string; - authorizationStatus: MiracastTransmitterAuthorizationStatus; - lastConnectionTime: Date; - macAddress: string; - - getConnections(): MiracastReceiverConnection[] { - throw new Error('shimmed function MiracastTransmitter.getConnections'); - } - - } - export enum MiracastTransmitterAuthorizationStatus { - undecided, - allowed, - alwaysPrompt, - blocked, - } - } - export class MusicDisplayProperties implements IMusicDisplayProperties, IMusicDisplayProperties2, IMusicDisplayProperties3 { - title: string; - artist: string; - albumArtist: string; - trackNumber: number; - albumTitle: string; - genres: string[]; - albumTrackCount: number; - - } - export namespace Ocr { - export class OcrEngine implements IOcrEngine { - recognizerLanguage: Globalization.Language; - static availableRecognizerLanguages: Globalization.Language[] = [ null ]; - static maxImageDimension: number = 10000; - - recognizeAsync(bitmap: Graphics.Imaging.SoftwareBitmap): Foundation.IAsyncOperation { - throw new Error('shimmed function OcrEngine.recognizeAsync'); - } - - static isLanguageSupported(language: Globalization.Language): Boolean { - throw new Error('shimmed function OcrEngine.isLanguageSupported'); - } - - static tryCreateFromLanguage(language: Globalization.Language): OcrEngine { - throw new Error('shimmed function OcrEngine.tryCreateFromLanguage'); - } - - static tryCreateFromUserProfileLanguages(): OcrEngine { - throw new Error('shimmed function OcrEngine.tryCreateFromUserProfileLanguages'); - } - - } - export class OcrLine implements IOcrLine { - text: string; - words: OcrWord[]; - - } - export class OcrResult implements IOcrResult { - lines: OcrLine[]; - text: string; - textAngle: number | null; - - } - export class OcrWord implements IOcrWord { - boundingRect: Foundation.Rect; - text: string; - - } - } - export namespace Playback { - export enum AutoLoadedDisplayPropertyKind { - none, - musicOrVideo, - music, - video, - } - export class BackgroundMediaPlayer { - static current: MediaPlayer = null; - - static sendMessageToBackground(value: Foundation.Collections.ValueSet): void { - console.warn('shimmed function BackgroundMediaPlayer.sendMessageToBackground'); - } - - static sendMessageToForeground(value: Foundation.Collections.ValueSet): void { - console.warn('shimmed function BackgroundMediaPlayer.sendMessageToForeground'); - } - - static isMediaPlaying(): Boolean { - throw new Error('shimmed function BackgroundMediaPlayer.isMediaPlaying'); - } - - static shutdown(): void { - console.warn('shimmed function BackgroundMediaPlayer.shutdown'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`BackgroundMediaPlayer::addEventListener: ${name}`); - switch (name) { - case "messagereceivedfrombackground": // /* System.EventHandler`1[[Windows.Media.Playback.MediaPlayerDataReceivedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "messagereceivedfromforeground": // /* System.EventHandler`1[[Windows.Media.Playback.MediaPlayerDataReceivedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export class CurrentMediaPlaybackItemChangedEventArgs implements ICurrentMediaPlaybackItemChangedEventArgs, ICurrentMediaPlaybackItemChangedEventArgs2 { - newItem: MediaPlaybackItem; - oldItem: MediaPlaybackItem; - reason: MediaPlaybackItemChangedReason; - - } - export enum FailedMediaStreamKind { - unknown, - audio, - video, - } - export interface IMediaEnginePlaybackSource { - currentItem: MediaPlaybackItem; - setPlaybackSource(source: IMediaPlaybackSource): void; - } - export interface IMediaPlaybackSource { - } - export class MediaBreak implements IMediaBreak { - // constructor(insertionMethod: MediaBreakInsertionMethod); - // constructor(insertionMethod: MediaBreakInsertionMethod, presentationPosition: number); - constructor(insertionMethod: MediaBreakInsertionMethod, presentationPosition: number) {} - - canStart: Boolean; - customProperties: Foundation.Collections.ValueSet; - insertionMethod: MediaBreakInsertionMethod; - playbackList: MediaPlaybackList; - presentationPosition: number | null; - - } - export class MediaBreakEndedEventArgs implements IMediaBreakEndedEventArgs { - mediaBreak: MediaBreak; - - } - export enum MediaBreakInsertionMethod { - interrupt, - replace, - } - export class MediaBreakManager implements IMediaBreakManager { - currentBreak: MediaBreak; - playbackSession: MediaPlaybackSession; - - playBreak(value: MediaBreak): void { - console.warn('shimmed function MediaBreakManager.playBreak'); - } - - skipCurrentBreak(): void { - console.warn('shimmed function MediaBreakManager.skipCurrentBreak'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaBreakManager::addEventListener: ${name}`); - switch (name) { - case "breakended": // Foundation.TypedEventHandler - case "breakskipped": // Foundation.TypedEventHandler - case "breakstarted": // Foundation.TypedEventHandler - case "breaksseekedover": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaBreakSchedule implements IMediaBreakSchedule { - prerollBreak: MediaBreak; - postrollBreak: MediaBreak; - midrollBreaks: MediaBreak[]; - playbackItem: MediaPlaybackItem; - - insertMidrollBreak(mediaBreak: MediaBreak): void { - console.warn('shimmed function MediaBreakSchedule.insertMidrollBreak'); - } - - removeMidrollBreak(mediaBreak: MediaBreak): void { - console.warn('shimmed function MediaBreakSchedule.removeMidrollBreak'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaBreakSchedule::addEventListener: ${name}`); - switch (name) { - case "schedulechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaBreakSeekedOverEventArgs implements IMediaBreakSeekedOverEventArgs { - newPosition: number; - oldPosition: number; - seekedOverBreaks: MediaBreak[]; - - } - export class MediaBreakSkippedEventArgs implements IMediaBreakSkippedEventArgs { - mediaBreak: MediaBreak; - - } - export class MediaBreakStartedEventArgs implements IMediaBreakStartedEventArgs { - mediaBreak: MediaBreak; - - } - export enum MediaCommandEnablingRule { - auto, - always, - never, - } - export class MediaItemDisplayProperties implements IMediaItemDisplayProperties { - type: MediaPlaybackType; - thumbnail: Storage.Streams.RandomAccessStreamReference; - musicProperties: MusicDisplayProperties; - videoProperties: VideoDisplayProperties; - - clearAll(): void { - console.warn('shimmed function MediaItemDisplayProperties.clearAll'); - } - - } - export class MediaPlaybackAudioTrackList implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable, Core.ISingleSelectMediaTrackList { - size: number; - selectedIndex: number; - - getAt(index: number): Core.AudioTrack { - throw new Error('shimmed function MediaPlaybackAudioTrackList.getAt'); - } - - indexOf(value: Core.AudioTrack): { returnValue: Boolean, index: number } { - throw new Error('shimmed function MediaPlaybackAudioTrackList.indexOf'); - } - - getMany(startIndex: number, items: Core.AudioTrack[]): number { - throw new Error('shimmed function MediaPlaybackAudioTrackList.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function MediaPlaybackAudioTrackList.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackAudioTrackList::addEventListener: ${name}`); - switch (name) { - case "selectedindexchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlaybackCommandManager implements IMediaPlaybackCommandManager { - isEnabled: Boolean; - autoRepeatModeBehavior: MediaPlaybackCommandManagerCommandBehavior; - fastForwardBehavior: MediaPlaybackCommandManagerCommandBehavior; - mediaPlayer: MediaPlayer; - nextBehavior: MediaPlaybackCommandManagerCommandBehavior; - pauseBehavior: MediaPlaybackCommandManagerCommandBehavior; - playBehavior: MediaPlaybackCommandManagerCommandBehavior; - positionBehavior: MediaPlaybackCommandManagerCommandBehavior; - previousBehavior: MediaPlaybackCommandManagerCommandBehavior; - rateBehavior: MediaPlaybackCommandManagerCommandBehavior; - rewindBehavior: MediaPlaybackCommandManagerCommandBehavior; - shuffleBehavior: MediaPlaybackCommandManagerCommandBehavior; - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackCommandManager::addEventListener: ${name}`); - switch (name) { - case "autorepeatmodereceived": // Foundation.TypedEventHandler - case "fastforwardreceived": // Foundation.TypedEventHandler - case "nextreceived": // Foundation.TypedEventHandler - case "pausereceived": // Foundation.TypedEventHandler - case "playreceived": // Foundation.TypedEventHandler - case "positionreceived": // Foundation.TypedEventHandler - case "previousreceived": // Foundation.TypedEventHandler - case "ratereceived": // Foundation.TypedEventHandler - case "rewindreceived": // Foundation.TypedEventHandler - case "shufflereceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlaybackCommandManagerAutoRepeatModeReceivedEventArgs implements IMediaPlaybackCommandManagerAutoRepeatModeReceivedEventArgs { - handled: Boolean; - autoRepeatMode: MediaPlaybackAutoRepeatMode; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerAutoRepeatModeReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerCommandBehavior implements IMediaPlaybackCommandManagerCommandBehavior { - enablingRule: MediaCommandEnablingRule; - commandManager: MediaPlaybackCommandManager; - isEnabled: Boolean; - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackCommandManagerCommandBehavior::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlaybackCommandManagerFastForwardReceivedEventArgs implements IMediaPlaybackCommandManagerFastForwardReceivedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerFastForwardReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerNextReceivedEventArgs implements IMediaPlaybackCommandManagerNextReceivedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerNextReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerPauseReceivedEventArgs implements IMediaPlaybackCommandManagerPauseReceivedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerPauseReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerPlayReceivedEventArgs implements IMediaPlaybackCommandManagerPlayReceivedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerPlayReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerPositionReceivedEventArgs implements IMediaPlaybackCommandManagerPositionReceivedEventArgs { - handled: Boolean; - position: number; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerPositionReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerPreviousReceivedEventArgs implements IMediaPlaybackCommandManagerPreviousReceivedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerPreviousReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerRateReceivedEventArgs implements IMediaPlaybackCommandManagerRateReceivedEventArgs { - handled: Boolean; - playbackRate: number; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerRateReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerRewindReceivedEventArgs implements IMediaPlaybackCommandManagerRewindReceivedEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerRewindReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackCommandManagerShuffleReceivedEventArgs implements IMediaPlaybackCommandManagerShuffleReceivedEventArgs { - handled: Boolean; - isShuffleRequested: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaPlaybackCommandManagerShuffleReceivedEventArgs.getDeferral'); - } - - } - export class MediaPlaybackItem implements IMediaPlaybackItem, IMediaPlaybackSource, IMediaPlaybackItem2, IMediaPlaybackItem3 { - // constructor(source: Core.MediaSource, startTime: number); - // constructor(source: Core.MediaSource, startTime: number, durationLimit: number); - // constructor(source: Core.MediaSource); - constructor(source: Core.MediaSource, startTime: number, durationLimit: number) {} - - audioTracks: MediaPlaybackAudioTrackList; - source: Core.MediaSource; - timedMetadataTracks: MediaPlaybackTimedMetadataTrackList; - videoTracks: MediaPlaybackVideoTrackList; - canSkip: Boolean; - breakSchedule: MediaBreakSchedule; - durationLimit: number | null; - startTime: number; - isDisabledInPlaybackList: Boolean; - autoLoadedDisplayProperties: AutoLoadedDisplayPropertyKind; - totalDownloadProgress: number; - - getDisplayProperties(): MediaItemDisplayProperties { - throw new Error('shimmed function MediaPlaybackItem.getDisplayProperties'); - } - - applyDisplayProperties(value: MediaItemDisplayProperties): void { - console.warn('shimmed function MediaPlaybackItem.applyDisplayProperties'); - } - - static findFromMediaSource(source: Core.MediaSource): MediaPlaybackItem { - throw new Error('shimmed function MediaPlaybackItem.findFromMediaSource'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackItem::addEventListener: ${name}`); - switch (name) { - case "audiotrackschanged": // Foundation.TypedEventHandler - case "timedmetadatatrackschanged": // Foundation.TypedEventHandler - case "videotrackschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MediaPlaybackItemChangedReason { - initialItem, - endOfStream, - error, - appRequested, - } - export class MediaPlaybackItemError implements IMediaPlaybackItemError { - errorCode: MediaPlaybackItemErrorCode; - extendedError: number; - - } - export enum MediaPlaybackItemErrorCode { - none, - aborted, - networkError, - decodeError, - sourceNotSupportedError, - encryptionError, - } - export class MediaPlaybackItemFailedEventArgs implements IMediaPlaybackItemFailedEventArgs { - error: MediaPlaybackItemError; - item: MediaPlaybackItem; - - } - export class MediaPlaybackItemOpenedEventArgs implements IMediaPlaybackItemOpenedEventArgs { - item: MediaPlaybackItem; - - } - export class MediaPlaybackList implements IMediaPlaybackList, IMediaPlaybackSource, IMediaPlaybackList2, IMediaPlaybackList3 { - // constructor(); - shuffleEnabled: Boolean = false; - autoRepeatEnabled: Boolean = false; - currentItem: MediaPlaybackItem; - currentItemIndex: number = 4294967295; - items: MediaPlaybackItem[] = [ ]; - startingItem: MediaPlaybackItem; - maxPrefetchTime: number | null; - shuffledItems: MediaPlaybackItem[]; - maxPlayedItemsToKeepOpen: number | null = null; - - moveNext(): MediaPlaybackItem { - throw new Error('shimmed function MediaPlaybackList.moveNext'); - } - - movePrevious(): MediaPlaybackItem { - throw new Error('shimmed function MediaPlaybackList.movePrevious'); - } - - moveTo(itemIndex: number): MediaPlaybackItem { - throw new Error('shimmed function MediaPlaybackList.moveTo'); - } - - setShuffledItems(value: Foundation.Collections.IIterable): void { - console.warn('shimmed function MediaPlaybackList.setShuffledItems'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackList::addEventListener: ${name}`); - switch (name) { - case "currentitemchanged": // Foundation.TypedEventHandler - case "itemfailed": // Foundation.TypedEventHandler - case "itemopened": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlaybackSession implements IMediaPlaybackSession, IMediaPlaybackSession2, IMediaPlaybackSession3 { - stereoscopicVideoPackingMode: MediaProperties.StereoscopicVideoPackingMode; - position: number; - playbackRate: number; - normalizedSourceRect: Foundation.Rect; - bufferingProgress: number; - canPause: Boolean; - canSeek: Boolean; - downloadProgress: number; - isProtected: Boolean; - mediaPlayer: MediaPlayer; - naturalDuration: number; - naturalVideoHeight: number; - naturalVideoWidth: number; - playbackState: MediaPlaybackState; - isMirroring: Boolean; - sphericalVideoProjection: MediaPlaybackSphericalVideoProjection; - playbackRotation: MediaProperties.MediaRotation; - - getBufferedRanges(): MediaTimeRange[] { - throw new Error('shimmed function MediaPlaybackSession.getBufferedRanges'); - } - - getPlayedRanges(): MediaTimeRange[] { - throw new Error('shimmed function MediaPlaybackSession.getPlayedRanges'); - } - - getSeekableRanges(): MediaTimeRange[] { - throw new Error('shimmed function MediaPlaybackSession.getSeekableRanges'); - } - - isSupportedPlaybackRateRange(rate1: number, rate2: number): Boolean { - throw new Error('shimmed function MediaPlaybackSession.isSupportedPlaybackRateRange'); - } - - getOutputDegradationPolicyState(): MediaPlaybackSessionOutputDegradationPolicyState { - throw new Error('shimmed function MediaPlaybackSession.getOutputDegradationPolicyState'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackSession::addEventListener: ${name}`); - switch (name) { - case "bufferingended": // Foundation.TypedEventHandler - case "bufferingprogresschanged": // Foundation.TypedEventHandler - case "bufferingstarted": // Foundation.TypedEventHandler - case "downloadprogresschanged": // Foundation.TypedEventHandler - case "naturaldurationchanged": // Foundation.TypedEventHandler - case "naturalvideosizechanged": // Foundation.TypedEventHandler - case "playbackratechanged": // Foundation.TypedEventHandler - case "playbackstatechanged": // Foundation.TypedEventHandler - case "positionchanged": // Foundation.TypedEventHandler - case "seekcompleted": // Foundation.TypedEventHandler - case "bufferedrangeschanged": // Foundation.TypedEventHandler - case "playedrangeschanged": // Foundation.TypedEventHandler - case "seekablerangeschanged": // Foundation.TypedEventHandler - case "supportedplaybackrateschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlaybackSessionBufferingStartedEventArgs implements IMediaPlaybackSessionBufferingStartedEventArgs { - isPlaybackInterruption: Boolean; - - } - export class MediaPlaybackSessionOutputDegradationPolicyState implements IMediaPlaybackSessionOutputDegradationPolicyState { - videoConstrictionReason: MediaPlaybackSessionVideoConstrictionReason; - - } - export enum MediaPlaybackSessionVideoConstrictionReason { - none, - virtualMachine, - unsupportedDisplayAdapter, - unsignedDriver, - frameServerEnabled, - outputProtectionFailed, - unknown, - } - export class MediaPlaybackSphericalVideoProjection implements IMediaPlaybackSphericalVideoProjection { - viewOrientation: Foundation.Numerics.Quaternion; - projectionMode: SphericalVideoProjectionMode; - isEnabled: Boolean; - horizontalFieldOfViewInDegrees: number; - frameFormat: MediaProperties.SphericalVideoFrameFormat; - - } - export enum MediaPlaybackState { - none, - opening, - buffering, - playing, - paused, - } - export class MediaPlaybackTimedMetadataTrackList implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable, IMediaPlaybackTimedMetadataTrackList { - size: number; - - getAt(index: number): Core.TimedMetadataTrack { - throw new Error('shimmed function MediaPlaybackTimedMetadataTrackList.getAt'); - } - - indexOf(value: Core.TimedMetadataTrack): { returnValue: Boolean, index: number } { - throw new Error('shimmed function MediaPlaybackTimedMetadataTrackList.indexOf'); - } - - getMany(startIndex: number, items: Core.TimedMetadataTrack[]): number { - throw new Error('shimmed function MediaPlaybackTimedMetadataTrackList.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function MediaPlaybackTimedMetadataTrackList.first'); - } - - getPresentationMode(index: number): TimedMetadataTrackPresentationMode { - throw new Error('shimmed function MediaPlaybackTimedMetadataTrackList.getPresentationMode'); - } - - setPresentationMode(index: number, value: TimedMetadataTrackPresentationMode): void { - console.warn('shimmed function MediaPlaybackTimedMetadataTrackList.setPresentationMode'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackTimedMetadataTrackList::addEventListener: ${name}`); - switch (name) { - case "presentationmodechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlaybackVideoTrackList implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable, Core.ISingleSelectMediaTrackList { - size: number; - selectedIndex: number; - - getAt(index: number): Core.VideoTrack { - throw new Error('shimmed function MediaPlaybackVideoTrackList.getAt'); - } - - indexOf(value: Core.VideoTrack): { returnValue: Boolean, index: number } { - throw new Error('shimmed function MediaPlaybackVideoTrackList.indexOf'); - } - - getMany(startIndex: number, items: Core.VideoTrack[]): number { - throw new Error('shimmed function MediaPlaybackVideoTrackList.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function MediaPlaybackVideoTrackList.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlaybackVideoTrackList::addEventListener: ${name}`); - switch (name) { - case "selectedindexchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlayer implements IMediaPlayer, IMediaPlayerSource, IMediaPlayerSource2, IMediaPlayer2, IMediaPlayerEffects, Foundation.IClosable, IMediaPlayer3, IMediaPlayer4, IMediaPlayerEffects2, IMediaPlayer5, IMediaPlayer6, IMediaPlayer7 { - // constructor(); - volume: number = 1; - position: number = 0; - playbackRate: number = 1; - isLoopingEnabled: Boolean = false; - isMuted: Boolean = false; - autoPlay: Boolean = false; - currentState: MediaPlayerState = MediaPlayerState.closed; - naturalDuration: number = 0; - playbackMediaMarkers: PlaybackMediaMarkerSequence = [ ]; - isProtected: Boolean; - bufferingProgress: number = 1; - canPause: Boolean = true; - canSeek: Boolean = true; - audioDeviceType: MediaPlayerAudioDeviceType = MediaPlayerAudioDeviceType.multimedia; - audioCategory: MediaPlayerAudioCategory = MediaPlayerAudioCategory.media; - systemMediaTransportControls: SystemMediaTransportControls = null; - timelineControllerPositionOffset: number = 0; - timelineController: MediaTimelineController; - stereoscopicVideoRenderMode: StereoscopicVideoRenderMode = StereoscopicVideoRenderMode.mono; - realTimePlayback: Boolean = false; - audioDevice: Devices.Enumeration.DeviceInformation; - audioBalance: number = 0; - commandManager: MediaPlaybackCommandManager = null; - breakManager: MediaBreakManager = null; - playbackSession: MediaPlaybackSession = null; - isVideoFrameServerEnabled: Boolean = false; - audioStateMonitor: Audio.AudioStateMonitor = null; - protectionManager: Protection.MediaProtectionManager; - source: IMediaPlaybackSource; - - play(): void { - console.warn('shimmed function MediaPlayer.play'); - } - - pause(): void { - console.warn('shimmed function MediaPlayer.pause'); - } - - setUriSource(value: Foundation.Uri): void { - console.warn('shimmed function MediaPlayer.setUriSource'); - } - - setFileSource(file: Storage.IStorageFile): void { - console.warn('shimmed function MediaPlayer.setFileSource'); - } - - setStreamSource(stream: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function MediaPlayer.setStreamSource'); - } - - setMediaSource(source: Core.IMediaSource): void { - console.warn('shimmed function MediaPlayer.setMediaSource'); - } - - addAudioEffect(activatableClassId: string, effectOptional: Boolean, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaPlayer.addAudioEffect'); - } - - removeAllEffects(): void { - console.warn('shimmed function MediaPlayer.removeAllEffects'); - } - - close(): void { - console.warn('shimmed function MediaPlayer.close'); - } - - stepForwardOneFrame(): void { - console.warn('shimmed function MediaPlayer.stepForwardOneFrame'); - } - - stepBackwardOneFrame(): void { - console.warn('shimmed function MediaPlayer.stepBackwardOneFrame'); - } - - getAsCastingSource(): Casting.CastingSource { - throw new Error('shimmed function MediaPlayer.getAsCastingSource'); - } - - setSurfaceSize(size: Foundation.Size): void { - console.warn('shimmed function MediaPlayer.setSurfaceSize'); - } - - getSurface(compositor: UI.Composition.Compositor): MediaPlayerSurface { - throw new Error('shimmed function MediaPlayer.getSurface'); - } - - addVideoEffect(activatableClassId: string, effectOptional: Boolean, effectConfiguration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaPlayer.addVideoEffect'); - } - - copyFrameToVideoSurface(destination: Graphics.DirectX.Direct3D11.IDirect3DSurface): void { - console.warn('shimmed function MediaPlayer.copyFrameToVideoSurface'); - } - - copyFrameToVideoSurface_1(destination: Graphics.DirectX.Direct3D11.IDirect3DSurface, targetRectangle: Foundation.Rect): void { - console.warn('shimmed function MediaPlayer.copyFrameToVideoSurface_1'); - } - - copyFrameToStereoscopicVideoSurfaces(destinationLeftEye: Graphics.DirectX.Direct3D11.IDirect3DSurface, destinationRightEye: Graphics.DirectX.Direct3D11.IDirect3DSurface): void { - console.warn('shimmed function MediaPlayer.copyFrameToStereoscopicVideoSurfaces'); - } - - renderSubtitlesToSurface(destination: Graphics.DirectX.Direct3D11.IDirect3DSurface): Boolean { - throw new Error('shimmed function MediaPlayer.renderSubtitlesToSurface'); - } - - renderSubtitlesToSurface_1(destination: Graphics.DirectX.Direct3D11.IDirect3DSurface, targetRectangle: Foundation.Rect): Boolean { - throw new Error('shimmed function MediaPlayer.renderSubtitlesToSurface_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlayer::addEventListener: ${name}`); - switch (name) { - case "bufferingended": // Foundation.TypedEventHandler - case "bufferingstarted": // Foundation.TypedEventHandler - case "currentstatechanged": // Foundation.TypedEventHandler - case "mediaended": // Foundation.TypedEventHandler - case "mediafailed": // Foundation.TypedEventHandler - case "mediaopened": // Foundation.TypedEventHandler - case "mediaplayerratechanged": // Foundation.TypedEventHandler - case "playbackmediamarkerreached": // Foundation.TypedEventHandler - case "seekcompleted": // Foundation.TypedEventHandler - case "volumechanged": // Foundation.TypedEventHandler - case "ismutedchanged": // Foundation.TypedEventHandler - case "sourcechanged": // Foundation.TypedEventHandler - case "videoframeavailable": // Foundation.TypedEventHandler - case "subtitleframechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MediaPlayerAudioCategory { - other, - communications = 3, - alerts, - soundEffects, - gameEffects, - gameMedia, - gameChat, - speech, - movie, - media, - } - export enum MediaPlayerAudioDeviceType { - console, - multimedia, - communications, - } - export class MediaPlayerDataReceivedEventArgs implements IMediaPlayerDataReceivedEventArgs { - data: Foundation.Collections.ValueSet; - - } - export enum MediaPlayerError { - unknown, - aborted, - networkError, - decodingError, - sourceNotSupported, - } - export class MediaPlayerFailedEventArgs implements IMediaPlayerFailedEventArgs { - error: MediaPlayerError; - errorMessage: string; - extendedErrorCode: number; - - } - export class MediaPlayerRateChangedEventArgs implements IMediaPlayerRateChangedEventArgs { - newRate: number; - - } - export enum MediaPlayerState { - closed, - opening, - buffering, - playing, - paused, - stopped, - } - export class MediaPlayerSurface implements IMediaPlayerSurface, Foundation.IClosable { - compositionSurface: UI.Composition.ICompositionSurface; - compositor: UI.Composition.Compositor; - mediaPlayer: MediaPlayer; - - close(): void { - console.warn('shimmed function MediaPlayerSurface.close'); - } - - } - export class PlaybackMediaMarker implements IPlaybackMediaMarker { - // constructor(value: number); - // constructor(value: number, mediaMarketType: string, text: string); - constructor(value: number, mediaMarketType: string, text: string) {} - - mediaMarkerType: string; - text: string; - time: number; - - } - export class PlaybackMediaMarkerReachedEventArgs implements IPlaybackMediaMarkerReachedEventArgs { - playbackMediaMarker: PlaybackMediaMarker; - - } - export class PlaybackMediaMarkerSequence implements IPlaybackMediaMarkerSequence, Foundation.Collections.IIterable { - size: number; - - insert(value: PlaybackMediaMarker): void { - console.warn('shimmed function PlaybackMediaMarkerSequence.insert'); - } - - clear(): void { - console.warn('shimmed function PlaybackMediaMarkerSequence.clear'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PlaybackMediaMarkerSequence.first'); - } - - } - export enum SphericalVideoProjectionMode { - spherical, - flat, - } - export enum StereoscopicVideoRenderMode { - mono, - stereo, - } - export class TimedMetadataPresentationModeChangedEventArgs implements ITimedMetadataPresentationModeChangedEventArgs { - newPresentationMode: TimedMetadataTrackPresentationMode; - oldPresentationMode: TimedMetadataTrackPresentationMode; - track: Core.TimedMetadataTrack; - - } - export enum TimedMetadataTrackPresentationMode { - disabled, - hidden, - applicationPresented, - platformPresented, - } - } - export class PlaybackPositionChangeRequestedEventArgs implements IPlaybackPositionChangeRequestedEventArgs { - requestedPlaybackPosition: number; - - } - export class PlaybackRateChangeRequestedEventArgs implements IPlaybackRateChangeRequestedEventArgs { - requestedPlaybackRate: number; - - } - export namespace Playlists { - export class Playlist implements IPlaylist { - // constructor(); - files: Storage.StorageFile[] = [ ]; - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function Playlist.saveAsync'); - } - - saveAsAsync(saveLocation: Storage.IStorageFolder, desiredName: string, option: Storage.NameCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function Playlist.saveAsAsync'); - } - - saveAsAsync_1(saveLocation: Storage.IStorageFolder, desiredName: string, option: Storage.NameCollisionOption, playlistFormat: PlaylistFormat): Foundation.IAsyncOperation { - throw new Error('shimmed function Playlist.saveAsAsync_1'); - } - - static loadAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function Playlist.loadAsync'); - } - - } - export enum PlaylistFormat { - windowsMedia, - zune, - m3u, - } - export interface PlaylistsContract { - } - } - export namespace PlayTo { - export class CurrentTimeChangeRequestedEventArgs implements ICurrentTimeChangeRequestedEventArgs { - time: number; - - } - export class MuteChangeRequestedEventArgs implements IMuteChangeRequestedEventArgs { - mute: Boolean; - - } - export class PlaybackRateChangeRequestedEventArgs implements IPlaybackRateChangeRequestedEventArgs { - rate: number; - - } - export class PlayToConnection implements IPlayToConnection { - state: PlayToConnectionState; - - addEventListener(name: string, handler: Function) { - console.warn(`PlayToConnection::addEventListener: ${name}`); - switch (name) { - case "error": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - case "transferred": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PlayToConnectionError { - none, - deviceNotResponding, - deviceError, - deviceLocked, - protectedPlaybackFailed, - } - export class PlayToConnectionErrorEventArgs implements IPlayToConnectionErrorEventArgs { - code: PlayToConnectionError; - message: string; - - } - export enum PlayToConnectionState { - disconnected, - connected, - rendering, - } - export class PlayToConnectionStateChangedEventArgs implements IPlayToConnectionStateChangedEventArgs { - currentState: PlayToConnectionState; - previousState: PlayToConnectionState; - - } - export class PlayToConnectionTransferredEventArgs implements IPlayToConnectionTransferredEventArgs { - currentSource: PlayToSource; - previousSource: PlayToSource; - - } - export class PlayToManager implements IPlayToManager { - defaultSourceSelection: Boolean; - - static getForCurrentView(): PlayToManager { - throw new Error('shimmed function PlayToManager.getForCurrentView'); - } - - static showPlayToUI(): void { - console.warn('shimmed function PlayToManager.showPlayToUI'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PlayToManager::addEventListener: ${name}`); - switch (name) { - case "sourcerequested": // Foundation.TypedEventHandler - case "sourceselected": // Foundation.TypedEventHandler - break; - } - - } - } - export class PlayToReceiver implements IPlayToReceiver { - // constructor(); - supportsVideo: Boolean = false; - supportsImage: Boolean = false; - supportsAudio: Boolean = false; - friendlyName: string = ''; - properties: Foundation.Collections.IPropertySet = [ ]; - - notifyVolumeChange(volume: number, mute: Boolean): void { - console.warn('shimmed function PlayToReceiver.notifyVolumeChange'); - } - - notifyRateChange(rate: number): void { - console.warn('shimmed function PlayToReceiver.notifyRateChange'); - } - - notifyLoadedMetadata(): void { - console.warn('shimmed function PlayToReceiver.notifyLoadedMetadata'); - } - - notifyTimeUpdate(currentTime: number): void { - console.warn('shimmed function PlayToReceiver.notifyTimeUpdate'); - } - - notifyDurationChange(duration: number): void { - console.warn('shimmed function PlayToReceiver.notifyDurationChange'); - } - - notifySeeking(): void { - console.warn('shimmed function PlayToReceiver.notifySeeking'); - } - - notifySeeked(): void { - console.warn('shimmed function PlayToReceiver.notifySeeked'); - } - - notifyPaused(): void { - console.warn('shimmed function PlayToReceiver.notifyPaused'); - } - - notifyPlaying(): void { - console.warn('shimmed function PlayToReceiver.notifyPlaying'); - } - - notifyEnded(): void { - console.warn('shimmed function PlayToReceiver.notifyEnded'); - } - - notifyError(): void { - console.warn('shimmed function PlayToReceiver.notifyError'); - } - - notifyStopped(): void { - console.warn('shimmed function PlayToReceiver.notifyStopped'); - } - - startAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayToReceiver.startAsync'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayToReceiver.stopAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PlayToReceiver::addEventListener: ${name}`); - switch (name) { - case "currenttimechangerequested": // Foundation.TypedEventHandler - case "mutechangerequested": // Foundation.TypedEventHandler - case "pauserequested": // Foundation.TypedEventHandler - case "playrequested": // Foundation.TypedEventHandler - case "playbackratechangerequested": // Foundation.TypedEventHandler - case "sourcechangerequested": // Foundation.TypedEventHandler - case "stoprequested": // Foundation.TypedEventHandler - case "timeupdaterequested": // Foundation.TypedEventHandler - case "volumechangerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PlayToSource implements IPlayToSource, IPlayToSourceWithPreferredSourceUri { - next: PlayToSource; - connection: PlayToConnection; - preferredSourceUri: Foundation.Uri; - - playNext(): void { - console.warn('shimmed function PlayToSource.playNext'); - } - - } - export class PlayToSourceDeferral implements IPlayToSourceDeferral { - complete(): void { - console.warn('shimmed function PlayToSourceDeferral.complete'); - } - - } - export class PlayToSourceRequest implements IPlayToSourceRequest { - deadline: Date; - - displayErrorString(errorString: string): void { - console.warn('shimmed function PlayToSourceRequest.displayErrorString'); - } - - getDeferral(): PlayToSourceDeferral { - throw new Error('shimmed function PlayToSourceRequest.getDeferral'); - } - - setSource(value: PlayToSource): void { - console.warn('shimmed function PlayToSourceRequest.setSource'); - } - - } - export class PlayToSourceRequestedEventArgs implements IPlayToSourceRequestedEventArgs { - sourceRequest: PlayToSourceRequest; - - } - export class PlayToSourceSelectedEventArgs implements IPlayToSourceSelectedEventArgs { - friendlyName: string; - icon: Storage.Streams.IRandomAccessStreamWithContentType; - supportsAudio: Boolean; - supportsImage: Boolean; - supportsVideo: Boolean; - - } - export class SourceChangeRequestedEventArgs implements ISourceChangeRequestedEventArgs { - album: string; - author: string; - date: Date | null; - description: string; - genre: string; - properties: string[]; - rating: number | null; - stream: Storage.Streams.IRandomAccessStreamWithContentType; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - title: string; - - } - export class VolumeChangeRequestedEventArgs implements IVolumeChangeRequestedEventArgs { - volume: number; - - } - } - export namespace Protection { - export class ComponentLoadFailedEventArgs implements IComponentLoadFailedEventArgs { - completion: MediaProtectionServiceCompletion; - information: RevocationAndRenewalInformation; - - } - export type ComponentLoadFailedEventHandler = (e: ComponentLoadFailedEventArgs) => void; - export class ComponentRenewal { - static renewSystemComponentsAsync(information: RevocationAndRenewalInformation): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function ComponentRenewal.renewSystemComponentsAsync'); - } - - } - export enum GraphicsTrustStatus { - trustNotRequired, - trustEstablished, - environmentNotSupported, - driverNotSupported, - driverSigningFailure, - unknownFailure, - } - export enum HdcpProtection { - off, - on, - onWithTypeEnforcement, - } - export class HdcpSession implements IHdcpSession, Foundation.IClosable { - // constructor(); - isEffectiveProtectionAtLeast(protection: HdcpProtection): Boolean { - throw new Error('shimmed function HdcpSession.isEffectiveProtectionAtLeast'); - } - - getEffectiveProtection(): HdcpProtection | null { - throw new Error('shimmed function HdcpSession.getEffectiveProtection'); - } - - setDesiredMinProtectionAsync(protection: HdcpProtection): Foundation.IAsyncOperation { - throw new Error('shimmed function HdcpSession.setDesiredMinProtectionAsync'); - } - - close(): void { - console.warn('shimmed function HdcpSession.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HdcpSession::addEventListener: ${name}`); - switch (name) { - case "protectionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum HdcpSetProtectionResult { - success, - timedOut, - notSupported, - unknownFailure, - } - export interface IMediaProtectionServiceRequest { - protectionSystem: string; - type: string; - } - export class MediaProtectionManager implements IMediaProtectionManager { - // constructor(); - properties: Foundation.Collections.IPropertySet = [ ]; - - addEventListener(name: string, handler: Function) { - console.warn(`MediaProtectionManager::addEventListener: ${name}`); - switch (name) { - case "componentloadfailed": // ComponentLoadFailedEventHandler - case "rebootneeded": // RebootNeededEventHandler - case "servicerequested": // ServiceRequestedEventHandler - break; - } - - } - } - export class MediaProtectionPMPServer implements IMediaProtectionPMPServer { - // constructor(pProperties: Foundation.Collections.IPropertySet); - constructor(pProperties: Foundation.Collections.IPropertySet) {} - - properties: Foundation.Collections.IPropertySet; - - } - export class MediaProtectionServiceCompletion implements IMediaProtectionServiceCompletion { - complete(success: Boolean): void { - console.warn('shimmed function MediaProtectionServiceCompletion.complete'); - } - - } - export namespace PlayReady { - export interface INDClosedCaptionDataReceivedEventArgs { - closedCaptionData: number[]; - closedCaptionDataFormat: NDClosedCaptionFormat; - presentationTimestamp: number; - } - export interface INDCustomData { - customData: number[]; - customDataTypeID: number[]; - } - export interface INDDownloadEngine { - bufferFullMaxThresholdInSamples: number; - bufferFullMinThresholdInSamples: number; - canSeek: Boolean; - notifier: NDDownloadEngineNotifier; - open(uri: Foundation.Uri, sessionIDBytes: number[]): void; - pause(): void; - resume(): void; - close(): void; - seek(startPosition: number): void; - } - export interface INDDownloadEngineNotifier { - onStreamOpened(): void; - onPlayReadyObjectReceived(dataBytes: number[]): void; - onContentIDReceived(licenseFetchDescriptor: INDLicenseFetchDescriptor): void; - onDataReceived(dataBytes: number[], bytesReceived: number): void; - onEndOfStream(): void; - onNetworkError(): void; - } - export interface INDLicenseFetchCompletedEventArgs { - responseCustomData: INDCustomData; - } - export interface INDLicenseFetchDescriptor { - contentID: number[]; - contentIDType: NDContentIDType; - licenseFetchChallengeCustomData: INDCustomData; - } - export interface INDLicenseFetchResult { - responseCustomData: INDCustomData; - } - export interface INDMessenger { - sendRegistrationRequestAsync(sessionIDBytes: number[], challengeDataBytes: number[]): Foundation.IAsyncOperation; - sendProximityDetectionStartAsync(pdType: NDProximityDetectionType, transmitterChannelBytes: number[], sessionIDBytes: number[], challengeDataBytes: number[]): Foundation.IAsyncOperation; - sendProximityDetectionResponseAsync(pdType: NDProximityDetectionType, transmitterChannelBytes: number[], sessionIDBytes: number[], responseDataBytes: number[]): Foundation.IAsyncOperation; - sendLicenseFetchRequestAsync(sessionIDBytes: number[], challengeDataBytes: number[]): Foundation.IAsyncOperation; - } - export interface INDProximityDetectionCompletedEventArgs { - proximityDetectionRetryCount: number; - } - export interface INDRegistrationCompletedEventArgs { - responseCustomData: INDCustomData; - transmitterCertificateAccepted: Boolean; - transmitterProperties: INDTransmitterProperties; - } - export interface INDSendResult { - response: number[]; - } - export interface INDStartResult { - mediaStreamSource: Core.MediaStreamSource; - } - export interface INDStorageFileHelper { - getFileURLs(file: Storage.IStorageFile): string[]; - } - export interface INDStreamParser { - notifier: NDStreamParserNotifier; - parseData(dataBytes: number[]): void; - getStreamInformation(descriptor: Core.IMediaStreamDescriptor): { returnValue: number, streamType: NDMediaStreamType }; - beginOfStream(): void; - endOfStream(): void; - } - export interface INDStreamParserNotifier { - onContentIDReceived(licenseFetchDescriptor: INDLicenseFetchDescriptor): void; - onMediaStreamDescriptorCreated(audioStreamDescriptors: Core.AudioStreamDescriptor[], videoStreamDescriptors: Core.VideoStreamDescriptor[]): void; - onSampleParsed(streamID: number, streamType: NDMediaStreamType, streamSample: Core.MediaStreamSample, pts: number, ccFormat: NDClosedCaptionFormat, ccDataBytes: number[]): void; - onBeginSetupDecryptor(descriptor: Core.IMediaStreamDescriptor, keyID: string, proBytes: number[]): void; - } - export interface INDTransmitterProperties { - certificateType: NDCertificateType; - clientID: number[]; - expirationDate: Date; - modelDigest: number[]; - modelManufacturerName: string; - modelName: string; - modelNumber: string; - platformIdentifier: NDCertificatePlatformID; - securityLevel: number; - securityVersion: number; - supportedFeatures: NDCertificateFeature[]; - } - export interface IPlayReadyDomain { - accountId: string; - domainJoinUrl: Foundation.Uri; - friendlyName: string; - revision: number; - serviceId: string; - } - export interface IPlayReadyLicense { - chainDepth: number; - domainAccountID: string; - expirationDate: Date | null; - expireAfterFirstPlay: number; - fullyEvaluated: Boolean; - usableForPlay: Boolean; - getKIDAtChainDepth(chainDepth: number): string; - } - export interface IPlayReadyLicenseAcquisitionServiceRequest extends IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - contentHeader: PlayReadyContentHeader; - domainServiceId: string; - } - export interface IPlayReadyLicenseSession { - createLAServiceRequest(): IPlayReadyLicenseAcquisitionServiceRequest; - configureMediaProtectionManager(mpm: MediaProtectionManager): void; - } - export interface IPlayReadyLicenseSession2 extends IPlayReadyLicenseSession { - createLicenseIterable(contentHeader: PlayReadyContentHeader, fullyEvaluated: Boolean): PlayReadyLicenseIterable; - } - export interface IPlayReadySecureStopServiceRequest extends IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - publisherCertificate: number[]; - sessionID: string; - startTime: Date; - stopped: Boolean; - updateTime: Date; - } - export interface IPlayReadyServiceRequest extends IMediaProtectionServiceRequest { - challengeCustomData: string; - responseCustomData: string; - uri: Foundation.Uri; - beginServiceRequest(): Foundation.IAsyncAction; - nextServiceRequest(): IPlayReadyServiceRequest; - generateManualEnablingChallenge(): PlayReadySoapMessage; - processManualEnablingResponse(responseBytes: number[]): number; - } - export enum NDCertificateFeature { - transmitter = 1, - receiver, - sharedCertificate, - secureClock, - antiRollBackClock, - crls = 9, - playReady3Features = 13, - } - export enum NDCertificatePlatformID { - windows, - osx, - windowsOnARM, - windowsMobile7 = 5, - iOSOnARM, - xboxOnPPC, - windowsPhone8OnARM, - windowsPhone8OnX86, - xboxOne, - androidOnARM, - windowsPhone81OnARM, - windowsPhone81OnX86, - } - export enum NDCertificateType { - unknown, - pc, - device, - domain, - issuer, - crlSigner, - service, - silverlight, - application, - metering, - keyFileSigner, - server, - licenseSigner, - } - export class NDClient implements INDClient { - // constructor(downloadEngine: INDDownloadEngine, streamParser: INDStreamParser, pMessenger: INDMessenger); - constructor(downloadEngine: INDDownloadEngine, streamParser: INDStreamParser, pMessenger: INDMessenger) {} - - startAsync(contentUrl: Foundation.Uri, startAsyncOptions: number, registrationCustomData: INDCustomData, licenseFetchDescriptor: INDLicenseFetchDescriptor): Foundation.IAsyncOperation { - throw new Error('shimmed function NDClient.startAsync'); - } - - licenseFetchAsync(licenseFetchDescriptor: INDLicenseFetchDescriptor): Foundation.IAsyncOperation { - throw new Error('shimmed function NDClient.licenseFetchAsync'); - } - - reRegistrationAsync(registrationCustomData: INDCustomData): Foundation.IAsyncAction { - throw new Error('shimmed function NDClient.reRegistrationAsync'); - } - - close(): void { - console.warn('shimmed function NDClient.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NDClient::addEventListener: ${name}`); - switch (name) { - case "closedcaptiondatareceived": // Foundation.TypedEventHandler - case "licensefetchcompleted": // Foundation.TypedEventHandler - case "proximitydetectioncompleted": // Foundation.TypedEventHandler - case "reregistrationneeded": // Foundation.TypedEventHandler - case "registrationcompleted": // Foundation.TypedEventHandler - break; - } - - } - } - export enum NDClosedCaptionFormat { - atsc, - scte20, - unknown, - } - export enum NDContentIDType { - keyID = 1, - playReadyObject, - custom, - } - export class NDCustomData implements INDCustomData { - // constructor(customDataTypeIDBytes: number[], customDataBytes: number[]); - constructor(customDataTypeIDBytes: number[], customDataBytes: number[]) {} - - customData: number[]; - customDataTypeID: number[]; - - } - export class NDDownloadEngineNotifier implements INDDownloadEngineNotifier { - // constructor(); - onStreamOpened(): void { - console.warn('shimmed function NDDownloadEngineNotifier.onStreamOpened'); - } - - onPlayReadyObjectReceived(dataBytes: number[]): void { - console.warn('shimmed function NDDownloadEngineNotifier.onPlayReadyObjectReceived'); - } - - onContentIDReceived(licenseFetchDescriptor: INDLicenseFetchDescriptor): void { - console.warn('shimmed function NDDownloadEngineNotifier.onContentIDReceived'); - } - - onDataReceived(dataBytes: number[], bytesReceived: number): void { - console.warn('shimmed function NDDownloadEngineNotifier.onDataReceived'); - } - - onEndOfStream(): void { - console.warn('shimmed function NDDownloadEngineNotifier.onEndOfStream'); - } - - onNetworkError(): void { - console.warn('shimmed function NDDownloadEngineNotifier.onNetworkError'); - } - - } - export class NDLicenseFetchDescriptor implements INDLicenseFetchDescriptor { - // constructor(contentIDType: NDContentIDType, contentIDBytes: number[], licenseFetchChallengeCustomData: INDCustomData); - constructor(contentIDType: NDContentIDType, contentIDBytes: number[], licenseFetchChallengeCustomData: INDCustomData) {} - - licenseFetchChallengeCustomData: INDCustomData; - contentID: number[]; - contentIDType: NDContentIDType; - - } - export enum NDMediaStreamType { - audio = 1, - video, - } - export enum NDProximityDetectionType { - udp = 1, - tcp, - transportAgnostic = 4, - } - export enum NDStartAsyncOptions { - mutualAuthentication = 1, - waitForLicenseDescriptor, - } - export class NDStorageFileHelper implements INDStorageFileHelper { - // constructor(); - getFileURLs(file: Storage.IStorageFile): string[] { - throw new Error('shimmed function NDStorageFileHelper.getFileURLs'); - } - - } - export class NDStreamParserNotifier implements INDStreamParserNotifier { - // constructor(); - onContentIDReceived(licenseFetchDescriptor: INDLicenseFetchDescriptor): void { - console.warn('shimmed function NDStreamParserNotifier.onContentIDReceived'); - } - - onMediaStreamDescriptorCreated(audioStreamDescriptors: Core.AudioStreamDescriptor[], videoStreamDescriptors: Core.VideoStreamDescriptor[]): void { - console.warn('shimmed function NDStreamParserNotifier.onMediaStreamDescriptorCreated'); - } - - onSampleParsed(streamID: number, streamType: NDMediaStreamType, streamSample: Core.MediaStreamSample, pts: number, ccFormat: NDClosedCaptionFormat, ccDataBytes: number[]): void { - console.warn('shimmed function NDStreamParserNotifier.onSampleParsed'); - } - - onBeginSetupDecryptor(descriptor: Core.IMediaStreamDescriptor, keyID: string, proBytes: number[]): void { - console.warn('shimmed function NDStreamParserNotifier.onBeginSetupDecryptor'); - } - - } - export class NDTCPMessenger implements INDMessenger { - // constructor(remoteHostName: string, remoteHostPort: number); - constructor(remoteHostName: string, remoteHostPort: number) {} - - sendRegistrationRequestAsync(sessionIDBytes: number[], challengeDataBytes: number[]): Foundation.IAsyncOperation { - throw new Error('shimmed function NDTCPMessenger.sendRegistrationRequestAsync'); - } - - sendProximityDetectionStartAsync(pdType: NDProximityDetectionType, transmitterChannelBytes: number[], sessionIDBytes: number[], challengeDataBytes: number[]): Foundation.IAsyncOperation { - throw new Error('shimmed function NDTCPMessenger.sendProximityDetectionStartAsync'); - } - - sendProximityDetectionResponseAsync(pdType: NDProximityDetectionType, transmitterChannelBytes: number[], sessionIDBytes: number[], responseDataBytes: number[]): Foundation.IAsyncOperation { - throw new Error('shimmed function NDTCPMessenger.sendProximityDetectionResponseAsync'); - } - - sendLicenseFetchRequestAsync(sessionIDBytes: number[], challengeDataBytes: number[]): Foundation.IAsyncOperation { - throw new Error('shimmed function NDTCPMessenger.sendLicenseFetchRequestAsync'); - } - - } - export class PlayReadyContentHeader implements IPlayReadyContentHeader, IPlayReadyContentHeader2 { - // constructor(dwFlags: number, contentKeyIds: string[], contentKeyIdStrings: string[], contentEncryptionAlgorithm: PlayReadyEncryptionAlgorithm, licenseAcquisitionUrl: Foundation.Uri, licenseAcquisitionUserInterfaceUrl: Foundation.Uri, customAttributes: string, domainServiceId: string); - // constructor(headerBytes: number[], licenseAcquisitionUrl: Foundation.Uri, licenseAcquisitionUserInterfaceUrl: Foundation.Uri, customAttributes: string, domainServiceId: string); - // constructor(contentKeyId: string, contentKeyIdString: string, contentEncryptionAlgorithm: PlayReadyEncryptionAlgorithm, licenseAcquisitionUrl: Foundation.Uri, licenseAcquisitionUserInterfaceUrl: Foundation.Uri, customAttributes: string, domainServiceId: string); - // constructor(headerBytes: number[]); - constructor(dwFlags: number, contentKeyIds: string[], contentKeyIdStrings: string[], contentEncryptionAlgorithm: PlayReadyEncryptionAlgorithm, licenseAcquisitionUrl: Foundation.Uri, licenseAcquisitionUserInterfaceUrl: Foundation.Uri, customAttributes: string, domainServiceId: string, headerBytes: number[], contentKeyId: string, contentKeyIdString: string) {} - - customAttributes: string; - decryptorSetup: PlayReadyDecryptorSetup; - domainServiceId: string; - encryptionType: PlayReadyEncryptionAlgorithm; - headerWithEmbeddedUpdates: PlayReadyContentHeader; - keyId: string; - keyIdString: string; - licenseAcquisitionUrl: Foundation.Uri; - licenseAcquisitionUserInterfaceUrl: Foundation.Uri; - keyIdStrings: string[]; - keyIds: string[]; - - getSerializedHeader(): number[] { - throw new Error('shimmed function PlayReadyContentHeader.getSerializedHeader'); - } - - } - export class PlayReadyContentResolver { - static serviceRequest(contentHeader: PlayReadyContentHeader): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadyContentResolver.serviceRequest'); - } - - } - export enum PlayReadyDecryptorSetup { - uninitialized, - onDemand, - } - export class PlayReadyDomain implements IPlayReadyDomain { - accountId: string; - domainJoinUrl: Foundation.Uri; - friendlyName: string; - revision: number; - serviceId: string; - - } - export class PlayReadyDomainIterable implements Foundation.Collections.IIterable { - // constructor(domainAccountId: string); - constructor(domainAccountId: string) {} - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PlayReadyDomainIterable.first'); - } - - } - export class PlayReadyDomainIterator implements Foundation.Collections.IIterator { - current: IPlayReadyDomain; - hasCurrent: Boolean; - - moveNext(): Boolean { - throw new Error('shimmed function PlayReadyDomainIterator.moveNext'); - } - - getMany(items: IPlayReadyDomain[]): number { - throw new Error('shimmed function PlayReadyDomainIterator.getMany'); - } - - } - export class PlayReadyDomainJoinServiceRequest implements IPlayReadyDomainJoinServiceRequest, IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - // constructor(); - protectionSystem: string; - type: string; - domainServiceId: string; - domainFriendlyName: string; - domainAccountId: string; - uri: Foundation.Uri; - challengeCustomData: string; - responseCustomData: string; - - beginServiceRequest(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadyDomainJoinServiceRequest.beginServiceRequest'); - } - - nextServiceRequest(): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadyDomainJoinServiceRequest.nextServiceRequest'); - } - - generateManualEnablingChallenge(): PlayReadySoapMessage { - throw new Error('shimmed function PlayReadyDomainJoinServiceRequest.generateManualEnablingChallenge'); - } - - processManualEnablingResponse(responseBytes: number[]): number { - throw new Error('shimmed function PlayReadyDomainJoinServiceRequest.processManualEnablingResponse'); - } - - } - export class PlayReadyDomainLeaveServiceRequest implements IPlayReadyDomainLeaveServiceRequest, IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - // constructor(); - protectionSystem: string; - type: string; - domainServiceId: string; - domainAccountId: string; - uri: Foundation.Uri; - challengeCustomData: string; - responseCustomData: string; - - beginServiceRequest(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadyDomainLeaveServiceRequest.beginServiceRequest'); - } - - nextServiceRequest(): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadyDomainLeaveServiceRequest.nextServiceRequest'); - } - - generateManualEnablingChallenge(): PlayReadySoapMessage { - throw new Error('shimmed function PlayReadyDomainLeaveServiceRequest.generateManualEnablingChallenge'); - } - - processManualEnablingResponse(responseBytes: number[]): number { - throw new Error('shimmed function PlayReadyDomainLeaveServiceRequest.processManualEnablingResponse'); - } - - } - export enum PlayReadyEncryptionAlgorithm { - unprotected, - aes128Ctr, - cocktail = 4, - aes128Cbc, - unspecified = 65535, - uninitialized = 2147483647, - } - export enum PlayReadyHardwareDRMFeatures { - hardwareDRM = 1, - hevc, - aes128Cbc, - } - export class PlayReadyIndividualizationServiceRequest implements IPlayReadyIndividualizationServiceRequest, IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - // constructor(); - protectionSystem: string = 'f4637010-03c3-42cd-b932-b48adf3a6a54'; - type: string = 'c6b344bd-6017-4199-8474-694ac3ec0b3f'; - uri: Foundation.Uri; - challengeCustomData: string = ''; - responseCustomData: string = ''; - - beginServiceRequest(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadyIndividualizationServiceRequest.beginServiceRequest'); - } - - nextServiceRequest(): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadyIndividualizationServiceRequest.nextServiceRequest'); - } - - generateManualEnablingChallenge(): PlayReadySoapMessage { - throw new Error('shimmed function PlayReadyIndividualizationServiceRequest.generateManualEnablingChallenge'); - } - - processManualEnablingResponse(responseBytes: number[]): number { - throw new Error('shimmed function PlayReadyIndividualizationServiceRequest.processManualEnablingResponse'); - } - - } - export enum PlayReadyITADataFormat { - serializedProperties, - serializedProperties_WithContentProtectionWrapper, - } - export class PlayReadyITADataGenerator implements IPlayReadyITADataGenerator { - // constructor(); - generateData(guidCPSystemId: string, countOfStreams: number, configuration: Foundation.Collections.IPropertySet, format: PlayReadyITADataFormat): number[] { - throw new Error('shimmed function PlayReadyITADataGenerator.generateData'); - } - - } - export class PlayReadyLicense implements IPlayReadyLicense, IPlayReadyLicense2 { - chainDepth: number; - domainAccountID: string; - expirationDate: Date | null; - expireAfterFirstPlay: number; - fullyEvaluated: Boolean; - usableForPlay: Boolean; - expiresInRealTime: Boolean; - inMemoryOnly: Boolean; - secureStopId: string; - securityLevel: number; - - getKIDAtChainDepth(chainDepth: number): string { - throw new Error('shimmed function PlayReadyLicense.getKIDAtChainDepth'); - } - - } - export class PlayReadyLicenseAcquisitionServiceRequest implements IPlayReadyLicenseAcquisitionServiceRequest, IPlayReadyServiceRequest, IMediaProtectionServiceRequest, IPlayReadyLicenseAcquisitionServiceRequest2, IPlayReadyLicenseAcquisitionServiceRequest3 { - // constructor(); - protectionSystem: string; - type: string; - domainServiceId: string; - contentHeader: PlayReadyContentHeader; - sessionId: string; - uri: Foundation.Uri; - challengeCustomData: string; - responseCustomData: string; - - beginServiceRequest(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadyLicenseAcquisitionServiceRequest.beginServiceRequest'); - } - - nextServiceRequest(): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadyLicenseAcquisitionServiceRequest.nextServiceRequest'); - } - - generateManualEnablingChallenge(): PlayReadySoapMessage { - throw new Error('shimmed function PlayReadyLicenseAcquisitionServiceRequest.generateManualEnablingChallenge'); - } - - processManualEnablingResponse(responseBytes: number[]): number { - throw new Error('shimmed function PlayReadyLicenseAcquisitionServiceRequest.processManualEnablingResponse'); - } - - createLicenseIterable(contentHeader: PlayReadyContentHeader, fullyEvaluated: Boolean): PlayReadyLicenseIterable { - throw new Error('shimmed function PlayReadyLicenseAcquisitionServiceRequest.createLicenseIterable'); - } - - } - export class PlayReadyLicenseIterable implements Foundation.Collections.IIterable { - // constructor(); - // constructor(contentHeader: PlayReadyContentHeader, fullyEvaluated: Boolean); - constructor(contentHeader: PlayReadyContentHeader, fullyEvaluated: Boolean) {} - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PlayReadyLicenseIterable.first'); - } - - } - export class PlayReadyLicenseIterator implements Foundation.Collections.IIterator { - current: IPlayReadyLicense; - hasCurrent: Boolean; - - moveNext(): Boolean { - throw new Error('shimmed function PlayReadyLicenseIterator.moveNext'); - } - - getMany(items: IPlayReadyLicense[]): number { - throw new Error('shimmed function PlayReadyLicenseIterator.getMany'); - } - - } - export class PlayReadyLicenseManagement { - static deleteLicenses(contentHeader: PlayReadyContentHeader): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadyLicenseManagement.deleteLicenses'); - } - - } - export class PlayReadyLicenseSession implements IPlayReadyLicenseSession, IPlayReadyLicenseSession2 { - // constructor(configuration: Foundation.Collections.IPropertySet); - constructor(configuration: Foundation.Collections.IPropertySet) {} - - createLAServiceRequest(): IPlayReadyLicenseAcquisitionServiceRequest { - throw new Error('shimmed function PlayReadyLicenseSession.createLAServiceRequest'); - } - - configureMediaProtectionManager(mpm: MediaProtectionManager): void { - console.warn('shimmed function PlayReadyLicenseSession.configureMediaProtectionManager'); - } - - createLicenseIterable(contentHeader: PlayReadyContentHeader, fullyEvaluated: Boolean): PlayReadyLicenseIterable { - throw new Error('shimmed function PlayReadyLicenseSession.createLicenseIterable'); - } - - } - export class PlayReadyMeteringReportServiceRequest implements IPlayReadyMeteringReportServiceRequest, IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - // constructor(); - protectionSystem: string; - type: string; - meteringCertificate: number[]; - uri: Foundation.Uri; - challengeCustomData: string; - responseCustomData: string; - - beginServiceRequest(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadyMeteringReportServiceRequest.beginServiceRequest'); - } - - nextServiceRequest(): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadyMeteringReportServiceRequest.nextServiceRequest'); - } - - generateManualEnablingChallenge(): PlayReadySoapMessage { - throw new Error('shimmed function PlayReadyMeteringReportServiceRequest.generateManualEnablingChallenge'); - } - - processManualEnablingResponse(responseBytes: number[]): number { - throw new Error('shimmed function PlayReadyMeteringReportServiceRequest.processManualEnablingResponse'); - } - - } - export class PlayReadyRevocationServiceRequest implements IPlayReadyRevocationServiceRequest, IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - // constructor(); - protectionSystem: string; - type: string; - uri: Foundation.Uri; - challengeCustomData: string; - responseCustomData: string; - - beginServiceRequest(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadyRevocationServiceRequest.beginServiceRequest'); - } - - nextServiceRequest(): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadyRevocationServiceRequest.nextServiceRequest'); - } - - generateManualEnablingChallenge(): PlayReadySoapMessage { - throw new Error('shimmed function PlayReadyRevocationServiceRequest.generateManualEnablingChallenge'); - } - - processManualEnablingResponse(responseBytes: number[]): number { - throw new Error('shimmed function PlayReadyRevocationServiceRequest.processManualEnablingResponse'); - } - - } - export class PlayReadySecureStopIterable implements Foundation.Collections.IIterable { - // constructor(publisherCertBytes: number[]); - constructor(publisherCertBytes: number[]) {} - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PlayReadySecureStopIterable.first'); - } - - } - export class PlayReadySecureStopIterator implements Foundation.Collections.IIterator { - current: IPlayReadySecureStopServiceRequest; - hasCurrent: Boolean; - - moveNext(): Boolean { - throw new Error('shimmed function PlayReadySecureStopIterator.moveNext'); - } - - getMany(items: IPlayReadySecureStopServiceRequest[]): number { - throw new Error('shimmed function PlayReadySecureStopIterator.getMany'); - } - - } - export class PlayReadySecureStopServiceRequest implements IPlayReadySecureStopServiceRequest, IPlayReadyServiceRequest, IMediaProtectionServiceRequest { - // constructor(publisherCertBytes: number[]); - // constructor(sessionID: string, publisherCertBytes: number[]); - constructor(publisherCertBytes: number[], sessionID: string) {} - - protectionSystem: string; - type: string; - publisherCertificate: number[]; - sessionID: string; - startTime: Date; - stopped: Boolean; - updateTime: Date; - uri: Foundation.Uri; - challengeCustomData: string; - responseCustomData: string; - - beginServiceRequest(): Foundation.IAsyncAction { - throw new Error('shimmed function PlayReadySecureStopServiceRequest.beginServiceRequest'); - } - - nextServiceRequest(): IPlayReadyServiceRequest { - throw new Error('shimmed function PlayReadySecureStopServiceRequest.nextServiceRequest'); - } - - generateManualEnablingChallenge(): PlayReadySoapMessage { - throw new Error('shimmed function PlayReadySecureStopServiceRequest.generateManualEnablingChallenge'); - } - - processManualEnablingResponse(responseBytes: number[]): number { - throw new Error('shimmed function PlayReadySecureStopServiceRequest.processManualEnablingResponse'); - } - - } - export class PlayReadySoapMessage implements IPlayReadySoapMessage { - messageHeaders: Foundation.Collections.IPropertySet; - uri: Foundation.Uri; - - getMessageBody(): number[] { - throw new Error('shimmed function PlayReadySoapMessage.getMessageBody'); - } - - } - export class PlayReadyStatics { - static domainJoinServiceRequestType: string = 'f5ee04ce-d91e-4eea-b0a8-65b694971ca7'; - static domainLeaveServiceRequestType: string = '04bae2e3-97fd-4ee3-905a-19469307fa1b'; - static individualizationServiceRequestType: string = 'c6b344bd-6017-4199-8474-694ac3ec0b3f'; - static licenseAcquirerServiceRequestType: string = '45945d72-c506-4b4d-bb50-e856d6188d57'; - static mediaProtectionSystemId: string = 'f4637010-03c3-42cd-b932-b48adf3a6a54'; - static meteringReportServiceRequestType: string = '78c0687b-424b-4371-acbc-97d599b3ccad'; - static playReadySecurityVersion: number; - static revocationServiceRequestType: string = 'ed33713b-2455-4e5c-9a84-93fc755e2bfa'; - static playReadyCertificateSecurityLevel: number = 0; - static secureStopServiceRequestType: string = 'b47bbefa-ff5b-4724-81d7-b9e06798c3b5'; - static protectionSystemId: string = '9a04f079-9840-4286-ab92-e65be0885f95'; - static inputTrustAuthorityToCreate: string = 'Windows.Media.Protection.PlayReady.PlayReadyWinRTTrustedInput'; - static hardwareDRMDisabledUntilTime: Date | null; - static hardwareDRMDisabledAtTime: Date | null; - - static resetHardwareDRMDisabled(): void { - console.warn('shimmed function PlayReadyStatics.resetHardwareDRMDisabled'); - } - - static checkSupportedHardware(hwdrmFeature: PlayReadyHardwareDRMFeatures): Boolean { - throw new Error('shimmed function PlayReadyStatics.checkSupportedHardware'); - } - - } - } - export class ProtectionCapabilities implements IProtectionCapabilities { - // constructor(); - isTypeSupported(type: string, keySystem: string): ProtectionCapabilityResult { - throw new Error('shimmed function ProtectionCapabilities.isTypeSupported'); - } - - } - export enum ProtectionCapabilityResult { - notSupported, - maybe, - probably, - } - export interface ProtectionRenewalContract { - } - export type RebootNeededEventHandler = () => void; - export enum RenewalStatus { - notStarted, - updatesInProgress, - userCancelled, - appComponentsMayNeedUpdating, - noComponentsFound, - } - export class RevocationAndRenewalInformation implements IRevocationAndRenewalInformation { - items: RevocationAndRenewalItem[]; - - } - export class RevocationAndRenewalItem implements IRevocationAndRenewalItem { - headerHash: string; - name: string; - publicKeyHash: string; - reasons: RevocationAndRenewalReasons; - renewalId: string; - - } - export enum RevocationAndRenewalReasons { - userModeComponentLoad = 1, - kernelModeComponentLoad, - appComponent = 4, - globalRevocationListLoadFailed = 16, - invalidGlobalRevocationListSignature = 32, - globalRevocationListAbsent = 4096, - componentRevoked = 8192, - invalidComponentCertificateExtendedKeyUse = 16384, - componentCertificateRevoked = 32768, - invalidComponentCertificateRoot = 65536, - componentHighSecurityCertificateRevoked = 131072, - componentLowSecurityCertificateRevoked = 262144, - bootDriverVerificationFailed = 1048576, - componentSignedWithTestCertificate = 16777216, - encryptionFailure = 268435456, - } - export class ServiceRequestedEventArgs implements IServiceRequestedEventArgs, IServiceRequestedEventArgs2 { - completion: MediaProtectionServiceCompletion; - request: IMediaProtectionServiceRequest; - mediaPlaybackItem: Playback.MediaPlaybackItem; - - } - export type ServiceRequestedEventHandler = (e: ServiceRequestedEventArgs) => void; - } - export namespace Render { - export enum AudioRenderCategory { - other, - foregroundOnlyMedia, - backgroundCapableMedia, - communications, - alerts, - soundEffects, - gameEffects, - gameMedia, - gameChat, - speech, - movie, - media, - } - } - export class ShuffleEnabledChangeRequestedEventArgs implements IShuffleEnabledChangeRequestedEventArgs { - requestedShuffleEnabled: Boolean; - - } - export enum SoundLevel { - muted, - low, - full, - } - export namespace SpeechRecognition { - export interface ISpeechRecognitionConstraint { - isEnabled: Boolean; - probability: SpeechRecognitionConstraintProbability; - tag: string; - type: SpeechRecognitionConstraintType; - } - export class SpeechContinuousRecognitionCompletedEventArgs implements ISpeechContinuousRecognitionCompletedEventArgs { - status: SpeechRecognitionResultStatus; - - } - export enum SpeechContinuousRecognitionMode { - default, - pauseOnRecognition, - } - export class SpeechContinuousRecognitionResultGeneratedEventArgs implements ISpeechContinuousRecognitionResultGeneratedEventArgs { - result: SpeechRecognitionResult; - - } - export class SpeechContinuousRecognitionSession implements ISpeechContinuousRecognitionSession { - autoStopSilenceTimeout: number; - - startAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SpeechContinuousRecognitionSession.startAsync'); - } - - startAsync_1(mode: SpeechContinuousRecognitionMode): Foundation.IAsyncAction { - throw new Error('shimmed function SpeechContinuousRecognitionSession.startAsync_1'); - } - - stopAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SpeechContinuousRecognitionSession.stopAsync'); - } - - cancelAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SpeechContinuousRecognitionSession.cancelAsync'); - } - - pauseAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SpeechContinuousRecognitionSession.pauseAsync'); - } - - resume(): void { - console.warn('shimmed function SpeechContinuousRecognitionSession.resume'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpeechContinuousRecognitionSession::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - case "resultgenerated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SpeechRecognitionAudioProblem { - none, - tooNoisy, - noSignal, - tooLoud, - tooQuiet, - tooFast, - tooSlow, - } - export class SpeechRecognitionCompilationResult implements ISpeechRecognitionCompilationResult { - status: SpeechRecognitionResultStatus; - - } - export enum SpeechRecognitionConfidence { - high, - medium, - low, - rejected, - } - export enum SpeechRecognitionConstraintProbability { - default, - min, - max, - } - export enum SpeechRecognitionConstraintType { - topic, - list, - grammar, - voiceCommandDefinition, - } - export class SpeechRecognitionGrammarFileConstraint implements ISpeechRecognitionGrammarFileConstraint, ISpeechRecognitionConstraint { - // constructor(file: Storage.StorageFile); - // constructor(file: Storage.StorageFile, tag: string); - constructor(file: Storage.StorageFile, tag: string) {} - - tag: string; - probability: SpeechRecognitionConstraintProbability; - isEnabled: Boolean; - type: SpeechRecognitionConstraintType; - grammarFile: Storage.StorageFile; - - } - export class SpeechRecognitionHypothesis implements ISpeechRecognitionHypothesis { - text: string; - - } - export class SpeechRecognitionHypothesisGeneratedEventArgs implements ISpeechRecognitionHypothesisGeneratedEventArgs { - hypothesis: SpeechRecognitionHypothesis; - - } - export class SpeechRecognitionListConstraint implements ISpeechRecognitionListConstraint, ISpeechRecognitionConstraint { - // constructor(commands: Foundation.Collections.IIterable); - // constructor(commands: Foundation.Collections.IIterable, tag: string); - constructor(commands: Foundation.Collections.IIterable, tag: string) {} - - tag: string; - probability: SpeechRecognitionConstraintProbability; - isEnabled: Boolean; - type: SpeechRecognitionConstraintType; - commands: string[]; - - } - export class SpeechRecognitionQualityDegradingEventArgs implements ISpeechRecognitionQualityDegradingEventArgs { - problem: SpeechRecognitionAudioProblem; - - } - export class SpeechRecognitionResult implements ISpeechRecognitionResult, ISpeechRecognitionResult2 { - confidence: SpeechRecognitionConfidence; - constraint: ISpeechRecognitionConstraint; - rawConfidence: number; - rulePath: string[]; - semanticInterpretation: SpeechRecognitionSemanticInterpretation; - status: SpeechRecognitionResultStatus; - text: string; - phraseDuration: number; - phraseStartTime: Date; - - getAlternates(maxAlternates: number): SpeechRecognitionResult[] { - throw new Error('shimmed function SpeechRecognitionResult.getAlternates'); - } - - } - export enum SpeechRecognitionResultStatus { - success, - topicLanguageNotSupported, - grammarLanguageMismatch, - grammarCompilationFailure, - audioQualityFailure, - userCanceled, - unknown, - timeoutExceeded, - pauseLimitExceeded, - networkFailure, - microphoneUnavailable, - } - export enum SpeechRecognitionScenario { - webSearch, - dictation, - formFilling, - } - export class SpeechRecognitionSemanticInterpretation implements ISpeechRecognitionSemanticInterpretation { - properties: string[]; - - } - export class SpeechRecognitionTopicConstraint implements ISpeechRecognitionTopicConstraint, ISpeechRecognitionConstraint { - // constructor(scenario: SpeechRecognitionScenario, topicHint: string); - // constructor(scenario: SpeechRecognitionScenario, topicHint: string, tag: string); - constructor(scenario: SpeechRecognitionScenario, topicHint: string, tag: string) {} - - tag: string; - probability: SpeechRecognitionConstraintProbability; - isEnabled: Boolean; - type: SpeechRecognitionConstraintType; - scenario: SpeechRecognitionScenario; - topicHint: string; - - } - export class SpeechRecognitionVoiceCommandDefinitionConstraint implements ISpeechRecognitionVoiceCommandDefinitionConstraint, ISpeechRecognitionConstraint { - tag: string; - probability: SpeechRecognitionConstraintProbability; - isEnabled: Boolean; - type: SpeechRecognitionConstraintType; - - } - export class SpeechRecognizer implements ISpeechRecognizer, Foundation.IClosable, ISpeechRecognizer2 { - // constructor(language: Globalization.Language); - // constructor(); - constructor(language: Globalization.Language) {} - - constraints: ISpeechRecognitionConstraint[] = [ ]; - currentLanguage: Globalization.Language = null; - timeouts: SpeechRecognizerTimeouts = null; - uioptions: SpeechRecognizerUIOptions = null; - continuousRecognitionSession: SpeechContinuousRecognitionSession = null; - state: SpeechRecognizerState = SpeechRecognizerState.idle; - static supportedGrammarLanguages: Globalization.Language[] = [ null ]; - static supportedTopicLanguages: Globalization.Language[] = [ null ]; - static systemSpeechLanguage: Globalization.Language = null; - - compileConstraintsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechRecognizer.compileConstraintsAsync'); - } - - recognizeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechRecognizer.recognizeAsync'); - } - - recognizeWithUIAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechRecognizer.recognizeWithUIAsync'); - } - - close(): void { - console.warn('shimmed function SpeechRecognizer.close'); - } - - stopRecognitionAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function SpeechRecognizer.stopRecognitionAsync'); - } - - static trySetSystemSpeechLanguageAsync(speechLanguage: Globalization.Language): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechRecognizer.trySetSystemSpeechLanguageAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpeechRecognizer::addEventListener: ${name}`); - switch (name) { - case "recognitionqualitydegrading": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - case "hypothesisgenerated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SpeechRecognizerState { - idle, - capturing, - processing, - soundStarted, - soundEnded, - speechDetected, - paused, - } - export class SpeechRecognizerStateChangedEventArgs implements ISpeechRecognizerStateChangedEventArgs { - state: SpeechRecognizerState; - - } - export class SpeechRecognizerTimeouts implements ISpeechRecognizerTimeouts { - initialSilenceTimeout: number; - endSilenceTimeout: number; - babbleTimeout: number; - - } - export class SpeechRecognizerUIOptions implements ISpeechRecognizerUIOptions { - showConfirmation: Boolean; - isReadBackEnabled: Boolean; - exampleText: string; - audiblePrompt: string; - - } - export class VoiceCommandManager { - static installedCommandSets: string[] = [ ]; - - static installCommandSetsFromStorageFileAsync(file: Storage.StorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandManager.installCommandSetsFromStorageFileAsync'); - } - - } - export class VoiceCommandSet implements IVoiceCommandSet { - language: string; - name: string; - - setPhraseListAsync(phraseListName: string, phraseList: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function VoiceCommandSet.setPhraseListAsync'); - } - - } - } - export namespace SpeechSynthesis { - export enum SpeechAppendedSilence { - default, - min, - } - export enum SpeechPunctuationSilence { - default, - min, - } - export class SpeechSynthesisStream implements ISpeechSynthesisStream, Storage.Streams.IRandomAccessStreamWithContentType, Storage.Streams.IRandomAccessStream, Foundation.IClosable, Storage.Streams.IInputStream, Storage.Streams.IOutputStream, Storage.Streams.IContentTypeProvider, Core.ITimedMetadataTrackProvider { - timedMetadataTracks: Core.TimedMetadataTrack[]; - markers: IMediaMarker[]; - contentType: string; - size: number; - canRead: Boolean; - canWrite: Boolean; - position: number; - - getInputStreamAt(position: number): Storage.Streams.IInputStream { - throw new Error('shimmed function SpeechSynthesisStream.getInputStreamAt'); - } - - getOutputStreamAt(position: number): Storage.Streams.IOutputStream { - throw new Error('shimmed function SpeechSynthesisStream.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function SpeechSynthesisStream.seek'); - } - - cloneStream(): Storage.Streams.IRandomAccessStream { - throw new Error('shimmed function SpeechSynthesisStream.cloneStream'); - } - - close(): void { - console.warn('shimmed function SpeechSynthesisStream.close'); - } - - readAsync(buffer: Storage.Streams.IBuffer, count: number, options: Storage.Streams.InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function SpeechSynthesisStream.readAsync'); - } - - writeAsync(buffer: Storage.Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function SpeechSynthesisStream.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechSynthesisStream.flushAsync'); - } - - } - export class SpeechSynthesizer implements ISpeechSynthesizer, Foundation.IClosable, ISpeechSynthesizer2 { - // constructor(); - voice: VoiceInformation = null; - options: SpeechSynthesizerOptions = null; - static allVoices: VoiceInformation[] = [ null, null, null ]; - static defaultVoice: VoiceInformation = null; - - synthesizeTextToStreamAsync(text: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechSynthesizer.synthesizeTextToStreamAsync'); - } - - synthesizeSsmlToStreamAsync(ssml: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechSynthesizer.synthesizeSsmlToStreamAsync'); - } - - close(): void { - console.warn('shimmed function SpeechSynthesizer.close'); - } - - static trySetDefaultVoiceAsync(voice: VoiceInformation): Foundation.IAsyncOperation { - throw new Error('shimmed function SpeechSynthesizer.trySetDefaultVoiceAsync'); - } - - } - export class SpeechSynthesizerOptions implements ISpeechSynthesizerOptions, ISpeechSynthesizerOptions2, ISpeechSynthesizerOptions3 { - includeWordBoundaryMetadata: Boolean; - includeSentenceBoundaryMetadata: Boolean; - speakingRate: number; - audioVolume: number; - audioPitch: number; - punctuationSilence: SpeechPunctuationSilence; - appendedSilence: SpeechAppendedSilence; - - } - export enum VoiceGender { - male, - female, - } - export class VoiceInformation implements IVoiceInformation { - description: string; - displayName: string; - gender: VoiceGender; - id: string; - language: string; - - } - } - export namespace Streaming { - export namespace Adaptive { - export class AdaptiveMediaSource implements IAdaptiveMediaSource, Core.IMediaSource, IAdaptiveMediaSource2, IAdaptiveMediaSource3, Foundation.IClosable { - initialBitrate: number; - inboundBitsPerSecondWindow: number; - desiredMaxBitrate: number | null; - desiredLiveOffset: number; - desiredMinBitrate: number | null; - currentPlaybackBitrate: number; - audioOnlyPlayback: Boolean; - inboundBitsPerSecond: number; - availableBitrates: number[]; - currentDownloadBitrate: number; - isLive: Boolean; - advancedSettings: AdaptiveMediaSourceAdvancedSettings; - desiredSeekableWindowSize: number | null; - diagnostics: AdaptiveMediaSourceDiagnostics; - maxSeekableWindowSize: number | null; - minLiveOffset: number | null; - - getCorrelatedTimes(): AdaptiveMediaSourceCorrelatedTimes { - throw new Error('shimmed function AdaptiveMediaSource.getCorrelatedTimes'); - } - - close(): void { - console.warn('shimmed function AdaptiveMediaSource.close'); - } - - static isContentTypeSupported(contentType: string): Boolean { - throw new Error('shimmed function AdaptiveMediaSource.isContentTypeSupported'); - } - - static createFromUriAsync(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function AdaptiveMediaSource.createFromUriAsync'); - } - - static createFromUriAsync_1(uri: Foundation.Uri, httpClient: Web.Http.HttpClient): Foundation.IAsyncOperation { - throw new Error('shimmed function AdaptiveMediaSource.createFromUriAsync_1'); - } - - static createFromStreamAsync(stream: Storage.Streams.IInputStream, uri: Foundation.Uri, contentType: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AdaptiveMediaSource.createFromStreamAsync'); - } - - static createFromStreamAsync_1(stream: Storage.Streams.IInputStream, uri: Foundation.Uri, contentType: string, httpClient: Web.Http.HttpClient): Foundation.IAsyncOperation { - throw new Error('shimmed function AdaptiveMediaSource.createFromStreamAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AdaptiveMediaSource::addEventListener: ${name}`); - switch (name) { - case "downloadbitratechanged": // Foundation.TypedEventHandler - case "downloadcompleted": // Foundation.TypedEventHandler - case "downloadfailed": // Foundation.TypedEventHandler - case "downloadrequested": // Foundation.TypedEventHandler - case "playbackbitratechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AdaptiveMediaSourceAdvancedSettings implements IAdaptiveMediaSourceAdvancedSettings { - desiredBitrateHeadroomRatio: number | null; - bitrateDowngradeTriggerRatio: number | null; - allSegmentsIndependent: Boolean; - - } - export class AdaptiveMediaSourceCorrelatedTimes implements IAdaptiveMediaSourceCorrelatedTimes { - position: number | null; - presentationTimeStamp: number | null; - programDateTime: Date | null; - - } - export class AdaptiveMediaSourceCreationResult implements IAdaptiveMediaSourceCreationResult, IAdaptiveMediaSourceCreationResult2 { - httpResponseMessage: Web.Http.HttpResponseMessage; - mediaSource: AdaptiveMediaSource; - status: AdaptiveMediaSourceCreationStatus; - extendedError: number; - - } - export enum AdaptiveMediaSourceCreationStatus { - success, - manifestDownloadFailure, - manifestParseFailure, - unsupportedManifestContentType, - unsupportedManifestVersion, - unsupportedManifestProfile, - unknownFailure, - } - export class AdaptiveMediaSourceDiagnosticAvailableEventArgs implements IAdaptiveMediaSourceDiagnosticAvailableEventArgs, IAdaptiveMediaSourceDiagnosticAvailableEventArgs2, IAdaptiveMediaSourceDiagnosticAvailableEventArgs3 { - bitrate: number | null; - diagnosticType: AdaptiveMediaSourceDiagnosticType; - position: number | null; - requestId: number | null; - resourceByteRangeLength: number | null; - resourceByteRangeOffset: number | null; - resourceType: AdaptiveMediaSourceResourceType | null; - resourceUri: Foundation.Uri; - segmentId: number | null; - extendedError: number; - resourceContentType: string; - resourceDuration: number | null; - - } - export class AdaptiveMediaSourceDiagnostics implements IAdaptiveMediaSourceDiagnostics { - addEventListener(name: string, handler: Function) { - console.warn(`AdaptiveMediaSourceDiagnostics::addEventListener: ${name}`); - switch (name) { - case "diagnosticavailable": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AdaptiveMediaSourceDiagnosticType { - manifestUnchangedUponReload, - manifestMismatchUponReload, - manifestSignaledEndOfLiveEventUponReload, - mediaSegmentSkipped, - resourceNotFound, - resourceTimedOut, - resourceParsingError, - bitrateDisabled, - fatalMediaSourceError, - } - export class AdaptiveMediaSourceDownloadBitrateChangedEventArgs implements IAdaptiveMediaSourceDownloadBitrateChangedEventArgs, IAdaptiveMediaSourceDownloadBitrateChangedEventArgs2 { - newValue: number; - oldValue: number; - reason: AdaptiveMediaSourceDownloadBitrateChangedReason; - - } - export enum AdaptiveMediaSourceDownloadBitrateChangedReason { - sufficientInboundBitsPerSecond, - insufficientInboundBitsPerSecond, - lowBufferLevel, - positionChanged, - trackSelectionChanged, - desiredBitratesChanged, - errorInPreviousBitrate, - } - export class AdaptiveMediaSourceDownloadCompletedEventArgs implements IAdaptiveMediaSourceDownloadCompletedEventArgs, IAdaptiveMediaSourceDownloadCompletedEventArgs2, IAdaptiveMediaSourceDownloadCompletedEventArgs3 { - httpResponseMessage: Web.Http.HttpResponseMessage; - resourceByteRangeLength: number | null; - resourceByteRangeOffset: number | null; - resourceType: AdaptiveMediaSourceResourceType; - resourceUri: Foundation.Uri; - position: number | null; - requestId: number; - statistics: AdaptiveMediaSourceDownloadStatistics; - resourceContentType: string; - resourceDuration: number | null; - - } - export class AdaptiveMediaSourceDownloadFailedEventArgs implements IAdaptiveMediaSourceDownloadFailedEventArgs, IAdaptiveMediaSourceDownloadFailedEventArgs2, IAdaptiveMediaSourceDownloadFailedEventArgs3 { - httpResponseMessage: Web.Http.HttpResponseMessage; - resourceByteRangeLength: number | null; - resourceByteRangeOffset: number | null; - resourceType: AdaptiveMediaSourceResourceType; - resourceUri: Foundation.Uri; - extendedError: number; - position: number | null; - requestId: number; - statistics: AdaptiveMediaSourceDownloadStatistics; - resourceContentType: string; - resourceDuration: number | null; - - } - export class AdaptiveMediaSourceDownloadRequestedDeferral implements IAdaptiveMediaSourceDownloadRequestedDeferral { - complete(): void { - console.warn('shimmed function AdaptiveMediaSourceDownloadRequestedDeferral.complete'); - } - - } - export class AdaptiveMediaSourceDownloadRequestedEventArgs implements IAdaptiveMediaSourceDownloadRequestedEventArgs, IAdaptiveMediaSourceDownloadRequestedEventArgs2, IAdaptiveMediaSourceDownloadRequestedEventArgs3 { - resourceByteRangeLength: number | null; - resourceByteRangeOffset: number | null; - resourceType: AdaptiveMediaSourceResourceType; - resourceUri: Foundation.Uri; - result: AdaptiveMediaSourceDownloadResult; - position: number | null; - requestId: number; - resourceContentType: string; - resourceDuration: number | null; - - getDeferral(): AdaptiveMediaSourceDownloadRequestedDeferral { - throw new Error('shimmed function AdaptiveMediaSourceDownloadRequestedEventArgs.getDeferral'); - } - - } - export class AdaptiveMediaSourceDownloadResult implements IAdaptiveMediaSourceDownloadResult, IAdaptiveMediaSourceDownloadResult2 { - resourceUri: Foundation.Uri; - inputStream: Storage.Streams.IInputStream; - extendedStatus: number; - contentType: string; - buffer: Storage.Streams.IBuffer; - resourceByteRangeOffset: number | null; - resourceByteRangeLength: number | null; - - } - export class AdaptiveMediaSourceDownloadStatistics implements IAdaptiveMediaSourceDownloadStatistics { - contentBytesReceivedCount: number; - timeToFirstByteReceived: number | null; - timeToHeadersReceived: number | null; - timeToLastByteReceived: number | null; - - } - export class AdaptiveMediaSourcePlaybackBitrateChangedEventArgs implements IAdaptiveMediaSourcePlaybackBitrateChangedEventArgs { - audioOnly: Boolean; - newValue: number; - oldValue: number; - - } - export enum AdaptiveMediaSourceResourceType { - manifest, - initializationSegment, - mediaSegment, - key, - initializationVector, - mediaSegmentIndex, - } - } - } - export class SystemMediaTransportControls implements ISystemMediaTransportControls, ISystemMediaTransportControls2 { - isPlayEnabled: Boolean; - isPauseEnabled: Boolean; - isNextEnabled: Boolean; - isPreviousEnabled: Boolean; - isEnabled: Boolean; - isChannelDownEnabled: Boolean; - isFastForwardEnabled: Boolean; - isChannelUpEnabled: Boolean; - playbackStatus: MediaPlaybackStatus; - isStopEnabled: Boolean; - isRewindEnabled: Boolean; - isRecordEnabled: Boolean; - displayUpdater: SystemMediaTransportControlsDisplayUpdater; - soundLevel: SoundLevel; - shuffleEnabled: Boolean; - playbackRate: number; - autoRepeatMode: MediaPlaybackAutoRepeatMode; - - updateTimelineProperties(timelineProperties: SystemMediaTransportControlsTimelineProperties): void { - console.warn('shimmed function SystemMediaTransportControls.updateTimelineProperties'); - } - - static getForCurrentView(): SystemMediaTransportControls { - throw new Error('shimmed function SystemMediaTransportControls.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SystemMediaTransportControls::addEventListener: ${name}`); - switch (name) { - case "buttonpressed": // Foundation.TypedEventHandler - case "propertychanged": // Foundation.TypedEventHandler - case "autorepeatmodechangerequested": // Foundation.TypedEventHandler - case "playbackpositionchangerequested": // Foundation.TypedEventHandler - case "playbackratechangerequested": // Foundation.TypedEventHandler - case "shuffleenabledchangerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SystemMediaTransportControlsButton { - play, - pause, - stop, - record, - fastForward, - rewind, - next, - previous, - channelUp, - channelDown, - } - export class SystemMediaTransportControlsButtonPressedEventArgs implements ISystemMediaTransportControlsButtonPressedEventArgs { - button: SystemMediaTransportControlsButton; - - } - export class SystemMediaTransportControlsDisplayUpdater implements ISystemMediaTransportControlsDisplayUpdater { - type: MediaPlaybackType; - thumbnail: Storage.Streams.RandomAccessStreamReference; - appMediaId: string; - imageProperties: ImageDisplayProperties; - musicProperties: MusicDisplayProperties; - videoProperties: VideoDisplayProperties; - - copyFromFileAsync(type: MediaPlaybackType, source: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function SystemMediaTransportControlsDisplayUpdater.copyFromFileAsync'); - } - - clearAll(): void { - console.warn('shimmed function SystemMediaTransportControlsDisplayUpdater.clearAll'); - } - - update(): void { - console.warn('shimmed function SystemMediaTransportControlsDisplayUpdater.update'); - } - - } - export enum SystemMediaTransportControlsProperty { - soundLevel, - } - export class SystemMediaTransportControlsPropertyChangedEventArgs implements ISystemMediaTransportControlsPropertyChangedEventArgs { - property: SystemMediaTransportControlsProperty; - - } - export class SystemMediaTransportControlsTimelineProperties implements ISystemMediaTransportControlsTimelineProperties { - // constructor(); - startTime: number = 0; - position: number = 0; - minSeekTime: number = 0; - maxSeekTime: number = 0; - endTime: number = 0; - - } - export namespace Transcoding { - export class MediaTranscoder implements IMediaTranscoder, IMediaTranscoder2 { - // constructor(); - trimStopTime: number = 0; - trimStartTime: number = 0; - hardwareAccelerationEnabled: Boolean = true; - alwaysReencode: Boolean = false; - videoProcessingAlgorithm: MediaVideoProcessingAlgorithm = MediaVideoProcessingAlgorithm.default; - - addAudioEffect(activatableClassId: string): void { - console.warn('shimmed function MediaTranscoder.addAudioEffect'); - } - - addAudioEffect_1(activatableClassId: string, effectRequired: Boolean, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaTranscoder.addAudioEffect_1'); - } - - addVideoEffect(activatableClassId: string): void { - console.warn('shimmed function MediaTranscoder.addVideoEffect'); - } - - addVideoEffect_1(activatableClassId: string, effectRequired: Boolean, configuration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaTranscoder.addVideoEffect_1'); - } - - clearEffects(): void { - console.warn('shimmed function MediaTranscoder.clearEffects'); - } - - prepareFileTranscodeAsync(source: Storage.IStorageFile, destination: Storage.IStorageFile, profile: MediaProperties.MediaEncodingProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaTranscoder.prepareFileTranscodeAsync'); - } - - prepareStreamTranscodeAsync(source: Storage.Streams.IRandomAccessStream, destination: Storage.Streams.IRandomAccessStream, profile: MediaProperties.MediaEncodingProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaTranscoder.prepareStreamTranscodeAsync'); - } - - prepareMediaStreamSourceTranscodeAsync(source: Core.IMediaSource, destination: Storage.Streams.IRandomAccessStream, profile: MediaProperties.MediaEncodingProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaTranscoder.prepareMediaStreamSourceTranscodeAsync'); - } - - } - export enum MediaVideoProcessingAlgorithm { - default, - mrfCrf444, - } - export class PrepareTranscodeResult implements IPrepareTranscodeResult { - canTranscode: Boolean; - failureReason: TranscodeFailureReason; - - transcodeAsync(): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function PrepareTranscodeResult.transcodeAsync'); - } - - } - export enum TranscodeFailureReason { - none, - unknown, - invalidProfile, - codecNotFound, - } - } - export class VideoDisplayProperties implements IVideoDisplayProperties, IVideoDisplayProperties2 { - title: string; - subtitle: string; - genres: string[]; - - } - export class VideoEffects { - static videoStabilization: string = 'Windows.Media.VideoStabilizationEffect'; - - } - export class VideoFrame implements IVideoFrame, IMediaFrame, Foundation.IClosable, IVideoFrame2 { - // constructor(format: Graphics.Imaging.BitmapPixelFormat, width: number, height: number); - // constructor(format: Graphics.Imaging.BitmapPixelFormat, width: number, height: number, alpha: Graphics.Imaging.BitmapAlphaMode); - constructor(format: Graphics.Imaging.BitmapPixelFormat, width: number, height: number, alpha: Graphics.Imaging.BitmapAlphaMode) {} - - systemRelativeTime: number | null; - relativeTime: number | null; - isDiscontinuous: Boolean; - duration: number | null; - extendedProperties: Foundation.Collections.IPropertySet; - isReadOnly: Boolean; - type: string; - direct3DSurface: Graphics.DirectX.Direct3D11.IDirect3DSurface; - softwareBitmap: Graphics.Imaging.SoftwareBitmap; - - copyToAsync(frame: VideoFrame): Foundation.IAsyncAction { - throw new Error('shimmed function VideoFrame.copyToAsync'); - } - - close(): void { - console.warn('shimmed function VideoFrame.close'); - } - - copyToAsync_1(frame: VideoFrame, sourceBounds: Graphics.Imaging.BitmapBounds | null, destinationBounds: Graphics.Imaging.BitmapBounds | null): Foundation.IAsyncAction { - throw new Error('shimmed function VideoFrame.copyToAsync_1'); - } - - static createAsDirect3D11SurfaceBacked(format: Graphics.DirectX.DirectXPixelFormat, width: number, height: number): VideoFrame { - throw new Error('shimmed function VideoFrame.createAsDirect3D11SurfaceBacked'); - } - - static createAsDirect3D11SurfaceBacked_1(format: Graphics.DirectX.DirectXPixelFormat, width: number, height: number, device: Graphics.DirectX.Direct3D11.IDirect3DDevice): VideoFrame { - throw new Error('shimmed function VideoFrame.createAsDirect3D11SurfaceBacked_1'); - } - - static createWithSoftwareBitmap(bitmap: Graphics.Imaging.SoftwareBitmap): VideoFrame { - throw new Error('shimmed function VideoFrame.createWithSoftwareBitmap'); - } - - static createWithDirect3D11Surface(surface: Graphics.DirectX.Direct3D11.IDirect3DSurface): VideoFrame { - throw new Error('shimmed function VideoFrame.createWithDirect3D11Surface'); - } - - } - } - export namespace Networking { - export namespace BackgroundTransfer { - export class BackgroundDownloader implements IBackgroundDownloader, IBackgroundTransferBase, IBackgroundDownloader2, IBackgroundDownloader3 { - // constructor(completionGroup: BackgroundTransferCompletionGroup); - // constructor(); - constructor(completionGroup: BackgroundTransferCompletionGroup) {} - - failureToastNotification: UI.Notifications.ToastNotification; - successTileNotification: UI.Notifications.TileNotification; - successToastNotification: UI.Notifications.ToastNotification; - transferGroup: BackgroundTransferGroup; - failureTileNotification: UI.Notifications.TileNotification; - completionGroup: BackgroundTransferCompletionGroup; - costPolicy: BackgroundTransferCostPolicy = BackgroundTransferCostPolicy.default; - group: string = ''; - method: string = ''; - proxyCredential: Security.Credentials.PasswordCredential; - serverCredential: Security.Credentials.PasswordCredential; - - createDownload(uri: Foundation.Uri, resultFile: Storage.IStorageFile): DownloadOperation { - throw new Error('shimmed function BackgroundDownloader.createDownload'); - } - - createDownload_1(uri: Foundation.Uri, resultFile: Storage.IStorageFile, requestBodyFile: Storage.IStorageFile): DownloadOperation { - throw new Error('shimmed function BackgroundDownloader.createDownload_1'); - } - - createDownloadAsync(uri: Foundation.Uri, resultFile: Storage.IStorageFile, requestBodyStream: Storage.Streams.IInputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundDownloader.createDownloadAsync'); - } - - setRequestHeader(headerName: string, headerValue: string): void { - console.warn('shimmed function BackgroundDownloader.setRequestHeader'); - } - - static getCurrentDownloadsForTransferGroupAsync(group: BackgroundTransferGroup): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundDownloader.getCurrentDownloadsForTransferGroupAsync'); - } - - static requestUnconstrainedDownloadsAsync(operations: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundDownloader.requestUnconstrainedDownloadsAsync'); - } - - static getCurrentDownloadsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundDownloader.getCurrentDownloadsAsync'); - } - - static getCurrentDownloadsAsync_1(group: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundDownloader.getCurrentDownloadsAsync_1'); - } - - } - export interface BackgroundDownloadProgress { - bytesReceived: number; - totalBytesToReceive: number; - status: BackgroundTransferStatus; - hasResponseChanged: Boolean; - hasRestarted: Boolean; - } - export enum BackgroundTransferBehavior { - parallel, - serialized, - } - export class BackgroundTransferCompletionGroup implements IBackgroundTransferCompletionGroup { - // constructor(); - isEnabled: Boolean = false; - trigger: ApplicationModel.Background.IBackgroundTrigger = null; - - enable(): void { - console.warn('shimmed function BackgroundTransferCompletionGroup.enable'); - } - - } - export class BackgroundTransferCompletionGroupTriggerDetails implements IBackgroundTransferCompletionGroupTriggerDetails { - downloads: DownloadOperation[]; - uploads: UploadOperation[]; - - } - export class BackgroundTransferContentPart implements IBackgroundTransferContentPart { - // constructor(name: string); - // constructor(name: string, fileName: string); - // constructor(); - constructor(name: string, fileName: string) {} - - setHeader(headerName: string, headerValue: string): void { - console.warn('shimmed function BackgroundTransferContentPart.setHeader'); - } - - setText(value: string): void { - console.warn('shimmed function BackgroundTransferContentPart.setText'); - } - - setFile(value: Storage.IStorageFile): void { - console.warn('shimmed function BackgroundTransferContentPart.setFile'); - } - - } - export enum BackgroundTransferCostPolicy { - default, - unrestrictedOnly, - always, - } - export class BackgroundTransferError { - static getStatus(hresult: number): Web.WebErrorStatus { - throw new Error('shimmed function BackgroundTransferError.getStatus'); - } - - } - export interface BackgroundTransferFileRange { - offset: number; - length: number; - } - export class BackgroundTransferGroup implements IBackgroundTransferGroup { - transferBehavior: BackgroundTransferBehavior; - name: string; - - static createGroup(name: string): BackgroundTransferGroup { - throw new Error('shimmed function BackgroundTransferGroup.createGroup'); - } - - } - export enum BackgroundTransferPriority { - default, - high, - low, - } - export class BackgroundTransferRangesDownloadedEventArgs implements IBackgroundTransferRangesDownloadedEventArgs { - addedRanges: BackgroundTransferFileRange[]; - wasDownloadRestarted: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function BackgroundTransferRangesDownloadedEventArgs.getDeferral'); - } - - } - export enum BackgroundTransferStatus { - idle, - running, - pausedByApplication, - pausedCostedNetwork, - pausedNoNetwork, - completed, - canceled, - error, - pausedRecoverableWebErrorStatus, - pausedSystemPolicy = 32, - } - export class BackgroundUploader implements IBackgroundUploader, IBackgroundTransferBase, IBackgroundUploader2, IBackgroundUploader3 { - // constructor(completionGroup: BackgroundTransferCompletionGroup); - // constructor(); - constructor(completionGroup: BackgroundTransferCompletionGroup) {} - - serverCredential: Security.Credentials.PasswordCredential; - proxyCredential: Security.Credentials.PasswordCredential; - method: string = ''; - group: string = ''; - costPolicy: BackgroundTransferCostPolicy = BackgroundTransferCostPolicy.default; - failureTileNotification: UI.Notifications.TileNotification; - transferGroup: BackgroundTransferGroup; - successToastNotification: UI.Notifications.ToastNotification; - successTileNotification: UI.Notifications.TileNotification; - failureToastNotification: UI.Notifications.ToastNotification; - completionGroup: BackgroundTransferCompletionGroup; - - createUpload(uri: Foundation.Uri, sourceFile: Storage.IStorageFile): UploadOperation { - throw new Error('shimmed function BackgroundUploader.createUpload'); - } - - createUploadFromStreamAsync(uri: Foundation.Uri, sourceStream: Storage.Streams.IInputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.createUploadFromStreamAsync'); - } - - createUploadAsync(uri: Foundation.Uri, parts: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.createUploadAsync'); - } - - createUploadAsync_1(uri: Foundation.Uri, parts: Foundation.Collections.IIterable, subType: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.createUploadAsync_1'); - } - - createUploadAsync_2(uri: Foundation.Uri, parts: Foundation.Collections.IIterable, subType: string, boundary: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.createUploadAsync_2'); - } - - setRequestHeader(headerName: string, headerValue: string): void { - console.warn('shimmed function BackgroundUploader.setRequestHeader'); - } - - static getCurrentUploadsForTransferGroupAsync(group: BackgroundTransferGroup): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.getCurrentUploadsForTransferGroupAsync'); - } - - static requestUnconstrainedUploadsAsync(operations: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.requestUnconstrainedUploadsAsync'); - } - - static getCurrentUploadsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.getCurrentUploadsAsync'); - } - - static getCurrentUploadsAsync_1(group: string): Foundation.IAsyncOperation { - throw new Error('shimmed function BackgroundUploader.getCurrentUploadsAsync_1'); - } - - } - export interface BackgroundUploadProgress { - bytesReceived: number; - bytesSent: number; - totalBytesToReceive: number; - totalBytesToSend: number; - status: BackgroundTransferStatus; - hasResponseChanged: Boolean; - hasRestarted: Boolean; - } - export class ContentPrefetcher { - static indirectContentUri: Foundation.Uri; - static contentUris: Foundation.Uri[] = [ ]; - static lastSuccessfulPrefetchTime: Date | null; - - } - export class DownloadOperation implements IDownloadOperation, IBackgroundTransferOperation, IBackgroundTransferOperationPriority, IDownloadOperation2, IDownloadOperation3, IDownloadOperation4 { - costPolicy: BackgroundTransferCostPolicy; - requestedUri: Foundation.Uri; - method: string; - group: string; - guid: string; - priority: BackgroundTransferPriority; - progress: BackgroundDownloadProgress; - resultFile: Storage.IStorageFile; - transferGroup: BackgroundTransferGroup; - isRandomAccessRequired: Boolean; - currentWebErrorStatus: Web.WebErrorStatus | null; - recoverableWebErrorStatuses: Web.WebErrorStatus[]; - - startAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function DownloadOperation.startAsync'); - } - - attachAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function DownloadOperation.attachAsync'); - } - - pause(): void { - console.warn('shimmed function DownloadOperation.pause'); - } - - resume(): void { - console.warn('shimmed function DownloadOperation.resume'); - } - - getResultStreamAt(position: number): Storage.Streams.IInputStream { - throw new Error('shimmed function DownloadOperation.getResultStreamAt'); - } - - getResponseInformation(): ResponseInformation { - throw new Error('shimmed function DownloadOperation.getResponseInformation'); - } - - getResultRandomAccessStreamReference(): Storage.Streams.IRandomAccessStreamReference { - throw new Error('shimmed function DownloadOperation.getResultRandomAccessStreamReference'); - } - - getDownloadedRanges(): BackgroundTransferFileRange[] { - throw new Error('shimmed function DownloadOperation.getDownloadedRanges'); - } - - makeCurrentInTransferGroup(): void { - console.warn('shimmed function DownloadOperation.makeCurrentInTransferGroup'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DownloadOperation::addEventListener: ${name}`); - switch (name) { - case "rangesdownloaded": // Foundation.TypedEventHandler - break; - } - - } - } - export interface IBackgroundTransferBase { - costPolicy: BackgroundTransferCostPolicy; - group: string; - method: string; - proxyCredential: Security.Credentials.PasswordCredential; - serverCredential: Security.Credentials.PasswordCredential; - setRequestHeader(headerName: string, headerValue: string): void; - } - export interface IBackgroundTransferContentPartFactory { - createWithName(name: string): BackgroundTransferContentPart; - createWithNameAndFileName(name: string, fileName: string): BackgroundTransferContentPart; - } - export interface IBackgroundTransferOperation { - costPolicy: BackgroundTransferCostPolicy; - group: string; - guid: string; - method: string; - requestedUri: Foundation.Uri; - getResultStreamAt(position: number): Storage.Streams.IInputStream; - getResponseInformation(): ResponseInformation; - } - export interface IBackgroundTransferOperationPriority { - priority: BackgroundTransferPriority; - } - export class ResponseInformation implements IResponseInformation { - actualUri: Foundation.Uri; - headers: string[]; - isResumable: Boolean; - statusCode: number; - - } - export class UnconstrainedTransferRequestResult implements IUnconstrainedTransferRequestResult { - isUnconstrained: Boolean; - - } - export class UploadOperation implements IUploadOperation, IBackgroundTransferOperation, IBackgroundTransferOperationPriority, IUploadOperation2, IUploadOperation3 { - costPolicy: BackgroundTransferCostPolicy; - group: string; - guid: string; - method: string; - requestedUri: Foundation.Uri; - priority: BackgroundTransferPriority; - progress: BackgroundUploadProgress; - sourceFile: Storage.IStorageFile; - transferGroup: BackgroundTransferGroup; - - startAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function UploadOperation.startAsync'); - } - - attachAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function UploadOperation.attachAsync'); - } - - getResultStreamAt(position: number): Storage.Streams.IInputStream { - throw new Error('shimmed function UploadOperation.getResultStreamAt'); - } - - getResponseInformation(): ResponseInformation { - throw new Error('shimmed function UploadOperation.getResponseInformation'); - } - - makeCurrentInTransferGroup(): void { - console.warn('shimmed function UploadOperation.makeCurrentInTransferGroup'); - } - - } - } - export namespace Connectivity { - export class AttributedNetworkUsage implements IAttributedNetworkUsage { - attributionId: string; - attributionName: string; - attributionThumbnail: Storage.Streams.IRandomAccessStreamReference; - bytesReceived: number; - bytesSent: number; - - } - export enum CellularApnAuthenticationType { - none, - pap, - chap, - mschapv2, - } - export class CellularApnContext implements ICellularApnContext, ICellularApnContext2 { - // constructor(); - userName: string = ''; - providerId: string = ''; - password: string = ''; - isCompressionEnabled: Boolean = false; - authenticationType: CellularApnAuthenticationType = CellularApnAuthenticationType.none; - accessPointName: string = ''; - profileName: string = ''; - - } - export class ConnectionCost implements IConnectionCost, IConnectionCost2 { - approachingDataLimit: Boolean; - networkCostType: NetworkCostType; - overDataLimit: Boolean; - roaming: Boolean; - backgroundDataUsageRestricted: Boolean; - - } - export class ConnectionProfile implements IConnectionProfile, IConnectionProfile2, IConnectionProfile3, IConnectionProfile4, IConnectionProfile5 { - networkAdapter: NetworkAdapter; - networkSecuritySettings: NetworkSecuritySettings; - profileName: string; - isWlanConnectionProfile: Boolean; - isWwanConnectionProfile: Boolean; - serviceProviderGuid: string | null; - wlanConnectionProfileDetails: WlanConnectionProfileDetails; - wwanConnectionProfileDetails: WwanConnectionProfileDetails; - canDelete: Boolean; - - getNetworkConnectivityLevel(): NetworkConnectivityLevel { - throw new Error('shimmed function ConnectionProfile.getNetworkConnectivityLevel'); - } - - getNetworkNames(): string[] { - throw new Error('shimmed function ConnectionProfile.getNetworkNames'); - } - - getConnectionCost(): ConnectionCost { - throw new Error('shimmed function ConnectionProfile.getConnectionCost'); - } - - getDataPlanStatus(): DataPlanStatus { - throw new Error('shimmed function ConnectionProfile.getDataPlanStatus'); - } - - getLocalUsage(startTime: Date, endTime: Date): DataUsage { - throw new Error('shimmed function ConnectionProfile.getLocalUsage'); - } - - getLocalUsage_1(startTime: Date, endTime: Date, states: RoamingStates): DataUsage { - throw new Error('shimmed function ConnectionProfile.getLocalUsage_1'); - } - - getSignalBars(): number | null { - throw new Error('shimmed function ConnectionProfile.getSignalBars'); - } - - getDomainConnectivityLevel(): DomainConnectivityLevel { - throw new Error('shimmed function ConnectionProfile.getDomainConnectivityLevel'); - } - - getNetworkUsageAsync(startTime: Date, endTime: Date, granularity: DataUsageGranularity, states: NetworkUsageStates): Foundation.IAsyncOperation { - throw new Error('shimmed function ConnectionProfile.getNetworkUsageAsync'); - } - - getConnectivityIntervalsAsync(startTime: Date, endTime: Date, states: NetworkUsageStates): Foundation.IAsyncOperation { - throw new Error('shimmed function ConnectionProfile.getConnectivityIntervalsAsync'); - } - - getAttributedNetworkUsageAsync(startTime: Date, endTime: Date, states: NetworkUsageStates): Foundation.IAsyncOperation { - throw new Error('shimmed function ConnectionProfile.getAttributedNetworkUsageAsync'); - } - - getProviderNetworkUsageAsync(startTime: Date, endTime: Date, states: NetworkUsageStates): Foundation.IAsyncOperation { - throw new Error('shimmed function ConnectionProfile.getProviderNetworkUsageAsync'); - } - - tryDeleteAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ConnectionProfile.tryDeleteAsync'); - } - - } - export enum ConnectionProfileDeleteStatus { - success, - deniedByUser, - deniedBySystem, - unknownError, - } - export class ConnectionProfileFilter implements IConnectionProfileFilter, IConnectionProfileFilter2, IConnectionProfileFilter3 { - // constructor(); - serviceProviderGuid: string | null; - networkCostType: NetworkCostType; - isWwanConnectionProfile: Boolean; - isWlanConnectionProfile: Boolean; - isConnected: Boolean; - isRoaming: Boolean | null; - isOverDataLimit: Boolean | null; - isBackgroundDataUsageRestricted: Boolean | null; - rawData: Storage.Streams.IBuffer = null; - purposeGuid: string | null; - - } - export class ConnectionSession implements IConnectionSession, Foundation.IClosable { - connectionProfile: ConnectionProfile; - - close(): void { - console.warn('shimmed function ConnectionSession.close'); - } - - } - export class ConnectivityInterval implements IConnectivityInterval { - connectionDuration: number; - startTime: Date; - - } - export class ConnectivityManager { - static acquireConnectionAsync(cellularApnContext: CellularApnContext): Foundation.IAsyncOperation { - throw new Error('shimmed function ConnectivityManager.acquireConnectionAsync'); - } - - static addHttpRoutePolicy(routePolicy: RoutePolicy): void { - console.warn('shimmed function ConnectivityManager.addHttpRoutePolicy'); - } - - static removeHttpRoutePolicy(routePolicy: RoutePolicy): void { - console.warn('shimmed function ConnectivityManager.removeHttpRoutePolicy'); - } - - } - export class DataPlanStatus implements IDataPlanStatus { - dataLimitInMegabytes: number | null; - dataPlanUsage: DataPlanUsage; - inboundBitsPerSecond: number | null; - maxTransferSizeInMegabytes: number | null; - nextBillingCycle: Date | null; - outboundBitsPerSecond: number | null; - - } - export class DataPlanUsage implements IDataPlanUsage { - lastSyncTime: Date; - megabytesUsed: number; - - } - export class DataUsage implements IDataUsage { - bytesReceived: number; - bytesSent: number; - - } - export enum DataUsageGranularity { - perMinute, - perHour, - perDay, - total, - } - export enum DomainConnectivityLevel { - none, - unauthenticated, - authenticated, - } - export class IPInformation implements IIPInformation { - networkAdapter: NetworkAdapter; - prefixLength: number | null; - - } - export class LanIdentifier implements ILanIdentifier { - infrastructureId: LanIdentifierData; - networkAdapterId: string; - portId: LanIdentifierData; - - } - export class LanIdentifierData implements ILanIdentifierData { - type: number; - value: number[]; - - } - export class NetworkAdapter implements INetworkAdapter { - ianaInterfaceType: number; - inboundMaxBitsPerSecond: number; - networkAdapterId: string; - networkItem: NetworkItem; - outboundMaxBitsPerSecond: number; - - getConnectedProfileAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function NetworkAdapter.getConnectedProfileAsync'); - } - - } - export enum NetworkAuthenticationType { - none, - unknown, - open80211, - sharedKey80211, - wpa, - wpaPsk, - wpaNone, - rsna, - rsnaPsk, - ihv, - wpa3, - wpa3Sae, - } - export enum NetworkConnectivityLevel { - none, - localAccess, - constrainedInternetAccess, - internetAccess, - } - export enum NetworkCostType { - unknown, - unrestricted, - fixed, - variable, - } - export enum NetworkEncryptionType { - none, - unknown, - wep, - wep40, - wep104, - tkip, - ccmp, - wpaUseGroup, - rsnUseGroup, - ihv, - } - export class NetworkInformation { - static findConnectionProfilesAsync(pProfileFilter: ConnectionProfileFilter): Foundation.IAsyncOperation { - throw new Error('shimmed function NetworkInformation.findConnectionProfilesAsync'); - } - - static getConnectionProfiles(): ConnectionProfile[] { - throw new Error('shimmed function NetworkInformation.getConnectionProfiles'); - } - - static getInternetConnectionProfile(): ConnectionProfile { - throw new Error('shimmed function NetworkInformation.getInternetConnectionProfile'); - } - - static getLanIdentifiers(): LanIdentifier[] { - throw new Error('shimmed function NetworkInformation.getLanIdentifiers'); - } - - static getHostNames(): HostName[] { - throw new Error('shimmed function NetworkInformation.getHostNames'); - } - - static getProxyConfigurationAsync(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function NetworkInformation.getProxyConfigurationAsync'); - } - - static getSortedEndpointPairs(destinationList: Foundation.Collections.IIterable, sortOptions: HostNameSortOptions): EndpointPair[] { - throw new Error('shimmed function NetworkInformation.getSortedEndpointPairs'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`NetworkInformation::addEventListener: ${name}`); - switch (name) { - case "networkstatuschanged": // NetworkStatusChangedEventHandler - break; - } - - } - } - export class NetworkItem implements INetworkItem { - networkId: string; - - getNetworkTypes(): NetworkTypes { - throw new Error('shimmed function NetworkItem.getNetworkTypes'); - } - - } - export class NetworkSecuritySettings implements INetworkSecuritySettings { - networkAuthenticationType: NetworkAuthenticationType; - networkEncryptionType: NetworkEncryptionType; - - } - export class NetworkStateChangeEventDetails implements INetworkStateChangeEventDetails, INetworkStateChangeEventDetails2 { - hasNewConnectionCost: Boolean; - hasNewDomainConnectivityLevel: Boolean; - hasNewHostNameList: Boolean; - hasNewInternetConnectionProfile: Boolean; - hasNewNetworkConnectivityLevel: Boolean; - hasNewWwanRegistrationState: Boolean; - hasNewTetheringClientCount: Boolean; - hasNewTetheringOperationalState: Boolean; - - } - export type NetworkStatusChangedEventHandler = () => void; - export enum NetworkTypes { - none, - internet, - privateNetwork, - } - export class NetworkUsage implements INetworkUsage { - bytesReceived: number; - bytesSent: number; - connectionDuration: number; - - } - export interface NetworkUsageStates { - roaming: TriStates; - shared: TriStates; - } - export class ProviderNetworkUsage implements IProviderNetworkUsage { - bytesReceived: number; - bytesSent: number; - providerId: string; - - } - export class ProxyConfiguration implements IProxyConfiguration { - canConnectDirectly: Boolean; - proxyUris: Foundation.Uri[]; - - } - export enum RoamingStates { - none, - notRoaming, - roaming, - } - export class RoutePolicy implements IRoutePolicy { - // constructor(connectionProfile: ConnectionProfile, hostName: HostName, type: DomainNameType); - constructor(connectionProfile: ConnectionProfile, hostName: HostName, type: DomainNameType) {} - - connectionProfile: ConnectionProfile; - hostName: HostName; - hostNameType: DomainNameType; - - } - export enum TriStates { - doNotCare, - no, - yes, - } - export class WlanConnectionProfileDetails implements IWlanConnectionProfileDetails { - getConnectedSsid(): string { - throw new Error('shimmed function WlanConnectionProfileDetails.getConnectedSsid'); - } - - } - export class WwanConnectionProfileDetails implements IWwanConnectionProfileDetails, IWwanConnectionProfileDetails2 { - accessPointName: string; - homeProviderId: string; - ipkind: WwanNetworkIPKind; - purposeGuids: string[]; - - getNetworkRegistrationState(): WwanNetworkRegistrationState { - throw new Error('shimmed function WwanConnectionProfileDetails.getNetworkRegistrationState'); - } - - getCurrentDataClass(): WwanDataClass { - throw new Error('shimmed function WwanConnectionProfileDetails.getCurrentDataClass'); - } - - } - export interface WwanContract { - } - export enum WwanDataClass { - none, - gprs, - edge, - umts = 4, - hsdpa = 8, - hsupa = 16, - lteAdvanced = 32, - cdma1xRtt = 65536, - cdma1xEvdo = 131072, - cdma1xEvdoRevA = 262144, - cdma1xEvdv = 524288, - cdma3xRtt = 1048576, - cdma1xEvdoRevB = 2097152, - cdmaUmb = 4194304, - custom = 2147483648, - } - export enum WwanNetworkIPKind { - none, - ipv4, - ipv6, - ipv4v6, - ipv4v6v4Xlat, - } - export enum WwanNetworkRegistrationState { - none, - deregistered, - searching, - home, - roaming, - partner, - denied, - } - } - export enum DomainNameType { - suffix, - fullyQualified, - } - export class EndpointPair implements IEndpointPair { - // constructor(localHostName: HostName, localServiceName: string, remoteHostName: HostName, remoteServiceName: string); - constructor(localHostName: HostName, localServiceName: string, remoteHostName: HostName, remoteServiceName: string) {} - - remoteServiceName: string; - remoteHostName: HostName; - localServiceName: string; - localHostName: HostName; - - } - export class HostName implements IHostName, Foundation.IStringable { - // constructor(hostName: string); - constructor(hostName: string) {} - - canonicalName: string; - displayName: string; - ipinformation: Connectivity.IPInformation; - rawName: string; - type: HostNameType; - - isEqual(hostName: HostName): Boolean { - throw new Error('shimmed function HostName.isEqual'); - } - - static compare(value1: string, value2: string): number { - throw new Error('shimmed function HostName.compare'); - } - - } - export enum HostNameSortOptions { - none, - optimizeForLongConnections = 2, - } - export enum HostNameType { - domainName, - ipv4, - ipv6, - bluetooth, - } - export namespace NetworkOperators { - export enum DataClasses { - none, - gprs, - edge, - umts = 4, - hsdpa = 8, - hsupa = 16, - lteAdvanced = 32, - cdma1xRtt = 65536, - cdma1xEvdo = 131072, - cdma1xEvdoRevA = 262144, - cdma1xEvdv = 524288, - cdma3xRtt = 1048576, - cdma1xEvdoRevB = 2097152, - cdmaUmb = 4194304, - custom = 2147483648, - } - export class ESim implements IESim, IESim2 { - availableMemoryInBytes: number | null; - eid: string; - firmwareVersion: string; - mobileBroadbandModemDeviceId: string; - policy: ESimPolicy; - state: ESimState; - - getProfiles(): ESimProfile[] { - throw new Error('shimmed function ESim.getProfiles'); - } - - deleteProfileAsync(profileId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ESim.deleteProfileAsync'); - } - - downloadProfileMetadataAsync(activationCode: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ESim.downloadProfileMetadataAsync'); - } - - resetAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ESim.resetAsync'); - } - - discover(): ESimDiscoverResult { - throw new Error('shimmed function ESim.discover'); - } - - discover_1(serverAddress: string, matchingId: string): ESimDiscoverResult { - throw new Error('shimmed function ESim.discover_1'); - } - - discoverAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ESim.discoverAsync'); - } - - discoverAsync_1(serverAddress: string, matchingId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ESim.discoverAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ESim::addEventListener: ${name}`); - switch (name) { - case "profilechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ESimAddedEventArgs implements IESimAddedEventArgs { - esim: ESim; - - } - export enum ESimAuthenticationPreference { - onEntry, - onAction, - never, - } - export class ESimDiscoverEvent implements IESimDiscoverEvent { - matchingId: string; - rspServerAddress: string; - - } - export class ESimDiscoverResult implements IESimDiscoverResult { - events: ESimDiscoverEvent[]; - kind: ESimDiscoverResultKind; - profileMetadata: ESimProfileMetadata; - result: ESimOperationResult; - - } - export enum ESimDiscoverResultKind { - none, - events, - profileMetadata, - } - export class ESimDownloadProfileMetadataResult implements IESimDownloadProfileMetadataResult { - profileMetadata: ESimProfileMetadata; - result: ESimOperationResult; - - } - export class ESimManager { - static serviceInfo: ESimServiceInfo; - - static tryCreateESimWatcher(): ESimWatcher { - throw new Error('shimmed function ESimManager.tryCreateESimWatcher'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`ESimManager::addEventListener: ${name}`); - switch (name) { - case "serviceinfochanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class ESimOperationResult implements IESimOperationResult { - status: ESimOperationStatus; - - } - export enum ESimOperationStatus { - success, - notAuthorized, - notFound, - policyViolation, - insufficientSpaceOnCard, - serverFailure, - serverNotReachable, - timeoutWaitingForUserConsent, - incorrectConfirmationCode, - confirmationCodeMaxRetriesExceeded, - cardRemoved, - cardBusy, - other, - cardGeneralFailure, - confirmationCodeMissing, - invalidMatchingId, - noEligibleProfileForThisDevice, - operationAborted, - eidMismatch, - profileNotAvailableForNewBinding, - profileNotReleasedByOperator, - operationProhibitedByProfileClass, - profileNotPresent, - noCorrespondingRequest, - } - export class ESimPolicy implements IESimPolicy { - shouldEnableManagingUi: Boolean; - - } - export class ESimProfile implements IESimProfile { - class: ESimProfileClass; - id: string; - nickname: string; - policy: ESimProfilePolicy; - providerIcon: Storage.Streams.IRandomAccessStreamReference; - providerId: string; - providerName: string; - state: ESimProfileState; - - disableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ESimProfile.disableAsync'); - } - - enableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ESimProfile.enableAsync'); - } - - setNicknameAsync(newNickname: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ESimProfile.setNicknameAsync'); - } - - } - export enum ESimProfileClass { - operational, - test, - provisioning, - } - export interface ESimProfileInstallProgress { - totalSizeInBytes: number; - installedSizeInBytes: number; - } - export class ESimProfileMetadata implements IESimProfileMetadata { - id: string; - isConfirmationCodeRequired: Boolean; - policy: ESimProfilePolicy; - providerIcon: Storage.Streams.IRandomAccessStreamReference; - providerId: string; - providerName: string; - state: ESimProfileMetadataState; - - denyInstallAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ESimProfileMetadata.denyInstallAsync'); - } - - confirmInstallAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function ESimProfileMetadata.confirmInstallAsync'); - } - - confirmInstallAsync_1(confirmationCode: string): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function ESimProfileMetadata.confirmInstallAsync_1'); - } - - postponeInstallAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ESimProfileMetadata.postponeInstallAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ESimProfileMetadata::addEventListener: ${name}`); - switch (name) { - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ESimProfileMetadataState { - unknown, - waitingForInstall, - downloading, - installing, - expired, - rejectingDownload, - noLongerAvailable, - deniedByPolicy, - } - export class ESimProfilePolicy implements IESimProfilePolicy { - canDelete: Boolean; - canDisable: Boolean; - isManagedByEnterprise: Boolean; - - } - export enum ESimProfileState { - unknown, - disabled, - enabled, - deleted, - } - export class ESimRemovedEventArgs implements IESimRemovedEventArgs { - esim: ESim; - - } - export class ESimServiceInfo implements IESimServiceInfo { - authenticationPreference: ESimAuthenticationPreference; - isESimUiEnabled: Boolean; - - } - export enum ESimState { - unknown, - idle, - removed, - busy, - } - export class ESimUpdatedEventArgs implements IESimUpdatedEventArgs { - esim: ESim; - - } - export class ESimWatcher implements IESimWatcher { - status: ESimWatcherStatus; - - start(): void { - console.warn('shimmed function ESimWatcher.start'); - } - - stop(): void { - console.warn('shimmed function ESimWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ESimWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ESimWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - } - export class FdnAccessManager { - static requestUnlockAsync(contactListId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FdnAccessManager.requestUnlockAsync'); - } - - } - export class HotspotAuthenticationContext implements IHotspotAuthenticationContext, IHotspotAuthenticationContext2 { - authenticationUrl: Foundation.Uri; - networkAdapter: Connectivity.NetworkAdapter; - redirectMessageUrl: Foundation.Uri; - redirectMessageXml: Data.Xml.Dom.XmlDocument; - wirelessNetworkId: number[]; - - issueCredentials(userName: string, password: string, extraParameters: string, markAsManualConnectOnFailure: Boolean): void { - console.warn('shimmed function HotspotAuthenticationContext.issueCredentials'); - } - - abortAuthentication(markAsManual: Boolean): void { - console.warn('shimmed function HotspotAuthenticationContext.abortAuthentication'); - } - - skipAuthentication(): void { - console.warn('shimmed function HotspotAuthenticationContext.skipAuthentication'); - } - - triggerAttentionRequired(packageRelativeApplicationId: string, applicationParameters: string): void { - console.warn('shimmed function HotspotAuthenticationContext.triggerAttentionRequired'); - } - - issueCredentialsAsync(userName: string, password: string, extraParameters: string, markAsManualConnectOnFailure: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function HotspotAuthenticationContext.issueCredentialsAsync'); - } - - static tryGetAuthenticationContext(evenToken: string): { returnValue: Boolean, context: HotspotAuthenticationContext } { - throw new Error('shimmed function HotspotAuthenticationContext.tryGetAuthenticationContext'); - } - - } - export class HotspotAuthenticationEventDetails implements IHotspotAuthenticationEventDetails { - eventToken: string; - - } - export enum HotspotAuthenticationResponseCode { - noError, - loginSucceeded = 50, - loginFailed = 100, - radiusServerError = 102, - networkAdministratorError = 105, - loginAborted = 151, - accessGatewayInternalError = 255, - } - export class HotspotCredentialsAuthenticationResult implements IHotspotCredentialsAuthenticationResult { - authenticationReplyXml: Data.Xml.Dom.XmlDocument; - hasNetworkErrorOccurred: Boolean; - logoffUrl: Foundation.Uri; - responseCode: HotspotAuthenticationResponseCode; - - } - export class KnownCSimFilePaths { - static efspn: number[] = [ 32767, 28481 ]; - static gid1: number[] = [ 32767, 28525 ]; - static gid2: number[] = [ 32767, 28526 ]; - - } - export class KnownRuimFilePaths { - static efspn: number[] = [ 16128, 32549, 28481 ]; - static gid1: number[] = [ 16128, 32549, 28525 ]; - static gid2: number[] = [ 16128, 32549, 28526 ]; - - } - export class KnownSimFilePaths { - static efons: number[] = [ 16128, 32544, 28613 ]; - static efspn: number[] = [ 16128, 32544, 28486 ]; - static gid1: number[] = [ 16128, 32544, 28478 ]; - static gid2: number[] = [ 16128, 32544, 28479 ]; - - } - export class KnownUSimFilePaths { - static efopl: number[] = [ 32767, 28614 ]; - static efpnn: number[] = [ 32767, 28613 ]; - static efspn: number[] = [ 32767, 28486 ]; - static gid1: number[] = [ 32767, 28478 ]; - static gid2: number[] = [ 32767, 28479 ]; - - } - export interface LegacyNetworkOperatorsContract { - } - export class MobileBroadbandAccount implements IMobileBroadbandAccount, IMobileBroadbandAccount2, IMobileBroadbandAccount3 { - currentDeviceInformation: MobileBroadbandDeviceInformation; - currentNetwork: MobileBroadbandNetwork; - networkAccountId: string; - serviceProviderGuid: string; - serviceProviderName: string; - accountExperienceUrl: Foundation.Uri; - static availableNetworkAccountIds: string[] = [ ]; - - getConnectionProfiles(): Connectivity.ConnectionProfile[] { - throw new Error('shimmed function MobileBroadbandAccount.getConnectionProfiles'); - } - - static createFromNetworkAccountId(networkAccountId: string): MobileBroadbandAccount { - throw new Error('shimmed function MobileBroadbandAccount.createFromNetworkAccountId'); - } - - } - export class MobileBroadbandAccountEventArgs implements IMobileBroadbandAccountEventArgs { - networkAccountId: string; - - } - export class MobileBroadbandAccountUpdatedEventArgs implements IMobileBroadbandAccountUpdatedEventArgs { - hasDeviceInformationChanged: Boolean; - hasNetworkChanged: Boolean; - networkAccountId: string; - - } - export class MobileBroadbandAccountWatcher implements IMobileBroadbandAccountWatcher { - // constructor(); - status: MobileBroadbandAccountWatcherStatus = MobileBroadbandAccountWatcherStatus.created; - - start(): void { - console.warn('shimmed function MobileBroadbandAccountWatcher.start'); - } - - stop(): void { - console.warn('shimmed function MobileBroadbandAccountWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MobileBroadbandAccountWatcher::addEventListener: ${name}`); - switch (name) { - case "accountadded": // Foundation.TypedEventHandler - case "accountremoved": // Foundation.TypedEventHandler - case "accountupdated": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MobileBroadbandAccountWatcherStatus { - created, - started, - enumerationCompleted, - stopped, - aborted, - } - export class MobileBroadbandAntennaSar implements IMobileBroadbandAntennaSar { - // constructor(antennaIndex: number, sarBackoffIndex: number); - constructor(antennaIndex: number, sarBackoffIndex: number) {} - - antennaIndex: number; - sarBackoffIndex: number; - - } - export class MobileBroadbandCellCdma implements IMobileBroadbandCellCdma { - baseStationId: number | null; - baseStationLastBroadcastGpsTime: number | null; - baseStationLatitude: number | null; - baseStationLongitude: number | null; - baseStationPNCode: number | null; - networkId: number | null; - pilotSignalStrengthInDB: number | null; - systemId: number | null; - - } - export class MobileBroadbandCellGsm implements IMobileBroadbandCellGsm { - baseStationId: number | null; - cellId: number | null; - channelNumber: number | null; - locationAreaCode: number | null; - providerId: string; - receivedSignalStrengthInDBm: number | null; - timingAdvanceInBitPeriods: number | null; - - } - export class MobileBroadbandCellLte implements IMobileBroadbandCellLte { - cellId: number | null; - channelNumber: number | null; - physicalCellId: number | null; - providerId: string; - referenceSignalReceivedPowerInDBm: number | null; - referenceSignalReceivedQualityInDBm: number | null; - timingAdvanceInBitPeriods: number | null; - trackingAreaCode: number | null; - - } - export class MobileBroadbandCellsInfo implements IMobileBroadbandCellsInfo { - neighboringCellsCdma: MobileBroadbandCellCdma[]; - neighboringCellsGsm: MobileBroadbandCellGsm[]; - neighboringCellsLte: MobileBroadbandCellLte[]; - neighboringCellsTdscdma: MobileBroadbandCellTdscdma[]; - neighboringCellsUmts: MobileBroadbandCellUmts[]; - servingCellsCdma: MobileBroadbandCellCdma[]; - servingCellsGsm: MobileBroadbandCellGsm[]; - servingCellsLte: MobileBroadbandCellLte[]; - servingCellsTdscdma: MobileBroadbandCellTdscdma[]; - servingCellsUmts: MobileBroadbandCellUmts[]; - - } - export class MobileBroadbandCellTdscdma implements IMobileBroadbandCellTdscdma { - cellId: number | null; - cellParameterId: number | null; - channelNumber: number | null; - locationAreaCode: number | null; - pathLossInDB: number | null; - providerId: string; - receivedSignalCodePowerInDBm: number | null; - timingAdvanceInBitPeriods: number | null; - - } - export class MobileBroadbandCellUmts implements IMobileBroadbandCellUmts { - cellId: number | null; - channelNumber: number | null; - locationAreaCode: number | null; - pathLossInDB: number | null; - primaryScramblingCode: number | null; - providerId: string; - receivedSignalCodePowerInDBm: number | null; - signalToNoiseRatioInDB: number | null; - - } - export class MobileBroadbandDeviceInformation implements IMobileBroadbandDeviceInformation, IMobileBroadbandDeviceInformation2, IMobileBroadbandDeviceInformation3 { - cellularClass: Devices.Sms.CellularClass; - currentRadioState: MobileBroadbandRadioState; - customDataClass: string; - dataClasses: DataClasses; - deviceId: string; - deviceType: MobileBroadbandDeviceType; - firmwareInformation: string; - manufacturer: string; - mobileEquipmentId: string; - model: string; - networkDeviceStatus: NetworkDeviceStatus; - simIccId: string; - subscriberId: string; - telephoneNumbers: string[]; - pinManager: MobileBroadbandPinManager; - revision: string; - serialNumber: string; - simGid1: string; - simPnn: string; - simSpn: string; - - } - export class MobileBroadbandDeviceService implements IMobileBroadbandDeviceService { - deviceServiceId: string; - supportedCommands: number[]; - - openDataSession(): MobileBroadbandDeviceServiceDataSession { - throw new Error('shimmed function MobileBroadbandDeviceService.openDataSession'); - } - - openCommandSession(): MobileBroadbandDeviceServiceCommandSession { - throw new Error('shimmed function MobileBroadbandDeviceService.openCommandSession'); - } - - } - export class MobileBroadbandDeviceServiceCommandResult implements IMobileBroadbandDeviceServiceCommandResult { - responseData: Storage.Streams.IBuffer; - statusCode: number; - - } - export class MobileBroadbandDeviceServiceCommandSession implements IMobileBroadbandDeviceServiceCommandSession { - sendQueryCommandAsync(commandId: number, data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandDeviceServiceCommandSession.sendQueryCommandAsync'); - } - - sendSetCommandAsync(commandId: number, data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandDeviceServiceCommandSession.sendSetCommandAsync'); - } - - closeSession(): void { - console.warn('shimmed function MobileBroadbandDeviceServiceCommandSession.closeSession'); - } - - } - export class MobileBroadbandDeviceServiceDataReceivedEventArgs implements IMobileBroadbandDeviceServiceDataReceivedEventArgs { - receivedData: Storage.Streams.IBuffer; - - } - export class MobileBroadbandDeviceServiceDataSession implements IMobileBroadbandDeviceServiceDataSession { - writeDataAsync(value: Storage.Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandDeviceServiceDataSession.writeDataAsync'); - } - - closeSession(): void { - console.warn('shimmed function MobileBroadbandDeviceServiceDataSession.closeSession'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MobileBroadbandDeviceServiceDataSession::addEventListener: ${name}`); - switch (name) { - case "datareceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class MobileBroadbandDeviceServiceInformation implements IMobileBroadbandDeviceServiceInformation { - deviceServiceId: string; - isDataReadSupported: Boolean; - isDataWriteSupported: Boolean; - - } - export class MobileBroadbandDeviceServiceTriggerDetails implements IMobileBroadbandDeviceServiceTriggerDetails { - deviceId: string; - deviceServiceId: string; - receivedData: Storage.Streams.IBuffer; - - } - export enum MobileBroadbandDeviceType { - unknown, - embedded, - removable, - remote, - } - export class MobileBroadbandModem implements IMobileBroadbandModem, IMobileBroadbandModem2, IMobileBroadbandModem3 { - currentAccount: MobileBroadbandAccount; - currentNetwork: MobileBroadbandNetwork; - deviceInformation: MobileBroadbandDeviceInformation; - deviceServices: MobileBroadbandDeviceServiceInformation[]; - isResetSupported: Boolean; - maxDeviceServiceCommandSizeInBytes: number; - maxDeviceServiceDataSizeInBytes: number; - isInEmergencyCallMode: Boolean; - - getDeviceService(deviceServiceId: string): MobileBroadbandDeviceService { - throw new Error('shimmed function MobileBroadbandModem.getDeviceService'); - } - - resetAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandModem.resetAsync'); - } - - getCurrentConfigurationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandModem.getCurrentConfigurationAsync'); - } - - getIsPassthroughEnabledAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandModem.getIsPassthroughEnabledAsync'); - } - - setIsPassthroughEnabledAsync(value: Boolean): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandModem.setIsPassthroughEnabledAsync'); - } - - tryGetPcoAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandModem.tryGetPcoAsync'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function MobileBroadbandModem.getDeviceSelector'); - } - - static fromId(deviceId: string): MobileBroadbandModem { - throw new Error('shimmed function MobileBroadbandModem.fromId'); - } - - static getDefault(): MobileBroadbandModem { - throw new Error('shimmed function MobileBroadbandModem.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MobileBroadbandModem::addEventListener: ${name}`); - switch (name) { - case "isinemergencycallmodechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MobileBroadbandModemConfiguration implements IMobileBroadbandModemConfiguration, IMobileBroadbandModemConfiguration2 { - homeProviderId: string; - homeProviderName: string; - uicc: MobileBroadbandUicc; - sarManager: MobileBroadbandSarManager; - - } - export class MobileBroadbandModemIsolation implements IMobileBroadbandModemIsolation { - // constructor(modemDeviceId: string, ruleGroupId: string); - constructor(modemDeviceId: string, ruleGroupId: string) {} - - addAllowedHost(host: HostName): void { - console.warn('shimmed function MobileBroadbandModemIsolation.addAllowedHost'); - } - - addAllowedHostRange(first: HostName, last: HostName): void { - console.warn('shimmed function MobileBroadbandModemIsolation.addAllowedHostRange'); - } - - applyConfigurationAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandModemIsolation.applyConfigurationAsync'); - } - - clearConfigurationAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandModemIsolation.clearConfigurationAsync'); - } - - } - export enum MobileBroadbandModemStatus { - success, - otherFailure, - busy, - noDeviceSupport, - } - export class MobileBroadbandNetwork implements IMobileBroadbandNetwork, IMobileBroadbandNetwork2, IMobileBroadbandNetwork3 { - accessPointName: string; - activationNetworkError: number; - networkAdapter: Connectivity.NetworkAdapter; - networkRegistrationState: NetworkRegistrationState; - packetAttachNetworkError: number; - registeredDataClass: DataClasses; - registeredProviderId: string; - registeredProviderName: string; - registrationNetworkError: number; - registrationUiccApps: MobileBroadbandUiccApp[]; - - showConnectionUI(): void { - console.warn('shimmed function MobileBroadbandNetwork.showConnectionUI'); - } - - getVoiceCallSupportAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandNetwork.getVoiceCallSupportAsync'); - } - - getCellsInfoAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandNetwork.getCellsInfoAsync'); - } - - } - export class MobileBroadbandNetworkRegistrationStateChange implements IMobileBroadbandNetworkRegistrationStateChange { - deviceId: string; - network: MobileBroadbandNetwork; - - } - export class MobileBroadbandNetworkRegistrationStateChangeTriggerDetails implements IMobileBroadbandNetworkRegistrationStateChangeTriggerDetails { - networkRegistrationStateChanges: MobileBroadbandNetworkRegistrationStateChange[]; - - } - export class MobileBroadbandPco implements IMobileBroadbandPco { - data: Storage.Streams.IBuffer; - deviceId: string; - isComplete: Boolean; - - } - export class MobileBroadbandPcoDataChangeTriggerDetails implements IMobileBroadbandPcoDataChangeTriggerDetails { - updatedData: MobileBroadbandPco; - - } - export class MobileBroadbandPin implements IMobileBroadbandPin { - attemptsRemaining: number; - enabled: Boolean; - format: MobileBroadbandPinFormat; - lockState: MobileBroadbandPinLockState; - maxLength: number; - minLength: number; - type: MobileBroadbandPinType; - - enableAsync(currentPin: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandPin.enableAsync'); - } - - disableAsync(currentPin: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandPin.disableAsync'); - } - - enterAsync(currentPin: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandPin.enterAsync'); - } - - changeAsync(currentPin: string, newPin: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandPin.changeAsync'); - } - - unblockAsync(pinUnblockKey: string, newPin: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandPin.unblockAsync'); - } - - } - export enum MobileBroadbandPinFormat { - unknown, - numeric, - alphanumeric, - } - export enum MobileBroadbandPinLockState { - unknown, - unlocked, - pinRequired, - pinUnblockKeyRequired, - } - export class MobileBroadbandPinLockStateChange implements IMobileBroadbandPinLockStateChange { - deviceId: string; - pinLockState: MobileBroadbandPinLockState; - pinType: MobileBroadbandPinType; - - } - export class MobileBroadbandPinLockStateChangeTriggerDetails implements IMobileBroadbandPinLockStateChangeTriggerDetails { - pinLockStateChanges: MobileBroadbandPinLockStateChange[]; - - } - export class MobileBroadbandPinManager implements IMobileBroadbandPinManager { - supportedPins: MobileBroadbandPinType[]; - - getPin(pinType: MobileBroadbandPinType): MobileBroadbandPin { - throw new Error('shimmed function MobileBroadbandPinManager.getPin'); - } - - } - export class MobileBroadbandPinOperationResult implements IMobileBroadbandPinOperationResult { - attemptsRemaining: number; - isSuccessful: Boolean; - - } - export enum MobileBroadbandPinType { - none, - custom, - pin1, - pin2, - simPin, - firstSimPin, - networkPin, - networkSubsetPin, - serviceProviderPin, - corporatePin, - subsidyLock, - } - export enum MobileBroadbandRadioState { - off, - on, - } - export class MobileBroadbandRadioStateChange implements IMobileBroadbandRadioStateChange { - deviceId: string; - radioState: MobileBroadbandRadioState; - - } - export class MobileBroadbandRadioStateChangeTriggerDetails implements IMobileBroadbandRadioStateChangeTriggerDetails { - radioStateChanges: MobileBroadbandRadioStateChange[]; - - } - export class MobileBroadbandSarManager implements IMobileBroadbandSarManager { - antennas: MobileBroadbandAntennaSar[]; - hysteresisTimerPeriod: number; - isBackoffEnabled: Boolean; - isSarControlledByHardware: Boolean; - isWiFiHardwareIntegrated: Boolean; - - enableBackoffAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandSarManager.enableBackoffAsync'); - } - - disableBackoffAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandSarManager.disableBackoffAsync'); - } - - setConfigurationAsync(antennas: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandSarManager.setConfigurationAsync'); - } - - revertSarToHardwareControlAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandSarManager.revertSarToHardwareControlAsync'); - } - - setTransmissionStateChangedHysteresisAsync(timerPeriod: number): Foundation.IAsyncAction { - throw new Error('shimmed function MobileBroadbandSarManager.setTransmissionStateChangedHysteresisAsync'); - } - - getIsTransmittingAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandSarManager.getIsTransmittingAsync'); - } - - startTransmissionStateMonitoring(): void { - console.warn('shimmed function MobileBroadbandSarManager.startTransmissionStateMonitoring'); - } - - stopTransmissionStateMonitoring(): void { - console.warn('shimmed function MobileBroadbandSarManager.stopTransmissionStateMonitoring'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MobileBroadbandSarManager::addEventListener: ${name}`); - switch (name) { - case "transmissionstatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class MobileBroadbandTransmissionStateChangedEventArgs implements IMobileBroadbandTransmissionStateChangedEventArgs { - isTransmitting: Boolean; - - } - export class MobileBroadbandUicc implements IMobileBroadbandUicc { - simIccId: string; - - getUiccAppsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandUicc.getUiccAppsAsync'); - } - - } - export class MobileBroadbandUiccApp implements IMobileBroadbandUiccApp { - id: Storage.Streams.IBuffer; - kind: UiccAppKind; - - getRecordDetailsAsync(uiccFilePath: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandUiccApp.getRecordDetailsAsync'); - } - - readRecordAsync(uiccFilePath: Foundation.Collections.IIterable, recordIndex: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MobileBroadbandUiccApp.readRecordAsync'); - } - - } - export enum MobileBroadbandUiccAppOperationStatus { - success, - invalidUiccFilePath, - accessConditionNotHeld, - uiccBusy, - } - export class MobileBroadbandUiccAppReadRecordResult implements IMobileBroadbandUiccAppReadRecordResult { - data: Storage.Streams.IBuffer; - status: MobileBroadbandUiccAppOperationStatus; - - } - export class MobileBroadbandUiccAppRecordDetailsResult implements IMobileBroadbandUiccAppRecordDetailsResult { - kind: UiccAppRecordKind; - readAccessCondition: UiccAccessCondition; - recordCount: number; - recordSize: number; - status: MobileBroadbandUiccAppOperationStatus; - writeAccessCondition: UiccAccessCondition; - - } - export class MobileBroadbandUiccAppsResult implements IMobileBroadbandUiccAppsResult { - status: MobileBroadbandUiccAppOperationStatus; - uiccApps: MobileBroadbandUiccApp[]; - - } - export enum NetworkDeviceStatus { - deviceNotReady, - deviceReady, - simNotInserted, - badSim, - deviceHardwareFailure, - accountNotActivated, - deviceLocked, - deviceBlocked, - } - export enum NetworkOperatorDataUsageNotificationKind { - dataUsageProgress, - } - export class NetworkOperatorDataUsageTriggerDetails implements INetworkOperatorDataUsageTriggerDetails { - notificationKind: NetworkOperatorDataUsageNotificationKind; - - } - export enum NetworkOperatorEventMessageType { - gsm, - cdma, - ussd, - dataPlanThresholdReached, - dataPlanReset, - dataPlanDeleted, - profileConnected, - profileDisconnected, - registeredRoaming, - registeredHome, - tetheringEntitlementCheck, - tetheringOperationalStateChanged, - tetheringNumberOfClientsChanged, - } - export class NetworkOperatorNotificationEventDetails implements INetworkOperatorNotificationEventDetails, INetworkOperatorTetheringEntitlementCheck { - encodingType: number; - message: string; - networkAccountId: string; - notificationType: NetworkOperatorEventMessageType; - ruleId: string; - smsMessage: Devices.Sms.ISmsMessage; - - authorizeTethering(allow: Boolean, entitlementFailureReason: string): void { - console.warn('shimmed function NetworkOperatorNotificationEventDetails.authorizeTethering'); - } - - } - export interface NetworkOperatorsFdnContract { - } - export class NetworkOperatorTetheringAccessPointConfiguration implements INetworkOperatorTetheringAccessPointConfiguration { - // constructor(); - ssid: string = ''; - passphrase: string = ''; - - } - export class NetworkOperatorTetheringClient implements INetworkOperatorTetheringClient { - hostNames: HostName[]; - macAddress: string; - - } - export class NetworkOperatorTetheringManager implements INetworkOperatorTetheringManager, INetworkOperatorTetheringClientManager { - clientCount: number; - maxClientCount: number; - tetheringOperationalState: TetheringOperationalState; - - getCurrentAccessPointConfiguration(): NetworkOperatorTetheringAccessPointConfiguration { - throw new Error('shimmed function NetworkOperatorTetheringManager.getCurrentAccessPointConfiguration'); - } - - configureAccessPointAsync(configuration: NetworkOperatorTetheringAccessPointConfiguration): Foundation.IAsyncAction { - throw new Error('shimmed function NetworkOperatorTetheringManager.configureAccessPointAsync'); - } - - startTetheringAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function NetworkOperatorTetheringManager.startTetheringAsync'); - } - - stopTetheringAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function NetworkOperatorTetheringManager.stopTetheringAsync'); - } - - getTetheringClients(): NetworkOperatorTetheringClient[] { - throw new Error('shimmed function NetworkOperatorTetheringManager.getTetheringClients'); - } - - static createFromConnectionProfile(profile: Connectivity.ConnectionProfile, adapter: Connectivity.NetworkAdapter): NetworkOperatorTetheringManager { - throw new Error('shimmed function NetworkOperatorTetheringManager.createFromConnectionProfile'); - } - - static getTetheringCapabilityFromConnectionProfile(profile: Connectivity.ConnectionProfile): TetheringCapability { - throw new Error('shimmed function NetworkOperatorTetheringManager.getTetheringCapabilityFromConnectionProfile'); - } - - static createFromConnectionProfile_1(profile: Connectivity.ConnectionProfile): NetworkOperatorTetheringManager { - throw new Error('shimmed function NetworkOperatorTetheringManager.createFromConnectionProfile_1'); - } - - static getTetheringCapability(networkAccountId: string): TetheringCapability { - throw new Error('shimmed function NetworkOperatorTetheringManager.getTetheringCapability'); - } - - static createFromNetworkAccountId(networkAccountId: string): NetworkOperatorTetheringManager { - throw new Error('shimmed function NetworkOperatorTetheringManager.createFromNetworkAccountId'); - } - - } - export class NetworkOperatorTetheringOperationResult implements INetworkOperatorTetheringOperationResult { - additionalErrorMessage: string; - status: TetheringOperationStatus; - - } - export enum NetworkRegistrationState { - none, - deregistered, - searching, - home, - roaming, - partner, - denied, - } - export enum ProfileMediaType { - wlan, - wwan, - } - export interface ProfileUsage { - usageInMegabytes: number; - lastSyncTime: Date; - } - export class ProvisionedProfile implements IProvisionedProfile { - updateCost(value: Connectivity.NetworkCostType): void { - console.warn('shimmed function ProvisionedProfile.updateCost'); - } - - updateUsage(value: ProfileUsage): void { - console.warn('shimmed function ProvisionedProfile.updateUsage'); - } - - } - export class ProvisionFromXmlDocumentResults implements IProvisionFromXmlDocumentResults { - allElementsProvisioned: Boolean; - provisionResultsXml: string; - - } - export class ProvisioningAgent implements IProvisioningAgent { - // constructor(); - provisionFromXmlDocumentAsync(provisioningXmlDocument: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProvisioningAgent.provisionFromXmlDocumentAsync'); - } - - getProvisionedProfile(mediaType: ProfileMediaType, profileName: string): ProvisionedProfile { - throw new Error('shimmed function ProvisioningAgent.getProvisionedProfile'); - } - - static createFromNetworkAccountId(networkAccountId: string): ProvisioningAgent { - throw new Error('shimmed function ProvisioningAgent.createFromNetworkAccountId'); - } - - } - export enum TetheringCapability { - enabled, - disabledByGroupPolicy, - disabledByHardwareLimitation, - disabledByOperator, - disabledBySku, - disabledByRequiredAppNotInstalled, - disabledDueToUnknownCause, - disabledBySystemCapability, - } - export class TetheringEntitlementCheckTriggerDetails implements ITetheringEntitlementCheckTriggerDetails { - networkAccountId: string; - - allowTethering(): void { - console.warn('shimmed function TetheringEntitlementCheckTriggerDetails.allowTethering'); - } - - denyTethering(entitlementFailureReason: string): void { - console.warn('shimmed function TetheringEntitlementCheckTriggerDetails.denyTethering'); - } - - } - export enum TetheringOperationalState { - unknown, - on, - off, - inTransition, - } - export enum TetheringOperationStatus { - success, - unknown, - mobileBroadbandDeviceOff, - wiFiDeviceOff, - entitlementCheckTimeout, - entitlementCheckFailure, - operationInProgress, - bluetoothDeviceOff, - networkLimitedConnectivity, - } - export enum UiccAccessCondition { - alwaysAllowed, - pin1, - pin2, - pin3, - pin4, - administrative5, - administrative6, - neverAllowed, - } - export enum UiccAppKind { - unknown, - mf, - mfsim, - mfruim, - usim, - csim, - isim, - } - export enum UiccAppRecordKind { - unknown, - transparent, - recordOriented, - } - export class UssdMessage implements IUssdMessage { - // constructor(messageText: string); - constructor(messageText: string) {} - - payloadAsText: string; - dataCodingScheme: number; - - getPayload(): number[] { - throw new Error('shimmed function UssdMessage.getPayload'); - } - - setPayload(value: number[]): void { - console.warn('shimmed function UssdMessage.setPayload'); - } - - } - export class UssdReply implements IUssdReply { - message: UssdMessage; - resultCode: UssdResultCode; - - } - export enum UssdResultCode { - noActionRequired, - actionRequired, - terminated, - otherLocalClient, - operationNotSupported, - networkTimeout, - } - export class UssdSession implements IUssdSession { - sendMessageAndGetReplyAsync(message: UssdMessage): Foundation.IAsyncOperation { - throw new Error('shimmed function UssdSession.sendMessageAndGetReplyAsync'); - } - - close(): void { - console.warn('shimmed function UssdSession.close'); - } - - static createFromNetworkAccountId(networkAccountId: string): UssdSession { - throw new Error('shimmed function UssdSession.createFromNetworkAccountId'); - } - - static createFromNetworkInterfaceId(networkInterfaceId: string): UssdSession { - throw new Error('shimmed function UssdSession.createFromNetworkInterfaceId'); - } - - } - } - export namespace Proximity { - export class ConnectionRequestedEventArgs implements IConnectionRequestedEventArgs { - peerInformation: PeerInformation; - - } - export type DeviceArrivedEventHandler = () => void; - export type DeviceDepartedEventHandler = () => void; - export type MessageReceivedHandler = (message: ProximityMessage) => void; - export type MessageTransmittedHandler = (messageId: number) => void; - export enum PeerDiscoveryTypes { - none, - browse, - triggered, - } - export class PeerFinder { - static displayName: string = 'DESKTOP-J0DQ6NV'; - static allowWiFiDirect: Boolean = true; - static allowInfrastructure: Boolean = true; - static allowBluetooth: Boolean = true; - static alternateIdentities: string[] = [ ]; - static supportedDiscoveryTypes: PeerDiscoveryTypes = PeerDiscoveryTypes.browse; - static role: PeerRole = PeerRole.peer; - static discoveryData: Storage.Streams.IBuffer; - - static createWatcher(): PeerWatcher { - throw new Error('shimmed function PeerFinder.createWatcher'); - } - - static start(): void { - console.warn('shimmed function PeerFinder.start'); - } - - static start_1(peerMessage: string): void { - console.warn('shimmed function PeerFinder.start_1'); - } - - static stop(): void { - console.warn('shimmed function PeerFinder.stop'); - } - - static findAllPeersAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PeerFinder.findAllPeersAsync'); - } - - static connectAsync(peerInformation: PeerInformation): Foundation.IAsyncOperation { - throw new Error('shimmed function PeerFinder.connectAsync'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`PeerFinder::addEventListener: ${name}`); - switch (name) { - case "connectionrequested": // Foundation.TypedEventHandler - case "triggeredconnectionstatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class PeerInformation implements IPeerInformation, IPeerInformation3, IPeerInformationWithHostAndService { - displayName: string; - discoveryData: Storage.Streams.IBuffer; - id: string; - hostName: HostName; - serviceName: string; - - } - export enum PeerRole { - peer, - host, - client, - } - export class PeerWatcher implements IPeerWatcher { - status: PeerWatcherStatus; - - start(): void { - console.warn('shimmed function PeerWatcher.start'); - } - - stop(): void { - console.warn('shimmed function PeerWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PeerWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PeerWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export class ProximityDevice implements IProximityDevice { - bitsPerSecond: number; - deviceId: string; - maxMessageBytes: number; - - subscribeForMessage(messageType: string, messageReceivedHandler: MessageReceivedHandler): number { - throw new Error('shimmed function ProximityDevice.subscribeForMessage'); - } - - publishMessage(messageType: string, message: string): number { - throw new Error('shimmed function ProximityDevice.publishMessage'); - } - - publishMessage_1(messageType: string, message: string, messageTransmittedHandler: MessageTransmittedHandler): number { - throw new Error('shimmed function ProximityDevice.publishMessage_1'); - } - - publishBinaryMessage(messageType: string, message: Storage.Streams.IBuffer): number { - throw new Error('shimmed function ProximityDevice.publishBinaryMessage'); - } - - publishBinaryMessage_1(messageType: string, message: Storage.Streams.IBuffer, messageTransmittedHandler: MessageTransmittedHandler): number { - throw new Error('shimmed function ProximityDevice.publishBinaryMessage_1'); - } - - publishUriMessage(message: Foundation.Uri): number { - throw new Error('shimmed function ProximityDevice.publishUriMessage'); - } - - publishUriMessage_1(message: Foundation.Uri, messageTransmittedHandler: MessageTransmittedHandler): number { - throw new Error('shimmed function ProximityDevice.publishUriMessage_1'); - } - - stopSubscribingForMessage(subscriptionId: number): void { - console.warn('shimmed function ProximityDevice.stopSubscribingForMessage'); - } - - stopPublishingMessage(messageId: number): void { - console.warn('shimmed function ProximityDevice.stopPublishingMessage'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function ProximityDevice.getDeviceSelector'); - } - - static getDefault(): ProximityDevice { - throw new Error('shimmed function ProximityDevice.getDefault'); - } - - static fromId(deviceId: string): ProximityDevice { - throw new Error('shimmed function ProximityDevice.fromId'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ProximityDevice::addEventListener: ${name}`); - switch (name) { - case "devicearrived": // DeviceArrivedEventHandler - case "devicedeparted": // DeviceDepartedEventHandler - break; - } - - } - } - export class ProximityMessage implements IProximityMessage { - data: Storage.Streams.IBuffer; - dataAsString: string; - messageType: string; - subscriptionId: number; - - } - export class TriggeredConnectionStateChangedEventArgs implements ITriggeredConnectionStateChangedEventArgs { - id: number; - socket: Sockets.StreamSocket; - state: TriggeredConnectState; - - } - export enum TriggeredConnectState { - peerFound, - listening, - connecting, - completed, - canceled, - failed, - } - } - export namespace PushNotifications { - export class PushNotificationChannel implements IPushNotificationChannel { - expirationTime: Date; - uri: string; - - close(): void { - console.warn('shimmed function PushNotificationChannel.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PushNotificationChannel::addEventListener: ${name}`); - switch (name) { - case "pushnotificationreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class PushNotificationChannelManager { - static getDefault(): PushNotificationChannelManagerForUser { - throw new Error('shimmed function PushNotificationChannelManager.getDefault'); - } - - static getForUser(user: System.User): PushNotificationChannelManagerForUser { - throw new Error('shimmed function PushNotificationChannelManager.getForUser'); - } - - static createPushNotificationChannelForApplicationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManager.createPushNotificationChannelForApplicationAsync'); - } - - static createPushNotificationChannelForApplicationAsync_1(applicationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManager.createPushNotificationChannelForApplicationAsync_1'); - } - - static createPushNotificationChannelForSecondaryTileAsync(tileId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManager.createPushNotificationChannelForSecondaryTileAsync'); - } - - } - export class PushNotificationChannelManagerForUser implements IPushNotificationChannelManagerForUser, IPushNotificationChannelManagerForUser2 { - user: System.User; - - createPushNotificationChannelForApplicationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManagerForUser.createPushNotificationChannelForApplicationAsync'); - } - - createPushNotificationChannelForApplicationAsync_1(applicationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManagerForUser.createPushNotificationChannelForApplicationAsync_1'); - } - - createPushNotificationChannelForSecondaryTileAsync(tileId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManagerForUser.createPushNotificationChannelForSecondaryTileAsync'); - } - - createRawPushNotificationChannelWithAlternateKeyForApplicationAsync(appServerKey: Storage.Streams.IBuffer, channelId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManagerForUser.createRawPushNotificationChannelWithAlternateKeyForApplicationAsync'); - } - - createRawPushNotificationChannelWithAlternateKeyForApplicationAsync_1(appServerKey: Storage.Streams.IBuffer, channelId: string, appId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PushNotificationChannelManagerForUser.createRawPushNotificationChannelWithAlternateKeyForApplicationAsync_1'); - } - - } - export class PushNotificationReceivedEventArgs implements IPushNotificationReceivedEventArgs { - cancel: Boolean; - badgeNotification: UI.Notifications.BadgeNotification; - notificationType: PushNotificationType; - rawNotification: RawNotification; - tileNotification: UI.Notifications.TileNotification; - toastNotification: UI.Notifications.ToastNotification; - - } - export enum PushNotificationType { - toast, - tile, - badge, - raw, - tileFlyout, - } - export class RawNotification implements IRawNotification, IRawNotification2 { - content: string; - channelId: string; - headers: string[]; - - } - } - export namespace ServiceDiscovery { - export namespace Dnssd { - export class DnssdRegistrationResult implements IDnssdRegistrationResult, Foundation.IStringable { - // constructor(); - hasInstanceNameChanged: Boolean = false; - ipaddress: HostName; - status: DnssdRegistrationStatus = DnssdRegistrationStatus.invalidServiceName; - - } - export enum DnssdRegistrationStatus { - success, - invalidServiceName, - serverError, - securityError, - } - export class DnssdServiceInstance implements IDnssdServiceInstance, Foundation.IStringable { - // constructor(dnssdServiceInstanceName: string, hostName: HostName, port: number); - constructor(dnssdServiceInstanceName: string, hostName: HostName, port: number) {} - - weight: number; - priority: number; - port: number; - hostName: HostName; - dnssdServiceInstanceName: string; - textAttributes: string[]; - - registerStreamSocketListenerAsync(socket: Sockets.StreamSocketListener): Foundation.IAsyncOperation { - throw new Error('shimmed function DnssdServiceInstance.registerStreamSocketListenerAsync'); - } - - registerStreamSocketListenerAsync_1(socket: Sockets.StreamSocketListener, adapter: Connectivity.NetworkAdapter): Foundation.IAsyncOperation { - throw new Error('shimmed function DnssdServiceInstance.registerStreamSocketListenerAsync_1'); - } - - registerDatagramSocketAsync(socket: Sockets.DatagramSocket): Foundation.IAsyncOperation { - throw new Error('shimmed function DnssdServiceInstance.registerDatagramSocketAsync'); - } - - registerDatagramSocketAsync_1(socket: Sockets.DatagramSocket, adapter: Connectivity.NetworkAdapter): Foundation.IAsyncOperation { - throw new Error('shimmed function DnssdServiceInstance.registerDatagramSocketAsync_1'); - } - - } - export class DnssdServiceInstanceCollection implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): DnssdServiceInstance { - throw new Error('shimmed function DnssdServiceInstanceCollection.getAt'); - } - - indexOf(value: DnssdServiceInstance): { returnValue: Boolean, index: number } { - throw new Error('shimmed function DnssdServiceInstanceCollection.indexOf'); - } - - getMany(startIndex: number, items: DnssdServiceInstance[]): number { - throw new Error('shimmed function DnssdServiceInstanceCollection.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function DnssdServiceInstanceCollection.first'); - } - - } - export class DnssdServiceWatcher implements IDnssdServiceWatcher { - status: DnssdServiceWatcherStatus; - - start(): void { - console.warn('shimmed function DnssdServiceWatcher.start'); - } - - stop(): void { - console.warn('shimmed function DnssdServiceWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DnssdServiceWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export enum DnssdServiceWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - } - } - export namespace Sockets { - export interface BandwidthStatistics { - outboundBitsPerSecond: number; - inboundBitsPerSecond: number; - outboundBitsPerSecondInstability: number; - inboundBitsPerSecondInstability: number; - outboundBandwidthPeaked: Boolean; - inboundBandwidthPeaked: Boolean; - } - export class ControlChannelTrigger implements IControlChannelTrigger, Foundation.IClosable, IControlChannelTrigger2 { - // constructor(channelId: string, serverKeepAliveIntervalInMinutes: number); - // constructor(channelId: string, serverKeepAliveIntervalInMinutes: number, resourceRequestType: ControlChannelTriggerResourceType); - constructor(channelId: string, serverKeepAliveIntervalInMinutes: number, resourceRequestType: ControlChannelTriggerResourceType) {} - - serverKeepAliveIntervalInMinutes: number; - controlChannelTriggerId: string; - currentKeepAliveIntervalInMinutes: number; - keepAliveTrigger: ApplicationModel.Background.IBackgroundTrigger; - pushNotificationTrigger: ApplicationModel.Background.IBackgroundTrigger; - transportObject: any; - isWakeFromLowPowerSupported: Boolean; - - usingTransport(transport: any): void { - console.warn('shimmed function ControlChannelTrigger.usingTransport'); - } - - waitForPushEnabled(): ControlChannelTriggerStatus { - throw new Error('shimmed function ControlChannelTrigger.waitForPushEnabled'); - } - - decreaseNetworkKeepAliveInterval(): void { - console.warn('shimmed function ControlChannelTrigger.decreaseNetworkKeepAliveInterval'); - } - - flushTransport(): void { - console.warn('shimmed function ControlChannelTrigger.flushTransport'); - } - - close(): void { - console.warn('shimmed function ControlChannelTrigger.close'); - } - - } - export interface ControlChannelTriggerContract { - } - export enum ControlChannelTriggerResetReason { - fastUserSwitched, - lowPowerExit, - quietHoursExit, - applicationRestart, - } - export enum ControlChannelTriggerResourceType { - requestSoftwareSlot, - requestHardwareSlot, - } - export enum ControlChannelTriggerStatus { - hardwareSlotRequested, - softwareSlotAllocated, - hardwareSlotAllocated, - policyError, - systemError, - transportDisconnected, - serviceUnavailable, - } - export class DatagramSocket implements IDatagramSocket, Foundation.IClosable, IDatagramSocket2, IDatagramSocket3 { - // constructor(); - control: DatagramSocketControl = null; - information: DatagramSocketInformation = null; - outputStream: Storage.Streams.IOutputStream = null; - - connectAsync(remoteHostName: HostName, remoteServiceName: string): Foundation.IAsyncAction { - throw new Error('shimmed function DatagramSocket.connectAsync'); - } - - connectAsync_1(endpointPair: EndpointPair): Foundation.IAsyncAction { - throw new Error('shimmed function DatagramSocket.connectAsync_1'); - } - - bindServiceNameAsync(localServiceName: string): Foundation.IAsyncAction { - throw new Error('shimmed function DatagramSocket.bindServiceNameAsync'); - } - - bindEndpointAsync(localHostName: HostName, localServiceName: string): Foundation.IAsyncAction { - throw new Error('shimmed function DatagramSocket.bindEndpointAsync'); - } - - joinMulticastGroup(host: HostName): void { - console.warn('shimmed function DatagramSocket.joinMulticastGroup'); - } - - getOutputStreamAsync(remoteHostName: HostName, remoteServiceName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DatagramSocket.getOutputStreamAsync'); - } - - getOutputStreamAsync_1(endpointPair: EndpointPair): Foundation.IAsyncOperation { - throw new Error('shimmed function DatagramSocket.getOutputStreamAsync_1'); - } - - close(): void { - console.warn('shimmed function DatagramSocket.close'); - } - - bindServiceNameAsync_1(localServiceName: string, adapter: Connectivity.NetworkAdapter): Foundation.IAsyncAction { - throw new Error('shimmed function DatagramSocket.bindServiceNameAsync_1'); - } - - cancelIOAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function DatagramSocket.cancelIOAsync'); - } - - enableTransferOwnership(taskId: string): void { - console.warn('shimmed function DatagramSocket.enableTransferOwnership'); - } - - enableTransferOwnership_1(taskId: string, connectedStandbyAction: SocketActivityConnectedStandbyAction): void { - console.warn('shimmed function DatagramSocket.enableTransferOwnership_1'); - } - - transferOwnership(socketId: string): void { - console.warn('shimmed function DatagramSocket.transferOwnership'); - } - - transferOwnership_1(socketId: string, data: SocketActivityContext): void { - console.warn('shimmed function DatagramSocket.transferOwnership_1'); - } - - transferOwnership_2(socketId: string, data: SocketActivityContext, keepAliveTime: number): void { - console.warn('shimmed function DatagramSocket.transferOwnership_2'); - } - - static getEndpointPairsAsync(remoteHostName: HostName, remoteServiceName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DatagramSocket.getEndpointPairsAsync'); - } - - static getEndpointPairsAsync_1(remoteHostName: HostName, remoteServiceName: string, sortOptions: HostNameSortOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function DatagramSocket.getEndpointPairsAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DatagramSocket::addEventListener: ${name}`); - switch (name) { - case "messagereceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class DatagramSocketControl implements IDatagramSocketControl, IDatagramSocketControl2, IDatagramSocketControl3 { - qualityOfService: SocketQualityOfService; - outboundUnicastHopLimit: number; - inboundBufferSizeInBytes: number; - dontFragment: Boolean; - multicastOnly: Boolean; - - } - export class DatagramSocketInformation implements IDatagramSocketInformation { - localAddress: HostName; - localPort: string; - remoteAddress: HostName; - remotePort: string; - - } - export class DatagramSocketMessageReceivedEventArgs implements IDatagramSocketMessageReceivedEventArgs { - localAddress: HostName; - remoteAddress: HostName; - remotePort: string; - - getDataReader(): Storage.Streams.DataReader { - throw new Error('shimmed function DatagramSocketMessageReceivedEventArgs.getDataReader'); - } - - getDataStream(): Storage.Streams.IInputStream { - throw new Error('shimmed function DatagramSocketMessageReceivedEventArgs.getDataStream'); - } - - } - export interface IControlChannelTriggerEventDetails { - controlChannelTrigger: ControlChannelTrigger; - } - export interface IControlChannelTriggerResetEventDetails { - hardwareSlotReset: Boolean; - resetReason: ControlChannelTriggerResetReason; - softwareSlotReset: Boolean; - } - export interface IWebSocket extends Foundation.IClosable { - outputStream: Storage.Streams.IOutputStream; - connectAsync(uri: Foundation.Uri): Foundation.IAsyncAction; - setRequestHeader(headerName: string, headerValue: string): void; - close(code: number, reason: string): void; - } - export interface IWebSocketControl { - outboundBufferSizeInBytes: number; - proxyCredential: Security.Credentials.PasswordCredential; - serverCredential: Security.Credentials.PasswordCredential; - supportedProtocols: string[]; - } - export interface IWebSocketControl2 extends IWebSocketControl { - ignorableServerCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - } - export interface IWebSocketInformation { - bandwidthStatistics: BandwidthStatistics; - localAddress: HostName; - protocol: string; - } - export interface IWebSocketInformation2 extends IWebSocketInformation { - serverCertificate: Security.Cryptography.Certificates.Certificate; - serverCertificateErrorSeverity: SocketSslErrorSeverity; - serverCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serverIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - } - export class MessageWebSocket implements IMessageWebSocket, IWebSocket, Foundation.IClosable, IMessageWebSocket2, IMessageWebSocket3 { - // constructor(); - control: MessageWebSocketControl = null; - information: MessageWebSocketInformation = null; - outputStream: Storage.Streams.IOutputStream = null; - - connectAsync(uri: Foundation.Uri): Foundation.IAsyncAction { - throw new Error('shimmed function MessageWebSocket.connectAsync'); - } - - setRequestHeader(headerName: string, headerValue: string): void { - console.warn('shimmed function MessageWebSocket.setRequestHeader'); - } - - close(code: number, reason: string): void { - console.warn('shimmed function MessageWebSocket.close'); - } - - close_1(): void { - console.warn('shimmed function MessageWebSocket.close_1'); - } - - sendNonfinalFrameAsync(data: Storage.Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function MessageWebSocket.sendNonfinalFrameAsync'); - } - - sendFinalFrameAsync(data: Storage.Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function MessageWebSocket.sendFinalFrameAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MessageWebSocket::addEventListener: ${name}`); - switch (name) { - case "messagereceived": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - case "servercustomvalidationrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MessageWebSocketControl implements IMessageWebSocketControl, IWebSocketControl, IWebSocketControl2, IMessageWebSocketControl2 { - messageType: SocketMessageType; - maxMessageSize: number; - receiveMode: MessageWebSocketReceiveMode; - desiredUnsolicitedPongInterval: number; - clientCertificate: Security.Cryptography.Certificates.Certificate; - actualUnsolicitedPongInterval: number; - serverCredential: Security.Credentials.PasswordCredential; - proxyCredential: Security.Credentials.PasswordCredential; - outboundBufferSizeInBytes: number; - supportedProtocols: string[]; - ignorableServerCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - - } - export class MessageWebSocketInformation implements IWebSocketInformation, IWebSocketInformation2 { - bandwidthStatistics: BandwidthStatistics; - localAddress: HostName; - protocol: string; - serverCertificate: Security.Cryptography.Certificates.Certificate; - serverCertificateErrorSeverity: SocketSslErrorSeverity; - serverCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serverIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - - } - export class MessageWebSocketMessageReceivedEventArgs implements IMessageWebSocketMessageReceivedEventArgs, IMessageWebSocketMessageReceivedEventArgs2 { - messageType: SocketMessageType; - isMessageComplete: Boolean; - - getDataReader(): Storage.Streams.DataReader { - throw new Error('shimmed function MessageWebSocketMessageReceivedEventArgs.getDataReader'); - } - - getDataStream(): Storage.Streams.IInputStream { - throw new Error('shimmed function MessageWebSocketMessageReceivedEventArgs.getDataStream'); - } - - } - export enum MessageWebSocketReceiveMode { - fullMessage, - partialMessage, - } - export interface RoundTripTimeStatistics { - variance: number; - max: number; - min: number; - sum: number; - } - export class ServerMessageWebSocket implements IServerMessageWebSocket, Foundation.IClosable { - control: ServerMessageWebSocketControl; - information: ServerMessageWebSocketInformation; - outputStream: Storage.Streams.IOutputStream; - - close(code: number, reason: string): void { - console.warn('shimmed function ServerMessageWebSocket.close'); - } - - close_1(): void { - console.warn('shimmed function ServerMessageWebSocket.close_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ServerMessageWebSocket::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "messagereceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class ServerMessageWebSocketControl implements IServerMessageWebSocketControl { - messageType: SocketMessageType; - - } - export class ServerMessageWebSocketInformation implements IServerMessageWebSocketInformation { - bandwidthStatistics: BandwidthStatistics; - localAddress: HostName; - protocol: string; - - } - export class ServerStreamWebSocket implements IServerStreamWebSocket, Foundation.IClosable { - information: ServerStreamWebSocketInformation; - inputStream: Storage.Streams.IInputStream; - outputStream: Storage.Streams.IOutputStream; - - close(code: number, reason: string): void { - console.warn('shimmed function ServerStreamWebSocket.close'); - } - - close_1(): void { - console.warn('shimmed function ServerStreamWebSocket.close_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ServerStreamWebSocket::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class ServerStreamWebSocketInformation implements IServerStreamWebSocketInformation { - bandwidthStatistics: BandwidthStatistics; - localAddress: HostName; - protocol: string; - - } - export enum SocketActivityConnectedStandbyAction { - doNotWake, - wake, - } - export class SocketActivityContext implements ISocketActivityContext { - // constructor(data: Storage.Streams.IBuffer); - constructor(data: Storage.Streams.IBuffer) {} - - data: Storage.Streams.IBuffer; - - } - export class SocketActivityInformation implements ISocketActivityInformation { - context: SocketActivityContext; - datagramSocket: DatagramSocket; - id: string; - socketKind: SocketActivityKind; - streamSocket: StreamSocket; - streamSocketListener: StreamSocketListener; - taskId: string; - static allSockets: string[] = [ ]; - - } - export enum SocketActivityKind { - none, - streamSocketListener, - datagramSocket, - streamSocket, - } - export class SocketActivityTriggerDetails implements ISocketActivityTriggerDetails { - reason: SocketActivityTriggerReason; - socketInformation: SocketActivityInformation; - - } - export enum SocketActivityTriggerReason { - none, - socketActivity, - connectionAccepted, - keepAliveTimerExpired, - socketClosed, - } - export class SocketError { - static getStatus(hresult: number): SocketErrorStatus { - throw new Error('shimmed function SocketError.getStatus'); - } - - } - export enum SocketErrorStatus { - unknown, - operationAborted, - httpInvalidServerResponse, - connectionTimedOut, - addressFamilyNotSupported, - socketTypeNotSupported, - hostNotFound, - noDataRecordOfRequestedType, - nonAuthoritativeHostNotFound, - classTypeNotFound, - addressAlreadyInUse, - cannotAssignRequestedAddress, - connectionRefused, - networkIsUnreachable, - unreachableHost, - networkIsDown, - networkDroppedConnectionOnReset, - softwareCausedConnectionAbort, - connectionResetByPeer, - hostIsDown, - noAddressesFound, - tooManyOpenFiles, - messageTooLong, - certificateExpired, - certificateUntrustedRoot, - certificateCommonNameIsIncorrect, - certificateWrongUsage, - certificateRevoked, - certificateNoRevocationCheck, - certificateRevocationServerOffline, - certificateIsInvalid, - } - export enum SocketMessageType { - binary, - utf8, - } - export enum SocketProtectionLevel { - plainSocket, - ssl, - sslAllowNullEncryption, - bluetoothEncryptionAllowNullAuthentication, - bluetoothEncryptionWithAuthentication, - ssl3AllowWeakEncryption, - tls10, - tls11, - tls12, - unspecified, - } - export enum SocketQualityOfService { - normal, - lowLatency, - } - export enum SocketSslErrorSeverity { - none, - ignorable, - fatal, - } - export class StreamSocket implements IStreamSocket, Foundation.IClosable, IStreamSocket2, IStreamSocket3 { - // constructor(); - control: StreamSocketControl = null; - information: StreamSocketInformation = null; - inputStream: Storage.Streams.IInputStream = null; - outputStream: Storage.Streams.IOutputStream = null; - - connectAsync(endpointPair: EndpointPair): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocket.connectAsync'); - } - - connectAsync_1(remoteHostName: HostName, remoteServiceName: string): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocket.connectAsync_1'); - } - - connectAsync_2(endpointPair: EndpointPair, protectionLevel: SocketProtectionLevel): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocket.connectAsync_2'); - } - - connectAsync_3(remoteHostName: HostName, remoteServiceName: string, protectionLevel: SocketProtectionLevel): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocket.connectAsync_3'); - } - - upgradeToSslAsync(protectionLevel: SocketProtectionLevel, validationHostName: HostName): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocket.upgradeToSslAsync'); - } - - close(): void { - console.warn('shimmed function StreamSocket.close'); - } - - connectAsync_4(remoteHostName: HostName, remoteServiceName: string, protectionLevel: SocketProtectionLevel, adapter: Connectivity.NetworkAdapter): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocket.connectAsync_4'); - } - - cancelIOAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocket.cancelIOAsync'); - } - - enableTransferOwnership(taskId: string): void { - console.warn('shimmed function StreamSocket.enableTransferOwnership'); - } - - enableTransferOwnership_1(taskId: string, connectedStandbyAction: SocketActivityConnectedStandbyAction): void { - console.warn('shimmed function StreamSocket.enableTransferOwnership_1'); - } - - transferOwnership(socketId: string): void { - console.warn('shimmed function StreamSocket.transferOwnership'); - } - - transferOwnership_1(socketId: string, data: SocketActivityContext): void { - console.warn('shimmed function StreamSocket.transferOwnership_1'); - } - - transferOwnership_2(socketId: string, data: SocketActivityContext, keepAliveTime: number): void { - console.warn('shimmed function StreamSocket.transferOwnership_2'); - } - - static getEndpointPairsAsync(remoteHostName: HostName, remoteServiceName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StreamSocket.getEndpointPairsAsync'); - } - - static getEndpointPairsAsync_1(remoteHostName: HostName, remoteServiceName: string, sortOptions: HostNameSortOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StreamSocket.getEndpointPairsAsync_1'); - } - - } - export class StreamSocketControl implements IStreamSocketControl, IStreamSocketControl2, IStreamSocketControl3, IStreamSocketControl4 { - qualityOfService: SocketQualityOfService; - outboundUnicastHopLimit: number; - outboundBufferSizeInBytes: number; - noDelay: Boolean; - keepAlive: Boolean; - ignorableServerCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serializeConnectionAttempts: Boolean; - clientCertificate: Security.Cryptography.Certificates.Certificate; - minProtectionLevel: SocketProtectionLevel; - - } - export class StreamSocketInformation implements IStreamSocketInformation, IStreamSocketInformation2 { - bandwidthStatistics: BandwidthStatistics; - localAddress: HostName; - localPort: string; - protectionLevel: SocketProtectionLevel; - remoteAddress: HostName; - remoteHostName: HostName; - remotePort: string; - remoteServiceName: string; - roundTripTimeStatistics: RoundTripTimeStatistics; - sessionKey: Storage.Streams.IBuffer; - serverCertificate: Security.Cryptography.Certificates.Certificate; - serverCertificateErrorSeverity: SocketSslErrorSeverity; - serverCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serverIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - - } - export class StreamSocketListener implements IStreamSocketListener, Foundation.IClosable, IStreamSocketListener2, IStreamSocketListener3 { - // constructor(); - control: StreamSocketListenerControl = null; - information: StreamSocketListenerInformation = null; - - bindServiceNameAsync(localServiceName: string): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocketListener.bindServiceNameAsync'); - } - - bindEndpointAsync(localHostName: HostName, localServiceName: string): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocketListener.bindEndpointAsync'); - } - - close(): void { - console.warn('shimmed function StreamSocketListener.close'); - } - - bindServiceNameAsync_1(localServiceName: string, protectionLevel: SocketProtectionLevel): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocketListener.bindServiceNameAsync_1'); - } - - bindServiceNameAsync_2(localServiceName: string, protectionLevel: SocketProtectionLevel, adapter: Connectivity.NetworkAdapter): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocketListener.bindServiceNameAsync_2'); - } - - cancelIOAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StreamSocketListener.cancelIOAsync'); - } - - enableTransferOwnership(taskId: string): void { - console.warn('shimmed function StreamSocketListener.enableTransferOwnership'); - } - - enableTransferOwnership_1(taskId: string, connectedStandbyAction: SocketActivityConnectedStandbyAction): void { - console.warn('shimmed function StreamSocketListener.enableTransferOwnership_1'); - } - - transferOwnership(socketId: string): void { - console.warn('shimmed function StreamSocketListener.transferOwnership'); - } - - transferOwnership_1(socketId: string, data: SocketActivityContext): void { - console.warn('shimmed function StreamSocketListener.transferOwnership_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StreamSocketListener::addEventListener: ${name}`); - switch (name) { - case "connectionreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class StreamSocketListenerConnectionReceivedEventArgs implements IStreamSocketListenerConnectionReceivedEventArgs { - socket: StreamSocket; - - } - export class StreamSocketListenerControl implements IStreamSocketListenerControl, IStreamSocketListenerControl2 { - qualityOfService: SocketQualityOfService; - outboundUnicastHopLimit: number; - outboundBufferSizeInBytes: number; - noDelay: Boolean; - keepAlive: Boolean; - - } - export class StreamSocketListenerInformation implements IStreamSocketListenerInformation { - localPort: string; - - } - export class StreamWebSocket implements IStreamWebSocket, IWebSocket, Foundation.IClosable, IStreamWebSocket2 { - // constructor(); - control: StreamWebSocketControl = null; - information: StreamWebSocketInformation = null; - inputStream: Storage.Streams.IInputStream = null; - outputStream: Storage.Streams.IOutputStream = null; - - connectAsync(uri: Foundation.Uri): Foundation.IAsyncAction { - throw new Error('shimmed function StreamWebSocket.connectAsync'); - } - - setRequestHeader(headerName: string, headerValue: string): void { - console.warn('shimmed function StreamWebSocket.setRequestHeader'); - } - - close(code: number, reason: string): void { - console.warn('shimmed function StreamWebSocket.close'); - } - - close_1(): void { - console.warn('shimmed function StreamWebSocket.close_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StreamWebSocket::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "servercustomvalidationrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class StreamWebSocketControl implements IStreamWebSocketControl, IWebSocketControl, IWebSocketControl2, IStreamWebSocketControl2 { - noDelay: Boolean; - desiredUnsolicitedPongInterval: number; - clientCertificate: Security.Cryptography.Certificates.Certificate; - actualUnsolicitedPongInterval: number; - serverCredential: Security.Credentials.PasswordCredential; - proxyCredential: Security.Credentials.PasswordCredential; - outboundBufferSizeInBytes: number; - supportedProtocols: string[]; - ignorableServerCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - - } - export class StreamWebSocketInformation implements IWebSocketInformation, IWebSocketInformation2 { - bandwidthStatistics: BandwidthStatistics; - localAddress: HostName; - protocol: string; - serverCertificate: Security.Cryptography.Certificates.Certificate; - serverCertificateErrorSeverity: SocketSslErrorSeverity; - serverCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serverIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - - } - export class WebSocketClosedEventArgs implements IWebSocketClosedEventArgs { - code: number; - reason: string; - - } - export class WebSocketError { - static getStatus(hresult: number): Web.WebErrorStatus { - throw new Error('shimmed function WebSocketError.getStatus'); - } - - } - export class WebSocketKeepAlive implements ApplicationModel.Background.IBackgroundTask { - // constructor(); - run(taskInstance: ApplicationModel.Background.IBackgroundTaskInstance): void { - console.warn('shimmed function WebSocketKeepAlive.run'); - } - - } - export class WebSocketServerCustomValidationRequestedEventArgs implements IWebSocketServerCustomValidationRequestedEventArgs { - serverCertificate: Security.Cryptography.Certificates.Certificate; - serverCertificateErrorSeverity: SocketSslErrorSeverity; - serverCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serverIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - - reject(): void { - console.warn('shimmed function WebSocketServerCustomValidationRequestedEventArgs.reject'); - } - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function WebSocketServerCustomValidationRequestedEventArgs.getDeferral'); - } - - } - } - export namespace Vpn { - export interface IVpnChannelStatics { - processEventAsync(thirdPartyPlugIn: any, event: any): void; - } - export interface IVpnCredential { - additionalPin: string; - certificateCredential: Security.Cryptography.Certificates.Certificate; - oldPasswordCredential: Security.Credentials.PasswordCredential; - passkeyCredential: Security.Credentials.PasswordCredential; - } - export interface IVpnCustomPrompt { - bordered: Boolean; - compulsory: Boolean; - label: string; - } - export interface IVpnCustomPromptElement { - compulsory: Boolean; - displayName: string; - emphasized: Boolean; - } - export interface IVpnDomainNameInfoFactory { - createVpnDomainNameInfo(name: string, nameType: VpnDomainNameType, dnsServerList: Foundation.Collections.IIterable, proxyServerList: Foundation.Collections.IIterable): VpnDomainNameInfo; - } - export interface IVpnInterfaceIdFactory { - createVpnInterfaceId(address: number[]): VpnInterfaceId; - } - export interface IVpnNamespaceInfoFactory { - createVpnNamespaceInfo(name: string, dnsServerList: HostName[], proxyServerList: HostName[]): VpnNamespaceInfo; - } - export interface IVpnPacketBufferFactory { - createVpnPacketBuffer(parentBuffer: VpnPacketBuffer, offset: number, length: number): VpnPacketBuffer; - } - export interface IVpnPlugIn { - connect(channel: VpnChannel): void; - disconnect(channel: VpnChannel): void; - getKeepAlivePayload(channel: VpnChannel): VpnPacketBuffer; - encapsulate(channel: VpnChannel, packets: VpnPacketBufferList, encapulatedPackets: VpnPacketBufferList): void; - decapsulate(channel: VpnChannel, encapBuffer: VpnPacketBuffer, decapsulatedPackets: VpnPacketBufferList, controlPacketsToSend: VpnPacketBufferList): void; - } - export interface IVpnProfile { - alwaysOn: Boolean; - appTriggers: VpnAppId[]; - domainNameInfoList: VpnDomainNameInfo[]; - profileName: string; - rememberCredentials: Boolean; - routes: VpnRoute[]; - trafficFilters: VpnTrafficFilter[]; - } - export interface IVpnRouteFactory { - createVpnRoute(address: HostName, prefixSize: number): VpnRoute; - } - export class VpnAppId implements IVpnAppId { - // constructor(type: VpnAppIdType, value: string); - constructor(type: VpnAppIdType, value: string) {} - - value: string; - type: VpnAppIdType; - - } - export enum VpnAppIdType { - packageFamilyName, - fullyQualifiedBinaryName, - filePath, - } - export enum VpnAuthenticationMethod { - mschapv2, - eap, - certificate, - presharedKey, - } - export class VpnChannel implements IVpnChannel, IVpnChannel2, IVpnChannel4 { - plugInContext: any; - configuration: VpnChannelConfiguration; - id: number; - systemHealth: VpnSystemHealth; - currentRequestTransportContext: any; - - associateTransport(mainOuterTunnelTransport: any, optionalOuterTunnelTransport: any): void { - console.warn('shimmed function VpnChannel.associateTransport'); - } - - start(assignedClientIPv4list: HostName[], assignedClientIPv6list: HostName[], vpnInterfaceId: VpnInterfaceId, routeScope: VpnRouteAssignment, namespaceScope: VpnNamespaceAssignment, mtuSize: number, maxFrameSize: number, optimizeForLowCostNetwork: Boolean, mainOuterTunnelTransport: any, optionalOuterTunnelTransport: any): void { - console.warn('shimmed function VpnChannel.start'); - } - - stop(): void { - console.warn('shimmed function VpnChannel.stop'); - } - - requestCredentials(credType: VpnCredentialType, isRetry: Boolean, isSingleSignOnCredential: Boolean, certificate: Security.Cryptography.Certificates.Certificate): VpnPickedCredential { - throw new Error('shimmed function VpnChannel.requestCredentials'); - } - - requestVpnPacketBuffer(type: VpnDataPathType): VpnPacketBuffer { - throw new Error('shimmed function VpnChannel.requestVpnPacketBuffer'); - } - - logDiagnosticMessage(message: string): void { - console.warn('shimmed function VpnChannel.logDiagnosticMessage'); - } - - requestCustomPrompt(customPrompt: IVpnCustomPrompt[]): void { - console.warn('shimmed function VpnChannel.requestCustomPrompt'); - } - - setErrorMessage(message: string): void { - console.warn('shimmed function VpnChannel.setErrorMessage'); - } - - setAllowedSslTlsVersions(tunnelTransport: any, useTls12: Boolean): void { - console.warn('shimmed function VpnChannel.setAllowedSslTlsVersions'); - } - - startWithMainTransport(assignedClientIPv4list: HostName[], assignedClientIPv6list: HostName[], vpnInterfaceId: VpnInterfaceId, assignedRoutes: VpnRouteAssignment, assignedDomainName: VpnDomainNameAssignment, mtuSize: number, maxFrameSize: number, reserved: Boolean, mainOuterTunnelTransport: any): void { - console.warn('shimmed function VpnChannel.startWithMainTransport'); - } - - startExistingTransports(assignedClientIPv4list: HostName[], assignedClientIPv6list: HostName[], vpnInterfaceId: VpnInterfaceId, assignedRoutes: VpnRouteAssignment, assignedDomainName: VpnDomainNameAssignment, mtuSize: number, maxFrameSize: number, reserved: Boolean): void { - console.warn('shimmed function VpnChannel.startExistingTransports'); - } - - getVpnSendPacketBuffer(): VpnPacketBuffer { - throw new Error('shimmed function VpnChannel.getVpnSendPacketBuffer'); - } - - getVpnReceivePacketBuffer(): VpnPacketBuffer { - throw new Error('shimmed function VpnChannel.getVpnReceivePacketBuffer'); - } - - requestCustomPromptAsync(customPromptElement: IVpnCustomPromptElement[]): Foundation.IAsyncAction { - throw new Error('shimmed function VpnChannel.requestCustomPromptAsync'); - } - - requestCredentialsAsync(credType: VpnCredentialType, credOptions: number, certificate: Security.Cryptography.Certificates.Certificate): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnChannel.requestCredentialsAsync'); - } - - requestCredentialsAsync_1(credType: VpnCredentialType, credOptions: number): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnChannel.requestCredentialsAsync_1'); - } - - requestCredentialsAsync_2(credType: VpnCredentialType): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnChannel.requestCredentialsAsync_2'); - } - - terminateConnection(message: string): void { - console.warn('shimmed function VpnChannel.terminateConnection'); - } - - startWithTrafficFilter(assignedClientIpv4List: HostName[], assignedClientIpv6List: HostName[], vpnInterfaceId: VpnInterfaceId, assignedRoutes: VpnRouteAssignment, assignedNamespace: VpnDomainNameAssignment, mtuSize: number, maxFrameSize: number, reserved: Boolean, mainOuterTunnelTransport: any, optionalOuterTunnelTransport: any, assignedTrafficFilters: VpnTrafficFilterAssignment): void { - console.warn('shimmed function VpnChannel.startWithTrafficFilter'); - } - - addAndAssociateTransport(transport: any, context: any): void { - console.warn('shimmed function VpnChannel.addAndAssociateTransport'); - } - - startWithTrafficFilter_1(assignedClientIpv4Addresses: Foundation.Collections.IIterable, assignedClientIpv6Addresses: Foundation.Collections.IIterable, vpninterfaceId: VpnInterfaceId, assignedRoutes: VpnRouteAssignment, assignedNamespace: VpnDomainNameAssignment, mtuSize: number, maxFrameSize: number, reserved: Boolean, transports: Foundation.Collections.IIterable, assignedTrafficFilters: VpnTrafficFilterAssignment): void { - console.warn('shimmed function VpnChannel.startWithTrafficFilter_1'); - } - - replaceAndAssociateTransport(transport: any, context: any): void { - console.warn('shimmed function VpnChannel.replaceAndAssociateTransport'); - } - - startReconnectingTransport(transport: any, context: any): void { - console.warn('shimmed function VpnChannel.startReconnectingTransport'); - } - - getSlotTypeForTransportContext(context: any): Sockets.ControlChannelTriggerStatus { - throw new Error('shimmed function VpnChannel.getSlotTypeForTransportContext'); - } - - static processEventAsync(thirdPartyPlugIn: any, event: any): void { - console.warn('shimmed function VpnChannel.processEventAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VpnChannel::addEventListener: ${name}`); - switch (name) { - case "activitychange": // Foundation.TypedEventHandler - case "activitystatechange": // Foundation.TypedEventHandler - break; - } - - } - } - export class VpnChannelActivityEventArgs implements IVpnChannelActivityEventArgs { - type: VpnChannelActivityEventType; - - } - export enum VpnChannelActivityEventType { - idle, - active, - } - export class VpnChannelActivityStateChangedArgs implements IVpnChannelActivityStateChangedArgs { - activityState: VpnChannelActivityEventType; - - } - export class VpnChannelConfiguration implements IVpnChannelConfiguration, IVpnChannelConfiguration2 { - customField: string; - serverHostNameList: HostName[]; - serverServiceName: string; - serverUris: Foundation.Uri[]; - - } - export enum VpnChannelRequestCredentialsOptions { - none, - retrying, - useForSingleSignIn, - } - export class VpnCredential implements IVpnCredential { - additionalPin: string; - certificateCredential: Security.Cryptography.Certificates.Certificate; - oldPasswordCredential: Security.Credentials.PasswordCredential; - passkeyCredential: Security.Credentials.PasswordCredential; - - } - export enum VpnCredentialType { - usernamePassword, - usernameOtpPin, - usernamePasswordAndPin, - usernamePasswordChange, - smartCard, - protectedCertificate, - unProtectedCertificate, - } - export class VpnCustomCheckBox implements IVpnCustomCheckBox, IVpnCustomPrompt { - // constructor(); - initialCheckState: Boolean = false; - checked: Boolean = false; - label: string = ''; - compulsory: Boolean = false; - bordered: Boolean = true; - - } - export class VpnCustomComboBox implements IVpnCustomComboBox, IVpnCustomPrompt { - // constructor(); - optionsText: string[] = [ ]; - selected: number = 0; - label: string = ''; - compulsory: Boolean = false; - bordered: Boolean = false; - - } - export class VpnCustomEditBox implements IVpnCustomEditBox, IVpnCustomPrompt { - // constructor(); - noEcho: Boolean = false; - defaultText: string = ''; - text: string = ''; - label: string = ''; - compulsory: Boolean = false; - bordered: Boolean = false; - - } - export class VpnCustomErrorBox implements IVpnCustomErrorBox, IVpnCustomPrompt { - // constructor(); - label: string = ''; - compulsory: Boolean = false; - bordered: Boolean = false; - - } - export class VpnCustomPromptBooleanInput implements IVpnCustomPromptBooleanInput, IVpnCustomPromptElement { - // constructor(); - initialValue: Boolean = false; - value: Boolean = false; - emphasized: Boolean = false; - displayName: string = ''; - compulsory: Boolean = false; - - } - export class VpnCustomPromptOptionSelector implements IVpnCustomPromptOptionSelector, IVpnCustomPromptElement { - // constructor(); - emphasized: Boolean = false; - displayName: string = ''; - compulsory: Boolean = false; - options: string[] = [ ]; - selectedIndex: number = 0; - - } - export class VpnCustomPromptText implements IVpnCustomPromptText, IVpnCustomPromptElement { - // constructor(); - emphasized: Boolean = false; - displayName: string = ''; - compulsory: Boolean = false; - text: string = ''; - - } - export class VpnCustomPromptTextInput implements IVpnCustomPromptTextInput, IVpnCustomPromptElement { - // constructor(); - emphasized: Boolean = false; - displayName: string = ''; - compulsory: Boolean = false; - placeholderText: string = ''; - isTextHidden: Boolean = false; - text: string = ''; - - } - export class VpnCustomTextBox implements IVpnCustomTextBox, IVpnCustomPrompt { - // constructor(); - label: string = ''; - compulsory: Boolean = false; - bordered: Boolean = false; - displayText: string = ''; - - } - export enum VpnDataPathType { - send, - receive, - } - export class VpnDomainNameAssignment implements IVpnDomainNameAssignment { - // constructor(); - proxyAutoConfigurationUri: Foundation.Uri; - domainNameList: VpnDomainNameInfo[] = [ ]; - - } - export class VpnDomainNameInfo implements IVpnDomainNameInfo, IVpnDomainNameInfo2 { - // constructor(name: string, nameType: VpnDomainNameType, dnsServerList: Foundation.Collections.IIterable, proxyServerList: Foundation.Collections.IIterable); - constructor(name: string, nameType: VpnDomainNameType, dnsServerList: Foundation.Collections.IIterable, proxyServerList: Foundation.Collections.IIterable) {} - - domainNameType: VpnDomainNameType; - domainName: HostName; - dnsServers: HostName[]; - webProxyServers: HostName[]; - webProxyUris: Foundation.Uri[]; - - } - export enum VpnDomainNameType { - suffix, - fullyQualified, - reserved = 65535, - } - export class VpnInterfaceId implements IVpnInterfaceId { - // constructor(address: number[]); - constructor(address: number[]) {} - - getAddressInfo(): number[] { - throw new Error('shimmed function VpnInterfaceId.getAddressInfo'); - } - - } - export enum VpnIPProtocol { - none, - tcp = 6, - udp = 17, - icmp = 1, - ipv6Icmp = 58, - igmp = 2, - pgm = 113, - } - export class VpnManagementAgent implements IVpnManagementAgent { - // constructor(); - addProfileFromXmlAsync(xml: string): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.addProfileFromXmlAsync'); - } - - addProfileFromObjectAsync(profile: IVpnProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.addProfileFromObjectAsync'); - } - - updateProfileFromXmlAsync(xml: string): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.updateProfileFromXmlAsync'); - } - - updateProfileFromObjectAsync(profile: IVpnProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.updateProfileFromObjectAsync'); - } - - getProfilesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.getProfilesAsync'); - } - - deleteProfileAsync(profile: IVpnProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.deleteProfileAsync'); - } - - connectProfileAsync(profile: IVpnProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.connectProfileAsync'); - } - - connectProfileWithPasswordCredentialAsync(profile: IVpnProfile, passwordCredential: Security.Credentials.PasswordCredential): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.connectProfileWithPasswordCredentialAsync'); - } - - disconnectProfileAsync(profile: IVpnProfile): Foundation.IAsyncOperation { - throw new Error('shimmed function VpnManagementAgent.disconnectProfileAsync'); - } - - } - export enum VpnManagementConnectionStatus { - disconnected, - disconnecting, - connected, - connecting, - } - export enum VpnManagementErrorStatus { - ok, - other, - invalidXmlSyntax, - profileNameTooLong, - profileInvalidAppId, - accessDenied, - cannotFindProfile, - alreadyDisconnecting, - alreadyConnected, - generalAuthenticationFailure, - eapFailure, - smartCardFailure, - certificateFailure, - serverConfiguration, - noConnection, - serverConnection, - userNamePassword, - dnsNotResolvable, - invalidIP, - } - export class VpnNamespaceAssignment implements IVpnNamespaceAssignment { - // constructor(); - proxyAutoConfigUri: Foundation.Uri; - namespaceList: VpnNamespaceInfo[]; - - } - export class VpnNamespaceInfo implements IVpnNamespaceInfo { - // constructor(name: string, dnsServerList: HostName[], proxyServerList: HostName[]); - constructor(name: string, dnsServerList: HostName[], proxyServerList: HostName[]) {} - - webProxyServers: HostName[]; - namespace: string; - dnsServers: HostName[]; - - } - export class VpnNativeProfile implements IVpnNativeProfile, IVpnProfile, IVpnNativeProfile2 { - // constructor(); - userAuthenticationMethod: VpnAuthenticationMethod = VpnAuthenticationMethod.mschapv2; - tunnelAuthenticationMethod: VpnAuthenticationMethod = VpnAuthenticationMethod.mschapv2; - routingPolicyType: VpnRoutingPolicyType = VpnRoutingPolicyType.splitRouting; - eapConfiguration: string = ''; - nativeProtocolType: VpnNativeProtocolType = VpnNativeProtocolType.pptp; - servers: string[] = [ ]; - requireVpnClientAppUI: Boolean = false; - connectionStatus: VpnManagementConnectionStatus; - profileName: string = ''; - rememberCredentials: Boolean = false; - alwaysOn: Boolean = true; - routes: VpnRoute[] = [ ]; - appTriggers: VpnAppId[] = [ ]; - trafficFilters: VpnTrafficFilter[] = [ ]; - domainNameInfoList: VpnDomainNameInfo[] = [ ]; - - } - export enum VpnNativeProtocolType { - pptp, - l2tp, - ipsecIkev2, - } - export class VpnPacketBuffer implements IVpnPacketBuffer, IVpnPacketBuffer2, IVpnPacketBuffer3 { - // constructor(parentBuffer: VpnPacketBuffer, offset: number, length: number); - constructor(parentBuffer: VpnPacketBuffer, offset: number, length: number) {} - - transportAffinity: number; - status: VpnPacketBufferStatus; - buffer: Storage.Streams.Buffer; - appId: VpnAppId; - transportContext: any; - - } - export class VpnPacketBufferList implements IVpnPacketBufferList, Foundation.Collections.IIterable { - status: VpnPacketBufferStatus; - size: number; - - append(nextVpnPacketBuffer: VpnPacketBuffer): void { - console.warn('shimmed function VpnPacketBufferList.append'); - } - - addAtBegin(nextVpnPacketBuffer: VpnPacketBuffer): void { - console.warn('shimmed function VpnPacketBufferList.addAtBegin'); - } - - removeAtEnd(): VpnPacketBuffer { - throw new Error('shimmed function VpnPacketBufferList.removeAtEnd'); - } - - removeAtBegin(): VpnPacketBuffer { - throw new Error('shimmed function VpnPacketBufferList.removeAtBegin'); - } - - clear(): void { - console.warn('shimmed function VpnPacketBufferList.clear'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function VpnPacketBufferList.first'); - } - - } - export enum VpnPacketBufferStatus { - ok, - invalidBufferSize, - } - export class VpnPickedCredential implements IVpnPickedCredential { - additionalPin: string; - oldPasswordCredential: Security.Credentials.PasswordCredential; - passkeyCredential: Security.Credentials.PasswordCredential; - - } - export class VpnPlugInProfile implements IVpnPlugInProfile, IVpnProfile, IVpnPlugInProfile2 { - // constructor(); - vpnPluginPackageFamilyName: string = ''; - customConfiguration: string = ''; - serverUris: Foundation.Uri[] = [ ]; - requireVpnClientAppUI: Boolean = false; - connectionStatus: VpnManagementConnectionStatus; - profileName: string = ''; - rememberCredentials: Boolean = false; - alwaysOn: Boolean = false; - appTriggers: VpnAppId[] = [ ]; - domainNameInfoList: VpnDomainNameInfo[] = [ ]; - routes: VpnRoute[] = [ ]; - trafficFilters: VpnTrafficFilter[] = [ ]; - - } - export class VpnRoute implements IVpnRoute { - // constructor(address: HostName, prefixSize: number); - constructor(address: HostName, prefixSize: number) {} - - prefixSize: number; - address: HostName; - - } - export class VpnRouteAssignment implements IVpnRouteAssignment { - // constructor(); - ipv6InclusionRoutes: VpnRoute[] = [ ]; - ipv6ExclusionRoutes: VpnRoute[] = [ ]; - ipv4InclusionRoutes: VpnRoute[] = [ ]; - ipv4ExclusionRoutes: VpnRoute[] = [ ]; - excludeLocalSubnets: Boolean = false; - - } - export enum VpnRoutingPolicyType { - splitRouting, - forceAllTrafficOverVpn, - } - export class VpnSystemHealth implements IVpnSystemHealth { - statementOfHealth: Storage.Streams.Buffer; - - } - export class VpnTrafficFilter implements IVpnTrafficFilter { - // constructor(appId: VpnAppId); - constructor(appId: VpnAppId) {} - - routingPolicyType: VpnRoutingPolicyType; - protocol: VpnIPProtocol; - appId: VpnAppId; - appClaims: string[]; - localAddressRanges: string[]; - localPortRanges: string[]; - remoteAddressRanges: string[]; - remotePortRanges: string[]; - - } - export class VpnTrafficFilterAssignment implements IVpnTrafficFilterAssignment { - // constructor(); - allowOutbound: Boolean = false; - allowInbound: Boolean = false; - trafficFilterList: VpnTrafficFilter[] = [ ]; - - } - } - export namespace XboxLive { - export class XboxLiveDeviceAddress implements IXboxLiveDeviceAddress { - isLocal: Boolean; - isValid: Boolean; - networkAccessKind: XboxLiveNetworkAccessKind; - static maxSnapshotBytesSize: number; - - getSnapshotAsBase64(): string { - throw new Error('shimmed function XboxLiveDeviceAddress.getSnapshotAsBase64'); - } - - getSnapshotAsBuffer(): Storage.Streams.IBuffer { - throw new Error('shimmed function XboxLiveDeviceAddress.getSnapshotAsBuffer'); - } - - getSnapshotAsBytes(buffer: number[]): number { - throw new Error('shimmed function XboxLiveDeviceAddress.getSnapshotAsBytes'); - } - - compare(otherDeviceAddress: XboxLiveDeviceAddress): number { - throw new Error('shimmed function XboxLiveDeviceAddress.compare'); - } - - static createFromSnapshotBase64(base64: string): XboxLiveDeviceAddress { - throw new Error('shimmed function XboxLiveDeviceAddress.createFromSnapshotBase64'); - } - - static createFromSnapshotBuffer(buffer: Storage.Streams.IBuffer): XboxLiveDeviceAddress { - throw new Error('shimmed function XboxLiveDeviceAddress.createFromSnapshotBuffer'); - } - - static createFromSnapshotBytes(buffer: number[]): XboxLiveDeviceAddress { - throw new Error('shimmed function XboxLiveDeviceAddress.createFromSnapshotBytes'); - } - - static getLocal(): XboxLiveDeviceAddress { - throw new Error('shimmed function XboxLiveDeviceAddress.getLocal'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`XboxLiveDeviceAddress::addEventListener: ${name}`); - switch (name) { - case "snapshotchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class XboxLiveEndpointPair implements IXboxLiveEndpointPair { - localHostName: HostName; - localPort: string; - remoteDeviceAddress: XboxLiveDeviceAddress; - remoteHostName: HostName; - remotePort: string; - state: XboxLiveEndpointPairState; - template: XboxLiveEndpointPairTemplate; - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function XboxLiveEndpointPair.deleteAsync'); - } - - getRemoteSocketAddressBytes(socketAddress: number[]): void { - console.warn('shimmed function XboxLiveEndpointPair.getRemoteSocketAddressBytes'); - } - - getLocalSocketAddressBytes(socketAddress: number[]): void { - console.warn('shimmed function XboxLiveEndpointPair.getLocalSocketAddressBytes'); - } - - static findEndpointPairBySocketAddressBytes(localSocketAddress: number[], remoteSocketAddress: number[]): XboxLiveEndpointPair { - throw new Error('shimmed function XboxLiveEndpointPair.findEndpointPairBySocketAddressBytes'); - } - - static findEndpointPairByHostNamesAndPorts(localHostName: HostName, localPort: string, remoteHostName: HostName, remotePort: string): XboxLiveEndpointPair { - throw new Error('shimmed function XboxLiveEndpointPair.findEndpointPairByHostNamesAndPorts'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`XboxLiveEndpointPair::addEventListener: ${name}`); - switch (name) { - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum XboxLiveEndpointPairCreationBehaviors { - none, - reevaluatePath, - } - export class XboxLiveEndpointPairCreationResult implements IXboxLiveEndpointPairCreationResult { - deviceAddress: XboxLiveDeviceAddress; - endpointPair: XboxLiveEndpointPair; - isExistingPathEvaluation: Boolean; - status: XboxLiveEndpointPairCreationStatus; - - } - export enum XboxLiveEndpointPairCreationStatus { - succeeded, - noLocalNetworks, - noCompatibleNetworkPaths, - localSystemNotAuthorized, - canceled, - timedOut, - remoteSystemNotAuthorized, - refusedDueToConfiguration, - unexpectedInternalError, - } - export enum XboxLiveEndpointPairState { - invalid, - creatingOutbound, - creatingInbound, - ready, - deletingLocally, - remoteEndpointTerminating, - deleted, - } - export class XboxLiveEndpointPairStateChangedEventArgs implements IXboxLiveEndpointPairStateChangedEventArgs { - newState: XboxLiveEndpointPairState; - oldState: XboxLiveEndpointPairState; - - } - export class XboxLiveEndpointPairTemplate implements IXboxLiveEndpointPairTemplate { - acceptorBoundPortRangeLower: number; - acceptorBoundPortRangeUpper: number; - endpointPairs: XboxLiveEndpointPair[]; - initiatorBoundPortRangeLower: number; - initiatorBoundPortRangeUpper: number; - name: string; - socketKind: XboxLiveSocketKind; - static templates: XboxLiveEndpointPairTemplate[]; - - createEndpointPairAsync(deviceAddress: XboxLiveDeviceAddress): Foundation.IAsyncOperation { - throw new Error('shimmed function XboxLiveEndpointPairTemplate.createEndpointPairAsync'); - } - - createEndpointPairAsync_1(deviceAddress: XboxLiveDeviceAddress, behaviors: XboxLiveEndpointPairCreationBehaviors): Foundation.IAsyncOperation { - throw new Error('shimmed function XboxLiveEndpointPairTemplate.createEndpointPairAsync_1'); - } - - createEndpointPairForPortsAsync(deviceAddress: XboxLiveDeviceAddress, initiatorPort: string, acceptorPort: string): Foundation.IAsyncOperation { - throw new Error('shimmed function XboxLiveEndpointPairTemplate.createEndpointPairForPortsAsync'); - } - - createEndpointPairForPortsAsync_1(deviceAddress: XboxLiveDeviceAddress, initiatorPort: string, acceptorPort: string, behaviors: XboxLiveEndpointPairCreationBehaviors): Foundation.IAsyncOperation { - throw new Error('shimmed function XboxLiveEndpointPairTemplate.createEndpointPairForPortsAsync_1'); - } - - static getTemplateByName(name: string): XboxLiveEndpointPairTemplate { - throw new Error('shimmed function XboxLiveEndpointPairTemplate.getTemplateByName'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`XboxLiveEndpointPairTemplate::addEventListener: ${name}`); - switch (name) { - case "inboundendpointpaircreated": // Foundation.TypedEventHandler - break; - } - - } - } - export class XboxLiveInboundEndpointPairCreatedEventArgs implements IXboxLiveInboundEndpointPairCreatedEventArgs { - endpointPair: XboxLiveEndpointPair; - - } - export enum XboxLiveNetworkAccessKind { - open, - moderate, - strict, - } - export class XboxLiveQualityOfServiceMeasurement implements IXboxLiveQualityOfServiceMeasurement { - // constructor(); - timeoutInMilliseconds: number; - shouldRequestPrivatePayloads: Boolean; - numberOfProbesToAttempt: number; - deviceAddresses: XboxLiveDeviceAddress[]; - metricResults: XboxLiveQualityOfServiceMetricResult[]; - metrics: XboxLiveQualityOfServiceMetric[]; - numberOfResultsPending: number; - privatePayloadResults: XboxLiveQualityOfServicePrivatePayloadResult[]; - static publishedPrivatePayload: Storage.Streams.IBuffer; - static maxSimultaneousProbeConnections: number; - static isSystemOutboundBandwidthConstrained: Boolean; - static isSystemInboundBandwidthConstrained: Boolean; - static maxPrivatePayloadSize: number; - - measureAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function XboxLiveQualityOfServiceMeasurement.measureAsync'); - } - - getMetricResultsForDevice(deviceAddress: XboxLiveDeviceAddress): XboxLiveQualityOfServiceMetricResult[] { - throw new Error('shimmed function XboxLiveQualityOfServiceMeasurement.getMetricResultsForDevice'); - } - - getMetricResultsForMetric(metric: XboxLiveQualityOfServiceMetric): XboxLiveQualityOfServiceMetricResult[] { - throw new Error('shimmed function XboxLiveQualityOfServiceMeasurement.getMetricResultsForMetric'); - } - - getMetricResult(deviceAddress: XboxLiveDeviceAddress, metric: XboxLiveQualityOfServiceMetric): XboxLiveQualityOfServiceMetricResult { - throw new Error('shimmed function XboxLiveQualityOfServiceMeasurement.getMetricResult'); - } - - getPrivatePayloadResult(deviceAddress: XboxLiveDeviceAddress): XboxLiveQualityOfServicePrivatePayloadResult { - throw new Error('shimmed function XboxLiveQualityOfServiceMeasurement.getPrivatePayloadResult'); - } - - static publishPrivatePayloadBytes(payload: number[]): void { - console.warn('shimmed function XboxLiveQualityOfServiceMeasurement.publishPrivatePayloadBytes'); - } - - static clearPrivatePayload(): void { - console.warn('shimmed function XboxLiveQualityOfServiceMeasurement.clearPrivatePayload'); - } - - } - export enum XboxLiveQualityOfServiceMeasurementStatus { - notStarted, - inProgress, - inProgressWithProvisionalResults, - succeeded, - noLocalNetworks, - noCompatibleNetworkPaths, - localSystemNotAuthorized, - canceled, - timedOut, - remoteSystemNotAuthorized, - refusedDueToConfiguration, - unexpectedInternalError, - } - export enum XboxLiveQualityOfServiceMetric { - averageLatencyInMilliseconds, - minLatencyInMilliseconds, - maxLatencyInMilliseconds, - averageOutboundBitsPerSecond, - minOutboundBitsPerSecond, - maxOutboundBitsPerSecond, - averageInboundBitsPerSecond, - minInboundBitsPerSecond, - maxInboundBitsPerSecond, - } - export class XboxLiveQualityOfServiceMetricResult implements IXboxLiveQualityOfServiceMetricResult { - deviceAddress: XboxLiveDeviceAddress; - metric: XboxLiveQualityOfServiceMetric; - status: XboxLiveQualityOfServiceMeasurementStatus; - value: number; - - } - export class XboxLiveQualityOfServicePrivatePayloadResult implements IXboxLiveQualityOfServicePrivatePayloadResult { - deviceAddress: XboxLiveDeviceAddress; - status: XboxLiveQualityOfServiceMeasurementStatus; - value: Storage.Streams.IBuffer; - - } - export interface XboxLiveSecureSocketsContract { - } - export enum XboxLiveSocketKind { - none, - datagram, - stream, - } - } - } - export namespace Perception { - export namespace Automation { - export namespace Core { - export class CorePerceptionAutomation { - static setActivationFactoryProvider(provider: Foundation.IGetActivationFactory): void { - console.warn('shimmed function CorePerceptionAutomation.setActivationFactoryProvider'); - } - - } - export interface PerceptionAutomationCoreContract { - } - } - } - export namespace People { - export class EyesPose implements IEyesPose { - gaze: Spatial.SpatialRay | null; - isCalibrationValid: Boolean; - updateTimestamp: PerceptionTimestamp; - - static isSupported(): Boolean { - throw new Error('shimmed function EyesPose.isSupported'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EyesPose.requestAccessAsync'); - } - - } - export enum HandJointKind { - palm, - wrist, - thumbMetacarpal, - thumbProximal, - thumbDistal, - thumbTip, - indexMetacarpal, - indexProximal, - indexIntermediate, - indexDistal, - indexTip, - middleMetacarpal, - middleProximal, - middleIntermediate, - middleDistal, - middleTip, - ringMetacarpal, - ringProximal, - ringIntermediate, - ringDistal, - ringTip, - littleMetacarpal, - littleProximal, - littleIntermediate, - littleDistal, - littleTip, - } - export class HandMeshObserver implements IHandMeshObserver { - modelId: number; - neutralPose: HandPose; - neutralPoseVersion: number; - source: UI.Input.Spatial.SpatialInteractionSource; - triangleIndexCount: number; - vertexCount: number; - - getTriangleIndices(indices: number[]): void { - console.warn('shimmed function HandMeshObserver.getTriangleIndices'); - } - - getVertexStateForPose(handPose: HandPose): HandMeshVertexState { - throw new Error('shimmed function HandMeshObserver.getVertexStateForPose'); - } - - } - export interface HandMeshVertex { - position: Foundation.Numerics.Vector3; - normal: Foundation.Numerics.Vector3; - } - export class HandMeshVertexState implements IHandMeshVertexState { - coordinateSystem: Spatial.SpatialCoordinateSystem; - updateTimestamp: PerceptionTimestamp; - - getVertices(vertices: HandMeshVertex[]): void { - console.warn('shimmed function HandMeshVertexState.getVertices'); - } - - } - export class HandPose implements IHandPose { - tryGetJoint(coordinateSystem: Spatial.SpatialCoordinateSystem, joint: HandJointKind): { returnValue: Boolean, jointPose: JointPose } { - throw new Error('shimmed function HandPose.tryGetJoint'); - } - - tryGetJoints(coordinateSystem: Spatial.SpatialCoordinateSystem, joints: HandJointKind[], jointPoses: JointPose[]): Boolean { - throw new Error('shimmed function HandPose.tryGetJoints'); - } - - getRelativeJoint(joint: HandJointKind, referenceJoint: HandJointKind): JointPose { - throw new Error('shimmed function HandPose.getRelativeJoint'); - } - - getRelativeJoints(joints: HandJointKind[], referenceJoints: HandJointKind[], jointPoses: JointPose[]): void { - console.warn('shimmed function HandPose.getRelativeJoints'); - } - - } - export class HeadPose implements IHeadPose { - forwardDirection: Foundation.Numerics.Vector3; - position: Foundation.Numerics.Vector3; - upDirection: Foundation.Numerics.Vector3; - - } - export interface JointPose { - orientation: Foundation.Numerics.Quaternion; - position: Foundation.Numerics.Vector3; - radius: number; - accuracy: JointPoseAccuracy; - } - export enum JointPoseAccuracy { - high, - approximate, - } - } - export class PerceptionTimestamp implements IPerceptionTimestamp, IPerceptionTimestamp2 { - predictionAmount: number; - targetTime: Date; - systemRelativeTargetTime: number; - - } - export class PerceptionTimestampHelper { - static fromSystemRelativeTargetTime(targetTime: number): PerceptionTimestamp { - throw new Error('shimmed function PerceptionTimestampHelper.fromSystemRelativeTargetTime'); - } - - static fromHistoricalTargetTime(targetTime: Date): PerceptionTimestamp { - throw new Error('shimmed function PerceptionTimestampHelper.fromHistoricalTargetTime'); - } - - } - export namespace Spatial { - export namespace Preview { - export class SpatialGraphInteropFrameOfReferencePreview implements ISpatialGraphInteropFrameOfReferencePreview { - coordinateSystem: SpatialCoordinateSystem; - coordinateSystemToNodeTransform: Foundation.Numerics.Matrix4x4; - nodeId: string; - - } - export class SpatialGraphInteropPreview { - static tryCreateFrameOfReference(coordinateSystem: SpatialCoordinateSystem): SpatialGraphInteropFrameOfReferencePreview { - throw new Error('shimmed function SpatialGraphInteropPreview.tryCreateFrameOfReference'); - } - - static tryCreateFrameOfReference_1(coordinateSystem: SpatialCoordinateSystem, relativePosition: Foundation.Numerics.Vector3): SpatialGraphInteropFrameOfReferencePreview { - throw new Error('shimmed function SpatialGraphInteropPreview.tryCreateFrameOfReference_1'); - } - - static tryCreateFrameOfReference_2(coordinateSystem: SpatialCoordinateSystem, relativePosition: Foundation.Numerics.Vector3, relativeOrientation: Foundation.Numerics.Quaternion): SpatialGraphInteropFrameOfReferencePreview { - throw new Error('shimmed function SpatialGraphInteropPreview.tryCreateFrameOfReference_2'); - } - - static createCoordinateSystemForNode(nodeId: string): SpatialCoordinateSystem { - throw new Error('shimmed function SpatialGraphInteropPreview.createCoordinateSystemForNode'); - } - - static createCoordinateSystemForNode_1(nodeId: string, relativePosition: Foundation.Numerics.Vector3): SpatialCoordinateSystem { - throw new Error('shimmed function SpatialGraphInteropPreview.createCoordinateSystemForNode_1'); - } - - static createCoordinateSystemForNode_2(nodeId: string, relativePosition: Foundation.Numerics.Vector3, relativeOrientation: Foundation.Numerics.Quaternion): SpatialCoordinateSystem { - throw new Error('shimmed function SpatialGraphInteropPreview.createCoordinateSystemForNode_2'); - } - - static createLocatorForNode(nodeId: string): SpatialLocator { - throw new Error('shimmed function SpatialGraphInteropPreview.createLocatorForNode'); - } - - } - } - export class SpatialAnchor implements ISpatialAnchor, ISpatialAnchor2 { - coordinateSystem: SpatialCoordinateSystem; - rawCoordinateSystem: SpatialCoordinateSystem; - removedByUser: Boolean; - - static tryCreateRelativeTo(coordinateSystem: SpatialCoordinateSystem): SpatialAnchor { - throw new Error('shimmed function SpatialAnchor.tryCreateRelativeTo'); - } - - static tryCreateRelativeTo_1(coordinateSystem: SpatialCoordinateSystem, position: Foundation.Numerics.Vector3): SpatialAnchor { - throw new Error('shimmed function SpatialAnchor.tryCreateRelativeTo_1'); - } - - static tryCreateRelativeTo_2(coordinateSystem: SpatialCoordinateSystem, position: Foundation.Numerics.Vector3, orientation: Foundation.Numerics.Quaternion): SpatialAnchor { - throw new Error('shimmed function SpatialAnchor.tryCreateRelativeTo_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpatialAnchor::addEventListener: ${name}`); - switch (name) { - case "rawcoordinatesystemadjusted": // Foundation.TypedEventHandler - break; - } - - } - } - export class SpatialAnchorExporter implements ISpatialAnchorExporter { - getAnchorExportSufficiencyAsync(anchor: SpatialAnchor, purpose: SpatialAnchorExportPurpose): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAnchorExporter.getAnchorExportSufficiencyAsync'); - } - - tryExportAnchorAsync(anchor: SpatialAnchor, purpose: SpatialAnchorExportPurpose, stream: Storage.Streams.IOutputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAnchorExporter.tryExportAnchorAsync'); - } - - static getDefault(): SpatialAnchorExporter { - throw new Error('shimmed function SpatialAnchorExporter.getDefault'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAnchorExporter.requestAccessAsync'); - } - - } - export enum SpatialAnchorExportPurpose { - relocalization, - sharing, - } - export class SpatialAnchorExportSufficiency implements ISpatialAnchorExportSufficiency { - isMinimallySufficient: Boolean; - recommendedSufficiencyLevel: number; - sufficiencyLevel: number; - - } - export class SpatialAnchorManager { - static requestStoreAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAnchorManager.requestStoreAsync'); - } - - } - export class SpatialAnchorRawCoordinateSystemAdjustedEventArgs implements ISpatialAnchorRawCoordinateSystemAdjustedEventArgs { - oldRawCoordinateSystemToNewRawCoordinateSystemTransform: Foundation.Numerics.Matrix4x4; - - } - export class SpatialAnchorStore implements ISpatialAnchorStore { - getAllSavedAnchors(): string[] { - throw new Error('shimmed function SpatialAnchorStore.getAllSavedAnchors'); - } - - trySave(id: string, anchor: SpatialAnchor): Boolean { - throw new Error('shimmed function SpatialAnchorStore.trySave'); - } - - clear(): void { - console.warn('shimmed function SpatialAnchorStore.clear'); - } - - } - export class SpatialAnchorTransferManager { - static tryImportAnchorsAsync(stream: Storage.Streams.IInputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAnchorTransferManager.tryImportAnchorsAsync'); - } - - static tryExportAnchorsAsync(anchors: Foundation.Collections.IIterable>, stream: Storage.Streams.IOutputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAnchorTransferManager.tryExportAnchorsAsync'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialAnchorTransferManager.requestAccessAsync'); - } - - } - export interface SpatialBoundingBox { - center: Foundation.Numerics.Vector3; - extents: Foundation.Numerics.Vector3; - } - export interface SpatialBoundingFrustum { - near: Foundation.Numerics.Plane; - far: Foundation.Numerics.Plane; - right: Foundation.Numerics.Plane; - left: Foundation.Numerics.Plane; - top: Foundation.Numerics.Plane; - bottom: Foundation.Numerics.Plane; - } - export interface SpatialBoundingOrientedBox { - center: Foundation.Numerics.Vector3; - extents: Foundation.Numerics.Vector3; - orientation: Foundation.Numerics.Quaternion; - } - export interface SpatialBoundingSphere { - center: Foundation.Numerics.Vector3; - radius: number; - } - export class SpatialBoundingVolume implements ISpatialBoundingVolume { - static fromBox(coordinateSystem: SpatialCoordinateSystem, box: SpatialBoundingBox): SpatialBoundingVolume { - throw new Error('shimmed function SpatialBoundingVolume.fromBox'); - } - - static fromOrientedBox(coordinateSystem: SpatialCoordinateSystem, box: SpatialBoundingOrientedBox): SpatialBoundingVolume { - throw new Error('shimmed function SpatialBoundingVolume.fromOrientedBox'); - } - - static fromSphere(coordinateSystem: SpatialCoordinateSystem, sphere: SpatialBoundingSphere): SpatialBoundingVolume { - throw new Error('shimmed function SpatialBoundingVolume.fromSphere'); - } - - static fromFrustum(coordinateSystem: SpatialCoordinateSystem, frustum: SpatialBoundingFrustum): SpatialBoundingVolume { - throw new Error('shimmed function SpatialBoundingVolume.fromFrustum'); - } - - } - export class SpatialCoordinateSystem implements ISpatialCoordinateSystem { - tryGetTransformTo(target: SpatialCoordinateSystem): Foundation.Numerics.Matrix4x4 | null { - throw new Error('shimmed function SpatialCoordinateSystem.tryGetTransformTo'); - } - - } - export class SpatialEntity implements ISpatialEntity { - // constructor(spatialAnchor: SpatialAnchor); - // constructor(spatialAnchor: SpatialAnchor, propertySet: Foundation.Collections.ValueSet); - constructor(spatialAnchor: SpatialAnchor, propertySet: Foundation.Collections.ValueSet) {} - - anchor: SpatialAnchor; - id: string; - properties: Foundation.Collections.ValueSet; - - } - export class SpatialEntityAddedEventArgs implements ISpatialEntityAddedEventArgs { - entity: SpatialEntity; - - } - export class SpatialEntityRemovedEventArgs implements ISpatialEntityRemovedEventArgs { - entity: SpatialEntity; - - } - export class SpatialEntityStore implements ISpatialEntityStore { - static isSupported: Boolean = false; - - saveAsync(entity: SpatialEntity): Foundation.IAsyncAction { - throw new Error('shimmed function SpatialEntityStore.saveAsync'); - } - - removeAsync(entity: SpatialEntity): Foundation.IAsyncAction { - throw new Error('shimmed function SpatialEntityStore.removeAsync'); - } - - createEntityWatcher(): SpatialEntityWatcher { - throw new Error('shimmed function SpatialEntityStore.createEntityWatcher'); - } - - static tryGet(session: System.RemoteSystems.RemoteSystemSession): SpatialEntityStore { - throw new Error('shimmed function SpatialEntityStore.tryGet'); - } - - } - export class SpatialEntityUpdatedEventArgs implements ISpatialEntityUpdatedEventArgs { - entity: SpatialEntity; - - } - export class SpatialEntityWatcher implements ISpatialEntityWatcher { - status: SpatialEntityWatcherStatus; - - start(): void { - console.warn('shimmed function SpatialEntityWatcher.start'); - } - - stop(): void { - console.warn('shimmed function SpatialEntityWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpatialEntityWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SpatialEntityWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export enum SpatialLocatability { - unavailable, - orientationOnly, - positionalTrackingActivating, - positionalTrackingActive, - positionalTrackingInhibited, - } - export class SpatialLocation implements ISpatialLocation, ISpatialLocation2 { - absoluteAngularAcceleration: Foundation.Numerics.Quaternion; - absoluteAngularVelocity: Foundation.Numerics.Quaternion; - absoluteLinearAcceleration: Foundation.Numerics.Vector3; - absoluteLinearVelocity: Foundation.Numerics.Vector3; - orientation: Foundation.Numerics.Quaternion; - position: Foundation.Numerics.Vector3; - absoluteAngularAccelerationAxisAngle: Foundation.Numerics.Vector3; - absoluteAngularVelocityAxisAngle: Foundation.Numerics.Vector3; - - } - export class SpatialLocator implements ISpatialLocator { - locatability: SpatialLocatability; - - tryLocateAtTimestamp(timestamp: PerceptionTimestamp, coordinateSystem: SpatialCoordinateSystem): SpatialLocation { - throw new Error('shimmed function SpatialLocator.tryLocateAtTimestamp'); - } - - createAttachedFrameOfReferenceAtCurrentHeading(): SpatialLocatorAttachedFrameOfReference { - throw new Error('shimmed function SpatialLocator.createAttachedFrameOfReferenceAtCurrentHeading'); - } - - createAttachedFrameOfReferenceAtCurrentHeading_1(relativePosition: Foundation.Numerics.Vector3): SpatialLocatorAttachedFrameOfReference { - throw new Error('shimmed function SpatialLocator.createAttachedFrameOfReferenceAtCurrentHeading_1'); - } - - createAttachedFrameOfReferenceAtCurrentHeading_2(relativePosition: Foundation.Numerics.Vector3, relativeOrientation: Foundation.Numerics.Quaternion): SpatialLocatorAttachedFrameOfReference { - throw new Error('shimmed function SpatialLocator.createAttachedFrameOfReferenceAtCurrentHeading_2'); - } - - createAttachedFrameOfReferenceAtCurrentHeading_3(relativePosition: Foundation.Numerics.Vector3, relativeOrientation: Foundation.Numerics.Quaternion, relativeHeadingInRadians: number): SpatialLocatorAttachedFrameOfReference { - throw new Error('shimmed function SpatialLocator.createAttachedFrameOfReferenceAtCurrentHeading_3'); - } - - createStationaryFrameOfReferenceAtCurrentLocation(): SpatialStationaryFrameOfReference { - throw new Error('shimmed function SpatialLocator.createStationaryFrameOfReferenceAtCurrentLocation'); - } - - createStationaryFrameOfReferenceAtCurrentLocation_1(relativePosition: Foundation.Numerics.Vector3): SpatialStationaryFrameOfReference { - throw new Error('shimmed function SpatialLocator.createStationaryFrameOfReferenceAtCurrentLocation_1'); - } - - createStationaryFrameOfReferenceAtCurrentLocation_2(relativePosition: Foundation.Numerics.Vector3, relativeOrientation: Foundation.Numerics.Quaternion): SpatialStationaryFrameOfReference { - throw new Error('shimmed function SpatialLocator.createStationaryFrameOfReferenceAtCurrentLocation_2'); - } - - createStationaryFrameOfReferenceAtCurrentLocation_3(relativePosition: Foundation.Numerics.Vector3, relativeOrientation: Foundation.Numerics.Quaternion, relativeHeadingInRadians: number): SpatialStationaryFrameOfReference { - throw new Error('shimmed function SpatialLocator.createStationaryFrameOfReferenceAtCurrentLocation_3'); - } - - static getDefault(): SpatialLocator { - throw new Error('shimmed function SpatialLocator.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpatialLocator::addEventListener: ${name}`); - switch (name) { - case "locatabilitychanged": // Foundation.TypedEventHandler - case "positionaltrackingdeactivating": // Foundation.TypedEventHandler - break; - } - - } - } - export class SpatialLocatorAttachedFrameOfReference implements ISpatialLocatorAttachedFrameOfReference { - relativePosition: Foundation.Numerics.Vector3; - relativeOrientation: Foundation.Numerics.Quaternion; - - adjustHeading(headingOffsetInRadians: number): void { - console.warn('shimmed function SpatialLocatorAttachedFrameOfReference.adjustHeading'); - } - - getStationaryCoordinateSystemAtTimestamp(timestamp: PerceptionTimestamp): SpatialCoordinateSystem { - throw new Error('shimmed function SpatialLocatorAttachedFrameOfReference.getStationaryCoordinateSystemAtTimestamp'); - } - - tryGetRelativeHeadingAtTimestamp(timestamp: PerceptionTimestamp): number | null { - throw new Error('shimmed function SpatialLocatorAttachedFrameOfReference.tryGetRelativeHeadingAtTimestamp'); - } - - } - export class SpatialLocatorPositionalTrackingDeactivatingEventArgs implements ISpatialLocatorPositionalTrackingDeactivatingEventArgs { - canceled: Boolean; - - } - export enum SpatialLookDirectionRange { - forwardOnly, - omnidirectional, - } - export enum SpatialMovementRange { - noMovement, - bounded, - } - export enum SpatialPerceptionAccessStatus { - unspecified, - allowed, - deniedByUser, - deniedBySystem, - } - export interface SpatialRay { - origin: Foundation.Numerics.Vector3; - direction: Foundation.Numerics.Vector3; - } - export class SpatialStageFrameOfReference implements ISpatialStageFrameOfReference { - coordinateSystem: SpatialCoordinateSystem; - lookDirectionRange: SpatialLookDirectionRange; - movementRange: SpatialMovementRange; - static current: SpatialStageFrameOfReference; - - getCoordinateSystemAtCurrentLocation(locator: SpatialLocator): SpatialCoordinateSystem { - throw new Error('shimmed function SpatialStageFrameOfReference.getCoordinateSystemAtCurrentLocation'); - } - - tryGetMovementBounds(coordinateSystem: SpatialCoordinateSystem): Foundation.Numerics.Vector3[] { - throw new Error('shimmed function SpatialStageFrameOfReference.tryGetMovementBounds'); - } - - static requestNewStageAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialStageFrameOfReference.requestNewStageAsync'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`SpatialStageFrameOfReference::addEventListener: ${name}`); - switch (name) { - case "currentchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class SpatialStationaryFrameOfReference implements ISpatialStationaryFrameOfReference { - coordinateSystem: SpatialCoordinateSystem; - - } - export namespace Surfaces { - export class SpatialSurfaceInfo implements ISpatialSurfaceInfo { - id: string; - updateTime: Date; - - tryGetBounds(coordinateSystem: SpatialCoordinateSystem): SpatialBoundingOrientedBox | null { - throw new Error('shimmed function SpatialSurfaceInfo.tryGetBounds'); - } - - tryComputeLatestMeshAsync(maxTrianglesPerCubicMeter: number): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialSurfaceInfo.tryComputeLatestMeshAsync'); - } - - tryComputeLatestMeshAsync_1(maxTrianglesPerCubicMeter: number, options: SpatialSurfaceMeshOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialSurfaceInfo.tryComputeLatestMeshAsync_1'); - } - - } - export class SpatialSurfaceMesh implements ISpatialSurfaceMesh { - coordinateSystem: SpatialCoordinateSystem; - surfaceInfo: SpatialSurfaceInfo; - triangleIndices: SpatialSurfaceMeshBuffer; - vertexNormals: SpatialSurfaceMeshBuffer; - vertexPositionScale: Foundation.Numerics.Vector3; - vertexPositions: SpatialSurfaceMeshBuffer; - - } - export class SpatialSurfaceMeshBuffer implements ISpatialSurfaceMeshBuffer { - data: Storage.Streams.IBuffer; - elementCount: number; - format: Graphics.DirectX.DirectXPixelFormat; - stride: number; - - } - export class SpatialSurfaceMeshOptions implements ISpatialSurfaceMeshOptions { - // constructor(); - vertexPositionFormat: Graphics.DirectX.DirectXPixelFormat = DirectXPixelFormat.r16G16B16A16IntNormalized; - vertexNormalFormat: Graphics.DirectX.DirectXPixelFormat = DirectXPixelFormat.r8G8B8A8IntNormalized; - triangleIndexFormat: Graphics.DirectX.DirectXPixelFormat = DirectXPixelFormat.r16UInt; - includeVertexNormals: Boolean = false; - static supportedTriangleIndexFormats: Graphics.DirectX.DirectXPixelFormat[] = [ ]; - static supportedVertexNormalFormats: Graphics.DirectX.DirectXPixelFormat[] = [ ]; - static supportedVertexPositionFormats: Graphics.DirectX.DirectXPixelFormat[] = [ ]; - - } - export class SpatialSurfaceObserver implements ISpatialSurfaceObserver { - // constructor(); - getObservedSurfaces(): string[] { - throw new Error('shimmed function SpatialSurfaceObserver.getObservedSurfaces'); - } - - setBoundingVolume(bounds: SpatialBoundingVolume): void { - console.warn('shimmed function SpatialSurfaceObserver.setBoundingVolume'); - } - - setBoundingVolumes(bounds: Foundation.Collections.IIterable): void { - console.warn('shimmed function SpatialSurfaceObserver.setBoundingVolumes'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function SpatialSurfaceObserver.isSupported'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialSurfaceObserver.requestAccessAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpatialSurfaceObserver::addEventListener: ${name}`); - switch (name) { - case "observedsurfaceschanged": // Foundation.TypedEventHandler - break; - } - - } - } - } - } - } - export namespace Phone { - export namespace ApplicationModel { - export class ApplicationProfile { - static modes: ApplicationProfileModes; - - } - export enum ApplicationProfileModes { - default, - alternate, - } - } - export namespace Devices { - export namespace Notification { - export class VibrationDevice implements IVibrationDevice { - vibrate(duration: number): void { - console.warn('shimmed function VibrationDevice.vibrate'); - } - - cancel(): void { - console.warn('shimmed function VibrationDevice.cancel'); - } - - static getDefault(): VibrationDevice { - throw new Error('shimmed function VibrationDevice.getDefault'); - } - - } - } - export namespace Power { - export class Battery implements IBattery { - remainingChargePercent: number; - remainingDischargeTime: number; - - static getDefault(): Battery { - throw new Error('shimmed function Battery.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Battery::addEventListener: ${name}`); - switch (name) { - case "remainingchargepercentchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - } - } - export namespace Management { - export namespace Deployment { - export class Enterprise implements IEnterprise { - enrollmentValidFrom: Date; - enrollmentValidTo: Date; - id: string; - name: string; - status: EnterpriseStatus; - workplaceId: number; - - } - export class EnterpriseEnrollmentManager { - static currentEnterprise: Enterprise; - static enrolledEnterprises: Enterprise[]; - - static validateEnterprisesAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function EnterpriseEnrollmentManager.validateEnterprisesAsync'); - } - - static requestEnrollmentAsync(enrollmentToken: string): Foundation.IAsyncOperation { - throw new Error('shimmed function EnterpriseEnrollmentManager.requestEnrollmentAsync'); - } - - static requestUnenrollmentAsync(enterprise: Enterprise): Foundation.IAsyncOperation { - throw new Error('shimmed function EnterpriseEnrollmentManager.requestUnenrollmentAsync'); - } - - } - export class EnterpriseEnrollmentResult implements IEnterpriseEnrollmentResult { - enrolledEnterprise: Enterprise; - status: EnterpriseEnrollmentStatus; - - } - export enum EnterpriseEnrollmentStatus { - success, - cancelledByUser, - unknownFailure, - } - export enum EnterpriseStatus { - enrolled, - disabled, - revoked, - expired, - } - export class InstallationManager { - static removePackageAsync(packageFullName: string, removalOptions: Management.Deployment.RemovalOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InstallationManager.removePackageAsync'); - } - - static registerPackageAsync(manifestUri: Foundation.Uri, dependencyPackageUris: Foundation.Collections.IIterable, deploymentOptions: Management.Deployment.DeploymentOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InstallationManager.registerPackageAsync'); - } - - static findPackages(packageName: string, packagePublisher: string): Foundation.Collections.IIterable { - throw new Error('shimmed function InstallationManager.findPackages'); - } - - static addPackageAsync(title: string, sourceLocation: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InstallationManager.addPackageAsync'); - } - - static addPackageAsync_1(title: string, sourceLocation: Foundation.Uri, instanceId: string, offerId: string, license: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InstallationManager.addPackageAsync_1'); - } - - static getPendingPackageInstalls(): Foundation.Collections.IIterable> { - throw new Error('shimmed function InstallationManager.getPendingPackageInstalls'); - } - - static findPackagesForCurrentPublisher(): Foundation.Collections.IIterable { - throw new Error('shimmed function InstallationManager.findPackagesForCurrentPublisher'); - } - - static findPackages_1(): Foundation.Collections.IIterable { - throw new Error('shimmed function InstallationManager.findPackages_1'); - } - - } - export class PackageInstallResult implements IPackageInstallResult, IPackageInstallResult2 { - installState: Management.Deployment.PackageInstallState; - productId: string; - errorText: string; - - } - } - } - export namespace Media { - export namespace Devices { - export enum AudioRoutingEndpoint { - default, - earpiece, - speakerphone, - bluetooth, - wiredHeadset, - wiredHeadsetSpeakerOnly, - bluetoothWithNoiseAndEchoCancellation, - bluetoothPreferred, - } - export class AudioRoutingManager implements IAudioRoutingManager { - availableAudioEndpoints: AvailableAudioRoutingEndpoints; - - getAudioEndpoint(): AudioRoutingEndpoint { - throw new Error('shimmed function AudioRoutingManager.getAudioEndpoint'); - } - - setAudioEndpoint(endpoint: AudioRoutingEndpoint): void { - console.warn('shimmed function AudioRoutingManager.setAudioEndpoint'); - } - - static getDefault(): AudioRoutingManager { - throw new Error('shimmed function AudioRoutingManager.getDefault'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AudioRoutingManager::addEventListener: ${name}`); - switch (name) { - case "audioendpointchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AvailableAudioRoutingEndpoints { - none, - earpiece, - speakerphone, - bluetooth = 4, - } - } - } - export namespace Notification { - export namespace Management { - export class AccessoryManager { - static phoneMute: Boolean; - static phoneCallAudioEndpoint: PhoneCallAudioEndpoint; - static batterySaverState: Boolean; - static doNotDisturbEnabled: Boolean; - static drivingModeEnabled: Boolean; - static mediaPlaybackCapabilities: PlaybackCapability; - static mediaPlaybackStatus: PlaybackStatus; - static phoneLineDetails: PhoneLineDetails[]; - static isPhonePinLocked: Boolean; - static speedDialList: SpeedDialEntry[]; - static volumeInfo: VolumeInfo; - - static snoozeAlarmByInstanceId(instanceId: string): void { - console.warn('shimmed function AccessoryManager.snoozeAlarmByInstanceId'); - } - - static dismissAlarmByInstanceId(instanceId: string): void { - console.warn('shimmed function AccessoryManager.dismissAlarmByInstanceId'); - } - - static snoozeReminderByInstanceId(instanceId: string): void { - console.warn('shimmed function AccessoryManager.snoozeReminderByInstanceId'); - } - - static dismissReminderByInstanceId(instanceId: string): void { - console.warn('shimmed function AccessoryManager.dismissReminderByInstanceId'); - } - - static ringDevice(): void { - console.warn('shimmed function AccessoryManager.ringDevice'); - } - - static clearToast(instanceId: string): void { - console.warn('shimmed function AccessoryManager.clearToast'); - } - - static increaseVolume(step: number): void { - console.warn('shimmed function AccessoryManager.increaseVolume'); - } - - static decreaseVolume(step: number): void { - console.warn('shimmed function AccessoryManager.decreaseVolume'); - } - - static setMute(mute: Boolean): void { - console.warn('shimmed function AccessoryManager.setMute'); - } - - static setRingerVibrate(ringer: Boolean, vibrate: Boolean): void { - console.warn('shimmed function AccessoryManager.setRingerVibrate'); - } - - static getAllEmailAccounts(): EmailAccountInfo[] { - throw new Error('shimmed function AccessoryManager.getAllEmailAccounts'); - } - - static getFolders(emailAccount: string): EmailFolderInfo[] { - throw new Error('shimmed function AccessoryManager.getFolders'); - } - - static enableEmailNotificationEmailAccount(emailAccount: string): void { - console.warn('shimmed function AccessoryManager.enableEmailNotificationEmailAccount'); - } - - static disableEmailNotificationEmailAccount(emailAccount: string): void { - console.warn('shimmed function AccessoryManager.disableEmailNotificationEmailAccount'); - } - - static enableEmailNotificationFolderFilter(emailAccount: string, folders: string[]): void { - console.warn('shimmed function AccessoryManager.enableEmailNotificationFolderFilter'); - } - - static updateEmailReadStatus(messageEntryId: BinaryId, isRead: Boolean): void { - console.warn('shimmed function AccessoryManager.updateEmailReadStatus'); - } - - static registerAccessoryApp(): string { - throw new Error('shimmed function AccessoryManager.registerAccessoryApp'); - } - - static getNextTriggerDetails(): IAccessoryNotificationTriggerDetails { - throw new Error('shimmed function AccessoryManager.getNextTriggerDetails'); - } - - static processTriggerDetails(pDetails: IAccessoryNotificationTriggerDetails): void { - console.warn('shimmed function AccessoryManager.processTriggerDetails'); - } - - static getPhoneLineDetails(phoneLine: string): PhoneLineDetails { - throw new Error('shimmed function AccessoryManager.getPhoneLineDetails'); - } - - static acceptPhoneCall(phoneCallId: number): void { - console.warn('shimmed function AccessoryManager.acceptPhoneCall'); - } - - static acceptPhoneCall_1(phoneCallId: number, endPoint: PhoneCallAudioEndpoint): void { - console.warn('shimmed function AccessoryManager.acceptPhoneCall_1'); - } - - static acceptPhoneCallWithVideo(phoneCallId: number): void { - console.warn('shimmed function AccessoryManager.acceptPhoneCallWithVideo'); - } - - static acceptPhoneCallWithVideo_1(phoneCallId: number, endPoint: PhoneCallAudioEndpoint): void { - console.warn('shimmed function AccessoryManager.acceptPhoneCallWithVideo_1'); - } - - static rejectPhoneCall(phoneCallId: number): void { - console.warn('shimmed function AccessoryManager.rejectPhoneCall'); - } - - static rejectPhoneCall_1(phoneCallId: number, textResponseID: number): void { - console.warn('shimmed function AccessoryManager.rejectPhoneCall_1'); - } - - static makePhoneCall(phoneLine: string, phoneNumber: string): void { - console.warn('shimmed function AccessoryManager.makePhoneCall'); - } - - static makePhoneCall_1(phoneLine: string, phoneNumber: string, endPoint: PhoneCallAudioEndpoint): void { - console.warn('shimmed function AccessoryManager.makePhoneCall_1'); - } - - static makePhoneCallWithVideo(phoneLine: string, phoneNumber: string): void { - console.warn('shimmed function AccessoryManager.makePhoneCallWithVideo'); - } - - static makePhoneCallWithVideo_1(phoneLine: string, phoneNumber: string, endPoint: PhoneCallAudioEndpoint): void { - console.warn('shimmed function AccessoryManager.makePhoneCallWithVideo_1'); - } - - static swapPhoneCalls(phoneCallIdToHold: number, phoneCallIdOnHold: number): void { - console.warn('shimmed function AccessoryManager.swapPhoneCalls'); - } - - static holdPhoneCall(phoneCallId: number, holdCall: Boolean): void { - console.warn('shimmed function AccessoryManager.holdPhoneCall'); - } - - static endPhoneCall(phoneCallId: number): void { - console.warn('shimmed function AccessoryManager.endPhoneCall'); - } - - static snoozeAlarm(alarmId: string): void { - console.warn('shimmed function AccessoryManager.snoozeAlarm'); - } - - static snoozeAlarm_1(alarmId: string, timeSpan: number): void { - console.warn('shimmed function AccessoryManager.snoozeAlarm_1'); - } - - static dismissAlarm(alarmId: string): void { - console.warn('shimmed function AccessoryManager.dismissAlarm'); - } - - static snoozeReminder(reminderId: string): void { - console.warn('shimmed function AccessoryManager.snoozeReminder'); - } - - static snoozeReminder_1(reminderId: string, timeSpan: number): void { - console.warn('shimmed function AccessoryManager.snoozeReminder_1'); - } - - static dismissReminder(reminderId: string): void { - console.warn('shimmed function AccessoryManager.dismissReminder'); - } - - static getMediaMetadata(): MediaMetadata { - throw new Error('shimmed function AccessoryManager.getMediaMetadata'); - } - - static performMediaPlaybackCommand(command: PlaybackCommand): void { - console.warn('shimmed function AccessoryManager.performMediaPlaybackCommand'); - } - - static getApps(): string[] { - throw new Error('shimmed function AccessoryManager.getApps'); - } - - static enableNotificationsForApplication(appId: string): void { - console.warn('shimmed function AccessoryManager.enableNotificationsForApplication'); - } - - static disableNotificationsForApplication(appId: string): void { - console.warn('shimmed function AccessoryManager.disableNotificationsForApplication'); - } - - static isNotificationEnabledForApplication(appId: string): Boolean { - throw new Error('shimmed function AccessoryManager.isNotificationEnabledForApplication'); - } - - static getEnabledAccessoryNotificationTypes(): number { - throw new Error('shimmed function AccessoryManager.getEnabledAccessoryNotificationTypes'); - } - - static enableAccessoryNotificationTypes(accessoryNotificationTypes: number): void { - console.warn('shimmed function AccessoryManager.enableAccessoryNotificationTypes'); - } - - static disableAllAccessoryNotificationTypes(): void { - console.warn('shimmed function AccessoryManager.disableAllAccessoryNotificationTypes'); - } - - static getUserConsent(): Boolean { - throw new Error('shimmed function AccessoryManager.getUserConsent'); - } - - static getAppIcon(appId: string): Storage.Streams.IRandomAccessStreamReference { - throw new Error('shimmed function AccessoryManager.getAppIcon'); - } - - } - export enum AccessoryNotificationType { - none, - phone, - email, - reminder = 4, - alarm = 8, - toast = 16, - appUninstalled = 32, - dnd = 64, - drivingMode = 128, - batterySaver = 256, - media = 512, - cortanaTile = 1024, - toastCleared = 2048, - calendarChanged = 4096, - volumeChanged = 8192, - emailReadStatusChanged = 16384, - } - export class AlarmNotificationTriggerDetails implements IAlarmNotificationTriggerDetails, IAccessoryNotificationTriggerDetails, IAlarmNotificationTriggerDetails2 { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - alarmId: string; - reminderState: ReminderState; - timestamp: Date; - title: string; - instanceId: string; - - } - export class AppNotificationInfo implements IAppNotificationInfo { - id: string; - name: string; - - } - export class BinaryId implements IBinaryId { - id: number; - length: number; - - } - export enum CalendarChangedEvent { - lostEvents, - appointmentAdded, - appointmentChanged, - appointmentDeleted, - calendarAdded, - calendarChanged, - calendarDeleted, - } - export class CalendarChangedNotificationTriggerDetails implements ICalendarChangedNotificationTriggerDetails, IAccessoryNotificationTriggerDetails { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - eventType: CalendarChangedEvent; - itemId: string; - - } - export class CortanaTileNotificationTriggerDetails implements ICortanaTileNotificationTriggerDetails, IAccessoryNotificationTriggerDetails { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - content: string; - emphasizedText: string; - largeContent1: string; - largeContent2: string; - nonWrappedSmallContent1: string; - nonWrappedSmallContent2: string; - nonWrappedSmallContent3: string; - nonWrappedSmallContent4: string; - source: string; - tileId: string; - - } - export class EmailAccountInfo implements IEmailAccountInfo { - displayName: string; - isNotificationEnabled: Boolean; - - } - export class EmailFolderInfo implements IEmailFolderInfo { - displayName: string; - isNotificationEnabled: Boolean; - - } - export class EmailNotificationTriggerDetails implements IEmailNotificationTriggerDetails, IAccessoryNotificationTriggerDetails, IEmailNotificationTriggerDetails2 { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - accountName: string; - emailMessage: ApplicationModel.Email.EmailMessage; - parentFolderName: string; - senderAddress: string; - senderName: string; - timestamp: Date; - messageEntryId: BinaryId; - - } - export class EmailReadNotificationTriggerDetails implements IEmailReadNotificationTriggerDetails, IAccessoryNotificationTriggerDetails { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - accountName: string; - isRead: Boolean; - messageEntryId: BinaryId; - parentFolderName: string; - - } - export interface IAccessoryNotificationTriggerDetails { - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - startedProcessing: Boolean; - timeCreated: Date; - } - export class MediaControlsTriggerDetails implements IMediaControlsTriggerDetails, IAccessoryNotificationTriggerDetails { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - mediaMetadata: MediaMetadata; - playbackStatus: PlaybackStatus; - - } - export class MediaMetadata implements IMediaMetadata { - album: string; - artist: string; - duration: number; - subtitle: string; - thumbnail: Storage.Streams.IRandomAccessStreamReference; - title: string; - track: number; - - } - export enum PhoneCallAudioEndpoint { - default, - speaker, - handsfree, - } - export class PhoneCallDetails implements IPhoneCallDetails { - callDirection: PhoneCallDirection; - callId: number; - callMediaType: PhoneMediaType; - callTransport: PhoneCallTransport; - conferenceCallId: number; - contactName: string; - endTime: Date; - phoneLine: string; - phoneNumber: string; - presetTextResponses: TextResponse[]; - startTime: Date; - state: PhoneCallState; - - } - export enum PhoneCallDirection { - incoming, - outgoing, - } - export enum PhoneCallState { - unknown, - ringing, - talking, - held, - ended, - } - export enum PhoneCallTransport { - cellular, - voip, - } - export class PhoneLineDetails implements IPhoneLineDetails, IPhoneLineDetails2 { - defaultOutgoingLine: Boolean; - displayName: string; - lineId: string; - lineNumber: string; - registrationState: PhoneLineRegistrationState; - voicemailCount: number; - missedCallCount: number; - - } - export enum PhoneLineRegistrationState { - disconnected, - home, - roaming, - } - export enum PhoneMediaType { - audioOnly, - audioVideo, - } - export class PhoneNotificationTriggerDetails implements IPhoneNotificationTriggerDetails, IAccessoryNotificationTriggerDetails { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - callDetails: PhoneCallDetails; - phoneLineChangedId: string; - phoneNotificationType: PhoneNotificationType; - - } - export enum PhoneNotificationType { - newCall, - callChanged, - lineChanged, - phoneCallAudioEndpointChanged, - phoneMuteChanged, - } - export enum PlaybackCapability { - none, - play, - pause, - stop = 4, - record = 8, - fastForward = 16, - rewind = 32, - next = 64, - previous = 128, - channelUp = 256, - channelDown = 512, - } - export enum PlaybackCommand { - play, - pause, - stop, - record, - fastForward, - rewind, - next, - previous, - channelUp, - channelDown, - } - export enum PlaybackStatus { - none, - trackChanged, - stopped, - playing, - paused, - } - export class ReminderNotificationTriggerDetails implements IReminderNotificationTriggerDetails, IAccessoryNotificationTriggerDetails, IReminderNotificationTriggerDetails2 { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - appointment: ApplicationModel.Appointments.Appointment; - description: string; - details: string; - reminderId: string; - reminderState: ReminderState; - timestamp: Date; - title: string; - instanceId: string; - - } - export enum ReminderState { - active, - snoozed, - dismissed, - } - export class SpeedDialEntry implements ISpeedDialEntry { - contactName: string; - numberType: string; - phoneNumber: string; - - } - export class TextResponse implements ITextResponse { - content: string; - id: number; - - } - export class ToastNotificationTriggerDetails implements IToastNotificationTriggerDetails, IAccessoryNotificationTriggerDetails, IToastNotificationTriggerDetails2 { - startedProcessing: Boolean; - accessoryNotificationType: AccessoryNotificationType; - appDisplayName: string; - appId: string; - timeCreated: Date; - suppressPopup: Boolean; - text1: string; - text2: string; - text3: string; - text4: string; - instanceId: string; - - } - export enum VibrateState { - ringerOffVibrateOff, - ringerOffVibrateOn, - ringerOnVibrateOff, - ringerOnVibrateOn, - } - export class VolumeInfo implements IVolumeInfo { - callVolume: number; - isMuted: Boolean; - isVibrateEnabled: VibrateState; - mediaVolume: number; - systemVolume: number; - - } - } - } - export namespace PersonalInformation { - export class ContactAddress implements IContactAddress { - // constructor(); - streetAddress: string; - region: string; - postalCode: string; - locality: string; - country: string; - - } - export class ContactChangeRecord implements IContactChangeRecord { - changeType: ContactChangeType; - id: string; - remoteId: string; - revisionNumber: number; - - } - export enum ContactChangeType { - created, - modified, - deleted, - } - export class ContactInformation implements IContactInformation { - // constructor(); - honorificSuffix: string; - honorificPrefix: string; - givenName: string; - familyName: string; - displayName: string; - displayPicture: Storage.Streams.IRandomAccessStreamReference; - - getDisplayPictureAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactInformation.getDisplayPictureAsync'); - } - - setDisplayPictureAsync(stream: Storage.Streams.IInputStream): Foundation.IAsyncAction { - throw new Error('shimmed function ContactInformation.setDisplayPictureAsync'); - } - - getPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactInformation.getPropertiesAsync'); - } - - toVcardAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactInformation.toVcardAsync'); - } - - toVcardAsync_1(format: VCardFormat): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactInformation.toVcardAsync_1'); - } - - static parseVcardAsync(vcard: Storage.Streams.IInputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactInformation.parseVcardAsync'); - } - - } - export class ContactQueryOptions implements IContactQueryOptions { - // constructor(); - orderBy: ContactQueryResultOrdering; - desiredFields: string[]; - - } - export class ContactQueryResult implements IContactQueryResult { - getContactCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactQueryResult.getContactCountAsync'); - } - - getContactsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactQueryResult.getContactsAsync'); - } - - getContactsAsync_1(startIndex: number, maxNumberOfItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactQueryResult.getContactsAsync_1'); - } - - getCurrentQueryOptions(): ContactQueryOptions { - throw new Error('shimmed function ContactQueryResult.getCurrentQueryOptions'); - } - - } - export enum ContactQueryResultOrdering { - systemDefault, - givenNameFamilyName, - familyNameGivenName, - } - export class ContactStore implements IContactStore, IContactStore2 { - revisionNumber: number; - - findContactByRemoteIdAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.findContactByRemoteIdAsync'); - } - - findContactByIdAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.findContactByIdAsync'); - } - - deleteContactAsync(id: string): Foundation.IAsyncAction { - throw new Error('shimmed function ContactStore.deleteContactAsync'); - } - - createContactQuery(): ContactQueryResult { - throw new Error('shimmed function ContactStore.createContactQuery'); - } - - createContactQuery_1(options: ContactQueryOptions): ContactQueryResult { - throw new Error('shimmed function ContactStore.createContactQuery_1'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContactStore.deleteAsync'); - } - - getChangesAsync(baseRevisionNumber: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.getChangesAsync'); - } - - loadExtendedPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.loadExtendedPropertiesAsync'); - } - - saveExtendedPropertiesAsync(data: string[]): Foundation.IAsyncAction { - throw new Error('shimmed function ContactStore.saveExtendedPropertiesAsync'); - } - - createMeContactAsync(id: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.createMeContactAsync'); - } - - static createOrOpenAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.createOrOpenAsync'); - } - - static createOrOpenAsync_1(access: ContactStoreSystemAccessMode, sharing: ContactStoreApplicationAccessMode): Foundation.IAsyncOperation { - throw new Error('shimmed function ContactStore.createOrOpenAsync_1'); - } - - } - export enum ContactStoreApplicationAccessMode { - limitedReadOnly, - readOnly, - } - export enum ContactStoreSystemAccessMode { - readOnly, - readWrite, - } - export interface IContactInformation { - displayName: string; - displayPicture: Storage.Streams.IRandomAccessStreamReference; - familyName: string; - givenName: string; - honorificPrefix: string; - honorificSuffix: string; - getDisplayPictureAsync(): Foundation.IAsyncOperation; - setDisplayPictureAsync(stream: Storage.Streams.IInputStream): Foundation.IAsyncAction; - getPropertiesAsync(): Foundation.IAsyncOperation; - toVcardAsync(): Foundation.IAsyncOperation; - toVcardAsync_1(format: VCardFormat): Foundation.IAsyncOperation; - } - export interface IContactInformation2 { - displayPictureDate: Date; - } - export class KnownContactProperties { - static additionalName: string; - static address: string; - static alternateMobileTelephone: string; - static alternateTelephone: string; - static alternateWorkTelephone: string; - static anniversary: string; - static birthdate: string; - static children: string; - static companyName: string; - static companyTelephone: string; - static displayName: string; - static email: string; - static familyName: string; - static givenName: string; - static homeFax: string; - static honorificPrefix: string; - static honorificSuffix: string; - static jobTitle: string; - static manager: string; - static mobileTelephone: string; - static nickname: string; - static notes: string; - static officeLocation: string; - static otherAddress: string; - static otherEmail: string; - static significantOther: string; - static telephone: string; - static url: string; - static workAddress: string; - static workEmail: string; - static workFax: string; - static workTelephone: string; - static yomiCompanyName: string; - static yomiFamilyName: string; - static yomiGivenName: string; - - } - export namespace Provisioning { - export class ContactPartnerProvisioningManager { - static associateNetworkAccountAsync(store: ContactStore, networkName: string, networkAccountId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ContactPartnerProvisioningManager.associateNetworkAccountAsync'); - } - - static importVcardToSystemAsync(stream: Storage.Streams.IInputStream): Foundation.IAsyncAction { - throw new Error('shimmed function ContactPartnerProvisioningManager.importVcardToSystemAsync'); - } - - static associateSocialNetworkAccountAsync(store: ContactStore, networkName: string, networkAccountId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ContactPartnerProvisioningManager.associateSocialNetworkAccountAsync'); - } - - } - export class MessagePartnerProvisioningManager { - static importSmsToSystemAsync(incoming: Boolean, read: Boolean, body: string, sender: string, recipients: string[], deliveryTime: Date): Foundation.IAsyncAction { - throw new Error('shimmed function MessagePartnerProvisioningManager.importSmsToSystemAsync'); - } - - static importMmsToSystemAsync(incoming: Boolean, read: Boolean, subject: string, sender: string, recipients: string[], deliveryTime: Date, attachments: string[][]): Foundation.IAsyncAction { - throw new Error('shimmed function MessagePartnerProvisioningManager.importMmsToSystemAsync'); - } - - } - } - export class StoredContact implements IStoredContact, IContactInformation, IContactInformation2 { - // constructor(store: ContactStore); - // constructor(store: ContactStore, contact: ContactInformation); - constructor(store: ContactStore, contact: ContactInformation) {} - - honorificSuffix: string; - honorificPrefix: string; - givenName: string; - familyName: string; - displayName: string; - displayPicture: Storage.Streams.IRandomAccessStreamReference; - displayPictureDate: Date; - remoteId: string; - id: string; - store: ContactStore; - - getExtendedPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoredContact.getExtendedPropertiesAsync'); - } - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StoredContact.saveAsync'); - } - - replaceExistingContactAsync(id: string): Foundation.IAsyncAction { - throw new Error('shimmed function StoredContact.replaceExistingContactAsync'); - } - - getDisplayPictureAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoredContact.getDisplayPictureAsync'); - } - - setDisplayPictureAsync(stream: Storage.Streams.IInputStream): Foundation.IAsyncAction { - throw new Error('shimmed function StoredContact.setDisplayPictureAsync'); - } - - getPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoredContact.getPropertiesAsync'); - } - - toVcardAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoredContact.toVcardAsync'); - } - - toVcardAsync_1(format: VCardFormat): Foundation.IAsyncOperation { - throw new Error('shimmed function StoredContact.toVcardAsync_1'); - } - - } - export enum VCardFormat { - version2_1, - version3, - } - } - export interface PhoneContract { - } - export namespace Speech { - export namespace Recognition { - export enum SpeechRecognitionUIStatus { - succeeded, - busy, - cancelled, - preempted, - privacyPolicyDeclined, - } - } - } - export namespace StartScreen { - export class DualSimTile implements IDualSimTile { - // constructor(); - displayName: string; - isPinnedToStart: Boolean; - - createAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DualSimTile.createAsync'); - } - - updateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DualSimTile.updateAsync'); - } - - deleteAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DualSimTile.deleteAsync'); - } - - static getTileForSim2(): DualSimTile { - throw new Error('shimmed function DualSimTile.getTileForSim2'); - } - - static updateDisplayNameForSim1Async(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DualSimTile.updateDisplayNameForSim1Async'); - } - - static createTileUpdaterForSim1(): UI.Notifications.TileUpdater { - throw new Error('shimmed function DualSimTile.createTileUpdaterForSim1'); - } - - static createTileUpdaterForSim2(): UI.Notifications.TileUpdater { - throw new Error('shimmed function DualSimTile.createTileUpdaterForSim2'); - } - - static createBadgeUpdaterForSim1(): UI.Notifications.BadgeUpdater { - throw new Error('shimmed function DualSimTile.createBadgeUpdaterForSim1'); - } - - static createBadgeUpdaterForSim2(): UI.Notifications.BadgeUpdater { - throw new Error('shimmed function DualSimTile.createBadgeUpdaterForSim2'); - } - - static createToastNotifierForSim1(): UI.Notifications.ToastNotifier { - throw new Error('shimmed function DualSimTile.createToastNotifierForSim1'); - } - - static createToastNotifierForSim2(): UI.Notifications.ToastNotifier { - throw new Error('shimmed function DualSimTile.createToastNotifierForSim2'); - } - - } - export interface DualSimTileContract { - } - export interface IToastNotificationManagerStatics3 { - createToastNotifierForSecondaryTile(tileId: string): UI.Notifications.ToastNotifier; - } - } - export namespace System { - export namespace Power { - export class PowerManager { - static powerSavingMode: PowerSavingMode; - static powerSavingModeEnabled: Boolean; - - static addEventListener(name: string, handler: Function) { - console.warn(`PowerManager::addEventListener: ${name}`); - switch (name) { - case "powersavingmodechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum PowerSavingMode { - off, - on, - } - } - export namespace Profile { - export class RetailMode { - static retailModeEnabled: Boolean; - - } - } - export class SystemProtection { - static screenLocked: Boolean; - - static requestScreenUnlock(): void { - console.warn('shimmed function SystemProtection.requestScreenUnlock'); - } - - } - export namespace UserProfile { - export namespace GameServices { - export namespace Core { - export class GameService { - static serviceUri: Foundation.Uri; - - static notifyPartnerTokenExpired(audienceUri: Foundation.Uri): void { - console.warn('shimmed function GameService.notifyPartnerTokenExpired'); - } - - static getAuthenticationStatus(): number { - throw new Error('shimmed function GameService.getAuthenticationStatus'); - } - - static getGamerProfileAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameService.getGamerProfileAsync'); - } - - static getInstalledGameItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameService.getInstalledGameItemsAsync'); - } - - static getPartnerTokenAsync(audienceUri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function GameService.getPartnerTokenAsync'); - } - - static getPrivilegesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GameService.getPrivilegesAsync'); - } - - static grantAchievement(achievementId: number): void { - console.warn('shimmed function GameService.grantAchievement'); - } - - static grantAvatarAward(avatarAwardId: number): void { - console.warn('shimmed function GameService.grantAvatarAward'); - } - - static postResult(gameVariant: number, scoreKind: GameServiceScoreKind, scoreValue: number, gameOutcome: GameServiceGameOutcome, buffer: Storage.Streams.IBuffer): void { - console.warn('shimmed function GameService.postResult'); - } - - } - export enum GameServiceGameOutcome { - none, - win, - loss, - tie, - } - export class GameServicePropertyCollection implements IGameServicePropertyCollection { - getPropertyAsync(propertyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GameServicePropertyCollection.getPropertyAsync'); - } - - } - export enum GameServiceScoreKind { - number, - time, - } - } - } - } - } - export namespace UI { - export namespace Input { - export class BackPressedEventArgs implements IBackPressedEventArgs { - handled: Boolean; - - } - export class CameraEventArgs implements ICameraEventArgs { - } - export class HardwareButtons { - static addEventListener(name: string, handler: Function) { - console.warn(`HardwareButtons::addEventListener: ${name}`); - switch (name) { - case "backpressed": // /* System.EventHandler`1[[Windows.Phone.UI.Input.BackPressedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "camerahalfpressed": // /* System.EventHandler`1[[Windows.Phone.UI.Input.CameraEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "camerapressed": // /* System.EventHandler`1[[Windows.Phone.UI.Input.CameraEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "camerareleased": // /* System.EventHandler`1[[Windows.Phone.UI.Input.CameraEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - } - } - } - export namespace Security { - export namespace Authentication { - export namespace Identity { - export namespace Core { - export class MicrosoftAccountMultiFactorAuthenticationManager implements IMicrosoftAccountMultiFactorAuthenticationManager { - static current: MicrosoftAccountMultiFactorAuthenticationManager; - - getOneTimePassCodeAsync(userAccountId: string, codeLength: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.getOneTimePassCodeAsync'); - } - - addDeviceAsync(userAccountId: string, authenticationToken: string, wnsChannelId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.addDeviceAsync'); - } - - removeDeviceAsync(userAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.removeDeviceAsync'); - } - - updateWnsChannelAsync(userAccountId: string, channelUri: string): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.updateWnsChannelAsync'); - } - - getSessionsAsync(userAccountIdList: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.getSessionsAsync'); - } - - getSessionsAndUnregisteredAccountsAsync(userAccountIdList: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.getSessionsAndUnregisteredAccountsAsync'); - } - - approveSessionAsync(sessionAuthentictionStatus: MicrosoftAccountMultiFactorSessionAuthenticationStatus, authenticationSessionInfo: MicrosoftAccountMultiFactorSessionInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.approveSessionAsync'); - } - - approveSessionAsync_1(sessionAuthentictionStatus: MicrosoftAccountMultiFactorSessionAuthenticationStatus, userAccountId: string, sessionId: string, sessionAuthenticationType: MicrosoftAccountMultiFactorAuthenticationType): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.approveSessionAsync_1'); - } - - denySessionAsync(authenticationSessionInfo: MicrosoftAccountMultiFactorSessionInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.denySessionAsync'); - } - - denySessionAsync_1(userAccountId: string, sessionId: string, sessionAuthenticationType: MicrosoftAccountMultiFactorAuthenticationType): Foundation.IAsyncOperation { - throw new Error('shimmed function MicrosoftAccountMultiFactorAuthenticationManager.denySessionAsync_1'); - } - - } - export enum MicrosoftAccountMultiFactorAuthenticationType { - user, - device, - } - export class MicrosoftAccountMultiFactorGetSessionsResult implements IMicrosoftAccountMultiFactorGetSessionsResult { - serviceResponse: MicrosoftAccountMultiFactorServiceResponse; - sessions: MicrosoftAccountMultiFactorSessionInfo[]; - - } - export class MicrosoftAccountMultiFactorOneTimeCodedInfo implements IMicrosoftAccountMultiFactorOneTimeCodedInfo { - code: string; - serviceResponse: MicrosoftAccountMultiFactorServiceResponse; - timeInterval: number; - timeToLive: number; - - } - export enum MicrosoftAccountMultiFactorServiceResponse { - success, - error, - noNetworkConnection, - serviceUnavailable, - totpSetupDenied, - ngcNotSetup, - sessionAlreadyDenied, - sessionAlreadyApproved, - sessionExpired, - ngcNonceExpired, - invalidSessionId, - invalidSessionType, - invalidOperation, - invalidStateTransition, - deviceNotFound, - flowDisabled, - sessionNotApproved, - operationCanceledByUser, - ngcDisabledByServer, - ngcKeyNotFoundOnServer, - uirequired, - deviceIdChanged, - } - export enum MicrosoftAccountMultiFactorSessionApprovalStatus { - pending, - approved, - denied, - } - export enum MicrosoftAccountMultiFactorSessionAuthenticationStatus { - authenticated, - unauthenticated, - } - export class MicrosoftAccountMultiFactorSessionInfo implements IMicrosoftAccountMultiFactorSessionInfo { - approvalStatus: MicrosoftAccountMultiFactorSessionApprovalStatus; - authenticationType: MicrosoftAccountMultiFactorAuthenticationType; - displaySessionId: string; - expirationTime: Date; - requestTime: Date; - sessionId: string; - userAccountId: string; - - } - export class MicrosoftAccountMultiFactorUnregisteredAccountsAndSessionInfo implements IMicrosoftAccountMultiFactorUnregisteredAccountsAndSessionInfo { - serviceResponse: MicrosoftAccountMultiFactorServiceResponse; - sessions: MicrosoftAccountMultiFactorSessionInfo[]; - unregisteredAccounts: string[]; - - } - } - export class EnterpriseKeyCredentialRegistrationInfo implements IEnterpriseKeyCredentialRegistrationInfo { - keyId: string; - keyName: string; - subject: string; - tenantId: string; - tenantName: string; - - } - export class EnterpriseKeyCredentialRegistrationManager implements IEnterpriseKeyCredentialRegistrationManager { - static current: EnterpriseKeyCredentialRegistrationManager; - - getRegistrationsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EnterpriseKeyCredentialRegistrationManager.getRegistrationsAsync'); - } - - } - export namespace Provider { - export class SecondaryAuthenticationFactorAuthentication implements ISecondaryAuthenticationFactorAuthentication { - deviceConfigurationData: Storage.Streams.IBuffer; - deviceNonce: Storage.Streams.IBuffer; - serviceAuthenticationHmac: Storage.Streams.IBuffer; - sessionNonce: Storage.Streams.IBuffer; - - finishAuthenticationAsync(deviceHmac: Storage.Streams.IBuffer, sessionHmac: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryAuthenticationFactorAuthentication.finishAuthenticationAsync'); - } - - abortAuthenticationAsync(errorLogMessage: string): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorAuthentication.abortAuthenticationAsync'); - } - - static showNotificationMessageAsync(deviceName: string, message: SecondaryAuthenticationFactorAuthenticationMessage): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorAuthentication.showNotificationMessageAsync'); - } - - static startAuthenticationAsync(deviceId: string, serviceAuthenticationNonce: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryAuthenticationFactorAuthentication.startAuthenticationAsync'); - } - - static getAuthenticationStageInfoAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryAuthenticationFactorAuthentication.getAuthenticationStageInfoAsync'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`SecondaryAuthenticationFactorAuthentication::addEventListener: ${name}`); - switch (name) { - case "authenticationstagechanged": // /* System.EventHandler`1[[Windows.Security.Authentication.Identity.Provider.SecondaryAuthenticationFactorAuthenticationStageChangedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export enum SecondaryAuthenticationFactorAuthenticationMessage { - invalid, - swipeUpWelcome, - tapWelcome, - deviceNeedsAttention, - lookingForDevice, - lookingForDevicePluggedin, - bluetoothIsDisabled, - nfcIsDisabled, - wiFiIsDisabled, - extraTapIsRequired, - disabledByPolicy, - tapOnDeviceRequired, - holdFinger, - scanFinger, - unauthorizedUser, - reregisterRequired, - tryAgain, - sayPassphrase, - readyToSignIn, - useAnotherSignInOption, - connectionRequired, - timeLimitExceeded, - canceledByUser, - centerHand, - moveHandCloser, - moveHandFarther, - placeHandAbove, - recognitionFailed, - deviceUnavailable, - } - export class SecondaryAuthenticationFactorAuthenticationResult implements ISecondaryAuthenticationFactorAuthenticationResult { - authentication: SecondaryAuthenticationFactorAuthentication; - status: SecondaryAuthenticationFactorAuthenticationStatus; - - } - export enum SecondaryAuthenticationFactorAuthenticationScenario { - signIn, - credentialPrompt, - } - export enum SecondaryAuthenticationFactorAuthenticationStage { - notStarted, - waitingForUserConfirmation, - collectingCredential, - suspendingAuthentication, - credentialCollected, - credentialAuthenticated, - stoppingAuthentication, - readyForLock, - checkingDevicePresence, - } - export class SecondaryAuthenticationFactorAuthenticationStageChangedEventArgs implements ISecondaryAuthenticationFactorAuthenticationStageChangedEventArgs { - stageInfo: SecondaryAuthenticationFactorAuthenticationStageInfo; - - } - export class SecondaryAuthenticationFactorAuthenticationStageInfo implements ISecondaryAuthenticationFactorAuthenticationStageInfo { - deviceId: string; - scenario: SecondaryAuthenticationFactorAuthenticationScenario; - stage: SecondaryAuthenticationFactorAuthenticationStage; - - } - export enum SecondaryAuthenticationFactorAuthenticationStatus { - failed, - started, - unknownDevice, - disabledByPolicy, - invalidAuthenticationStage, - } - export enum SecondaryAuthenticationFactorDeviceCapabilities { - none, - secureStorage, - storeKeys, - confirmUserIntentToAuthenticate = 4, - supportSecureUserPresenceCheck = 8, - transmittedDataIsEncrypted = 16, - hmacSha256 = 32, - closeRangeDataTransmission = 64, - } - export enum SecondaryAuthenticationFactorDeviceFindScope { - user, - allUsers, - } - export enum SecondaryAuthenticationFactorDevicePresence { - absent, - present, - } - export enum SecondaryAuthenticationFactorDevicePresenceMonitoringMode { - unsupported, - appManaged, - systemManaged, - } - export enum SecondaryAuthenticationFactorDevicePresenceMonitoringRegistrationStatus { - unsupported, - succeeded, - disabledByPolicy, - } - export enum SecondaryAuthenticationFactorFinishAuthenticationStatus { - failed, - completed, - nonceExpired, - } - export class SecondaryAuthenticationFactorInfo implements ISecondaryAuthenticationFactorInfo, ISecondaryAuthenticationFactorInfo2 { - deviceConfigurationData: Storage.Streams.IBuffer; - deviceFriendlyName: string; - deviceId: string; - deviceModelNumber: string; - isAuthenticationSupported: Boolean; - presenceMonitoringMode: SecondaryAuthenticationFactorDevicePresenceMonitoringMode; - - updateDevicePresenceAsync(presenceState: SecondaryAuthenticationFactorDevicePresence): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorInfo.updateDevicePresenceAsync'); - } - - } - export class SecondaryAuthenticationFactorRegistration implements ISecondaryAuthenticationFactorRegistration { - finishRegisteringDeviceAsync(deviceConfigurationData: Storage.Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.finishRegisteringDeviceAsync'); - } - - abortRegisteringDeviceAsync(errorLogMessage: string): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.abortRegisteringDeviceAsync'); - } - - static registerDevicePresenceMonitoringAsync(deviceId: string, deviceInstancePath: string, monitoringMode: SecondaryAuthenticationFactorDevicePresenceMonitoringMode): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.registerDevicePresenceMonitoringAsync'); - } - - static registerDevicePresenceMonitoringAsync_1(deviceId: string, deviceInstancePath: string, monitoringMode: SecondaryAuthenticationFactorDevicePresenceMonitoringMode, deviceFriendlyName: string, deviceModelNumber: string, deviceConfigurationData: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.registerDevicePresenceMonitoringAsync_1'); - } - - static unregisterDevicePresenceMonitoringAsync(deviceId: string): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.unregisterDevicePresenceMonitoringAsync'); - } - - static isDevicePresenceMonitoringSupported(): Boolean { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.isDevicePresenceMonitoringSupported'); - } - - static requestStartRegisteringDeviceAsync(deviceId: string, capabilities: SecondaryAuthenticationFactorDeviceCapabilities, deviceFriendlyName: string, deviceModelNumber: string, deviceKey: Storage.Streams.IBuffer, mutualAuthenticationKey: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.requestStartRegisteringDeviceAsync'); - } - - static findAllRegisteredDeviceInfoAsync(queryType: SecondaryAuthenticationFactorDeviceFindScope): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.findAllRegisteredDeviceInfoAsync'); - } - - static unregisterDeviceAsync(deviceId: string): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.unregisterDeviceAsync'); - } - - static updateDeviceConfigurationDataAsync(deviceId: string, deviceConfigurationData: Storage.Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function SecondaryAuthenticationFactorRegistration.updateDeviceConfigurationDataAsync'); - } - - } - export class SecondaryAuthenticationFactorRegistrationResult implements ISecondaryAuthenticationFactorRegistrationResult { - registration: SecondaryAuthenticationFactorRegistration; - status: SecondaryAuthenticationFactorRegistrationStatus; - - } - export enum SecondaryAuthenticationFactorRegistrationStatus { - failed, - started, - canceledByUser, - pinSetupRequired, - disabledByPolicy, - } - } - } - export namespace OnlineId { - export enum CredentialPromptType { - promptIfNeeded, - retypeCredentials, - doNotPrompt, - } - export class OnlineIdAuthenticator implements IOnlineIdAuthenticator { - // constructor(); - applicationId: string = '00000000-0000-0000-0000-000000000000'; - authenticatedSafeCustomerId: string = ''; - canSignOut: Boolean = false; - - authenticateUserAsync(request: OnlineIdServiceTicketRequest): UserAuthenticationOperation { - throw new Error('shimmed function OnlineIdAuthenticator.authenticateUserAsync'); - } - - authenticateUserAsync_1(requests: Foundation.Collections.IIterable, credentialPromptType: CredentialPromptType): UserAuthenticationOperation { - throw new Error('shimmed function OnlineIdAuthenticator.authenticateUserAsync_1'); - } - - signOutUserAsync(): SignOutUserOperation { - throw new Error('shimmed function OnlineIdAuthenticator.signOutUserAsync'); - } - - } - export class OnlineIdServiceTicket implements IOnlineIdServiceTicket { - errorCode: number; - request: OnlineIdServiceTicketRequest; - value: string; - - } - export class OnlineIdServiceTicketRequest implements IOnlineIdServiceTicketRequest { - // constructor(service: string, policy: string); - // constructor(service: string); - constructor(service: string, policy: string) {} - - policy: string; - service: string; - - } - export class OnlineIdSystemAuthenticator { - static default: OnlineIdSystemAuthenticatorForUser = null; - - static getForUser(user: System.User): OnlineIdSystemAuthenticatorForUser { - throw new Error('shimmed function OnlineIdSystemAuthenticator.getForUser'); - } - - } - export class OnlineIdSystemAuthenticatorForUser implements IOnlineIdSystemAuthenticatorForUser { - applicationId: string; - user: System.User; - - getTicketAsync(request: OnlineIdServiceTicketRequest): Foundation.IAsyncOperation { - throw new Error('shimmed function OnlineIdSystemAuthenticatorForUser.getTicketAsync'); - } - - } - export class OnlineIdSystemIdentity implements IOnlineIdSystemIdentity { - id: string; - ticket: OnlineIdServiceTicket; - - } - export class OnlineIdSystemTicketResult implements IOnlineIdSystemTicketResult { - extendedError: number; - identity: OnlineIdSystemIdentity; - status: OnlineIdSystemTicketStatus; - - } - export enum OnlineIdSystemTicketStatus { - success, - error, - serviceConnectionError, - } - export class SignOutUserOperation implements Foundation.IAsyncAction, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncActionCompletedHandler; - - getResults(): void { - console.warn('shimmed function SignOutUserOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function SignOutUserOperation.cancel'); - } - - close(): void { - console.warn('shimmed function SignOutUserOperation.close'); - } - - } - export class UserAuthenticationOperation implements Foundation.IAsyncOperation, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncOperationCompletedHandler; - - getResults(): UserIdentity { - throw new Error('shimmed function UserAuthenticationOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function UserAuthenticationOperation.cancel'); - } - - close(): void { - console.warn('shimmed function UserAuthenticationOperation.close'); - } - - } - export class UserIdentity implements IUserIdentity { - firstName: string; - id: string; - isBetaAccount: Boolean; - isConfirmedPC: Boolean; - lastName: string; - safeCustomerId: string; - signInName: string; - tickets: OnlineIdServiceTicket[]; - - } - } - export namespace Web { - export namespace Core { - export class FindAllAccountsResult implements IFindAllAccountsResult { - accounts: Credentials.WebAccount[]; - providerError: WebProviderError; - status: FindAllWebAccountsStatus; - - } - export enum FindAllWebAccountsStatus { - success, - notAllowedByProvider, - notSupportedByProvider, - providerError, - } - export class WebAccountEventArgs implements IWebAccountEventArgs { - account: Credentials.WebAccount; - - } - export class WebAccountMonitor implements IWebAccountMonitor { - addEventListener(name: string, handler: Function) { - console.warn(`WebAccountMonitor::addEventListener: ${name}`); - switch (name) { - case "defaultsigninaccountchanged": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export class WebAuthenticationCoreManager { - static findAllAccountsAsync(provider: Credentials.WebAccountProvider): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findAllAccountsAsync'); - } - - static findAllAccountsAsync_1(provider: Credentials.WebAccountProvider, clientId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findAllAccountsAsync_1'); - } - - static findSystemAccountProviderAsync(webAccountProviderId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findSystemAccountProviderAsync'); - } - - static findSystemAccountProviderAsync_1(webAccountProviderId: string, authority: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findSystemAccountProviderAsync_1'); - } - - static findSystemAccountProviderAsync_2(webAccountProviderId: string, authority: string, user: System.User): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findSystemAccountProviderAsync_2'); - } - - static createWebAccountMonitor(webAccounts: Foundation.Collections.IIterable): WebAccountMonitor { - throw new Error('shimmed function WebAuthenticationCoreManager.createWebAccountMonitor'); - } - - static findAccountProviderAsync(webAccountProviderId: string, authority: string, user: System.User): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findAccountProviderAsync'); - } - - static getTokenSilentlyAsync(request: WebTokenRequest): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.getTokenSilentlyAsync'); - } - - static getTokenSilentlyAsync_1(request: WebTokenRequest, webAccount: Credentials.WebAccount): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.getTokenSilentlyAsync_1'); - } - - static requestTokenAsync(request: WebTokenRequest): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.requestTokenAsync'); - } - - static requestTokenAsync_1(request: WebTokenRequest, webAccount: Credentials.WebAccount): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.requestTokenAsync_1'); - } - - static findAccountAsync(provider: Credentials.WebAccountProvider, webAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findAccountAsync'); - } - - static findAccountProviderAsync_1(webAccountProviderId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findAccountProviderAsync_1'); - } - - static findAccountProviderAsync_2(webAccountProviderId: string, authority: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationCoreManager.findAccountProviderAsync_2'); - } - - } - export class WebProviderError implements IWebProviderError { - // constructor(errorCode: number, errorMessage: string); - constructor(errorCode: number, errorMessage: string) {} - - errorCode: number; - errorMessage: string; - properties: string[]; - - } - export class WebTokenRequest implements IWebTokenRequest, IWebTokenRequest2, IWebTokenRequest3 { - // constructor(provider: Credentials.WebAccountProvider, scope: string, clientId: string); - // constructor(provider: Credentials.WebAccountProvider, scope: string, clientId: string, promptType: WebTokenRequestPromptType); - // constructor(provider: Credentials.WebAccountProvider); - // constructor(provider: Credentials.WebAccountProvider, scope: string); - constructor(provider: Credentials.WebAccountProvider, scope: string, clientId: string, promptType: WebTokenRequestPromptType) {} - - clientId: string; - promptType: WebTokenRequestPromptType; - properties: string[]; - scope: string; - webAccountProvider: Credentials.WebAccountProvider; - appProperties: string[]; - correlationId: string; - - } - export enum WebTokenRequestPromptType { - default, - forceAuthentication, - } - export class WebTokenRequestResult implements IWebTokenRequestResult { - responseData: WebTokenResponse[]; - responseError: WebProviderError; - responseStatus: WebTokenRequestStatus; - - invalidateCacheAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WebTokenRequestResult.invalidateCacheAsync'); - } - - } - export enum WebTokenRequestStatus { - success, - userCancel, - accountSwitch, - userInteractionRequired, - accountProviderNotAvailable, - providerError, - } - export class WebTokenResponse implements IWebTokenResponse { - // constructor(token: string); - // constructor(token: string, webAccount: Credentials.WebAccount); - // constructor(token: string, webAccount: Credentials.WebAccount, error: WebProviderError); - // constructor(); - constructor(token: string, webAccount: Credentials.WebAccount, error: WebProviderError) {} - - properties: string[] = [ ]; - providerError: WebProviderError; - token: string = ''; - webAccount: Credentials.WebAccount; - - } - } - export namespace Provider { - export interface IWebAccountProviderBaseReportOperation { - reportCompleted(): void; - reportError(value: Core.WebProviderError): void; - } - export interface IWebAccountProviderOperation { - kind: WebAccountProviderOperationKind; - } - export interface IWebAccountProviderSilentReportOperation extends IWebAccountProviderBaseReportOperation { - reportUserInteractionRequired(): void; - reportUserInteractionRequired_1(value: Core.WebProviderError): void; - } - export interface IWebAccountProviderTokenObjects { - operation: IWebAccountProviderOperation; - } - export interface IWebAccountProviderTokenObjects2 extends IWebAccountProviderTokenObjects { - user: System.User; - } - export interface IWebAccountProviderTokenOperation extends IWebAccountProviderOperation { - cacheExpirationTime: Date; - providerRequest: WebProviderTokenRequest; - providerResponses: WebProviderTokenResponse[]; - } - export interface IWebAccountProviderUIReportOperation extends IWebAccountProviderBaseReportOperation { - reportUserCanceled(): void; - } - export class WebAccountClientView implements IWebAccountClientView { - // constructor(viewType: WebAccountClientViewType, applicationCallbackUri: Foundation.Uri); - // constructor(viewType: WebAccountClientViewType, applicationCallbackUri: Foundation.Uri, accountPairwiseId: string); - constructor(viewType: WebAccountClientViewType, applicationCallbackUri: Foundation.Uri, accountPairwiseId: string) {} - - accountPairwiseId: string; - applicationCallbackUri: Foundation.Uri; - type: WebAccountClientViewType; - - } - export enum WebAccountClientViewType { - idOnly, - idAndProperties, - } - export class WebAccountManager { - static invalidateAppCacheForAllAccountsAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.invalidateAppCacheForAllAccountsAsync'); - } - - static invalidateAppCacheForAccountAsync(webAccount: Credentials.WebAccount): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.invalidateAppCacheForAccountAsync'); - } - - static findAllProviderWebAccountsForUserAsync(user: System.User): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.findAllProviderWebAccountsForUserAsync'); - } - - static addWebAccountForUserAsync(user: System.User, webAccountId: string, webAccountUserName: string, props: string[]): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.addWebAccountForUserAsync'); - } - - static addWebAccountForUserAsync_1(user: System.User, webAccountId: string, webAccountUserName: string, props: string[], scope: WebAccountScope): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.addWebAccountForUserAsync_1'); - } - - static addWebAccountForUserAsync_2(user: System.User, webAccountId: string, webAccountUserName: string, props: string[], scope: WebAccountScope, perUserWebAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.addWebAccountForUserAsync_2'); - } - - static addWebAccountAsync(webAccountId: string, webAccountUserName: string, props: string[], scope: WebAccountScope, perUserWebAccountId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.addWebAccountAsync'); - } - - static setPerAppToPerUserAccountAsync(perAppAccount: Credentials.WebAccount, perUserWebAccountId: string): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.setPerAppToPerUserAccountAsync'); - } - - static getPerUserFromPerAppAccountAsync(perAppAccount: Credentials.WebAccount): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.getPerUserFromPerAppAccountAsync'); - } - - static clearPerUserFromPerAppAccountAsync(perAppAccount: Credentials.WebAccount): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.clearPerUserFromPerAppAccountAsync'); - } - - static addWebAccountAsync_1(webAccountId: string, webAccountUserName: string, props: string[], scope: WebAccountScope): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.addWebAccountAsync_1'); - } - - static setScopeAsync(webAccount: Credentials.WebAccount, scope: WebAccountScope): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.setScopeAsync'); - } - - static getScope(webAccount: Credentials.WebAccount): WebAccountScope { - throw new Error('shimmed function WebAccountManager.getScope'); - } - - static pullCookiesAsync(uriString: string, callerPFN: string): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.pullCookiesAsync'); - } - - static updateWebAccountPropertiesAsync(webAccount: Credentials.WebAccount, webAccountUserName: string, additionalProperties: string[]): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.updateWebAccountPropertiesAsync'); - } - - static addWebAccountAsync_2(webAccountId: string, webAccountUserName: string, props: string[]): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.addWebAccountAsync_2'); - } - - static deleteWebAccountAsync(webAccount: Credentials.WebAccount): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.deleteWebAccountAsync'); - } - - static findAllProviderWebAccountsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.findAllProviderWebAccountsAsync'); - } - - static pushCookiesAsync(uri: Foundation.Uri, cookies: Web.Http.HttpCookie[]): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.pushCookiesAsync'); - } - - static setViewAsync(webAccount: Credentials.WebAccount, view: WebAccountClientView): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.setViewAsync'); - } - - static clearViewAsync(webAccount: Credentials.WebAccount, applicationCallbackUri: Foundation.Uri): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.clearViewAsync'); - } - - static getViewsAsync(webAccount: Credentials.WebAccount): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccountManager.getViewsAsync'); - } - - static setWebAccountPictureAsync(webAccount: Credentials.WebAccount, webAccountPicture: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.setWebAccountPictureAsync'); - } - - static clearWebAccountPictureAsync(webAccount: Credentials.WebAccount): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccountManager.clearWebAccountPictureAsync'); - } - - } - export class WebAccountProviderAddAccountOperation implements IWebAccountProviderAddAccountOperation, IWebAccountProviderOperation { - kind: WebAccountProviderOperationKind; - - reportCompleted(): void { - console.warn('shimmed function WebAccountProviderAddAccountOperation.reportCompleted'); - } - - } - export class WebAccountProviderDeleteAccountOperation implements IWebAccountProviderDeleteAccountOperation, IWebAccountProviderOperation, IWebAccountProviderBaseReportOperation { - webAccount: Credentials.WebAccount; - kind: WebAccountProviderOperationKind; - - reportCompleted(): void { - console.warn('shimmed function WebAccountProviderDeleteAccountOperation.reportCompleted'); - } - - reportError(value: Core.WebProviderError): void { - console.warn('shimmed function WebAccountProviderDeleteAccountOperation.reportError'); - } - - } - export class WebAccountProviderGetTokenSilentOperation implements IWebAccountProviderTokenOperation, IWebAccountProviderOperation, IWebAccountProviderSilentReportOperation, IWebAccountProviderBaseReportOperation { - kind: WebAccountProviderOperationKind; - cacheExpirationTime: Date; - providerRequest: WebProviderTokenRequest; - providerResponses: WebProviderTokenResponse[]; - - reportUserInteractionRequired(): void { - console.warn('shimmed function WebAccountProviderGetTokenSilentOperation.reportUserInteractionRequired'); - } - - reportUserInteractionRequired_1(value: Core.WebProviderError): void { - console.warn('shimmed function WebAccountProviderGetTokenSilentOperation.reportUserInteractionRequired_1'); - } - - reportCompleted(): void { - console.warn('shimmed function WebAccountProviderGetTokenSilentOperation.reportCompleted'); - } - - reportError(value: Core.WebProviderError): void { - console.warn('shimmed function WebAccountProviderGetTokenSilentOperation.reportError'); - } - - } - export class WebAccountProviderManageAccountOperation implements IWebAccountProviderManageAccountOperation, IWebAccountProviderOperation { - webAccount: Credentials.WebAccount; - kind: WebAccountProviderOperationKind; - - reportCompleted(): void { - console.warn('shimmed function WebAccountProviderManageAccountOperation.reportCompleted'); - } - - } - export enum WebAccountProviderOperationKind { - requestToken, - getTokenSilently, - addAccount, - manageAccount, - deleteAccount, - retrieveCookies, - signOutAccount, - } - export class WebAccountProviderRequestTokenOperation implements IWebAccountProviderTokenOperation, IWebAccountProviderOperation, IWebAccountProviderUIReportOperation, IWebAccountProviderBaseReportOperation { - kind: WebAccountProviderOperationKind; - cacheExpirationTime: Date; - providerRequest: WebProviderTokenRequest; - providerResponses: WebProviderTokenResponse[]; - - reportUserCanceled(): void { - console.warn('shimmed function WebAccountProviderRequestTokenOperation.reportUserCanceled'); - } - - reportCompleted(): void { - console.warn('shimmed function WebAccountProviderRequestTokenOperation.reportCompleted'); - } - - reportError(value: Core.WebProviderError): void { - console.warn('shimmed function WebAccountProviderRequestTokenOperation.reportError'); - } - - } - export class WebAccountProviderRetrieveCookiesOperation implements IWebAccountProviderRetrieveCookiesOperation, IWebAccountProviderOperation, IWebAccountProviderBaseReportOperation { - kind: WebAccountProviderOperationKind; - uri: Foundation.Uri; - applicationCallbackUri: Foundation.Uri; - context: Foundation.Uri; - cookies: Web.Http.HttpCookie[]; - - reportCompleted(): void { - console.warn('shimmed function WebAccountProviderRetrieveCookiesOperation.reportCompleted'); - } - - reportError(value: Core.WebProviderError): void { - console.warn('shimmed function WebAccountProviderRetrieveCookiesOperation.reportError'); - } - - } - export class WebAccountProviderSignOutAccountOperation implements IWebAccountProviderSignOutAccountOperation, IWebAccountProviderOperation, IWebAccountProviderBaseReportOperation { - kind: WebAccountProviderOperationKind; - applicationCallbackUri: Foundation.Uri; - clientId: string; - webAccount: Credentials.WebAccount; - - reportCompleted(): void { - console.warn('shimmed function WebAccountProviderSignOutAccountOperation.reportCompleted'); - } - - reportError(value: Core.WebProviderError): void { - console.warn('shimmed function WebAccountProviderSignOutAccountOperation.reportError'); - } - - } - export class WebAccountProviderTriggerDetails implements IWebAccountProviderTokenObjects, IWebAccountProviderTokenObjects2 { - operation: IWebAccountProviderOperation; - user: System.User; - - } - export enum WebAccountScope { - perUser, - perApplication, - } - export enum WebAccountSelectionOptions { - default, - new, - } - export class WebProviderTokenRequest implements IWebProviderTokenRequest, IWebProviderTokenRequest2, IWebProviderTokenRequest3 { - applicationCallbackUri: Foundation.Uri; - clientRequest: Core.WebTokenRequest; - webAccountSelectionOptions: WebAccountSelectionOptions; - webAccounts: Credentials.WebAccount[]; - applicationPackageFamilyName: string; - applicationProcessName: string; - - getApplicationTokenBindingKeyAsync(keyType: TokenBindingKeyType, target: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function WebProviderTokenRequest.getApplicationTokenBindingKeyAsync'); - } - - getApplicationTokenBindingKeyIdAsync(keyType: TokenBindingKeyType, target: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function WebProviderTokenRequest.getApplicationTokenBindingKeyIdAsync'); - } - - checkApplicationForCapabilityAsync(capabilityName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebProviderTokenRequest.checkApplicationForCapabilityAsync'); - } - - } - export class WebProviderTokenResponse implements IWebProviderTokenResponse { - // constructor(webTokenResponse: Core.WebTokenResponse); - constructor(webTokenResponse: Core.WebTokenResponse) {} - - clientResponse: Core.WebTokenResponse; - - } - } - export enum TokenBindingKeyType { - rsa2048, - ecdsaP256, - anyExisting, - } - export class WebAuthenticationBroker { - static authenticateAndContinue(requestUri: Foundation.Uri): void { - console.warn('shimmed function WebAuthenticationBroker.authenticateAndContinue'); - } - - static authenticateAndContinue_1(requestUri: Foundation.Uri, callbackUri: Foundation.Uri): void { - console.warn('shimmed function WebAuthenticationBroker.authenticateAndContinue_1'); - } - - static authenticateAndContinue_2(requestUri: Foundation.Uri, callbackUri: Foundation.Uri, continuationData: Foundation.Collections.ValueSet, options: WebAuthenticationOptions): void { - console.warn('shimmed function WebAuthenticationBroker.authenticateAndContinue_2'); - } - - static authenticateSilentlyAsync(requestUri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationBroker.authenticateSilentlyAsync'); - } - - static authenticateSilentlyAsync_1(requestUri: Foundation.Uri, options: WebAuthenticationOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationBroker.authenticateSilentlyAsync_1'); - } - - static authenticateAsync(options: WebAuthenticationOptions, requestUri: Foundation.Uri, callbackUri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationBroker.authenticateAsync'); - } - - static authenticateAsync_1(options: WebAuthenticationOptions, requestUri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAuthenticationBroker.authenticateAsync_1'); - } - - static getCurrentApplicationCallbackUri(): Foundation.Uri { - throw new Error('shimmed function WebAuthenticationBroker.getCurrentApplicationCallbackUri'); - } - - } - export enum WebAuthenticationOptions { - none, - silentMode, - useTitle, - useHttpPost = 4, - useCorporateNetwork = 8, - } - export class WebAuthenticationResult implements IWebAuthenticationResult { - responseData: string; - responseErrorDetail: number; - responseStatus: WebAuthenticationStatus; - - } - export enum WebAuthenticationStatus { - success, - userCancel, - errorHttp, - } - } - } - export namespace Authorization { - export namespace AppCapabilityAccess { - export class AppCapability implements IAppCapability { - capabilityName: string; - user: System.User; - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppCapability.requestAccessAsync'); - } - - checkAccess(): AppCapabilityAccessStatus { - throw new Error('shimmed function AppCapability.checkAccess'); - } - - static requestAccessForCapabilitiesAsync(capabilityNames: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function AppCapability.requestAccessForCapabilitiesAsync'); - } - - static requestAccessForCapabilitiesForUserAsync(user: System.User, capabilityNames: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function AppCapability.requestAccessForCapabilitiesForUserAsync'); - } - - static create(capabilityName: string): AppCapability { - throw new Error('shimmed function AppCapability.create'); - } - - static createWithProcessIdForUser(user: System.User, capabilityName: string, pid: number): AppCapability { - throw new Error('shimmed function AppCapability.createWithProcessIdForUser'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppCapability::addEventListener: ${name}`); - switch (name) { - case "accesschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppCapabilityAccessChangedEventArgs implements IAppCapabilityAccessChangedEventArgs { - } - export enum AppCapabilityAccessStatus { - deniedBySystem, - notDeclaredByApp, - deniedByUser, - userPromptRequired, - allowed, - } - } - } - export namespace Credentials { - export interface IWebAccount { - state: WebAccountState; - userName: string; - webAccountProvider: WebAccountProvider; - } - export class KeyCredential implements IKeyCredential { - name: string; - - retrievePublicKey(): Storage.Streams.IBuffer { - throw new Error('shimmed function KeyCredential.retrievePublicKey'); - } - - retrievePublicKey_1(blobType: Cryptography.Core.CryptographicPublicKeyBlobType): Storage.Streams.IBuffer { - throw new Error('shimmed function KeyCredential.retrievePublicKey_1'); - } - - requestSignAsync(data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function KeyCredential.requestSignAsync'); - } - - getAttestationAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function KeyCredential.getAttestationAsync'); - } - - } - export class KeyCredentialAttestationResult implements IKeyCredentialAttestationResult { - attestationBuffer: Storage.Streams.IBuffer; - certificateChainBuffer: Storage.Streams.IBuffer; - status: KeyCredentialAttestationStatus; - - } - export enum KeyCredentialAttestationStatus { - success, - unknownError, - notSupported, - temporaryFailure, - } - export enum KeyCredentialCreationOption { - replaceExisting, - failIfExists, - } - export class KeyCredentialManager { - static isSupportedAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function KeyCredentialManager.isSupportedAsync'); - } - - static renewAttestationAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function KeyCredentialManager.renewAttestationAsync'); - } - - static requestCreateAsync(name: string, option: KeyCredentialCreationOption): Foundation.IAsyncOperation { - throw new Error('shimmed function KeyCredentialManager.requestCreateAsync'); - } - - static openAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function KeyCredentialManager.openAsync'); - } - - static deleteAsync(name: string): Foundation.IAsyncAction { - throw new Error('shimmed function KeyCredentialManager.deleteAsync'); - } - - } - export class KeyCredentialOperationResult implements IKeyCredentialOperationResult { - result: Storage.Streams.IBuffer; - status: KeyCredentialStatus; - - } - export class KeyCredentialRetrievalResult implements IKeyCredentialRetrievalResult { - credential: KeyCredential; - status: KeyCredentialStatus; - - } - export enum KeyCredentialStatus { - success, - unknownError, - notFound, - userCanceled, - userPrefersPassword, - credentialAlreadyExists, - securityDeviceLocked, - } - export class PasswordCredential implements IPasswordCredential { - // constructor(resource: string, userName: string, password: string); - // constructor(); - constructor(resource: string, userName: string, password: string) {} - - userName: string = ''; - resource: string = ''; - password: string = ''; - properties: Foundation.Collections.IPropertySet = [ null, null, null ]; - - retrievePassword(): void { - console.warn('shimmed function PasswordCredential.retrievePassword'); - } - - } - export class PasswordCredentialPropertyStore implements Foundation.Collections.IPropertySet, Foundation.Collections.IObservableMap, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - // constructor(); - size: number; - - lookup(key: string): any { - throw new Error('shimmed function PasswordCredentialPropertyStore.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function PasswordCredentialPropertyStore.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function PasswordCredentialPropertyStore.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function PasswordCredentialPropertyStore.insert'); - } - - clear(): void { - console.warn('shimmed function PasswordCredentialPropertyStore.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function PasswordCredentialPropertyStore.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PasswordCredentialPropertyStore::addEventListener: ${name}`); - switch (name) { - case "mapchanged": // Foundation.Collections.MapChangedEventHandler - break; - } - - } - } - export class PasswordVault implements IPasswordVault { - // constructor(); - add(credential: PasswordCredential): void { - console.warn('shimmed function PasswordVault.add'); - } - - retrieve(resource: string, userName: string): PasswordCredential { - throw new Error('shimmed function PasswordVault.retrieve'); - } - - findAllByResource(resource: string): PasswordCredential[] { - throw new Error('shimmed function PasswordVault.findAllByResource'); - } - - findAllByUserName(userName: string): PasswordCredential[] { - throw new Error('shimmed function PasswordVault.findAllByUserName'); - } - - retrieveAll(): PasswordCredential[] { - throw new Error('shimmed function PasswordVault.retrieveAll'); - } - - } - export namespace UI { - export enum AuthenticationProtocol { - basic, - digest, - ntlm, - kerberos, - negotiate, - credSsp, - custom, - } - export class CredentialPicker { - static pickAsync(options: CredentialPickerOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function CredentialPicker.pickAsync'); - } - - static pickAsync_1(targetName: string, message: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CredentialPicker.pickAsync_1'); - } - - static pickAsync_2(targetName: string, message: string, caption: string): Foundation.IAsyncOperation { - throw new Error('shimmed function CredentialPicker.pickAsync_2'); - } - - } - export class CredentialPickerOptions implements ICredentialPickerOptions { - // constructor(); - targetName: string = ''; - previousCredential: Storage.Streams.IBuffer; - message: string = ''; - errorCode: number = 0; - customAuthenticationProtocol: string = ''; - credentialSaveOption: CredentialSaveOption = CredentialSaveOption.unselected; - caption: string = 'StaticDumper'; - callerSavesCredential: Boolean = false; - authenticationProtocol: AuthenticationProtocol = AuthenticationProtocol.negotiate; - alwaysDisplayDialog: Boolean = false; - - } - export class CredentialPickerResults implements ICredentialPickerResults { - credential: Storage.Streams.IBuffer; - credentialDomainName: string; - credentialPassword: string; - credentialSaveOption: CredentialSaveOption; - credentialSaved: Boolean; - credentialUserName: string; - errorCode: number; - - } - export enum CredentialSaveOption { - unselected, - selected, - hidden, - } - export enum UserConsentVerificationResult { - verified, - deviceNotPresent, - notConfiguredForUser, - disabledByPolicy, - deviceBusy, - retriesExhausted, - canceled, - } - export class UserConsentVerifier { - static checkAvailabilityAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserConsentVerifier.checkAvailabilityAsync'); - } - - static requestVerificationAsync(message: string): Foundation.IAsyncOperation { - throw new Error('shimmed function UserConsentVerifier.requestVerificationAsync'); - } - - } - export enum UserConsentVerifierAvailability { - available, - deviceNotPresent, - notConfiguredForUser, - disabledByPolicy, - deviceBusy, - } - } - export class WebAccount implements IWebAccount, IWebAccount2 { - // constructor(webAccountProvider: WebAccountProvider, userName: string, state: WebAccountState); - constructor(webAccountProvider: WebAccountProvider, userName: string, state: WebAccountState) {} - - state: WebAccountState; - userName: string; - webAccountProvider: WebAccountProvider; - id: string; - properties: string[]; - - getPictureAsync(desizedSize: WebAccountPictureSize): Foundation.IAsyncOperation { - throw new Error('shimmed function WebAccount.getPictureAsync'); - } - - signOutAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccount.signOutAsync'); - } - - signOutAsync_1(clientId: string): Foundation.IAsyncAction { - throw new Error('shimmed function WebAccount.signOutAsync_1'); - } - - } - export enum WebAccountPictureSize { - size64x64 = 64, - size208x208 = 208, - size424x424 = 424, - size1080x1080 = 1080, - } - export class WebAccountProvider implements IWebAccountProvider, IWebAccountProvider2, IWebAccountProvider3, IWebAccountProvider4 { - // constructor(id: string, displayName: string, iconUri: Foundation.Uri); - constructor(id: string, displayName: string, iconUri: Foundation.Uri) {} - - displayName: string; - iconUri: Foundation.Uri; - id: string; - authority: string; - displayPurpose: string; - user: System.User; - isSystemProvider: Boolean; - - } - export enum WebAccountState { - none, - connected, - error, - } - } - export namespace Cryptography { - export enum BinaryStringEncoding { - utf8, - utf16LE, - utf16BE, - } - export namespace Certificates { - export class Certificate implements ICertificate, ICertificate2, ICertificate3 { - // constructor(certBlob: Storage.Streams.IBuffer); - constructor(certBlob: Storage.Streams.IBuffer) {} - - friendlyName: string; - enhancedKeyUsages: string[]; - hasPrivateKey: Boolean; - isStronglyProtected: Boolean; - issuer: string; - serialNumber: number[]; - subject: string; - validFrom: Date; - validTo: Date; - isSecurityDeviceBound: Boolean; - keyAlgorithmName: string; - keyUsages: CertificateKeyUsages; - signatureAlgorithmName: string; - signatureHashAlgorithmName: string; - subjectAlternativeName: SubjectAlternativeNameInfo; - isPerUser: Boolean; - keyStorageProviderName: string; - storeName: string; - - buildChainAsync(certificates: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function Certificate.buildChainAsync'); - } - - buildChainAsync_1(certificates: Foundation.Collections.IIterable, parameters: ChainBuildingParameters): Foundation.IAsyncOperation { - throw new Error('shimmed function Certificate.buildChainAsync_1'); - } - - getHashValue(): number[] { - throw new Error('shimmed function Certificate.getHashValue'); - } - - getHashValue_1(hashAlgorithmName: string): number[] { - throw new Error('shimmed function Certificate.getHashValue_1'); - } - - getCertificateBlob(): Storage.Streams.IBuffer { - throw new Error('shimmed function Certificate.getCertificateBlob'); - } - - } - export class CertificateChain implements ICertificateChain { - validate(): ChainValidationResult { - throw new Error('shimmed function CertificateChain.validate'); - } - - validate_1(parameter: ChainValidationParameters): ChainValidationResult { - throw new Error('shimmed function CertificateChain.validate_1'); - } - - getCertificates(includeRoot: Boolean): Certificate[] { - throw new Error('shimmed function CertificateChain.getCertificates'); - } - - } - export enum CertificateChainPolicy { - base, - ssl, - ntauthentication, - microsoftRoot, - } - export class CertificateEnrollmentManager { - static userCertificateEnrollmentManager: UserCertificateEnrollmentManager; - - static importPfxDataAsync(pfxData: string, password: string, pfxImportParameters: PfxImportParameters): Foundation.IAsyncAction { - throw new Error('shimmed function CertificateEnrollmentManager.importPfxDataAsync'); - } - - static importPfxDataAsync_1(pfxData: string, password: string, exportable: ExportOption, keyProtectionLevel: KeyProtectionLevel, installOption: InstallOptions, friendlyName: string, keyStorageProvider: string): Foundation.IAsyncAction { - throw new Error('shimmed function CertificateEnrollmentManager.importPfxDataAsync_1'); - } - - static createRequestAsync(request: CertificateRequestProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function CertificateEnrollmentManager.createRequestAsync'); - } - - static installCertificateAsync(certificate: string, installOption: InstallOptions): Foundation.IAsyncAction { - throw new Error('shimmed function CertificateEnrollmentManager.installCertificateAsync'); - } - - static importPfxDataAsync_2(pfxData: string, password: string, exportable: ExportOption, keyProtectionLevel: KeyProtectionLevel, installOption: InstallOptions, friendlyName: string): Foundation.IAsyncAction { - throw new Error('shimmed function CertificateEnrollmentManager.importPfxDataAsync_2'); - } - - } - export class CertificateExtension implements ICertificateExtension { - // constructor(); - value: number[]; - objectId: string = ''; - isCritical: Boolean = false; - - encodeValue(value: string): void { - console.warn('shimmed function CertificateExtension.encodeValue'); - } - - } - export class CertificateKeyUsages implements ICertificateKeyUsages { - // constructor(); - nonRepudiation: Boolean = false; - keyEncipherment: Boolean = false; - keyCertificateSign: Boolean = false; - keyAgreement: Boolean = false; - encipherOnly: Boolean = false; - digitalSignature: Boolean = false; - dataEncipherment: Boolean = false; - crlSign: Boolean = false; - - } - export class CertificateQuery implements ICertificateQuery, ICertificateQuery2 { - // constructor(); - thumbprint: number[]; - issuerName: string = ''; - hardwareOnly: Boolean = false; - friendlyName: string = ''; - enhancedKeyUsages: string[] = [ ]; - storeName: string = ''; - includeExpiredCertificates: Boolean = true; - includeDuplicates: Boolean = false; - - } - export class CertificateRequestProperties implements ICertificateRequestProperties, ICertificateRequestProperties2, ICertificateRequestProperties3, ICertificateRequestProperties4 { - // constructor(); - subject: string = ''; - keyUsages: EnrollKeyUsages = EnrollKeyUsages.signing; - keyStorageProviderName: string = ''; - keySize: number = 2048; - exportable: ExportOption = ExportOption.notExportable; - keyProtectionLevel: KeyProtectionLevel = KeyProtectionLevel.noConsent; - keyAlgorithmName: string = 'RSA'; - hashAlgorithmName: string = 'SHA256'; - friendlyName: string = ''; - attestationCredentialCertificate: Certificate; - signingCertificate: Certificate; - smartcardReaderName: string = ''; - useExistingKey: Boolean = false; - curveParameters: number[]; - curveName: string = ''; - containerNamePrefix: string = ''; - containerName: string = ''; - extensions: CertificateExtension[] = [ ]; - subjectAlternativeName: SubjectAlternativeNameInfo = null; - suppressedDefaults: string[] = [ '1.3.6.1.4.1.311.21.20', '1.3.6.1.4.1.311.13.2.3', '1.3.6.1.4.1.311.13.2.2' ]; - - } - export class CertificateStore implements ICertificateStore, ICertificateStore2 { - name: string; - - add(certificate: Certificate): void { - console.warn('shimmed function CertificateStore.add'); - } - - delete(certificate: Certificate): void { - console.warn('shimmed function CertificateStore.delete'); - } - - } - export class CertificateStores { - static intermediateCertificationAuthorities: CertificateStore = null; - static trustedRootCertificationAuthorities: CertificateStore = null; - - static getUserStoreByName(storeName: string): UserCertificateStore { - throw new Error('shimmed function CertificateStores.getUserStoreByName'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CertificateStores.findAllAsync'); - } - - static findAllAsync_1(query: CertificateQuery): Foundation.IAsyncOperation { - throw new Error('shimmed function CertificateStores.findAllAsync_1'); - } - - static getStoreByName(storeName: string): CertificateStore { - throw new Error('shimmed function CertificateStores.getStoreByName'); - } - - } - export class ChainBuildingParameters implements IChainBuildingParameters { - // constructor(); - validationTimestamp: Date = new Date(-11644473600000); - revocationCheckEnabled: Boolean = true; - networkRetrievalEnabled: Boolean = true; - currentTimeValidationEnabled: Boolean = true; - authorityInformationAccessEnabled: Boolean = true; - enhancedKeyUsages: string[] = [ ]; - exclusiveTrustRoots: Certificate[] = [ ]; - - } - export class ChainValidationParameters implements IChainValidationParameters { - // constructor(); - serverDnsName: Networking.HostName; - certificateChainPolicy: CertificateChainPolicy = CertificateChainPolicy.base; - - } - export enum ChainValidationResult { - success, - untrusted, - revoked, - expired, - incompleteChain, - invalidSignature, - wrongUsage, - invalidName, - invalidCertificateAuthorityPolicy, - basicConstraintsError, - unknownCriticalExtension, - revocationInformationMissing, - revocationFailure, - otherErrors, - } - export class CmsAttachedSignature implements ICmsAttachedSignature { - // constructor(inputBlob: Storage.Streams.IBuffer); - constructor(inputBlob: Storage.Streams.IBuffer) {} - - certificates: Certificate[]; - content: number[]; - signers: CmsSignerInfo[]; - - verifySignature(): SignatureValidationResult { - throw new Error('shimmed function CmsAttachedSignature.verifySignature'); - } - - static generateSignatureAsync(data: Storage.Streams.IBuffer, signers: Foundation.Collections.IIterable, certificates: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CmsAttachedSignature.generateSignatureAsync'); - } - - } - export class CmsDetachedSignature implements ICmsDetachedSignature { - // constructor(inputBlob: Storage.Streams.IBuffer); - constructor(inputBlob: Storage.Streams.IBuffer) {} - - certificates: Certificate[]; - signers: CmsSignerInfo[]; - - verifySignatureAsync(data: Storage.Streams.IInputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function CmsDetachedSignature.verifySignatureAsync'); - } - - static generateSignatureAsync(data: Storage.Streams.IInputStream, signers: Foundation.Collections.IIterable, certificates: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CmsDetachedSignature.generateSignatureAsync'); - } - - } - export class CmsSignerInfo implements ICmsSignerInfo { - // constructor(); - hashAlgorithmName: string = ''; - certificate: Certificate; - timestampInfo: CmsTimestampInfo; - - } - export class CmsTimestampInfo implements ICmsTimestampInfo { - certificates: Certificate[]; - signingCertificate: Certificate; - timestamp: Date; - - } - export enum EnrollKeyUsages { - none, - decryption, - signing, - keyAgreement = 4, - all = 16777215, - } - export enum ExportOption { - notExportable, - exportable, - } - export enum InstallOptions { - none, - deleteExpired, - } - export class KeyAlgorithmNames { - static dsa: string = 'DSA'; - static ecdh256: string = 'ECDH_P256'; - static ecdh384: string = 'ECDH_P384'; - static ecdh521: string = 'ECDH_P521'; - static ecdsa256: string = 'ECDSA_P256'; - static ecdsa384: string = 'ECDSA_P384'; - static ecdsa521: string = 'ECDSA_P521'; - static rsa: string = 'RSA'; - static ecdh: string = 'ECDH'; - static ecdsa: string = 'ECDSA'; - - } - export class KeyAttestationHelper { - static decryptTpmAttestationCredentialAsync(credential: string, containerName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function KeyAttestationHelper.decryptTpmAttestationCredentialAsync'); - } - - static decryptTpmAttestationCredentialAsync_1(credential: string): Foundation.IAsyncOperation { - throw new Error('shimmed function KeyAttestationHelper.decryptTpmAttestationCredentialAsync_1'); - } - - static getTpmAttestationCredentialId(credential: string): string { - throw new Error('shimmed function KeyAttestationHelper.getTpmAttestationCredentialId'); - } - - } - export enum KeyProtectionLevel { - noConsent, - consentOnly, - consentWithPassword, - consentWithFingerprint, - } - export enum KeySize { - invalid, - rsa2048 = 2048, - rsa4096 = 4096, - } - export class KeyStorageProviderNames { - static platformKeyStorageProvider: string = 'Microsoft Platform Crypto Provider'; - static smartcardKeyStorageProvider: string = 'Microsoft Smart Card Key Storage Provider'; - static softwareKeyStorageProvider: string = 'Microsoft Software Key Storage Provider'; - static passportKeyStorageProvider: string = 'Microsoft Passport Key Storage Provider'; - - } - export class PfxImportParameters implements IPfxImportParameters { - // constructor(); - readerName: string = ''; - keyStorageProviderName: string = ''; - keyProtectionLevel: KeyProtectionLevel = KeyProtectionLevel.noConsent; - installOptions: InstallOptions = InstallOptions.none; - friendlyName: string = ''; - exportable: ExportOption = ExportOption.exportable; - containerNamePrefix: string = ''; - - } - export enum SignatureValidationResult { - success, - invalidParameter, - badMessage, - invalidSignature, - otherErrors, - } - export class StandardCertificateStoreNames { - static intermediateCertificationAuthorities: string = 'CA'; - static personal: string = 'MY'; - static trustedRootCertificationAuthorities: string = 'ROOT'; - - } - export class SubjectAlternativeNameInfo implements ISubjectAlternativeNameInfo, ISubjectAlternativeNameInfo2 { - // constructor(); - distinguishedName: string[] = [ ]; - dnsName: string[] = [ ]; - emailName: string[] = [ ]; - ipaddress: string[] = [ ]; - principalName: string[] = [ ]; - url: string[] = [ ]; - distinguishedNames: string[] = [ ]; - dnsNames: string[] = [ ]; - emailNames: string[] = [ ]; - extension: CertificateExtension; - ipaddresses: string[] = [ ]; - principalNames: string[] = [ ]; - urls: string[] = [ ]; - - } - export class UserCertificateEnrollmentManager implements IUserCertificateEnrollmentManager, IUserCertificateEnrollmentManager2 { - createRequestAsync(request: CertificateRequestProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function UserCertificateEnrollmentManager.createRequestAsync'); - } - - installCertificateAsync(certificate: string, installOption: InstallOptions): Foundation.IAsyncAction { - throw new Error('shimmed function UserCertificateEnrollmentManager.installCertificateAsync'); - } - - importPfxDataAsync(pfxData: string, password: string, exportable: ExportOption, keyProtectionLevel: KeyProtectionLevel, installOption: InstallOptions, friendlyName: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserCertificateEnrollmentManager.importPfxDataAsync'); - } - - importPfxDataAsync_1(pfxData: string, password: string, exportable: ExportOption, keyProtectionLevel: KeyProtectionLevel, installOption: InstallOptions, friendlyName: string, keyStorageProvider: string): Foundation.IAsyncAction { - throw new Error('shimmed function UserCertificateEnrollmentManager.importPfxDataAsync_1'); - } - - importPfxDataAsync_2(pfxData: string, password: string, pfxImportParameters: PfxImportParameters): Foundation.IAsyncAction { - throw new Error('shimmed function UserCertificateEnrollmentManager.importPfxDataAsync_2'); - } - - } - export class UserCertificateStore implements IUserCertificateStore { - name: string; - - requestAddAsync(certificate: Certificate): Foundation.IAsyncOperation { - throw new Error('shimmed function UserCertificateStore.requestAddAsync'); - } - - requestDeleteAsync(certificate: Certificate): Foundation.IAsyncOperation { - throw new Error('shimmed function UserCertificateStore.requestDeleteAsync'); - } - - } - } - export namespace Core { - export class AsymmetricAlgorithmNames { - static ecdsaP521Sha512: string = 'ECDSA_P521_SHA512'; - static dsaSha1: string = 'DSA_SHA1'; - static dsaSha256: string = 'DSA_SHA256'; - static ecdsaP256Sha256: string = 'ECDSA_P256_SHA256'; - static ecdsaP384Sha384: string = 'ECDSA_P384_SHA384'; - static rsaSignPkcs1Sha256: string = 'RSASIGN_PKCS1_SHA256'; - static rsaOaepSha1: string = 'RSA_OAEP_SHA1'; - static rsaOaepSha256: string = 'RSA_OAEP_SHA256'; - static rsaOaepSha384: string = 'RSA_OAEP_SHA384'; - static rsaOaepSha512: string = 'RSA_OAEP_SHA512'; - static rsaPkcs1: string = 'RSA_PKCS1'; - static rsaSignPkcs1Sha1: string = 'RSASIGN_PKCS1_SHA1'; - static rsaSignPkcs1Sha384: string = 'RSASIGN_PKCS1_SHA384'; - static rsaSignPkcs1Sha512: string = 'RSASIGN_PKCS1_SHA512'; - static rsaSignPssSha1: string = 'RSASIGN_PSS_SHA1'; - static rsaSignPssSha256: string = 'RSASIGN_PSS_SHA256'; - static rsaSignPssSha384: string = 'RSASIGN_PSS_SHA384'; - static rsaSignPssSha512: string = 'RSASIGN_PSS_SHA512'; - static ecdsaSha384: string = 'ECDSA_SHA384'; - static ecdsaSha512: string = 'ECDSA_SHA512'; - static ecdsaSha256: string = 'ECDSA_SHA256'; - - } - export class AsymmetricKeyAlgorithmProvider implements IAsymmetricKeyAlgorithmProvider, IAsymmetricKeyAlgorithmProvider2 { - algorithmName: string; - - createKeyPair(keySize: number): CryptographicKey { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.createKeyPair'); - } - - importKeyPair(keyBlob: Storage.Streams.IBuffer): CryptographicKey { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.importKeyPair'); - } - - importKeyPair_1(keyBlob: Storage.Streams.IBuffer, blobType: CryptographicPrivateKeyBlobType): CryptographicKey { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.importKeyPair_1'); - } - - importPublicKey(keyBlob: Storage.Streams.IBuffer): CryptographicKey { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.importPublicKey'); - } - - importPublicKey_1(keyBlob: Storage.Streams.IBuffer, blobType: CryptographicPublicKeyBlobType): CryptographicKey { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.importPublicKey_1'); - } - - createKeyPairWithCurveName(curveName: string): CryptographicKey { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.createKeyPairWithCurveName'); - } - - createKeyPairWithCurveParameters(parameters: number[]): CryptographicKey { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.createKeyPairWithCurveParameters'); - } - - static openAlgorithm(algorithm: string): AsymmetricKeyAlgorithmProvider { - throw new Error('shimmed function AsymmetricKeyAlgorithmProvider.openAlgorithm'); - } - - } - export enum Capi1KdfTargetAlgorithm { - notAes, - aes, - } - export class CryptographicEngine { - static signHashedData(key: CryptographicKey, data: Storage.Streams.IBuffer): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicEngine.signHashedData'); - } - - static verifySignatureWithHashInput(key: CryptographicKey, data: Storage.Streams.IBuffer, signature: Storage.Streams.IBuffer): Boolean { - throw new Error('shimmed function CryptographicEngine.verifySignatureWithHashInput'); - } - - static decryptAsync(key: CryptographicKey, data: Storage.Streams.IBuffer, iv: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function CryptographicEngine.decryptAsync'); - } - - static signAsync(key: CryptographicKey, data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function CryptographicEngine.signAsync'); - } - - static signHashedDataAsync(key: CryptographicKey, data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function CryptographicEngine.signHashedDataAsync'); - } - - static encrypt(key: CryptographicKey, data: Storage.Streams.IBuffer, iv: Storage.Streams.IBuffer): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicEngine.encrypt'); - } - - static decrypt(key: CryptographicKey, data: Storage.Streams.IBuffer, iv: Storage.Streams.IBuffer): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicEngine.decrypt'); - } - - static encryptAndAuthenticate(key: CryptographicKey, data: Storage.Streams.IBuffer, nonce: Storage.Streams.IBuffer, authenticatedData: Storage.Streams.IBuffer): EncryptedAndAuthenticatedData { - throw new Error('shimmed function CryptographicEngine.encryptAndAuthenticate'); - } - - static decryptAndAuthenticate(key: CryptographicKey, data: Storage.Streams.IBuffer, nonce: Storage.Streams.IBuffer, authenticationTag: Storage.Streams.IBuffer, authenticatedData: Storage.Streams.IBuffer): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicEngine.decryptAndAuthenticate'); - } - - static sign(key: CryptographicKey, data: Storage.Streams.IBuffer): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicEngine.sign'); - } - - static verifySignature(key: CryptographicKey, data: Storage.Streams.IBuffer, signature: Storage.Streams.IBuffer): Boolean { - throw new Error('shimmed function CryptographicEngine.verifySignature'); - } - - static deriveKeyMaterial(key: CryptographicKey, parameters: KeyDerivationParameters, desiredKeySize: number): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicEngine.deriveKeyMaterial'); - } - - } - export class CryptographicHash implements IHashComputation { - append(data: Storage.Streams.IBuffer): void { - console.warn('shimmed function CryptographicHash.append'); - } - - getValueAndReset(): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicHash.getValueAndReset'); - } - - } - export class CryptographicKey implements ICryptographicKey { - keySize: number; - - export(): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicKey.export'); - } - - export_1(blobType: CryptographicPrivateKeyBlobType): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicKey.export_1'); - } - - exportPublicKey(): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicKey.exportPublicKey'); - } - - exportPublicKey_1(blobType: CryptographicPublicKeyBlobType): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicKey.exportPublicKey_1'); - } - - } - export enum CryptographicPadding { - none, - rsaOaep, - rsaPkcs1V15, - rsaPss, - } - export enum CryptographicPrivateKeyBlobType { - pkcs8RawPrivateKeyInfo, - pkcs1RsaPrivateKey, - bcryptPrivateKey, - capi1PrivateKey, - bcryptEccFullPrivateKey, - } - export enum CryptographicPublicKeyBlobType { - x509SubjectPublicKeyInfo, - pkcs1RsaPublicKey, - bcryptPublicKey, - capi1PublicKey, - bcryptEccFullPublicKey, - } - export class EccCurveNames { - static allEccCurveNames: string[]; - static brainpoolP160r1: string = 'brainpoolP160r1'; - static brainpoolP160t1: string = 'brainpoolP160t1'; - static brainpoolP192r1: string = 'brainpoolP192r1'; - static brainpoolP192t1: string = 'brainpoolP192t1'; - static brainpoolP224r1: string = 'brainpoolP224r1'; - static brainpoolP224t1: string = 'brainpoolP224t1'; - static brainpoolP256r1: string = 'brainpoolP256r1'; - static brainpoolP256t1: string = 'brainpoolP256t1'; - static brainpoolP320r1: string = 'brainpoolP320r1'; - static brainpoolP320t1: string = 'brainpoolP320t1'; - static brainpoolP384r1: string = 'brainpoolP384r1'; - static brainpoolP384t1: string = 'brainpoolP384t1'; - static brainpoolP512r1: string = 'brainpoolP512r1'; - static brainpoolP512t1: string = 'brainpoolP512t1'; - static curve25519: string = 'curve25519'; - static ec192wapi: string = 'ec192wapi'; - static nistP192: string = 'nistP192'; - static nistP224: string = 'nistP224'; - static nistP256: string = 'nistP256'; - static nistP384: string = 'nistP384'; - static nistP521: string = 'nistP521'; - static numsP256t1: string = 'numsP256t1'; - static numsP384t1: string = 'numsP384t1'; - static numsP512t1: string = 'numsP512t1'; - static secP160k1: string = 'secP160k1'; - static secP160r1: string = 'secP160r1'; - static secP160r2: string = 'secP160r2'; - static secP192k1: string = 'secP192k1'; - static secP192r1: string = 'secP192r1'; - static secP224k1: string = 'secP224k1'; - static secP224r1: string = 'secP224r1'; - static secP256k1: string = 'secP256k1'; - static secP256r1: string = 'secP256r1'; - static secP384r1: string = 'secP384r1'; - static secP521r1: string = 'secP521r1'; - static wtls12: string = 'wtls12'; - static wtls7: string = 'wtls7'; - static wtls9: string = 'wtls9'; - static x962P192v1: string = 'x962P192v1'; - static x962P192v2: string = 'x962P192v2'; - static x962P192v3: string = 'x962P192v3'; - static x962P239v1: string = 'x962P239v1'; - static x962P239v2: string = 'x962P239v2'; - static x962P239v3: string = 'x962P239v3'; - static x962P256v1: string = 'x962P256v1'; - - } - export class EncryptedAndAuthenticatedData implements IEncryptedAndAuthenticatedData { - authenticationTag: Storage.Streams.IBuffer; - encryptedData: Storage.Streams.IBuffer; - - } - export class HashAlgorithmNames { - static md5: string = 'MD5'; - static sha1: string = 'SHA1'; - static sha256: string = 'SHA256'; - static sha384: string = 'SHA384'; - static sha512: string = 'SHA512'; - - } - export class HashAlgorithmProvider implements IHashAlgorithmProvider { - algorithmName: string; - hashLength: number; - - hashData(data: Storage.Streams.IBuffer): Storage.Streams.IBuffer { - throw new Error('shimmed function HashAlgorithmProvider.hashData'); - } - - createHash(): CryptographicHash { - throw new Error('shimmed function HashAlgorithmProvider.createHash'); - } - - static openAlgorithm(algorithm: string): HashAlgorithmProvider { - throw new Error('shimmed function HashAlgorithmProvider.openAlgorithm'); - } - - } - export class KeyDerivationAlgorithmNames { - static pbkdf2Sha256: string = 'PBKDF2_SHA256'; - static pbkdf2Md5: string = 'PBKDF2_MD5'; - static pbkdf2Sha1: string = 'PBKDF2_SHA1'; - static sp800108CtrHmacSha512: string = 'SP800_108_CTR_HMAC_SHA512'; - static pbkdf2Sha384: string = 'PBKDF2_SHA384'; - static pbkdf2Sha512: string = 'PBKDF2_SHA512'; - static sp800108CtrHmacMd5: string = 'SP800_108_CTR_HMAC_MD5'; - static sp800108CtrHmacSha1: string = 'SP800_108_CTR_HMAC_SHA1'; - static sp800108CtrHmacSha256: string = 'SP800_108_CTR_HMAC_SHA256'; - static sp800108CtrHmacSha384: string = 'SP800_108_CTR_HMAC_SHA384'; - static sp80056aConcatMd5: string = 'SP800_56A_CONCAT_MD5'; - static sp80056aConcatSha1: string = 'SP800_56A_CONCAT_SHA1'; - static sp80056aConcatSha256: string = 'SP800_56A_CONCAT_SHA256'; - static sp80056aConcatSha384: string = 'SP800_56A_CONCAT_SHA384'; - static sp80056aConcatSha512: string = 'SP800_56A_CONCAT_SHA512'; - static capiKdfSha1: string = 'CAPI_KDF_SHA1'; - static capiKdfSha256: string = 'CAPI_KDF_SHA256'; - static capiKdfSha384: string = 'CAPI_KDF_SHA384'; - static capiKdfSha512: string = 'CAPI_KDF_SHA512'; - static capiKdfMd5: string = 'CAPI_KDF_MD5'; - - } - export class KeyDerivationAlgorithmProvider implements IKeyDerivationAlgorithmProvider { - algorithmName: string; - - createKey(keyMaterial: Storage.Streams.IBuffer): CryptographicKey { - throw new Error('shimmed function KeyDerivationAlgorithmProvider.createKey'); - } - - static openAlgorithm(algorithm: string): KeyDerivationAlgorithmProvider { - throw new Error('shimmed function KeyDerivationAlgorithmProvider.openAlgorithm'); - } - - } - export class KeyDerivationParameters implements IKeyDerivationParameters, IKeyDerivationParameters2 { - kdfGenericBinary: Storage.Streams.IBuffer; - iterationCount: number; - capi1KdfTargetAlgorithm: Capi1KdfTargetAlgorithm; - - static buildForCapi1Kdf(capi1KdfTargetAlgorithm: Capi1KdfTargetAlgorithm): KeyDerivationParameters { - throw new Error('shimmed function KeyDerivationParameters.buildForCapi1Kdf'); - } - - static buildForPbkdf2(pbkdf2Salt: Storage.Streams.IBuffer, iterationCount: number): KeyDerivationParameters { - throw new Error('shimmed function KeyDerivationParameters.buildForPbkdf2'); - } - - static buildForSP800108(label: Storage.Streams.IBuffer, context: Storage.Streams.IBuffer): KeyDerivationParameters { - throw new Error('shimmed function KeyDerivationParameters.buildForSP800108'); - } - - static buildForSP80056a(algorithmId: Storage.Streams.IBuffer, partyUInfo: Storage.Streams.IBuffer, partyVInfo: Storage.Streams.IBuffer, suppPubInfo: Storage.Streams.IBuffer, suppPrivInfo: Storage.Streams.IBuffer): KeyDerivationParameters { - throw new Error('shimmed function KeyDerivationParameters.buildForSP80056a'); - } - - } - export class MacAlgorithmNames { - static aesCmac: string = 'AES_CMAC'; - static hmacMd5: string = 'HMAC_MD5'; - static hmacSha1: string = 'HMAC_SHA1'; - static hmacSha256: string = 'HMAC_SHA256'; - static hmacSha384: string = 'HMAC_SHA384'; - static hmacSha512: string = 'HMAC_SHA512'; - - } - export class MacAlgorithmProvider implements IMacAlgorithmProvider, IMacAlgorithmProvider2 { - algorithmName: string; - macLength: number; - - createKey(keyMaterial: Storage.Streams.IBuffer): CryptographicKey { - throw new Error('shimmed function MacAlgorithmProvider.createKey'); - } - - createHash(keyMaterial: Storage.Streams.IBuffer): CryptographicHash { - throw new Error('shimmed function MacAlgorithmProvider.createHash'); - } - - static openAlgorithm(algorithm: string): MacAlgorithmProvider { - throw new Error('shimmed function MacAlgorithmProvider.openAlgorithm'); - } - - } - export class PersistedKeyProvider { - static openKeyPairFromCertificateAsync(certificate: Certificates.Certificate, hashAlgorithmName: string, padding: CryptographicPadding): Foundation.IAsyncOperation { - throw new Error('shimmed function PersistedKeyProvider.openKeyPairFromCertificateAsync'); - } - - static openPublicKeyFromCertificate(certificate: Certificates.Certificate, hashAlgorithmName: string, padding: CryptographicPadding): CryptographicKey { - throw new Error('shimmed function PersistedKeyProvider.openPublicKeyFromCertificate'); - } - - } - export class SymmetricAlgorithmNames { - static aesCbc: string = 'AES_CBC'; - static aesCbcPkcs7: string = 'AES_CBC_PKCS7'; - static aesCcm: string = 'AES_CCM'; - static aesEcb: string = 'AES_ECB'; - static aesEcbPkcs7: string = 'AES_ECB_PKCS7'; - static aesGcm: string = 'AES_GCM'; - static desCbc: string = 'DES_CBC'; - static desCbcPkcs7: string = 'DES_CBC_PKCS7'; - static desEcb: string = 'DES_ECB'; - static desEcbPkcs7: string = 'DES_ECB_PKCS7'; - static rc2Cbc: string = 'RC2_CBC'; - static rc2CbcPkcs7: string = 'RC2_CBC_PKCS7'; - static rc2Ecb: string = 'RC2_ECB'; - static rc2EcbPkcs7: string = 'RC2_ECB_PKCS7'; - static rc4: string = 'RC4'; - static tripleDesCbc: string = '3DES_CBC'; - static tripleDesCbcPkcs7: string = '3DES_CBC_PKCS7'; - static tripleDesEcb: string = '3DES_ECB'; - static tripleDesEcbPkcs7: string = '3DES_ECB_PKCS7'; - - } - export class SymmetricKeyAlgorithmProvider implements ISymmetricKeyAlgorithmProvider { - algorithmName: string; - blockLength: number; - - createSymmetricKey(keyMaterial: Storage.Streams.IBuffer): CryptographicKey { - throw new Error('shimmed function SymmetricKeyAlgorithmProvider.createSymmetricKey'); - } - - static openAlgorithm(algorithm: string): SymmetricKeyAlgorithmProvider { - throw new Error('shimmed function SymmetricKeyAlgorithmProvider.openAlgorithm'); - } - - } - } - export class CryptographicBuffer { - static compare(object1: Storage.Streams.IBuffer, object2: Storage.Streams.IBuffer): Boolean { - throw new Error('shimmed function CryptographicBuffer.compare'); - } - - static generateRandom(length: number): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicBuffer.generateRandom'); - } - - static generateRandomNumber(): number { - throw new Error('shimmed function CryptographicBuffer.generateRandomNumber'); - } - - static createFromByteArray(value: number[]): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicBuffer.createFromByteArray'); - } - - static copyToByteArray(buffer: Storage.Streams.IBuffer): number[] { - throw new Error('shimmed function CryptographicBuffer.copyToByteArray'); - } - - static decodeFromHexString(value: string): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicBuffer.decodeFromHexString'); - } - - static encodeToHexString(buffer: Storage.Streams.IBuffer): string { - throw new Error('shimmed function CryptographicBuffer.encodeToHexString'); - } - - static decodeFromBase64String(value: string): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicBuffer.decodeFromBase64String'); - } - - static encodeToBase64String(buffer: Storage.Streams.IBuffer): string { - throw new Error('shimmed function CryptographicBuffer.encodeToBase64String'); - } - - static convertStringToBinary(value: string, encoding: BinaryStringEncoding): Storage.Streams.IBuffer { - throw new Error('shimmed function CryptographicBuffer.convertStringToBinary'); - } - - static convertBinaryToString(encoding: BinaryStringEncoding, buffer: Storage.Streams.IBuffer): string { - throw new Error('shimmed function CryptographicBuffer.convertBinaryToString'); - } - - } - export namespace DataProtection { - export class DataProtectionProvider implements IDataProtectionProvider { - // constructor(protectionDescriptor: string); - // constructor(); - constructor(protectionDescriptor: string) {} - - protectAsync(data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionProvider.protectAsync'); - } - - unprotectAsync(data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionProvider.unprotectAsync'); - } - - protectStreamAsync(src: Storage.Streams.IInputStream, dest: Storage.Streams.IOutputStream): Foundation.IAsyncAction { - throw new Error('shimmed function DataProtectionProvider.protectStreamAsync'); - } - - unprotectStreamAsync(src: Storage.Streams.IInputStream, dest: Storage.Streams.IOutputStream): Foundation.IAsyncAction { - throw new Error('shimmed function DataProtectionProvider.unprotectStreamAsync'); - } - - } - } - } - export namespace DataProtection { - export enum UserDataAvailability { - always, - afterFirstUnlock, - whileUnlocked, - } - export class UserDataAvailabilityStateChangedEventArgs implements IUserDataAvailabilityStateChangedEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function UserDataAvailabilityStateChangedEventArgs.getDeferral'); - } - - } - export class UserDataBufferUnprotectResult implements IUserDataBufferUnprotectResult { - status: UserDataBufferUnprotectStatus; - unprotectedBuffer: Storage.Streams.IBuffer; - - } - export enum UserDataBufferUnprotectStatus { - succeeded, - unavailable, - } - export class UserDataProtectionManager implements IUserDataProtectionManager { - protectStorageItemAsync(storageItem: Storage.IStorageItem, availability: UserDataAvailability): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataProtectionManager.protectStorageItemAsync'); - } - - getStorageItemProtectionInfoAsync(storageItem: Storage.IStorageItem): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataProtectionManager.getStorageItemProtectionInfoAsync'); - } - - protectBufferAsync(unprotectedBuffer: Storage.Streams.IBuffer, availability: UserDataAvailability): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataProtectionManager.protectBufferAsync'); - } - - unprotectBufferAsync(protectedBuffer: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function UserDataProtectionManager.unprotectBufferAsync'); - } - - isContinuedDataAvailabilityExpected(availability: UserDataAvailability): Boolean { - throw new Error('shimmed function UserDataProtectionManager.isContinuedDataAvailabilityExpected'); - } - - static tryGetDefault(): UserDataProtectionManager { - throw new Error('shimmed function UserDataProtectionManager.tryGetDefault'); - } - - static tryGetForUser(user: System.User): UserDataProtectionManager { - throw new Error('shimmed function UserDataProtectionManager.tryGetForUser'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserDataProtectionManager::addEventListener: ${name}`); - switch (name) { - case "dataavailabilitystatechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class UserDataStorageItemProtectionInfo implements IUserDataStorageItemProtectionInfo { - availability: UserDataAvailability; - - } - export enum UserDataStorageItemProtectionStatus { - succeeded, - notProtectable, - dataUnavailable, - } - } - export namespace EnterpriseData { - export class BufferProtectUnprotectResult implements IBufferProtectUnprotectResult { - buffer: Storage.Streams.IBuffer; - protectionInfo: DataProtectionInfo; - - } - export class DataProtectionInfo implements IDataProtectionInfo { - identity: string; - status: DataProtectionStatus; - - } - export class DataProtectionManager { - static protectAsync(data: Storage.Streams.IBuffer, identity: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionManager.protectAsync'); - } - - static unprotectAsync(data: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionManager.unprotectAsync'); - } - - static protectStreamAsync(unprotectedStream: Storage.Streams.IInputStream, identity: string, protectedStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionManager.protectStreamAsync'); - } - - static unprotectStreamAsync(protectedStream: Storage.Streams.IInputStream, unprotectedStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionManager.unprotectStreamAsync'); - } - - static getProtectionInfoAsync(protectedData: Storage.Streams.IBuffer): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionManager.getProtectionInfoAsync'); - } - - static getStreamProtectionInfoAsync(protectedStream: Storage.Streams.IInputStream): Foundation.IAsyncOperation { - throw new Error('shimmed function DataProtectionManager.getStreamProtectionInfoAsync'); - } - - } - export enum DataProtectionStatus { - protectedToOtherIdentity, - protected, - revoked, - unprotected, - licenseExpired, - accessSuspended, - } - export enum EnforcementLevel { - noProtection, - silent, - override, - block, - } - export interface EnterpriseDataContract { - } - export class FileProtectionInfo implements IFileProtectionInfo, IFileProtectionInfo2 { - identity: string; - isRoamable: Boolean; - status: FileProtectionStatus; - isProtectWhileOpenSupported: Boolean; - - } - export class FileProtectionManager { - static unprotectAsync(target: Storage.IStorageItem): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.unprotectAsync'); - } - - static unprotectAsync_1(target: Storage.IStorageItem, options: FileUnprotectOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.unprotectAsync_1'); - } - - static isContainerAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.isContainerAsync'); - } - - static loadFileFromContainerAsync(containerFile: Storage.IStorageFile, target: Storage.IStorageItem, collisionOption: Storage.NameCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.loadFileFromContainerAsync'); - } - - static saveFileAsContainerAsync(protectedFile: Storage.IStorageFile, sharedWithIdentities: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.saveFileAsContainerAsync'); - } - - static protectAsync(target: Storage.IStorageItem, identity: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.protectAsync'); - } - - static copyProtectionAsync(source: Storage.IStorageItem, target: Storage.IStorageItem): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.copyProtectionAsync'); - } - - static getProtectionInfoAsync(source: Storage.IStorageItem): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.getProtectionInfoAsync'); - } - - static saveFileAsContainerAsync_1(protectedFile: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.saveFileAsContainerAsync_1'); - } - - static loadFileFromContainerAsync_1(containerFile: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.loadFileFromContainerAsync_1'); - } - - static loadFileFromContainerAsync_2(containerFile: Storage.IStorageFile, target: Storage.IStorageItem): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.loadFileFromContainerAsync_2'); - } - - static createProtectedAndOpenAsync(parentFolder: Storage.IStorageFolder, desiredName: string, identity: string, collisionOption: Storage.CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function FileProtectionManager.createProtectedAndOpenAsync'); - } - - } - export enum FileProtectionStatus { - undetermined, - unknown = 0, - unprotected, - revoked, - protected, - protectedByOtherUser, - protectedToOtherEnterprise, - notProtectable, - protectedToOtherIdentity, - licenseExpired, - accessSuspended, - fileInUse, - } - export class FileRevocationManager { - static protectAsync(storageItem: Storage.IStorageItem, enterpriseIdentity: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRevocationManager.protectAsync'); - } - - static copyProtectionAsync(sourceStorageItem: Storage.IStorageItem, targetStorageItem: Storage.IStorageItem): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRevocationManager.copyProtectionAsync'); - } - - static revoke(enterpriseIdentity: string): void { - console.warn('shimmed function FileRevocationManager.revoke'); - } - - static getStatusAsync(storageItem: Storage.IStorageItem): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRevocationManager.getStatusAsync'); - } - - } - export class FileUnprotectOptions implements IFileUnprotectOptions { - // constructor(audit: Boolean); - constructor(audit: Boolean) {} - - audit: Boolean; - - } - export class ProtectedAccessResumedEventArgs implements IProtectedAccessResumedEventArgs { - identities: string[]; - - } - export class ProtectedAccessSuspendingEventArgs implements IProtectedAccessSuspendingEventArgs { - deadline: Date; - identities: string[]; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ProtectedAccessSuspendingEventArgs.getDeferral'); - } - - } - export class ProtectedContainerExportResult implements IProtectedContainerExportResult { - file: Storage.StorageFile; - status: ProtectedImportExportStatus; - - } - export class ProtectedContainerImportResult implements IProtectedContainerImportResult { - file: Storage.StorageFile; - status: ProtectedImportExportStatus; - - } - export class ProtectedContentRevokedEventArgs implements IProtectedContentRevokedEventArgs { - identities: string[]; - - } - export class ProtectedFileCreateResult implements IProtectedFileCreateResult { - file: Storage.StorageFile; - protectionInfo: FileProtectionInfo; - stream: Storage.Streams.IRandomAccessStream; - - } - export enum ProtectedImportExportStatus { - ok, - undetermined, - unprotected, - revoked, - notRoamable, - protectedToOtherIdentity, - licenseExpired, - accessSuspended, - } - export enum ProtectionPolicyAuditAction { - decrypt, - copyToLocation, - sendToRecipient, - other, - } - export class ProtectionPolicyAuditInfo implements IProtectionPolicyAuditInfo { - // constructor(action: ProtectionPolicyAuditAction, dataDescription: string, sourceDescription: string, targetDescription: string); - // constructor(action: ProtectionPolicyAuditAction, dataDescription: string); - constructor(action: ProtectionPolicyAuditAction, dataDescription: string, sourceDescription: string, targetDescription: string) {} - - targetDescription: string; - sourceDescription: string; - dataDescription: string; - action: ProtectionPolicyAuditAction; - - } - export enum ProtectionPolicyEvaluationResult { - allowed, - blocked, - consentRequired, - } - export class ProtectionPolicyManager implements IProtectionPolicyManager, IProtectionPolicyManager2 { - identity: string; - showEnterpriseIndicator: Boolean; - static isProtectionEnabled: Boolean = false; - static primaryManagedIdentity: string = ''; - - static isRoamableProtectionEnabled(identity: string): Boolean { - throw new Error('shimmed function ProtectionPolicyManager.isRoamableProtectionEnabled'); - } - - static requestAccessAsync(sourceIdentity: string, targetIdentity: string, auditInfo: ProtectionPolicyAuditInfo, messageFromApp: string, behavior: ProtectionPolicyRequestAccessBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessAsync'); - } - - static requestAccessForAppAsync(sourceIdentity: string, appPackageFamilyName: string, auditInfo: ProtectionPolicyAuditInfo, messageFromApp: string, behavior: ProtectionPolicyRequestAccessBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessForAppAsync'); - } - - static requestAccessToFilesForAppAsync(sourceItemList: Foundation.Collections.IIterable, appPackageFamilyName: string, auditInfo: ProtectionPolicyAuditInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessToFilesForAppAsync'); - } - - static requestAccessToFilesForAppAsync_1(sourceItemList: Foundation.Collections.IIterable, appPackageFamilyName: string, auditInfo: ProtectionPolicyAuditInfo, messageFromApp: string, behavior: ProtectionPolicyRequestAccessBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessToFilesForAppAsync_1'); - } - - static requestAccessToFilesForProcessAsync(sourceItemList: Foundation.Collections.IIterable, processId: number, auditInfo: ProtectionPolicyAuditInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessToFilesForProcessAsync'); - } - - static requestAccessToFilesForProcessAsync_1(sourceItemList: Foundation.Collections.IIterable, processId: number, auditInfo: ProtectionPolicyAuditInfo, messageFromApp: string, behavior: ProtectionPolicyRequestAccessBehavior): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessToFilesForProcessAsync_1'); - } - - static isFileProtectionRequiredAsync(target: Storage.IStorageItem, identity: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.isFileProtectionRequiredAsync'); - } - - static isFileProtectionRequiredForNewFileAsync(parentFolder: Storage.IStorageFolder, identity: string, desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.isFileProtectionRequiredForNewFileAsync'); - } - - static getPrimaryManagedIdentityForIdentity(identity: string): string { - throw new Error('shimmed function ProtectionPolicyManager.getPrimaryManagedIdentityForIdentity'); - } - - static requestAccessAsync_1(sourceIdentity: string, targetIdentity: string, auditInfo: ProtectionPolicyAuditInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessAsync_1'); - } - - static requestAccessAsync_2(sourceIdentity: string, targetIdentity: string, auditInfo: ProtectionPolicyAuditInfo, messageFromApp: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessAsync_2'); - } - - static requestAccessForAppAsync_1(sourceIdentity: string, appPackageFamilyName: string, auditInfo: ProtectionPolicyAuditInfo): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessForAppAsync_1'); - } - - static requestAccessForAppAsync_2(sourceIdentity: string, appPackageFamilyName: string, auditInfo: ProtectionPolicyAuditInfo, messageFromApp: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessForAppAsync_2'); - } - - static logAuditEvent(sourceIdentity: string, targetIdentity: string, auditInfo: ProtectionPolicyAuditInfo): void { - console.warn('shimmed function ProtectionPolicyManager.logAuditEvent'); - } - - static hasContentBeenRevokedSince(identity: string, since: Date): Boolean { - throw new Error('shimmed function ProtectionPolicyManager.hasContentBeenRevokedSince'); - } - - static checkAccessForApp(sourceIdentity: string, appPackageFamilyName: string): ProtectionPolicyEvaluationResult { - throw new Error('shimmed function ProtectionPolicyManager.checkAccessForApp'); - } - - static requestAccessForAppAsync_3(sourceIdentity: string, appPackageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessForAppAsync_3'); - } - - static getEnforcementLevel(identity: string): EnforcementLevel { - throw new Error('shimmed function ProtectionPolicyManager.getEnforcementLevel'); - } - - static isUserDecryptionAllowed(identity: string): Boolean { - throw new Error('shimmed function ProtectionPolicyManager.isUserDecryptionAllowed'); - } - - static isProtectionUnderLockRequired(identity: string): Boolean { - throw new Error('shimmed function ProtectionPolicyManager.isProtectionUnderLockRequired'); - } - - static isIdentityManaged(identity: string): Boolean { - throw new Error('shimmed function ProtectionPolicyManager.isIdentityManaged'); - } - - static tryApplyProcessUIPolicy(identity: string): Boolean { - throw new Error('shimmed function ProtectionPolicyManager.tryApplyProcessUIPolicy'); - } - - static clearProcessUIPolicy(): void { - console.warn('shimmed function ProtectionPolicyManager.clearProcessUIPolicy'); - } - - static createCurrentThreadNetworkContext(identity: string): ThreadNetworkContext { - throw new Error('shimmed function ProtectionPolicyManager.createCurrentThreadNetworkContext'); - } - - static getPrimaryManagedIdentityForNetworkEndpointAsync(endpointHost: Networking.HostName): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.getPrimaryManagedIdentityForNetworkEndpointAsync'); - } - - static revokeContent(identity: string): void { - console.warn('shimmed function ProtectionPolicyManager.revokeContent'); - } - - static getForCurrentView(): ProtectionPolicyManager { - throw new Error('shimmed function ProtectionPolicyManager.getForCurrentView'); - } - - static checkAccess(sourceIdentity: string, targetIdentity: string): ProtectionPolicyEvaluationResult { - throw new Error('shimmed function ProtectionPolicyManager.checkAccess'); - } - - static requestAccessAsync_3(sourceIdentity: string, targetIdentity: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProtectionPolicyManager.requestAccessAsync_3'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`ProtectionPolicyManager::addEventListener: ${name}`); - switch (name) { - case "policychanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "protectedaccessresumed": // /* System.EventHandler`1[[Windows.Security.EnterpriseData.ProtectedAccessResumedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "protectedaccesssuspending": // /* System.EventHandler`1[[Windows.Security.EnterpriseData.ProtectedAccessSuspendingEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "protectedcontentrevoked": // /* System.EventHandler`1[[Windows.Security.EnterpriseData.ProtectedContentRevokedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export enum ProtectionPolicyRequestAccessBehavior { - decrypt, - treatOverridePolicyAsBlock, - } - export class ThreadNetworkContext implements IThreadNetworkContext, Foundation.IClosable { - close(): void { - console.warn('shimmed function ThreadNetworkContext.close'); - } - - } - } - export namespace ExchangeActiveSyncProvisioning { - export class EasClientDeviceInformation implements IEasClientDeviceInformation, IEasClientDeviceInformation2 { - // constructor(); - friendlyName: string = 'DESKTOP-J0DQ6NV'; - id: string = '62837311-40ce-854c-5379-960e5f10d493'; - operatingSystem: string = 'WINDOWS'; - systemManufacturer: string = 'MSI'; - systemProductName: string = 'MS-7A74'; - systemSku: string = 'Default string'; - systemFirmwareVersion: string = ''; - systemHardwareVersion: string = ''; - - } - export class EasClientSecurityPolicy implements IEasClientSecurityPolicy { - // constructor(); - requireEncryption: Boolean; - passwordHistory: number; - passwordExpiration: number; - minPasswordLength: number; - minPasswordComplexCharacters: number; - maxPasswordFailedAttempts: number; - maxInactivityTimeLock: number; - disallowConvenienceLogon: Boolean; - - checkCompliance(): EasComplianceResults { - throw new Error('shimmed function EasClientSecurityPolicy.checkCompliance'); - } - - applyAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function EasClientSecurityPolicy.applyAsync'); - } - - } - export class EasComplianceResults implements IEasComplianceResults, IEasComplianceResults2 { - compliant: Boolean; - disallowConvenienceLogonResult: EasDisallowConvenienceLogonResult; - maxInactivityTimeLockResult: EasMaxInactivityTimeLockResult; - maxPasswordFailedAttemptsResult: EasMaxPasswordFailedAttemptsResult; - minPasswordComplexCharactersResult: EasMinPasswordComplexCharactersResult; - minPasswordLengthResult: EasMinPasswordLengthResult; - passwordExpirationResult: EasPasswordExpirationResult; - passwordHistoryResult: EasPasswordHistoryResult; - requireEncryptionResult: EasRequireEncryptionResult; - encryptionProviderType: EasEncryptionProviderType; - - } - export interface EasContract { - } - export enum EasDisallowConvenienceLogonResult { - notEvaluated, - compliant, - canBeCompliant, - requestedPolicyIsStricter, - } - export enum EasEncryptionProviderType { - notEvaluated, - windowsEncryption, - otherEncryption, - } - export enum EasMaxInactivityTimeLockResult { - notEvaluated, - compliant, - canBeCompliant, - requestedPolicyIsStricter, - invalidParameter, - } - export enum EasMaxPasswordFailedAttemptsResult { - notEvaluated, - compliant, - canBeCompliant, - requestedPolicyIsStricter, - invalidParameter, - } - export enum EasMinPasswordComplexCharactersResult { - notEvaluated, - compliant, - canBeCompliant, - requestedPolicyIsStricter, - requestedPolicyNotEnforceable, - invalidParameter, - currentUserHasBlankPassword, - adminsHaveBlankPassword, - userCannotChangePassword, - adminsCannotChangePassword, - localControlledUsersCannotChangePassword, - connectedAdminsProviderPolicyIsWeak, - connectedUserProviderPolicyIsWeak, - changeConnectedAdminsPassword, - changeConnectedUserPassword, - } - export enum EasMinPasswordLengthResult { - notEvaluated, - compliant, - canBeCompliant, - requestedPolicyIsStricter, - requestedPolicyNotEnforceable, - invalidParameter, - currentUserHasBlankPassword, - adminsHaveBlankPassword, - userCannotChangePassword, - adminsCannotChangePassword, - localControlledUsersCannotChangePassword, - connectedAdminsProviderPolicyIsWeak, - connectedUserProviderPolicyIsWeak, - changeConnectedAdminsPassword, - changeConnectedUserPassword, - } - export enum EasPasswordExpirationResult { - notEvaluated, - compliant, - canBeCompliant, - requestedPolicyIsStricter, - requestedExpirationIncompatible, - invalidParameter, - userCannotChangePassword, - adminsCannotChangePassword, - localControlledUsersCannotChangePassword, - } - export enum EasPasswordHistoryResult { - notEvaluated, - compliant, - canBeCompliant, - requestedPolicyIsStricter, - invalidParameter, - } - export enum EasRequireEncryptionResult { - notEvaluated, - compliant, - canBeCompliant, - notProvisionedOnAllVolumes, - deFixedDataNotSupported, - fixedDataNotSupported = 4, - deHardwareNotCompliant, - hardwareNotCompliant = 5, - deWinReNotConfigured, - lockNotConfigured = 6, - deProtectionSuspended, - protectionSuspended = 7, - deOsVolumeNotProtected, - osVolumeNotProtected = 8, - deProtectionNotYetEnabled, - protectionNotYetEnabled = 9, - noFeatureLicense, - osNotProtected, - unexpectedFailure, - } - } - } - export namespace Services { - export namespace Cortana { - export class CortanaActionableInsights implements ICortanaActionableInsights { - user: System.User; - - isAvailableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CortanaActionableInsights.isAvailableAsync'); - } - - showInsightsForImageAsync(imageStream: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncAction { - throw new Error('shimmed function CortanaActionableInsights.showInsightsForImageAsync'); - } - - showInsightsForImageAsync_1(imageStream: Storage.Streams.IRandomAccessStreamReference, options: CortanaActionableInsightsOptions): Foundation.IAsyncAction { - throw new Error('shimmed function CortanaActionableInsights.showInsightsForImageAsync_1'); - } - - showInsightsForTextAsync(text: string): Foundation.IAsyncAction { - throw new Error('shimmed function CortanaActionableInsights.showInsightsForTextAsync'); - } - - showInsightsForTextAsync_1(text: string, options: CortanaActionableInsightsOptions): Foundation.IAsyncAction { - throw new Error('shimmed function CortanaActionableInsights.showInsightsForTextAsync_1'); - } - - showInsightsAsync(datapackage: ApplicationModel.DataTransfer.DataPackage): Foundation.IAsyncAction { - throw new Error('shimmed function CortanaActionableInsights.showInsightsAsync'); - } - - showInsightsAsync_1(datapackage: ApplicationModel.DataTransfer.DataPackage, options: CortanaActionableInsightsOptions): Foundation.IAsyncAction { - throw new Error('shimmed function CortanaActionableInsights.showInsightsAsync_1'); - } - - static getDefault(): CortanaActionableInsights { - throw new Error('shimmed function CortanaActionableInsights.getDefault'); - } - - static getForUser(user: System.User): CortanaActionableInsights { - throw new Error('shimmed function CortanaActionableInsights.getForUser'); - } - - } - export class CortanaActionableInsightsOptions implements ICortanaActionableInsightsOptions { - // constructor(); - surroundingText: string = ''; - contentSourceWebLink: Foundation.Uri; - - } - export enum CortanaPermission { - browsingHistory, - calendar, - callHistory, - contacts, - email, - inputPersonalization, - location, - messaging, - microphone, - personalization, - phoneCall, - } - export enum CortanaPermissionsChangeResult { - success, - unavailable, - disabledByPolicy, - } - export class CortanaPermissionsManager implements ICortanaPermissionsManager { - isSupported(): Boolean { - throw new Error('shimmed function CortanaPermissionsManager.isSupported'); - } - - arePermissionsGrantedAsync(permissions: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CortanaPermissionsManager.arePermissionsGrantedAsync'); - } - - grantPermissionsAsync(permissions: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CortanaPermissionsManager.grantPermissionsAsync'); - } - - revokePermissionsAsync(permissions: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function CortanaPermissionsManager.revokePermissionsAsync'); - } - - static getDefault(): CortanaPermissionsManager { - throw new Error('shimmed function CortanaPermissionsManager.getDefault'); - } - - } - export class CortanaSettings implements ICortanaSettings { - isVoiceActivationEnabled: Boolean; - hasUserConsentToVoiceActivation: Boolean; - - static isSupported(): Boolean { - throw new Error('shimmed function CortanaSettings.isSupported'); - } - - static getDefault(): CortanaSettings { - throw new Error('shimmed function CortanaSettings.getDefault'); - } - - } - } - export namespace Maps { - export class EnhancedWaypoint implements IEnhancedWaypoint { - // constructor(point: Devices.Geolocation.Geopoint, kind: WaypointKind); - constructor(point: Devices.Geolocation.Geopoint, kind: WaypointKind) {} - - kind: WaypointKind; - point: Devices.Geolocation.Geopoint; - - } - export namespace Guidance { - export enum GuidanceAudioMeasurementSystem { - meters, - milesAndYards, - milesAndFeet, - } - export enum GuidanceAudioNotificationKind { - maneuver, - route, - gps, - speedLimit, - traffic, - trafficCamera, - } - export class GuidanceAudioNotificationRequestedEventArgs implements IGuidanceAudioNotificationRequestedEventArgs { - audioFilePaths: string[]; - audioNotification: GuidanceAudioNotificationKind; - audioText: string; - - } - export enum GuidanceAudioNotifications { - none, - maneuver, - route, - gps = 4, - speedLimit = 8, - traffic = 16, - trafficCamera = 32, - } - export class GuidanceLaneInfo implements IGuidanceLaneInfo { - isOnRoute: Boolean; - laneMarkers: GuidanceLaneMarkers; - - } - export enum GuidanceLaneMarkers { - none, - lightRight, - right, - hardRight = 4, - straight = 8, - uturnLeft = 16, - hardLeft = 32, - left = 64, - lightLeft = 128, - uturnRight = 256, - unknown = 4294967295, - } - export class GuidanceManeuver implements IGuidanceManeuver { - departureRoadName: string; - departureShortRoadName: string; - distanceFromPreviousManeuver: number; - distanceFromRouteStart: number; - endAngle: number; - instructionText: string; - kind: GuidanceManeuverKind; - nextRoadName: string; - nextShortRoadName: string; - roadSignpost: GuidanceRoadSignpost; - startAngle: number; - startLocation: Devices.Geolocation.Geopoint; - - } - export enum GuidanceManeuverKind { - none, - goStraight, - uturnRight, - uturnLeft, - turnKeepRight, - turnLightRight, - turnRight, - turnHardRight, - keepMiddle, - turnKeepLeft, - turnLightLeft, - turnLeft, - turnHardLeft, - freewayEnterRight, - freewayEnterLeft, - freewayLeaveRight, - freewayLeaveLeft, - freewayKeepRight, - freewayKeepLeft, - trafficCircleRight1, - trafficCircleRight2, - trafficCircleRight3, - trafficCircleRight4, - trafficCircleRight5, - trafficCircleRight6, - trafficCircleRight7, - trafficCircleRight8, - trafficCircleRight9, - trafficCircleRight10, - trafficCircleRight11, - trafficCircleRight12, - trafficCircleLeft1, - trafficCircleLeft2, - trafficCircleLeft3, - trafficCircleLeft4, - trafficCircleLeft5, - trafficCircleLeft6, - trafficCircleLeft7, - trafficCircleLeft8, - trafficCircleLeft9, - trafficCircleLeft10, - trafficCircleLeft11, - trafficCircleLeft12, - start, - end, - takeFerry, - passTransitStation, - leaveTransitStation, - } - export class GuidanceMapMatchedCoordinate implements IGuidanceMapMatchedCoordinate { - currentHeading: number; - currentSpeed: number; - isOnStreet: Boolean; - location: Devices.Geolocation.Geopoint; - road: GuidanceRoadSegment; - - } - export enum GuidanceMode { - none, - simulation, - navigation, - tracking, - } - export class GuidanceNavigator implements IGuidanceNavigator, IGuidanceNavigator2 { - audioNotifications: GuidanceAudioNotifications; - audioMeasurementSystem: GuidanceAudioMeasurementSystem; - isGuidanceAudioMuted: Boolean; - static useAppProvidedVoice: Boolean; - - startNavigating(route: GuidanceRoute): void { - console.warn('shimmed function GuidanceNavigator.startNavigating'); - } - - startSimulating(route: GuidanceRoute, speedInMetersPerSecond: number): void { - console.warn('shimmed function GuidanceNavigator.startSimulating'); - } - - startTracking(): void { - console.warn('shimmed function GuidanceNavigator.startTracking'); - } - - pause(): void { - console.warn('shimmed function GuidanceNavigator.pause'); - } - - resume(): void { - console.warn('shimmed function GuidanceNavigator.resume'); - } - - stop(): void { - console.warn('shimmed function GuidanceNavigator.stop'); - } - - repeatLastAudioNotification(): void { - console.warn('shimmed function GuidanceNavigator.repeatLastAudioNotification'); - } - - setGuidanceVoice(voiceId: number, voiceFolder: string): void { - console.warn('shimmed function GuidanceNavigator.setGuidanceVoice'); - } - - updateUserLocation(userLocation: Devices.Geolocation.Geocoordinate): void { - console.warn('shimmed function GuidanceNavigator.updateUserLocation'); - } - - updateUserLocation_1(userLocation: Devices.Geolocation.Geocoordinate, positionOverride: Devices.Geolocation.BasicGeoposition): void { - console.warn('shimmed function GuidanceNavigator.updateUserLocation_1'); - } - - static getCurrent(): GuidanceNavigator { - throw new Error('shimmed function GuidanceNavigator.getCurrent'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GuidanceNavigator::addEventListener: ${name}`); - switch (name) { - case "destinationreached": // Foundation.TypedEventHandler - case "guidanceupdated": // Foundation.TypedEventHandler - case "reroutefailed": // Foundation.TypedEventHandler - case "rerouted": // Foundation.TypedEventHandler - case "rerouting": // Foundation.TypedEventHandler - case "userlocationlost": // Foundation.TypedEventHandler - case "userlocationrestored": // Foundation.TypedEventHandler - case "audionotificationrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GuidanceReroutedEventArgs implements IGuidanceReroutedEventArgs { - route: GuidanceRoute; - - } - export class GuidanceRoadSegment implements IGuidanceRoadSegment, IGuidanceRoadSegment2 { - id: string; - isHighway: Boolean; - isTollRoad: Boolean; - isTunnel: Boolean; - path: Devices.Geolocation.Geopath; - roadName: string; - shortRoadName: string; - speedLimit: number; - travelTime: number; - isScenic: Boolean; - - } - export class GuidanceRoadSignpost implements IGuidanceRoadSignpost { - backgroundColor: UI.Color; - exit: string; - exitDirections: string[]; - exitNumber: string; - foregroundColor: UI.Color; - - } - export class GuidanceRoute implements IGuidanceRoute { - boundingBox: Devices.Geolocation.GeoboundingBox; - distance: number; - duration: number; - maneuvers: GuidanceManeuver[]; - path: Devices.Geolocation.Geopath; - roadSegments: GuidanceRoadSegment[]; - - convertToMapRoute(): MapRoute { - throw new Error('shimmed function GuidanceRoute.convertToMapRoute'); - } - - static canCreateFromMapRoute(mapRoute: MapRoute): Boolean { - throw new Error('shimmed function GuidanceRoute.canCreateFromMapRoute'); - } - - static tryCreateFromMapRoute(mapRoute: MapRoute): GuidanceRoute { - throw new Error('shimmed function GuidanceRoute.tryCreateFromMapRoute'); - } - - } - export class GuidanceTelemetryCollector implements IGuidanceTelemetryCollector { - uploadFrequency: number; - speedTrigger: number; - enabled: Boolean; - - clearLocalData(): void { - console.warn('shimmed function GuidanceTelemetryCollector.clearLocalData'); - } - - static getCurrent(): GuidanceTelemetryCollector { - throw new Error('shimmed function GuidanceTelemetryCollector.getCurrent'); - } - - } - export class GuidanceUpdatedEventArgs implements IGuidanceUpdatedEventArgs { - afterNextManeuver: GuidanceManeuver; - afterNextManeuverDistance: number; - currentLocation: GuidanceMapMatchedCoordinate; - distanceToDestination: number; - elapsedDistance: number; - elapsedTime: number; - isNewManeuver: Boolean; - laneInfo: GuidanceLaneInfo[]; - mode: GuidanceMode; - nextManeuver: GuidanceManeuver; - nextManeuverDistance: number; - roadName: string; - route: GuidanceRoute; - timeToDestination: number; - - } - } - export interface GuidanceContract { - } - export namespace LocalSearch { - export class LocalCategories { - static all: string = ''; - static bankAndCreditUnions: string = 'CASH_DISPENSER'; - static eatDrink: string = 'RESTAURANT'; - static hospitals: string = 'HOSPITAL'; - static hotelsAndMotels: string = 'HOTEL'; - static parking: string = 'PARKING'; - static seeDo: string = 'TOURIST_ATTRACTION'; - static shop: string = 'SHOP'; - - } - export class LocalLocation implements ILocalLocation, ILocalLocation2 { - address: MapAddress; - dataAttribution: string; - description: string; - displayName: string; - identifier: string; - phoneNumber: string; - point: Devices.Geolocation.Geopoint; - category: string; - hoursOfOperation: LocalLocationHoursOfOperationItem[]; - ratingInfo: LocalLocationRatingInfo; - - } - export class LocalLocationFinder { - static findLocalLocationsAsync(searchTerm: string, searchArea: Devices.Geolocation.Geocircle, localCategory: string, maxResults: number): Foundation.IAsyncOperation { - throw new Error('shimmed function LocalLocationFinder.findLocalLocationsAsync'); - } - - } - export class LocalLocationFinderResult implements ILocalLocationFinderResult { - localLocations: LocalLocation[]; - status: LocalLocationFinderStatus; - - } - export enum LocalLocationFinderStatus { - success, - unknownError, - invalidCredentials, - invalidCategory, - invalidSearchTerm, - invalidSearchArea, - networkFailure, - notSupported, - } - export class LocalLocationHoursOfOperationItem implements ILocalLocationHoursOfOperationItem { - day: Globalization.DayOfWeek; - span: number; - start: number; - - } - export class LocalLocationRatingInfo implements ILocalLocationRatingInfo { - aggregateRating: number | null; - providerIdentifier: string; - ratingCount: number | null; - - } - export class PlaceInfoHelper { - static createFromLocalLocation(location: LocalLocation): PlaceInfo { - throw new Error('shimmed function PlaceInfoHelper.createFromLocalLocation'); - } - - } - } - export interface LocalSearchContract { - } - export class ManeuverWarning implements IManeuverWarning { - kind: ManeuverWarningKind; - severity: ManeuverWarningSeverity; - - } - export enum ManeuverWarningKind { - none, - accident, - administrativeDivisionChange, - alert, - blockedRoad, - checkTimetable, - congestion, - construction, - countryChange, - disabledVehicle, - gateAccess, - getOffTransit, - getOnTransit, - illegalUTurn, - massTransit, - miscellaneous, - noIncident, - other, - otherNews, - otherTrafficIncidents, - plannedEvent, - privateRoad, - restrictedTurn, - roadClosures, - roadHazard, - scheduledConstruction, - seasonalClosures, - tollbooth, - tollRoad, - tollZoneEnter, - tollZoneExit, - trafficFlow, - transitLineChange, - unpavedRoad, - unscheduledConstruction, - weather, - } - export enum ManeuverWarningSeverity { - none, - lowImpact, - minor, - moderate, - serious, - } - export class MapAddress implements IMapAddress, IMapAddress2 { - buildingFloor: string; - buildingName: string; - buildingRoom: string; - buildingWing: string; - continent: string; - country: string; - countryCode: string; - district: string; - neighborhood: string; - postCode: string; - region: string; - regionCode: string; - street: string; - streetNumber: string; - town: string; - formattedAddress: string; - - } - export class MapLocation implements IMapLocation { - address: MapAddress; - description: string; - displayName: string; - point: Devices.Geolocation.Geopoint; - - } - export enum MapLocationDesiredAccuracy { - high, - low, - } - export class MapLocationFinder { - static findLocationsAtAsync(queryPoint: Devices.Geolocation.Geopoint, accuracy: MapLocationDesiredAccuracy): Foundation.IAsyncOperation { - throw new Error('shimmed function MapLocationFinder.findLocationsAtAsync'); - } - - static findLocationsAtAsync_1(queryPoint: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MapLocationFinder.findLocationsAtAsync_1'); - } - - static findLocationsAsync(searchText: string, referencePoint: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MapLocationFinder.findLocationsAsync'); - } - - static findLocationsAsync_1(searchText: string, referencePoint: Devices.Geolocation.Geopoint, maxCount: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapLocationFinder.findLocationsAsync_1'); - } - - } - export class MapLocationFinderResult implements IMapLocationFinderResult { - locations: MapLocation[]; - status: MapLocationFinderStatus; - - } - export enum MapLocationFinderStatus { - success, - unknownError, - invalidCredentials, - badLocation, - indexFailure, - networkFailure, - notSupported, - } - export class MapManager { - static showDownloadedMapsUI(): void { - console.warn('shimmed function MapManager.showDownloadedMapsUI'); - } - - static showMapsUpdateUI(): void { - console.warn('shimmed function MapManager.showMapsUpdateUI'); - } - - } - export enum MapManeuverNotices { - none, - toll, - unpaved, - } - export class MapRoute implements IMapRoute, IMapRoute2, IMapRoute3, IMapRoute4 { - boundingBox: Devices.Geolocation.GeoboundingBox; - estimatedDuration: number; - isTrafficBased: Boolean; - legs: MapRouteLeg[]; - lengthInMeters: number; - path: Devices.Geolocation.Geopath; - hasBlockedRoads: Boolean; - violatedRestrictions: MapRouteRestrictions; - durationWithoutTraffic: number; - trafficCongestion: TrafficCongestion; - isScenic: Boolean; - - } - export class MapRouteDrivingOptions implements IMapRouteDrivingOptions, IMapRouteDrivingOptions2 { - // constructor(); - routeRestrictions: MapRouteRestrictions = MapRouteRestrictions.none; - routeOptimization: MapRouteOptimization = MapRouteOptimization.time; - maxAlternateRouteCount: number = 0; - initialHeading: number | null; - departureTime: Date | null; - - } - export class MapRouteFinder { - static getDrivingRouteFromEnhancedWaypointsAsync(waypoints: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteFromEnhancedWaypointsAsync'); - } - - static getDrivingRouteFromEnhancedWaypointsAsync_1(waypoints: Foundation.Collections.IIterable, options: MapRouteDrivingOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteFromEnhancedWaypointsAsync_1'); - } - - static getDrivingRouteAsync(startPoint: Devices.Geolocation.Geopoint, endPoint: Devices.Geolocation.Geopoint, options: MapRouteDrivingOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteAsync'); - } - - static getDrivingRouteAsync_1(startPoint: Devices.Geolocation.Geopoint, endPoint: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteAsync_1'); - } - - static getDrivingRouteAsync_2(startPoint: Devices.Geolocation.Geopoint, endPoint: Devices.Geolocation.Geopoint, optimization: MapRouteOptimization): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteAsync_2'); - } - - static getDrivingRouteAsync_3(startPoint: Devices.Geolocation.Geopoint, endPoint: Devices.Geolocation.Geopoint, optimization: MapRouteOptimization, restrictions: MapRouteRestrictions): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteAsync_3'); - } - - static getDrivingRouteAsync_4(startPoint: Devices.Geolocation.Geopoint, endPoint: Devices.Geolocation.Geopoint, optimization: MapRouteOptimization, restrictions: MapRouteRestrictions, headingInDegrees: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteAsync_4'); - } - - static getDrivingRouteFromWaypointsAsync(wayPoints: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteFromWaypointsAsync'); - } - - static getDrivingRouteFromWaypointsAsync_1(wayPoints: Foundation.Collections.IIterable, optimization: MapRouteOptimization): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteFromWaypointsAsync_1'); - } - - static getDrivingRouteFromWaypointsAsync_2(wayPoints: Foundation.Collections.IIterable, optimization: MapRouteOptimization, restrictions: MapRouteRestrictions): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteFromWaypointsAsync_2'); - } - - static getDrivingRouteFromWaypointsAsync_3(wayPoints: Foundation.Collections.IIterable, optimization: MapRouteOptimization, restrictions: MapRouteRestrictions, headingInDegrees: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getDrivingRouteFromWaypointsAsync_3'); - } - - static getWalkingRouteAsync(startPoint: Devices.Geolocation.Geopoint, endPoint: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getWalkingRouteAsync'); - } - - static getWalkingRouteFromWaypointsAsync(wayPoints: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MapRouteFinder.getWalkingRouteFromWaypointsAsync'); - } - - } - export class MapRouteFinderResult implements IMapRouteFinderResult, IMapRouteFinderResult2 { - route: MapRoute; - status: MapRouteFinderStatus; - alternateRoutes: MapRoute[]; - - } - export enum MapRouteFinderStatus { - success, - unknownError, - invalidCredentials, - noRouteFound, - noRouteFoundWithGivenOptions, - startPointNotFound, - endPointNotFound, - noPedestrianRouteFound, - networkFailure, - notSupported, - } - export class MapRouteLeg implements IMapRouteLeg, IMapRouteLeg2 { - boundingBox: Devices.Geolocation.GeoboundingBox; - estimatedDuration: number; - lengthInMeters: number; - maneuvers: MapRouteManeuver[]; - path: Devices.Geolocation.Geopath; - durationWithoutTraffic: number; - trafficCongestion: TrafficCongestion; - - } - export class MapRouteManeuver implements IMapRouteManeuver, IMapRouteManeuver2, IMapRouteManeuver3 { - exitNumber: string; - instructionText: string; - kind: MapRouteManeuverKind; - lengthInMeters: number; - maneuverNotices: MapManeuverNotices; - startingPoint: Devices.Geolocation.Geopoint; - endHeading: number; - startHeading: number; - streetName: string; - warnings: ManeuverWarning[]; - - } - export enum MapRouteManeuverKind { - none, - start, - stopover, - stopoverResume, - end, - goStraight, - uturnLeft, - uturnRight, - turnKeepLeft, - turnKeepRight, - turnLightLeft, - turnLightRight, - turnLeft, - turnRight, - turnHardLeft, - turnHardRight, - freewayEnterLeft, - freewayEnterRight, - freewayLeaveLeft, - freewayLeaveRight, - freewayContinueLeft, - freewayContinueRight, - trafficCircleLeft, - trafficCircleRight, - takeFerry, - } - export enum MapRouteOptimization { - time, - distance, - timeWithTraffic, - scenic, - } - export enum MapRouteRestrictions { - none, - highways, - tollRoads, - ferries = 4, - tunnels = 8, - dirtRoads = 16, - motorail = 32, - } - export class MapService { - static serviceToken: string = ''; - static worldViewRegionCode: string = 'GBR'; - static dataAttributions: string = '© 2021 Microsoft Corporation, © 2021 TomTom'; - static dataUsagePreference: MapServiceDataUsagePreference = MapServiceDataUsagePreference.default; - - } - export enum MapServiceDataUsagePreference { - default, - offlineMapDataOnly, - } - export namespace OfflineMaps { - export class OfflineMapPackage implements IOfflineMapPackage { - displayName: string; - enclosingRegionName: string; - estimatedSizeInBytes: number; - status: OfflineMapPackageStatus; - - requestStartDownloadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function OfflineMapPackage.requestStartDownloadAsync'); - } - - static findPackagesAsync(queryPoint: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function OfflineMapPackage.findPackagesAsync'); - } - - static findPackagesInBoundingBoxAsync(queryBoundingBox: Devices.Geolocation.GeoboundingBox): Foundation.IAsyncOperation { - throw new Error('shimmed function OfflineMapPackage.findPackagesInBoundingBoxAsync'); - } - - static findPackagesInGeocircleAsync(queryCircle: Devices.Geolocation.Geocircle): Foundation.IAsyncOperation { - throw new Error('shimmed function OfflineMapPackage.findPackagesInGeocircleAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`OfflineMapPackage::addEventListener: ${name}`); - switch (name) { - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class OfflineMapPackageQueryResult implements IOfflineMapPackageQueryResult { - packages: OfflineMapPackage[]; - status: OfflineMapPackageQueryStatus; - - } - export enum OfflineMapPackageQueryStatus { - success, - unknownError, - invalidCredentials, - networkFailure, - } - export class OfflineMapPackageStartDownloadResult implements IOfflineMapPackageStartDownloadResult { - status: OfflineMapPackageStartDownloadStatus; - - } - export enum OfflineMapPackageStartDownloadStatus { - success, - unknownError, - invalidCredentials, - deniedWithoutCapability, - } - export enum OfflineMapPackageStatus { - notDownloaded, - downloading, - downloaded, - deleting, - } - } - export class PlaceInfo implements IPlaceInfo { - displayAddress: string; - displayName: string; - geoshape: Devices.Geolocation.IGeoshape; - identifier: string; - static isShowSupported: Boolean = true; - - show(selection: Foundation.Rect): void { - console.warn('shimmed function PlaceInfo.show'); - } - - show_1(selection: Foundation.Rect, preferredPlacement: UI.Popups.Placement): void { - console.warn('shimmed function PlaceInfo.show_1'); - } - - static createFromAddress(displayAddress: string): PlaceInfo { - throw new Error('shimmed function PlaceInfo.createFromAddress'); - } - - static createFromAddress_1(displayAddress: string, displayName: string): PlaceInfo { - throw new Error('shimmed function PlaceInfo.createFromAddress_1'); - } - - static create(referencePoint: Devices.Geolocation.Geopoint): PlaceInfo { - throw new Error('shimmed function PlaceInfo.create'); - } - - static create_1(referencePoint: Devices.Geolocation.Geopoint, options: PlaceInfoCreateOptions): PlaceInfo { - throw new Error('shimmed function PlaceInfo.create_1'); - } - - static createFromIdentifier(identifier: string): PlaceInfo { - throw new Error('shimmed function PlaceInfo.createFromIdentifier'); - } - - static createFromIdentifier_1(identifier: string, defaultPoint: Devices.Geolocation.Geopoint, options: PlaceInfoCreateOptions): PlaceInfo { - throw new Error('shimmed function PlaceInfo.createFromIdentifier_1'); - } - - static createFromMapLocation(location: MapLocation): PlaceInfo { - throw new Error('shimmed function PlaceInfo.createFromMapLocation'); - } - - } - export class PlaceInfoCreateOptions implements IPlaceInfoCreateOptions { - // constructor(); - displayName: string = ''; - displayAddress: string = ''; - - } - export enum TrafficCongestion { - unknown, - light, - mild, - medium, - heavy, - } - export enum WaypointKind { - stop, - via, - } - } - export namespace Store { - export class StoreAcquireLicenseResult implements IStoreAcquireLicenseResult { - extendedError: number; - storePackageLicense: StorePackageLicense; - - } - export class StoreAppLicense implements IStoreAppLicense, IStoreAppLicense2 { - addOnLicenses: string[]; - expirationDate: Date; - extendedJsonData: string; - isActive: Boolean; - isTrial: Boolean; - isTrialOwnedByThisUser: Boolean; - skuStoreId: string; - trialTimeRemaining: number; - trialUniqueId: string; - isDiscLicense: Boolean; - - } - export class StoreAvailability implements IStoreAvailability { - endDate: Date; - extendedJsonData: string; - price: StorePrice; - storeId: string; - - requestPurchaseAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreAvailability.requestPurchaseAsync'); - } - - requestPurchaseAsync_1(storePurchaseProperties: StorePurchaseProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreAvailability.requestPurchaseAsync_1'); - } - - } - export class StoreCanAcquireLicenseResult implements IStoreCanAcquireLicenseResult { - extendedError: number; - licensableSku: string; - status: StoreCanLicenseStatus; - - } - export enum StoreCanLicenseStatus { - notLicensableToUser, - licensable, - licenseActionNotApplicableToProduct, - networkError, - serverError, - } - export class StoreCollectionData implements IStoreCollectionData { - acquiredDate: Date; - campaignId: string; - developerOfferId: string; - endDate: Date; - extendedJsonData: string; - isTrial: Boolean; - startDate: Date; - trialTimeRemaining: number; - - } - export class StoreConsumableResult implements IStoreConsumableResult { - balanceRemaining: number; - extendedError: number; - status: StoreConsumableStatus; - trackingId: string; - - } - export enum StoreConsumableStatus { - succeeded, - insufficentQuantity, - networkError, - serverError, - } - export class StoreContext implements IStoreContext, IStoreContext2, IStoreContext3, IStoreContext4 { - user: System.User; - canSilentlyDownloadStorePackageUpdates: Boolean; - - getCustomerPurchaseIdAsync(serviceTicket: string, publisherUserId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getCustomerPurchaseIdAsync'); - } - - getCustomerCollectionsIdAsync(serviceTicket: string, publisherUserId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getCustomerCollectionsIdAsync'); - } - - getAppLicenseAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getAppLicenseAsync'); - } - - getStoreProductForCurrentAppAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getStoreProductForCurrentAppAsync'); - } - - getStoreProductsAsync(productKinds: Foundation.Collections.IIterable, storeIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getStoreProductsAsync'); - } - - getAssociatedStoreProductsAsync(productKinds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getAssociatedStoreProductsAsync'); - } - - getAssociatedStoreProductsWithPagingAsync(productKinds: Foundation.Collections.IIterable, maxItemsToRetrievePerPage: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getAssociatedStoreProductsWithPagingAsync'); - } - - getUserCollectionAsync(productKinds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getUserCollectionAsync'); - } - - getUserCollectionWithPagingAsync(productKinds: Foundation.Collections.IIterable, maxItemsToRetrievePerPage: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getUserCollectionWithPagingAsync'); - } - - reportConsumableFulfillmentAsync(productStoreId: string, quantity: number, trackingId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.reportConsumableFulfillmentAsync'); - } - - getConsumableBalanceRemainingAsync(productStoreId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getConsumableBalanceRemainingAsync'); - } - - acquireStoreLicenseForOptionalPackageAsync(optionalPackage: ApplicationModel.Package): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.acquireStoreLicenseForOptionalPackageAsync'); - } - - requestPurchaseAsync(storeId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.requestPurchaseAsync'); - } - - requestPurchaseAsync_1(storeId: string, storePurchaseProperties: StorePurchaseProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.requestPurchaseAsync_1'); - } - - getAppAndOptionalStorePackageUpdatesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getAppAndOptionalStorePackageUpdatesAsync'); - } - - requestDownloadStorePackageUpdatesAsync(storePackageUpdates: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StoreContext.requestDownloadStorePackageUpdatesAsync'); - } - - requestDownloadAndInstallStorePackageUpdatesAsync(storePackageUpdates: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StoreContext.requestDownloadAndInstallStorePackageUpdatesAsync'); - } - - requestDownloadAndInstallStorePackagesAsync(storeIds: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StoreContext.requestDownloadAndInstallStorePackagesAsync'); - } - - findStoreProductForPackageAsync(productKinds: Foundation.Collections.IIterable, package: ApplicationModel.Package): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.findStoreProductForPackageAsync'); - } - - trySilentDownloadStorePackageUpdatesAsync(storePackageUpdates: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StoreContext.trySilentDownloadStorePackageUpdatesAsync'); - } - - trySilentDownloadAndInstallStorePackageUpdatesAsync(storePackageUpdates: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StoreContext.trySilentDownloadAndInstallStorePackageUpdatesAsync'); - } - - canAcquireStoreLicenseForOptionalPackageAsync(optionalPackage: ApplicationModel.Package): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.canAcquireStoreLicenseForOptionalPackageAsync'); - } - - canAcquireStoreLicenseAsync(productStoreId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.canAcquireStoreLicenseAsync'); - } - - getStoreProductsAsync_1(productKinds: Foundation.Collections.IIterable, storeIds: Foundation.Collections.IIterable, storeProductOptions: StoreProductOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getStoreProductsAsync_1'); - } - - getAssociatedStoreQueueItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getAssociatedStoreQueueItemsAsync'); - } - - getStoreQueueItemsAsync(storeIds: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.getStoreQueueItemsAsync'); - } - - requestDownloadAndInstallStorePackagesAsync_1(storeIds: Foundation.Collections.IIterable, storePackageInstallOptions: StorePackageInstallOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StoreContext.requestDownloadAndInstallStorePackagesAsync_1'); - } - - downloadAndInstallStorePackagesAsync(storeIds: Foundation.Collections.IIterable): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StoreContext.downloadAndInstallStorePackagesAsync'); - } - - requestUninstallStorePackageAsync(package: ApplicationModel.Package): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.requestUninstallStorePackageAsync'); - } - - requestUninstallStorePackageByStoreIdAsync(storeId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.requestUninstallStorePackageByStoreIdAsync'); - } - - uninstallStorePackageAsync(package: ApplicationModel.Package): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.uninstallStorePackageAsync'); - } - - uninstallStorePackageByStoreIdAsync(storeId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.uninstallStorePackageByStoreIdAsync'); - } - - requestRateAndReviewAppAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.requestRateAndReviewAppAsync'); - } - - setInstallOrderForAssociatedStoreQueueItemsAsync(items: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreContext.setInstallOrderForAssociatedStoreQueueItemsAsync'); - } - - static getDefault(): StoreContext { - throw new Error('shimmed function StoreContext.getDefault'); - } - - static getForUser(user: System.User): StoreContext { - throw new Error('shimmed function StoreContext.getForUser'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StoreContext::addEventListener: ${name}`); - switch (name) { - case "offlinelicenseschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export interface StoreContract { - } - export enum StoreDurationUnit { - minute, - hour, - day, - week, - month, - year, - } - export class StoreImage implements IStoreImage { - caption: string; - height: number; - imagePurposeTag: string; - uri: Foundation.Uri; - width: number; - - } - export class StoreLicense implements IStoreLicense { - expirationDate: Date; - extendedJsonData: string; - inAppOfferToken: string; - isActive: Boolean; - skuStoreId: string; - - } - export class StorePackageInstallOptions implements IStorePackageInstallOptions { - // constructor(); - allowForcedAppRestart: Boolean = true; - - } - export class StorePackageLicense implements IStorePackageLicense, Foundation.IClosable { - isValid: Boolean; - package: ApplicationModel.Package; - - releaseLicense(): void { - console.warn('shimmed function StorePackageLicense.releaseLicense'); - } - - close(): void { - console.warn('shimmed function StorePackageLicense.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StorePackageLicense::addEventListener: ${name}`); - switch (name) { - case "licenselost": // Foundation.TypedEventHandler - break; - } - - } - } - export class StorePackageUpdate implements IStorePackageUpdate { - mandatory: Boolean; - package: ApplicationModel.Package; - - } - export class StorePackageUpdateResult implements IStorePackageUpdateResult, IStorePackageUpdateResult2 { - overallState: StorePackageUpdateState; - storePackageUpdateStatuses: StorePackageUpdateStatus[]; - storeQueueItems: StoreQueueItem[]; - - } - export enum StorePackageUpdateState { - pending, - downloading, - deploying, - completed, - canceled, - otherError, - errorLowBattery, - errorWiFiRecommended, - errorWiFiRequired, - } - export interface StorePackageUpdateStatus { - packageFamilyName: string; - packageDownloadSizeInBytes: number; - packageBytesDownloaded: number; - packageDownloadProgress: number; - totalDownloadProgress: number; - packageUpdateState: StorePackageUpdateState; - } - export class StorePrice implements IStorePrice { - currencyCode: string; - formattedBasePrice: string; - formattedPrice: string; - formattedRecurrencePrice: string; - isOnSale: Boolean; - saleEndDate: Date; - - } - export class StoreProduct implements IStoreProduct { - description: string; - extendedJsonData: string; - hasDigitalDownload: Boolean; - images: StoreImage[]; - inAppOfferToken: string; - isInUserCollection: Boolean; - keywords: string[]; - language: string; - linkUri: Foundation.Uri; - price: StorePrice; - productKind: string; - skus: StoreSku[]; - storeId: string; - title: string; - videos: StoreVideo[]; - - getIsAnySkuInstalledAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreProduct.getIsAnySkuInstalledAsync'); - } - - requestPurchaseAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreProduct.requestPurchaseAsync'); - } - - requestPurchaseAsync_1(storePurchaseProperties: StorePurchaseProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreProduct.requestPurchaseAsync_1'); - } - - } - export class StoreProductOptions implements IStoreProductOptions { - // constructor(); - actionFilters: string[] = [ ]; - - } - export class StoreProductPagedQueryResult implements IStoreProductPagedQueryResult { - extendedError: number; - hasMoreResults: Boolean; - products: string[]; - - getNextAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreProductPagedQueryResult.getNextAsync'); - } - - } - export class StoreProductQueryResult implements IStoreProductQueryResult { - extendedError: number; - products: string[]; - - } - export class StoreProductResult implements IStoreProductResult { - extendedError: number; - product: StoreProduct; - - } - export class StorePurchaseProperties implements IStorePurchaseProperties { - // constructor(name: string); - // constructor(); - constructor(name: string) {} - - name: string = ''; - extendedJsonData: string = ''; - - } - export class StorePurchaseResult implements IStorePurchaseResult { - extendedError: number; - status: StorePurchaseStatus; - - } - export enum StorePurchaseStatus { - succeeded, - alreadyPurchased, - notPurchased, - networkError, - serverError, - } - export class StoreQueueItem implements IStoreQueueItem, IStoreQueueItem2 { - installKind: StoreQueueItemKind; - packageFamilyName: string; - productId: string; - - getCurrentStatus(): StoreQueueItemStatus { - throw new Error('shimmed function StoreQueueItem.getCurrentStatus'); - } - - cancelInstallAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StoreQueueItem.cancelInstallAsync'); - } - - pauseInstallAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StoreQueueItem.pauseInstallAsync'); - } - - resumeInstallAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StoreQueueItem.resumeInstallAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StoreQueueItem::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - case "statuschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class StoreQueueItemCompletedEventArgs implements IStoreQueueItemCompletedEventArgs { - status: StoreQueueItemStatus; - - } - export enum StoreQueueItemExtendedState { - activePending, - activeStarting, - activeAcquiringLicense, - activeDownloading, - activeRestoringData, - activeInstalling, - completed, - canceled, - paused, - error, - pausedPackagesInUse, - pausedLowBattery, - pausedWiFiRecommended, - pausedWiFiRequired, - pausedReadyToInstall, - } - export enum StoreQueueItemKind { - install, - update, - repair, - } - export enum StoreQueueItemState { - active, - completed, - canceled, - error, - paused, - } - export class StoreQueueItemStatus implements IStoreQueueItemStatus { - extendedError: number; - packageInstallExtendedState: StoreQueueItemExtendedState; - packageInstallState: StoreQueueItemState; - updateStatus: StorePackageUpdateStatus; - - } - export class StoreRateAndReviewResult implements IStoreRateAndReviewResult { - extendedError: number; - extendedJsonData: string; - status: StoreRateAndReviewStatus; - wasUpdated: Boolean; - - } - export enum StoreRateAndReviewStatus { - succeeded, - canceledByUser, - networkError, - error, - } - export class StoreRequestHelper { - static sendRequestAsync(context: StoreContext, requestKind: number, parametersAsJson: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreRequestHelper.sendRequestAsync'); - } - - } - export class StoreSendRequestResult implements IStoreSendRequestResult, IStoreSendRequestResult2 { - extendedError: number; - response: string; - httpStatusCode: Web.Http.HttpStatusCode; - - } - export class StoreSku implements IStoreSku { - availabilities: StoreAvailability[]; - bundledSkus: string[]; - collectionData: StoreCollectionData; - customDeveloperData: string; - description: string; - extendedJsonData: string; - images: StoreImage[]; - isInUserCollection: Boolean; - isSubscription: Boolean; - isTrial: Boolean; - language: string; - price: StorePrice; - storeId: string; - subscriptionInfo: StoreSubscriptionInfo; - title: string; - videos: StoreVideo[]; - - getIsInstalledAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreSku.getIsInstalledAsync'); - } - - requestPurchaseAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreSku.requestPurchaseAsync'); - } - - requestPurchaseAsync_1(storePurchaseProperties: StorePurchaseProperties): Foundation.IAsyncOperation { - throw new Error('shimmed function StoreSku.requestPurchaseAsync_1'); - } - - } - export class StoreSubscriptionInfo implements IStoreSubscriptionInfo { - billingPeriod: number; - billingPeriodUnit: StoreDurationUnit; - hasTrialPeriod: Boolean; - trialPeriod: number; - trialPeriodUnit: StoreDurationUnit; - - } - export class StoreUninstallStorePackageResult implements IStoreUninstallStorePackageResult { - extendedError: number; - status: StoreUninstallStorePackageStatus; - - } - export enum StoreUninstallStorePackageStatus { - succeeded, - canceledByUser, - networkError, - uninstallNotApplicable, - error, - } - export class StoreVideo implements IStoreVideo { - caption: string; - height: number; - previewImage: StoreImage; - uri: Foundation.Uri; - videoPurposeTag: string; - width: number; - - } - } - export namespace TargetedContent { - export class TargetedContentAction implements ITargetedContentAction { - invokeAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function TargetedContentAction.invokeAsync'); - } - - } - export enum TargetedContentAppInstallationState { - notApplicable, - notInstalled, - installed, - } - export enum TargetedContentAvailability { - none, - partial, - all, - } - export class TargetedContentAvailabilityChangedEventArgs implements ITargetedContentAvailabilityChangedEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function TargetedContentAvailabilityChangedEventArgs.getDeferral'); - } - - } - export class TargetedContentChangedEventArgs implements ITargetedContentChangedEventArgs { - hasPreviousContentExpired: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function TargetedContentChangedEventArgs.getDeferral'); - } - - } - export class TargetedContentCollection implements ITargetedContentCollection { - collections: TargetedContentCollection[]; - id: string; - items: TargetedContentItem[]; - path: string; - properties: string[]; - - reportInteraction(interaction: TargetedContentInteraction): void { - console.warn('shimmed function TargetedContentCollection.reportInteraction'); - } - - reportCustomInteraction(customInteractionName: string): void { - console.warn('shimmed function TargetedContentCollection.reportCustomInteraction'); - } - - } - export class TargetedContentContainer implements ITargetedContentContainer { - availability: TargetedContentAvailability; - content: TargetedContentCollection; - id: string; - timestamp: Date; - - selectSingleObject(path: string): TargetedContentObject { - throw new Error('shimmed function TargetedContentContainer.selectSingleObject'); - } - - static getAsync(contentId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TargetedContentContainer.getAsync'); - } - - } - export interface TargetedContentContract { - } - export class TargetedContentFile implements Storage.Streams.IRandomAccessStreamReference { - openReadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TargetedContentFile.openReadAsync'); - } - - } - export class TargetedContentImage implements ITargetedContentImage, Storage.Streams.IRandomAccessStreamReference { - height: number; - width: number; - - openReadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TargetedContentImage.openReadAsync'); - } - - } - export enum TargetedContentInteraction { - impression, - clickThrough, - hover, - like, - dislike, - dismiss, - ineligible, - accept, - decline, - defer, - canceled, - conversion, - opportunity, - } - export class TargetedContentItem implements ITargetedContentItem { - collections: TargetedContentCollection[]; - path: string; - properties: string[]; - state: TargetedContentItemState; - - reportInteraction(interaction: TargetedContentInteraction): void { - console.warn('shimmed function TargetedContentItem.reportInteraction'); - } - - reportCustomInteraction(customInteractionName: string): void { - console.warn('shimmed function TargetedContentItem.reportCustomInteraction'); - } - - } - export class TargetedContentItemState implements ITargetedContentItemState { - appInstallationState: TargetedContentAppInstallationState; - shouldDisplay: Boolean; - - } - export class TargetedContentObject implements ITargetedContentObject { - collection: TargetedContentCollection; - item: TargetedContentItem; - objectKind: TargetedContentObjectKind; - value: TargetedContentValue; - - } - export enum TargetedContentObjectKind { - collection, - item, - value, - } - export class TargetedContentStateChangedEventArgs implements ITargetedContentStateChangedEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function TargetedContentStateChangedEventArgs.getDeferral'); - } - - } - export class TargetedContentSubscription implements ITargetedContentSubscription { - id: string; - - getContentContainerAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TargetedContentSubscription.getContentContainerAsync'); - } - - static getAsync(subscriptionId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TargetedContentSubscription.getAsync'); - } - - static getOptions(subscriptionId: string): TargetedContentSubscriptionOptions { - throw new Error('shimmed function TargetedContentSubscription.getOptions'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TargetedContentSubscription::addEventListener: ${name}`); - switch (name) { - case "availabilitychanged": // Foundation.TypedEventHandler - case "contentchanged": // Foundation.TypedEventHandler - case "statechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class TargetedContentSubscriptionOptions implements ITargetedContentSubscriptionOptions { - allowPartialContentAvailability: Boolean; - cloudQueryParameters: string[]; - localFilters: string[]; - subscriptionId: string; - - update(): void { - console.warn('shimmed function TargetedContentSubscriptionOptions.update'); - } - - } - export class TargetedContentValue implements ITargetedContentValue { - action: TargetedContentAction; - actions: TargetedContentAction[]; - boolean: Boolean; - booleans: Boolean[]; - file: TargetedContentFile; - files: TargetedContentFile[]; - imageFile: TargetedContentImage; - imageFiles: TargetedContentImage[]; - number: number; - numbers: number[]; - path: string; - string: string; - strings: string[]; - uri: Foundation.Uri; - uris: Foundation.Uri[]; - valueKind: TargetedContentValueKind; - - } - export enum TargetedContentValueKind { - string, - uri, - number, - boolean, - file, - imageFile, - action, - strings, - uris, - numbers, - booleans, - files, - imageFiles, - actions, - } - } - } - export namespace Storage { - export namespace AccessCache { - export enum AccessCacheOptions { - none, - disallowUserInput, - fastLocationsOnly, - useReadOnlyCachedCopy = 4, - suppressAccessTimeUpdate = 8, - } - export interface AccessListEntry { - token: string; - metadata: string; - } - export class AccessListEntryView implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): AccessListEntry { - throw new Error('shimmed function AccessListEntryView.getAt'); - } - - indexOf(value: AccessListEntry): { returnValue: Boolean, index: number } { - throw new Error('shimmed function AccessListEntryView.indexOf'); - } - - getMany(startIndex: number, items: AccessListEntry[]): number { - throw new Error('shimmed function AccessListEntryView.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function AccessListEntryView.first'); - } - - } - export interface IStorageItemAccessList { - entries: AccessListEntryView; - maximumItemsAllowed: number; - add(file: IStorageItem): string; - add_1(file: IStorageItem, metadata: string): string; - addOrReplace(token: string, file: IStorageItem): void; - addOrReplace_1(token: string, file: IStorageItem, metadata: string): void; - getItemAsync(token: string): Foundation.IAsyncOperation; - getFileAsync(token: string): Foundation.IAsyncOperation; - getFolderAsync(token: string): Foundation.IAsyncOperation; - getItemAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation; - getFileAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation; - getFolderAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation; - containsItem(token: string): Boolean; - clear(): void; - checkAccess(file: IStorageItem): Boolean; - } - export class ItemRemovedEventArgs implements IItemRemovedEventArgs { - removedEntry: AccessListEntry; - - } - export enum RecentStorageItemVisibility { - appOnly, - appAndSystem, - } - export class StorageApplicationPermissions { - static futureAccessList: StorageItemAccessList = null; - static mostRecentlyUsedList: StorageItemMostRecentlyUsedList = null; - - static getFutureAccessListForUser(user: System.User): StorageItemAccessList { - throw new Error('shimmed function StorageApplicationPermissions.getFutureAccessListForUser'); - } - - static getMostRecentlyUsedListForUser(user: System.User): StorageItemMostRecentlyUsedList { - throw new Error('shimmed function StorageApplicationPermissions.getMostRecentlyUsedListForUser'); - } - - } - export class StorageItemAccessList implements IStorageItemAccessList { - entries: AccessListEntryView; - maximumItemsAllowed: number; - - add(file: IStorageItem): string { - throw new Error('shimmed function StorageItemAccessList.add'); - } - - add_1(file: IStorageItem, metadata: string): string { - throw new Error('shimmed function StorageItemAccessList.add_1'); - } - - addOrReplace(token: string, file: IStorageItem): void { - console.warn('shimmed function StorageItemAccessList.addOrReplace'); - } - - addOrReplace_1(token: string, file: IStorageItem, metadata: string): void { - console.warn('shimmed function StorageItemAccessList.addOrReplace_1'); - } - - getItemAsync(token: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemAccessList.getItemAsync'); - } - - getFileAsync(token: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemAccessList.getFileAsync'); - } - - getFolderAsync(token: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemAccessList.getFolderAsync'); - } - - getItemAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemAccessList.getItemAsync_1'); - } - - getFileAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemAccessList.getFileAsync_1'); - } - - getFolderAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemAccessList.getFolderAsync_1'); - } - - containsItem(token: string): Boolean { - throw new Error('shimmed function StorageItemAccessList.containsItem'); - } - - clear(): void { - console.warn('shimmed function StorageItemAccessList.clear'); - } - - checkAccess(file: IStorageItem): Boolean { - throw new Error('shimmed function StorageItemAccessList.checkAccess'); - } - - } - export class StorageItemMostRecentlyUsedList implements IStorageItemMostRecentlyUsedList, IStorageItemAccessList, IStorageItemMostRecentlyUsedList2 { - entries: AccessListEntryView; - maximumItemsAllowed: number; - - add(file: IStorageItem): string { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.add'); - } - - add_1(file: IStorageItem, metadata: string): string { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.add_1'); - } - - addOrReplace(token: string, file: IStorageItem): void { - console.warn('shimmed function StorageItemMostRecentlyUsedList.addOrReplace'); - } - - addOrReplace_1(token: string, file: IStorageItem, metadata: string): void { - console.warn('shimmed function StorageItemMostRecentlyUsedList.addOrReplace_1'); - } - - getItemAsync(token: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.getItemAsync'); - } - - getFileAsync(token: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.getFileAsync'); - } - - getFolderAsync(token: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.getFolderAsync'); - } - - getItemAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.getItemAsync_1'); - } - - getFileAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.getFileAsync_1'); - } - - getFolderAsync_1(token: string, options: AccessCacheOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.getFolderAsync_1'); - } - - containsItem(token: string): Boolean { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.containsItem'); - } - - clear(): void { - console.warn('shimmed function StorageItemMostRecentlyUsedList.clear'); - } - - checkAccess(file: IStorageItem): Boolean { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.checkAccess'); - } - - add_2(file: IStorageItem, metadata: string, visibility: RecentStorageItemVisibility): string { - throw new Error('shimmed function StorageItemMostRecentlyUsedList.add_2'); - } - - addOrReplace_2(token: string, file: IStorageItem, metadata: string, visibility: RecentStorageItemVisibility): void { - console.warn('shimmed function StorageItemMostRecentlyUsedList.addOrReplace_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StorageItemMostRecentlyUsedList::addEventListener: ${name}`); - switch (name) { - case "itemremoved": // Foundation.TypedEventHandler - break; - } - - } - } - } - export class AppDataPaths implements IAppDataPaths { - cookies: string; - desktop: string; - documents: string; - favorites: string; - history: string; - internetCache: string; - localAppData: string; - programData: string; - roamingAppData: string; - - static getForUser(user: System.User): AppDataPaths { - throw new Error('shimmed function AppDataPaths.getForUser'); - } - - static getDefault(): AppDataPaths { - throw new Error('shimmed function AppDataPaths.getDefault'); - } - - } - export class ApplicationData implements IApplicationData, IApplicationData2, IApplicationData3 { - localFolder: StorageFolder; - localSettings: ApplicationDataContainer; - roamingFolder: StorageFolder; - roamingSettings: ApplicationDataContainer; - roamingStorageQuota: number; - temporaryFolder: StorageFolder; - version: number; - localCacheFolder: StorageFolder; - sharedLocalFolder: StorageFolder; - static current: ApplicationData = null; - - setVersionAsync(desiredVersion: number, handler: ApplicationDataSetVersionHandler): Foundation.IAsyncAction { - throw new Error('shimmed function ApplicationData.setVersionAsync'); - } - - clearAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ApplicationData.clearAsync'); - } - - clearAsync_1(locality: ApplicationDataLocality): Foundation.IAsyncAction { - throw new Error('shimmed function ApplicationData.clearAsync_1'); - } - - signalDataChanged(): void { - console.warn('shimmed function ApplicationData.signalDataChanged'); - } - - getPublisherCacheFolder(folderName: string): StorageFolder { - throw new Error('shimmed function ApplicationData.getPublisherCacheFolder'); - } - - clearPublisherCacheFolderAsync(folderName: string): Foundation.IAsyncAction { - throw new Error('shimmed function ApplicationData.clearPublisherCacheFolderAsync'); - } - - static getForUserAsync(user: System.User): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationData.getForUserAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ApplicationData::addEventListener: ${name}`); - switch (name) { - case "datachanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ApplicationDataCompositeValue implements Foundation.Collections.IPropertySet, Foundation.Collections.IObservableMap, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - // constructor(); - size: number; - - lookup(key: string): any { - throw new Error('shimmed function ApplicationDataCompositeValue.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ApplicationDataCompositeValue.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function ApplicationDataCompositeValue.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function ApplicationDataCompositeValue.insert'); - } - - clear(): void { - console.warn('shimmed function ApplicationDataCompositeValue.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ApplicationDataCompositeValue.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ApplicationDataCompositeValue::addEventListener: ${name}`); - switch (name) { - case "mapchanged": // Foundation.Collections.MapChangedEventHandler - break; - } - - } - } - export class ApplicationDataContainer implements IApplicationDataContainer { - containers: string[]; - locality: ApplicationDataLocality; - name: string; - values: Foundation.Collections.IPropertySet; - - createContainer(name: string, disposition: ApplicationDataCreateDisposition): ApplicationDataContainer { - throw new Error('shimmed function ApplicationDataContainer.createContainer'); - } - - deleteContainer(name: string): void { - console.warn('shimmed function ApplicationDataContainer.deleteContainer'); - } - - } - export class ApplicationDataContainerSettings implements Foundation.Collections.IPropertySet, Foundation.Collections.IObservableMap, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - size: number; - - lookup(key: string): any { - throw new Error('shimmed function ApplicationDataContainerSettings.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ApplicationDataContainerSettings.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function ApplicationDataContainerSettings.getView'); - } - - insert(key: string, value: any): Boolean { - throw new Error('shimmed function ApplicationDataContainerSettings.insert'); - } - - clear(): void { - console.warn('shimmed function ApplicationDataContainerSettings.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ApplicationDataContainerSettings.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ApplicationDataContainerSettings::addEventListener: ${name}`); - switch (name) { - case "mapchanged": // Foundation.Collections.MapChangedEventHandler - break; - } - - } - } - export enum ApplicationDataCreateDisposition { - always, - existing, - } - export enum ApplicationDataLocality { - local, - roaming, - temporary, - localCache, - } - export type ApplicationDataSetVersionHandler = () => void; - export namespace BulkAccess { - export class FileInformation implements IStorageItemInformation, IStorageFile, IStorageItem, Streams.IRandomAccessStreamReference, Streams.IInputStreamReference, IStorageItemProperties, IStorageItem2, IStorageItemPropertiesWithProvider, IStorageFilePropertiesWithAvailability, IStorageFile2 { - basicProperties: FileProperties.BasicProperties; - documentProperties: FileProperties.DocumentProperties; - imageProperties: FileProperties.ImageProperties; - musicProperties: FileProperties.MusicProperties; - thumbnail: FileProperties.StorageItemThumbnail; - videoProperties: FileProperties.VideoProperties; - contentType: string; - fileType: string; - isAvailable: Boolean; - attributes: FileAttributes; - dateCreated: Date; - name: string; - path: string; - displayName: string; - displayType: string; - folderRelativeId: string; - properties: FileProperties.StorageItemContentProperties; - provider: StorageProvider; - - openAsync(accessMode: FileAccessMode): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.openAsync'); - } - - openTransactedWriteAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.openTransactedWriteAsync'); - } - - copyAsync(destinationFolder: IStorageFolder): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.copyAsync'); - } - - copyAsync_1(destinationFolder: IStorageFolder, desiredNewName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.copyAsync_1'); - } - - copyAsync_2(destinationFolder: IStorageFolder, desiredNewName: string, option: NameCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.copyAsync_2'); - } - - copyAndReplaceAsync(fileToReplace: IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.copyAndReplaceAsync'); - } - - moveAsync(destinationFolder: IStorageFolder): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.moveAsync'); - } - - moveAsync_1(destinationFolder: IStorageFolder, desiredNewName: string): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.moveAsync_1'); - } - - moveAsync_2(destinationFolder: IStorageFolder, desiredNewName: string, option: NameCollisionOption): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.moveAsync_2'); - } - - moveAndReplaceAsync(fileToReplace: IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.moveAndReplaceAsync'); - } - - renameAsync(desiredName: string): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.renameAsync'); - } - - renameAsync_1(desiredName: string, option: NameCollisionOption): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.renameAsync_1'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.deleteAsync'); - } - - deleteAsync_1(option: StorageDeleteOption): Foundation.IAsyncAction { - throw new Error('shimmed function FileInformation.deleteAsync_1'); - } - - getBasicPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.getBasicPropertiesAsync'); - } - - isOfType(type: StorageItemTypes): Boolean { - throw new Error('shimmed function FileInformation.isOfType'); - } - - openReadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.openReadAsync'); - } - - openSequentialReadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.openSequentialReadAsync'); - } - - getThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.getThumbnailAsync'); - } - - getThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.getThumbnailAsync_1'); - } - - getThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.getThumbnailAsync_2'); - } - - getParentAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.getParentAsync'); - } - - isEqual(item: IStorageItem): Boolean { - throw new Error('shimmed function FileInformation.isEqual'); - } - - openAsync_1(accessMode: FileAccessMode, options: StorageOpenOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.openAsync_1'); - } - - openTransactedWriteAsync_1(options: StorageOpenOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformation.openTransactedWriteAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FileInformation::addEventListener: ${name}`); - switch (name) { - case "propertiesupdated": // Foundation.TypedEventHandler - case "thumbnailupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export class FileInformationFactory implements IFileInformationFactory { - // constructor(queryResult: Search.IStorageQueryResultBase, mode: FileProperties.ThumbnailMode); - // constructor(queryResult: Search.IStorageQueryResultBase, mode: FileProperties.ThumbnailMode, requestedThumbnailSize: number); - // constructor(queryResult: Search.IStorageQueryResultBase, mode: FileProperties.ThumbnailMode, requestedThumbnailSize: number, thumbnailOptions: FileProperties.ThumbnailOptions); - // constructor(queryResult: Search.IStorageQueryResultBase, mode: FileProperties.ThumbnailMode, requestedThumbnailSize: number, thumbnailOptions: FileProperties.ThumbnailOptions, delayLoad: Boolean); - constructor(queryResult: Search.IStorageQueryResultBase, mode: FileProperties.ThumbnailMode, requestedThumbnailSize: number, thumbnailOptions: FileProperties.ThumbnailOptions, delayLoad: Boolean) {} - - getItemsAsync(startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformationFactory.getItemsAsync'); - } - - getItemsAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformationFactory.getItemsAsync_1'); - } - - getFilesAsync(startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformationFactory.getFilesAsync'); - } - - getFilesAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformationFactory.getFilesAsync_1'); - } - - getFoldersAsync(startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformationFactory.getFoldersAsync'); - } - - getFoldersAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileInformationFactory.getFoldersAsync_1'); - } - - getVirtualizedItemsVector(): any { - throw new Error('shimmed function FileInformationFactory.getVirtualizedItemsVector'); - } - - getVirtualizedFilesVector(): any { - throw new Error('shimmed function FileInformationFactory.getVirtualizedFilesVector'); - } - - getVirtualizedFoldersVector(): any { - throw new Error('shimmed function FileInformationFactory.getVirtualizedFoldersVector'); - } - - } - export class FolderInformation implements IStorageItemInformation, IStorageFolder, IStorageItem, IStorageItemProperties, Search.IStorageFolderQueryOperations, IStorageItem2, IStorageFolder2, IStorageItemPropertiesWithProvider { - basicProperties: FileProperties.BasicProperties; - documentProperties: FileProperties.DocumentProperties; - imageProperties: FileProperties.ImageProperties; - musicProperties: FileProperties.MusicProperties; - thumbnail: FileProperties.StorageItemThumbnail; - videoProperties: FileProperties.VideoProperties; - attributes: FileAttributes; - dateCreated: Date; - name: string; - path: string; - displayName: string; - displayType: string; - folderRelativeId: string; - properties: FileProperties.StorageItemContentProperties; - provider: StorageProvider; - - createFileAsync(desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.createFileAsync'); - } - - createFileAsync_1(desiredName: string, options: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.createFileAsync_1'); - } - - createFolderAsync(desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.createFolderAsync'); - } - - createFolderAsync_1(desiredName: string, options: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.createFolderAsync_1'); - } - - getFileAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFileAsync'); - } - - getFolderAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFolderAsync'); - } - - getItemAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getItemAsync'); - } - - getFilesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFilesAsync'); - } - - getFoldersAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFoldersAsync'); - } - - getItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getItemsAsync'); - } - - renameAsync(desiredName: string): Foundation.IAsyncAction { - throw new Error('shimmed function FolderInformation.renameAsync'); - } - - renameAsync_1(desiredName: string, option: NameCollisionOption): Foundation.IAsyncAction { - throw new Error('shimmed function FolderInformation.renameAsync_1'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function FolderInformation.deleteAsync'); - } - - deleteAsync_1(option: StorageDeleteOption): Foundation.IAsyncAction { - throw new Error('shimmed function FolderInformation.deleteAsync_1'); - } - - getBasicPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getBasicPropertiesAsync'); - } - - isOfType(type: StorageItemTypes): Boolean { - throw new Error('shimmed function FolderInformation.isOfType'); - } - - getThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getThumbnailAsync'); - } - - getThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getThumbnailAsync_1'); - } - - getThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getThumbnailAsync_2'); - } - - getIndexedStateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getIndexedStateAsync'); - } - - createFileQuery(): Search.StorageFileQueryResult { - throw new Error('shimmed function FolderInformation.createFileQuery'); - } - - createFileQuery_1(query: Search.CommonFileQuery): Search.StorageFileQueryResult { - throw new Error('shimmed function FolderInformation.createFileQuery_1'); - } - - createFileQueryWithOptions(queryOptions: Search.QueryOptions): Search.StorageFileQueryResult { - throw new Error('shimmed function FolderInformation.createFileQueryWithOptions'); - } - - createFolderQuery(): Search.StorageFolderQueryResult { - throw new Error('shimmed function FolderInformation.createFolderQuery'); - } - - createFolderQuery_1(query: Search.CommonFolderQuery): Search.StorageFolderQueryResult { - throw new Error('shimmed function FolderInformation.createFolderQuery_1'); - } - - createFolderQueryWithOptions(queryOptions: Search.QueryOptions): Search.StorageFolderQueryResult { - throw new Error('shimmed function FolderInformation.createFolderQueryWithOptions'); - } - - createItemQuery(): Search.StorageItemQueryResult { - throw new Error('shimmed function FolderInformation.createItemQuery'); - } - - createItemQueryWithOptions(queryOptions: Search.QueryOptions): Search.StorageItemQueryResult { - throw new Error('shimmed function FolderInformation.createItemQueryWithOptions'); - } - - getFilesAsync_1(query: Search.CommonFileQuery, startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFilesAsync_1'); - } - - getFilesAsync_2(query: Search.CommonFileQuery): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFilesAsync_2'); - } - - getFoldersAsync_1(query: Search.CommonFolderQuery, startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFoldersAsync_1'); - } - - getFoldersAsync_2(query: Search.CommonFolderQuery): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getFoldersAsync_2'); - } - - getItemsAsync_1(startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getItemsAsync_1'); - } - - areQueryOptionsSupported(queryOptions: Search.QueryOptions): Boolean { - throw new Error('shimmed function FolderInformation.areQueryOptionsSupported'); - } - - isCommonFolderQuerySupported(query: Search.CommonFolderQuery): Boolean { - throw new Error('shimmed function FolderInformation.isCommonFolderQuerySupported'); - } - - isCommonFileQuerySupported(query: Search.CommonFileQuery): Boolean { - throw new Error('shimmed function FolderInformation.isCommonFileQuerySupported'); - } - - getParentAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.getParentAsync'); - } - - isEqual(item: IStorageItem): Boolean { - throw new Error('shimmed function FolderInformation.isEqual'); - } - - tryGetItemAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderInformation.tryGetItemAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FolderInformation::addEventListener: ${name}`); - switch (name) { - case "propertiesupdated": // Foundation.TypedEventHandler - case "thumbnailupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export interface IStorageItemInformation { - basicProperties: FileProperties.BasicProperties; - documentProperties: FileProperties.DocumentProperties; - imageProperties: FileProperties.ImageProperties; - musicProperties: FileProperties.MusicProperties; - thumbnail: FileProperties.StorageItemThumbnail; - videoProperties: FileProperties.VideoProperties; - } - } - export class CachedFileManager { - static deferUpdates(file: IStorageFile): void { - console.warn('shimmed function CachedFileManager.deferUpdates'); - } - - static completeUpdatesAsync(file: IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function CachedFileManager.completeUpdatesAsync'); - } - - } - export namespace Compression { - export enum CompressAlgorithm { - invalidAlgorithm, - nullAlgorithm, - mszip, - xpress, - xpressHuff, - lzms, - } - export class Compressor implements ICompressor, Streams.IOutputStream, Foundation.IClosable { - // constructor(underlyingStream: Streams.IOutputStream); - // constructor(underlyingStream: Streams.IOutputStream, algorithm: CompressAlgorithm, blockSize: number); - constructor(underlyingStream: Streams.IOutputStream, algorithm: CompressAlgorithm, blockSize: number) {} - - finishAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Compressor.finishAsync'); - } - - detachStream(): Streams.IOutputStream { - throw new Error('shimmed function Compressor.detachStream'); - } - - writeAsync(buffer: Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function Compressor.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function Compressor.flushAsync'); - } - - close(): void { - console.warn('shimmed function Compressor.close'); - } - - } - export class Decompressor implements IDecompressor, Streams.IInputStream, Foundation.IClosable { - // constructor(underlyingStream: Streams.IInputStream); - constructor(underlyingStream: Streams.IInputStream) {} - - detachStream(): Streams.IInputStream { - throw new Error('shimmed function Decompressor.detachStream'); - } - - readAsync(buffer: Streams.IBuffer, count: number, options: Streams.InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function Decompressor.readAsync'); - } - - close(): void { - console.warn('shimmed function Decompressor.close'); - } - - } - } - export enum CreationCollisionOption { - generateUniqueName, - replaceExisting, - failIfExists, - openIfExists, - } - export class DownloadsFolder { - static createFileForUserAsync(user: System.User, desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFileForUserAsync'); - } - - static createFolderForUserAsync(user: System.User, desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFolderForUserAsync'); - } - - static createFileForUserAsync_1(user: System.User, desiredName: string, option: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFileForUserAsync_1'); - } - - static createFolderForUserAsync_1(user: System.User, desiredName: string, option: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFolderForUserAsync_1'); - } - - static createFileAsync(desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFileAsync'); - } - - static createFolderAsync(desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFolderAsync'); - } - - static createFileAsync_1(desiredName: string, option: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFileAsync_1'); - } - - static createFolderAsync_1(desiredName: string, option: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function DownloadsFolder.createFolderAsync_1'); - } - - } - export enum FileAccessMode { - read, - readWrite, - } - export enum FileAttributes { - normal, - readOnly, - directory = 16, - archive = 32, - temporary = 256, - locallyIncomplete = 512, - } - export class FileIO { - static readTextAsync(file: IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function FileIO.readTextAsync'); - } - - static readTextAsync_1(file: IStorageFile, encoding: Streams.UnicodeEncoding): Foundation.IAsyncOperation { - throw new Error('shimmed function FileIO.readTextAsync_1'); - } - - static writeTextAsync(file: IStorageFile, contents: string): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.writeTextAsync'); - } - - static writeTextAsync_1(file: IStorageFile, contents: string, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.writeTextAsync_1'); - } - - static appendTextAsync(file: IStorageFile, contents: string): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.appendTextAsync'); - } - - static appendTextAsync_1(file: IStorageFile, contents: string, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.appendTextAsync_1'); - } - - static readLinesAsync(file: IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function FileIO.readLinesAsync'); - } - - static readLinesAsync_1(file: IStorageFile, encoding: Streams.UnicodeEncoding): Foundation.IAsyncOperation { - throw new Error('shimmed function FileIO.readLinesAsync_1'); - } - - static writeLinesAsync(file: IStorageFile, lines: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.writeLinesAsync'); - } - - static writeLinesAsync_1(file: IStorageFile, lines: Foundation.Collections.IIterable, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.writeLinesAsync_1'); - } - - static appendLinesAsync(file: IStorageFile, lines: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.appendLinesAsync'); - } - - static appendLinesAsync_1(file: IStorageFile, lines: Foundation.Collections.IIterable, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.appendLinesAsync_1'); - } - - static readBufferAsync(file: IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function FileIO.readBufferAsync'); - } - - static writeBufferAsync(file: IStorageFile, buffer: Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.writeBufferAsync'); - } - - static writeBytesAsync(file: IStorageFile, buffer: number[]): Foundation.IAsyncAction { - throw new Error('shimmed function FileIO.writeBytesAsync'); - } - - } - export namespace FileProperties { - export class BasicProperties implements IBasicProperties, IStorageItemExtraProperties { - dateModified: Date; - itemDate: Date; - size: number; - - retrievePropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function BasicProperties.retrievePropertiesAsync'); - } - - savePropertiesAsync(propertiesToSave: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function BasicProperties.savePropertiesAsync'); - } - - savePropertiesAsync_1(): Foundation.IAsyncAction { - throw new Error('shimmed function BasicProperties.savePropertiesAsync_1'); - } - - } - export class DocumentProperties implements IDocumentProperties, IStorageItemExtraProperties { - title: string; - comment: string; - author: string[]; - keywords: string[]; - - retrievePropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function DocumentProperties.retrievePropertiesAsync'); - } - - savePropertiesAsync(propertiesToSave: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function DocumentProperties.savePropertiesAsync'); - } - - savePropertiesAsync_1(): Foundation.IAsyncAction { - throw new Error('shimmed function DocumentProperties.savePropertiesAsync_1'); - } - - } - export class GeotagHelper { - static getGeotagAsync(file: IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function GeotagHelper.getGeotagAsync'); - } - - static setGeotagFromGeolocatorAsync(file: IStorageFile, geolocator: Devices.Geolocation.Geolocator): Foundation.IAsyncAction { - throw new Error('shimmed function GeotagHelper.setGeotagFromGeolocatorAsync'); - } - - static setGeotagAsync(file: IStorageFile, geopoint: Devices.Geolocation.Geopoint): Foundation.IAsyncAction { - throw new Error('shimmed function GeotagHelper.setGeotagAsync'); - } - - } - export class ImageProperties implements IImageProperties, IStorageItemExtraProperties { - title: string; - rating: number; - dateTaken: Date; - cameraModel: string; - cameraManufacturer: string; - height: number; - keywords: string[]; - latitude: number | null; - longitude: number | null; - orientation: PhotoOrientation; - peopleNames: string[]; - width: number; - - retrievePropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ImageProperties.retrievePropertiesAsync'); - } - - savePropertiesAsync(propertiesToSave: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function ImageProperties.savePropertiesAsync'); - } - - savePropertiesAsync_1(): Foundation.IAsyncAction { - throw new Error('shimmed function ImageProperties.savePropertiesAsync_1'); - } - - } - export interface IStorageItemExtraProperties { - retrievePropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation; - savePropertiesAsync(propertiesToSave: Foundation.Collections.IIterable>): Foundation.IAsyncAction; - savePropertiesAsync_1(): Foundation.IAsyncAction; - } - export class MusicProperties implements IMusicProperties, IStorageItemExtraProperties { - year: number; - trackNumber: number; - title: string; - subtitle: string; - rating: number; - publisher: string; - artist: string; - albumArtist: string; - album: string; - bitrate: number; - composers: string[]; - conductors: string[]; - duration: number; - genre: string[]; - producers: string[]; - writers: string[]; - - retrievePropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function MusicProperties.retrievePropertiesAsync'); - } - - savePropertiesAsync(propertiesToSave: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function MusicProperties.savePropertiesAsync'); - } - - savePropertiesAsync_1(): Foundation.IAsyncAction { - throw new Error('shimmed function MusicProperties.savePropertiesAsync_1'); - } - - } - export enum PhotoOrientation { - unspecified, - normal, - flipHorizontal, - rotate180, - flipVertical, - transpose, - rotate270, - transverse, - rotate90, - } - export enum PropertyPrefetchOptions { - none, - musicProperties, - videoProperties, - imageProperties = 4, - documentProperties = 8, - basicProperties = 16, - } - export class StorageItemContentProperties implements IStorageItemContentProperties, IStorageItemExtraProperties { - getMusicPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemContentProperties.getMusicPropertiesAsync'); - } - - getVideoPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemContentProperties.getVideoPropertiesAsync'); - } - - getImagePropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemContentProperties.getImagePropertiesAsync'); - } - - getDocumentPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemContentProperties.getDocumentPropertiesAsync'); - } - - retrievePropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemContentProperties.retrievePropertiesAsync'); - } - - savePropertiesAsync(propertiesToSave: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function StorageItemContentProperties.savePropertiesAsync'); - } - - savePropertiesAsync_1(): Foundation.IAsyncAction { - throw new Error('shimmed function StorageItemContentProperties.savePropertiesAsync_1'); - } - - } - export class StorageItemThumbnail implements Streams.IRandomAccessStreamWithContentType, Streams.IRandomAccessStream, Foundation.IClosable, Streams.IInputStream, Streams.IOutputStream, Streams.IContentTypeProvider, IThumbnailProperties { - originalHeight: number; - originalWidth: number; - returnedSmallerCachedSize: Boolean; - type: ThumbnailType; - contentType: string; - size: number; - canRead: Boolean; - canWrite: Boolean; - position: number; - - getInputStreamAt(position: number): Streams.IInputStream { - throw new Error('shimmed function StorageItemThumbnail.getInputStreamAt'); - } - - getOutputStreamAt(position: number): Streams.IOutputStream { - throw new Error('shimmed function StorageItemThumbnail.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function StorageItemThumbnail.seek'); - } - - cloneStream(): Streams.IRandomAccessStream { - throw new Error('shimmed function StorageItemThumbnail.cloneStream'); - } - - close(): void { - console.warn('shimmed function StorageItemThumbnail.close'); - } - - readAsync(buffer: Streams.IBuffer, count: number, options: Streams.InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StorageItemThumbnail.readAsync'); - } - - writeAsync(buffer: Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StorageItemThumbnail.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemThumbnail.flushAsync'); - } - - } - export enum ThumbnailMode { - picturesView, - videosView, - musicView, - documentsView, - listView, - singleItem, - } - export enum ThumbnailOptions { - none, - returnOnlyIfCached, - resizeThumbnail, - useCurrentScale = 4, - } - export enum ThumbnailType { - image, - icon, - } - export enum VideoOrientation { - normal, - rotate90 = 90, - rotate180 = 180, - rotate270 = 270, - } - export class VideoProperties implements IVideoProperties, IStorageItemExtraProperties { - year: number; - title: string; - subtitle: string; - rating: number; - publisher: string; - bitrate: number; - directors: string[]; - duration: number; - height: number; - keywords: string[]; - latitude: number | null; - longitude: number | null; - orientation: VideoOrientation; - producers: string[]; - width: number; - writers: string[]; - - retrievePropertiesAsync(propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function VideoProperties.retrievePropertiesAsync'); - } - - savePropertiesAsync(propertiesToSave: Foundation.Collections.IIterable>): Foundation.IAsyncAction { - throw new Error('shimmed function VideoProperties.savePropertiesAsync'); - } - - savePropertiesAsync_1(): Foundation.IAsyncAction { - throw new Error('shimmed function VideoProperties.savePropertiesAsync_1'); - } - - } - } - export interface IStorageFile extends IStorageItem, Streams.IRandomAccessStreamReference, Streams.IInputStreamReference { - contentType: string; - fileType: string; - openAsync(accessMode: FileAccessMode): Foundation.IAsyncOperation; - openTransactedWriteAsync(): Foundation.IAsyncOperation; - copyAsync(destinationFolder: IStorageFolder): Foundation.IAsyncOperation; - copyAsync_1(destinationFolder: IStorageFolder, desiredNewName: string): Foundation.IAsyncOperation; - copyAsync_2(destinationFolder: IStorageFolder, desiredNewName: string, option: NameCollisionOption): Foundation.IAsyncOperation; - copyAndReplaceAsync(fileToReplace: IStorageFile): Foundation.IAsyncAction; - moveAsync(destinationFolder: IStorageFolder): Foundation.IAsyncAction; - moveAsync_1(destinationFolder: IStorageFolder, desiredNewName: string): Foundation.IAsyncAction; - moveAsync_2(destinationFolder: IStorageFolder, desiredNewName: string, option: NameCollisionOption): Foundation.IAsyncAction; - moveAndReplaceAsync(fileToReplace: IStorageFile): Foundation.IAsyncAction; - } - export interface IStorageFile2 { - openAsync(accessMode: FileAccessMode, options: StorageOpenOptions): Foundation.IAsyncOperation; - openTransactedWriteAsync(options: StorageOpenOptions): Foundation.IAsyncOperation; - } - export interface IStorageFilePropertiesWithAvailability { - isAvailable: Boolean; - } - export interface IStorageFolder extends IStorageItem { - createFileAsync(desiredName: string): Foundation.IAsyncOperation; - createFileAsync_1(desiredName: string, options: CreationCollisionOption): Foundation.IAsyncOperation; - createFolderAsync(desiredName: string): Foundation.IAsyncOperation; - createFolderAsync_1(desiredName: string, options: CreationCollisionOption): Foundation.IAsyncOperation; - getFileAsync(name: string): Foundation.IAsyncOperation; - getFolderAsync(name: string): Foundation.IAsyncOperation; - getItemAsync(name: string): Foundation.IAsyncOperation; - getFilesAsync(): Foundation.IAsyncOperation; - getFoldersAsync(): Foundation.IAsyncOperation; - getItemsAsync(): Foundation.IAsyncOperation; - } - export interface IStorageFolder2 { - tryGetItemAsync(name: string): Foundation.IAsyncOperation; - } - export interface IStorageItem { - attributes: FileAttributes; - dateCreated: Date; - name: string; - path: string; - renameAsync(desiredName: string): Foundation.IAsyncAction; - renameAsync_1(desiredName: string, option: NameCollisionOption): Foundation.IAsyncAction; - deleteAsync(): Foundation.IAsyncAction; - deleteAsync_1(option: StorageDeleteOption): Foundation.IAsyncAction; - getBasicPropertiesAsync(): Foundation.IAsyncOperation; - isOfType(type: StorageItemTypes): Boolean; - } - export interface IStorageItem2 extends IStorageItem { - getParentAsync(): Foundation.IAsyncOperation; - isEqual(item: IStorageItem): Boolean; - } - export interface IStorageItemProperties { - displayName: string; - displayType: string; - folderRelativeId: string; - properties: FileProperties.StorageItemContentProperties; - getThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation; - getThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation; - getThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation; - } - export interface IStorageItemProperties2 extends IStorageItemProperties { - getScaledImageAsThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation; - getScaledImageAsThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation; - getScaledImageAsThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation; - } - export interface IStorageItemPropertiesWithProvider extends IStorageItemProperties { - provider: StorageProvider; - } - export interface IStreamedFileDataRequest { - failAndClose(failureMode: StreamedFileFailureMode): void; - } - export enum KnownFolderId { - appCaptures, - cameraRoll, - documentsLibrary, - homeGroup, - mediaServerDevices, - musicLibrary, - objects3D, - picturesLibrary, - playlists, - recordedCalls, - removableDevices, - savedPictures, - screenshots, - videosLibrary, - allAppMods, - currentAppMods, - } - export class KnownFolders { - static cameraRoll: StorageFolder; - static playlists: StorageFolder; - static savedPictures: StorageFolder = null; - static documentsLibrary: StorageFolder; - static homeGroup: StorageFolder; - static mediaServerDevices: StorageFolder = null; - static musicLibrary: StorageFolder; - static picturesLibrary: StorageFolder; - static removableDevices: StorageFolder; - static videosLibrary: StorageFolder; - static appCaptures: StorageFolder; - static objects3D: StorageFolder; - static recordedCalls: StorageFolder; - - static getFolderForUserAsync(user: System.User, folderId: KnownFolderId): Foundation.IAsyncOperation { - throw new Error('shimmed function KnownFolders.getFolderForUserAsync'); - } - - } - export enum KnownLibraryId { - music, - pictures, - videos, - documents, - } - export enum NameCollisionOption { - generateUniqueName, - replaceExisting, - failIfExists, - } - export class PathIO { - static readTextAsync(absolutePath: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PathIO.readTextAsync'); - } - - static readTextAsync_1(absolutePath: string, encoding: Streams.UnicodeEncoding): Foundation.IAsyncOperation { - throw new Error('shimmed function PathIO.readTextAsync_1'); - } - - static writeTextAsync(absolutePath: string, contents: string): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.writeTextAsync'); - } - - static writeTextAsync_1(absolutePath: string, contents: string, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.writeTextAsync_1'); - } - - static appendTextAsync(absolutePath: string, contents: string): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.appendTextAsync'); - } - - static appendTextAsync_1(absolutePath: string, contents: string, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.appendTextAsync_1'); - } - - static readLinesAsync(absolutePath: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PathIO.readLinesAsync'); - } - - static readLinesAsync_1(absolutePath: string, encoding: Streams.UnicodeEncoding): Foundation.IAsyncOperation { - throw new Error('shimmed function PathIO.readLinesAsync_1'); - } - - static writeLinesAsync(absolutePath: string, lines: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.writeLinesAsync'); - } - - static writeLinesAsync_1(absolutePath: string, lines: Foundation.Collections.IIterable, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.writeLinesAsync_1'); - } - - static appendLinesAsync(absolutePath: string, lines: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.appendLinesAsync'); - } - - static appendLinesAsync_1(absolutePath: string, lines: Foundation.Collections.IIterable, encoding: Streams.UnicodeEncoding): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.appendLinesAsync_1'); - } - - static readBufferAsync(absolutePath: string): Foundation.IAsyncOperation { - throw new Error('shimmed function PathIO.readBufferAsync'); - } - - static writeBufferAsync(absolutePath: string, buffer: Streams.IBuffer): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.writeBufferAsync'); - } - - static writeBytesAsync(absolutePath: string, buffer: number[]): Foundation.IAsyncAction { - throw new Error('shimmed function PathIO.writeBytesAsync'); - } - - } - export namespace Pickers { - export class FileExtensionVector implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): string { - throw new Error('shimmed function FileExtensionVector.getAt'); - } - - getView(): string[] { - throw new Error('shimmed function FileExtensionVector.getView'); - } - - indexOf(value: string): { returnValue: Boolean, index: number } { - throw new Error('shimmed function FileExtensionVector.indexOf'); - } - - setAt(index: number, value: string): void { - console.warn('shimmed function FileExtensionVector.setAt'); - } - - insertAt(index: number, value: string): void { - console.warn('shimmed function FileExtensionVector.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function FileExtensionVector.removeAt'); - } - - append(value: string): void { - console.warn('shimmed function FileExtensionVector.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function FileExtensionVector.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function FileExtensionVector.clear'); - } - - getMany(startIndex: number, items: string[]): number { - throw new Error('shimmed function FileExtensionVector.getMany'); - } - - replaceAll(items: string[]): void { - console.warn('shimmed function FileExtensionVector.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function FileExtensionVector.first'); - } - - } - export class FileOpenPicker implements IFileOpenPicker2, IFileOpenPickerWithOperationId, IFileOpenPicker, IFileOpenPicker3 { - // constructor(); - viewMode: PickerViewMode = PickerViewMode.list; - suggestedStartLocation: PickerLocationId = PickerLocationId.documentsLibrary; - settingsIdentifier: string = ''; - commitButtonText: string = ''; - fileTypeFilter: string[] = [ ]; - continuationData: Foundation.Collections.ValueSet = [ ]; - user: System.User = null; - - pickSingleFileAndContinue(): void { - console.warn('shimmed function FileOpenPicker.pickSingleFileAndContinue'); - } - - pickMultipleFilesAndContinue(): void { - console.warn('shimmed function FileOpenPicker.pickMultipleFilesAndContinue'); - } - - pickSingleFileAsync(pickerOperationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FileOpenPicker.pickSingleFileAsync'); - } - - pickSingleFileAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileOpenPicker.pickSingleFileAsync_1'); - } - - pickMultipleFilesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileOpenPicker.pickMultipleFilesAsync'); - } - - static createForUser(user: System.User): FileOpenPicker { - throw new Error('shimmed function FileOpenPicker.createForUser'); - } - - static resumePickSingleFileAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileOpenPicker.resumePickSingleFileAsync'); - } - - } - export class FilePickerFileTypesOrderedMap implements Foundation.Collections.IMap, Foundation.Collections.IIterable> { - size: number; - - lookup(key: string): string[] { - throw new Error('shimmed function FilePickerFileTypesOrderedMap.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function FilePickerFileTypesOrderedMap.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function FilePickerFileTypesOrderedMap.getView'); - } - - insert(key: string, value: string[]): Boolean { - throw new Error('shimmed function FilePickerFileTypesOrderedMap.insert'); - } - - clear(): void { - console.warn('shimmed function FilePickerFileTypesOrderedMap.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function FilePickerFileTypesOrderedMap.first'); - } - - } - export class FilePickerSelectedFilesArray implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): StorageFile { - throw new Error('shimmed function FilePickerSelectedFilesArray.getAt'); - } - - indexOf(value: StorageFile): { returnValue: Boolean, index: number } { - throw new Error('shimmed function FilePickerSelectedFilesArray.indexOf'); - } - - getMany(startIndex: number, items: StorageFile[]): number { - throw new Error('shimmed function FilePickerSelectedFilesArray.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function FilePickerSelectedFilesArray.first'); - } - - } - export class FileSavePicker implements IFileSavePicker2, IFileSavePicker3, IFileSavePicker, IFileSavePicker4 { - // constructor(); - suggestedStartLocation: PickerLocationId = PickerLocationId.documentsLibrary; - suggestedSaveFile: StorageFile; - suggestedFileName: string = ''; - settingsIdentifier: string = ''; - defaultFileExtension: string = ''; - commitButtonText: string = ''; - fileTypeChoices: string[] = null; - continuationData: Foundation.Collections.ValueSet = [ ]; - enterpriseId: string = ''; - user: System.User = null; - - pickSaveFileAndContinue(): void { - console.warn('shimmed function FileSavePicker.pickSaveFileAndContinue'); - } - - pickSaveFileAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileSavePicker.pickSaveFileAsync'); - } - - static createForUser(user: System.User): FileSavePicker { - throw new Error('shimmed function FileSavePicker.createForUser'); - } - - } - export class FolderPicker implements IFolderPicker2, IFolderPicker, IFolderPicker3 { - // constructor(); - viewMode: PickerViewMode = PickerViewMode.list; - suggestedStartLocation: PickerLocationId = PickerLocationId.documentsLibrary; - settingsIdentifier: string = ''; - commitButtonText: string = ''; - fileTypeFilter: string[] = [ ]; - continuationData: Foundation.Collections.ValueSet = [ ]; - user: System.User = null; - - pickFolderAndContinue(): void { - console.warn('shimmed function FolderPicker.pickFolderAndContinue'); - } - - pickSingleFolderAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FolderPicker.pickSingleFolderAsync'); - } - - static createForUser(user: System.User): FolderPicker { - throw new Error('shimmed function FolderPicker.createForUser'); - } - - } - export enum PickerLocationId { - documentsLibrary, - computerFolder, - desktop, - downloads, - homeGroup, - musicLibrary, - picturesLibrary, - videosLibrary, - objects3D, - unspecified, - } - export enum PickerViewMode { - list, - thumbnail, - } - export namespace Provider { - export enum AddFileResult { - added, - alreadyAdded, - notAllowed, - unavailable, - } - export class FileOpenPickerUI implements IFileOpenPickerUI { - title: string; - allowedFileTypes: string[]; - selectionMode: FileSelectionMode; - settingsIdentifier: string; - - addFile(id: string, file: IStorageFile): AddFileResult { - throw new Error('shimmed function FileOpenPickerUI.addFile'); - } - - removeFile(id: string): void { - console.warn('shimmed function FileOpenPickerUI.removeFile'); - } - - containsFile(id: string): Boolean { - throw new Error('shimmed function FileOpenPickerUI.containsFile'); - } - - canAddFile(file: IStorageFile): Boolean { - throw new Error('shimmed function FileOpenPickerUI.canAddFile'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FileOpenPickerUI::addEventListener: ${name}`); - switch (name) { - case "closing": // Foundation.TypedEventHandler - case "fileremoved": // Foundation.TypedEventHandler - break; - } - - } - } - export class FileRemovedEventArgs implements IFileRemovedEventArgs { - id: string; - - } - export class FileSavePickerUI implements IFileSavePickerUI { - title: string; - allowedFileTypes: string[]; - fileName: string; - settingsIdentifier: string; - - trySetFileName(value: string): SetFileNameResult { - throw new Error('shimmed function FileSavePickerUI.trySetFileName'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FileSavePickerUI::addEventListener: ${name}`); - switch (name) { - case "filenamechanged": // Foundation.TypedEventHandler - case "targetfilerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum FileSelectionMode { - single, - multiple, - } - export class PickerClosingDeferral implements IPickerClosingDeferral { - complete(): void { - console.warn('shimmed function PickerClosingDeferral.complete'); - } - - } - export class PickerClosingEventArgs implements IPickerClosingEventArgs { - closingOperation: PickerClosingOperation; - isCanceled: Boolean; - - } - export class PickerClosingOperation implements IPickerClosingOperation { - deadline: Date; - - getDeferral(): PickerClosingDeferral { - throw new Error('shimmed function PickerClosingOperation.getDeferral'); - } - - } - export enum SetFileNameResult { - succeeded, - notAllowed, - unavailable, - } - export class TargetFileRequest implements ITargetFileRequest { - targetFile: IStorageFile; - - getDeferral(): TargetFileRequestDeferral { - throw new Error('shimmed function TargetFileRequest.getDeferral'); - } - - } - export class TargetFileRequestDeferral implements ITargetFileRequestDeferral { - complete(): void { - console.warn('shimmed function TargetFileRequestDeferral.complete'); - } - - } - export class TargetFileRequestedEventArgs implements ITargetFileRequestedEventArgs { - request: TargetFileRequest; - - } - } - } - export namespace Provider { - export enum CachedFileOptions { - none, - requireUpdateOnAccess, - useCachedFileWhenOffline, - denyAccessWhenOffline = 4, - } - export enum CachedFileTarget { - local, - remote, - } - export class CachedFileUpdater { - static setUpdateInformation(file: IStorageFile, contentId: string, readMode: ReadActivationMode, writeMode: WriteActivationMode, options: CachedFileOptions): void { - console.warn('shimmed function CachedFileUpdater.setUpdateInformation'); - } - - } - export class CachedFileUpdaterUI implements ICachedFileUpdaterUI, ICachedFileUpdaterUI2 { - title: string; - uistatus: UIStatus; - updateTarget: CachedFileTarget; - updateRequest: FileUpdateRequest; - - getDeferral(): FileUpdateRequestDeferral { - throw new Error('shimmed function CachedFileUpdaterUI.getDeferral'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CachedFileUpdaterUI::addEventListener: ${name}`); - switch (name) { - case "fileupdaterequested": // Foundation.TypedEventHandler - case "uirequested": // Foundation.TypedEventHandler - break; - } - - } - } - export interface CloudFilesContract { - } - export class FileUpdateRequest implements IFileUpdateRequest, IFileUpdateRequest2 { - status: FileUpdateStatus; - contentId: string; - file: StorageFile; - userInputNeededMessage: string; - - getDeferral(): FileUpdateRequestDeferral { - throw new Error('shimmed function FileUpdateRequest.getDeferral'); - } - - updateLocalFile(value: IStorageFile): void { - console.warn('shimmed function FileUpdateRequest.updateLocalFile'); - } - - } - export class FileUpdateRequestDeferral implements IFileUpdateRequestDeferral { - complete(): void { - console.warn('shimmed function FileUpdateRequestDeferral.complete'); - } - - } - export class FileUpdateRequestedEventArgs implements IFileUpdateRequestedEventArgs { - request: FileUpdateRequest; - - } - export enum FileUpdateStatus { - incomplete, - complete, - userInputNeeded, - currentlyUnavailable, - failed, - completeAndRenamed, - } - export interface IStorageProviderItemPropertySource { - getItemProperties(itemPath: string): Foundation.Collections.IIterable; - } - export interface IStorageProviderPropertyCapabilities { - isPropertySupported(propertyCanonicalName: string): Boolean; - } - export interface IStorageProviderUriSource { - getPathForContentUri(contentUri: string, result: StorageProviderGetPathForContentUriResult): void; - getContentInfoForPath(path: string, result: StorageProviderGetContentInfoForPathResult): void; - } - export enum ReadActivationMode { - notNeeded, - beforeAccess, - } - export class StorageProviderGetContentInfoForPathResult implements IStorageProviderGetContentInfoForPathResult { - // constructor(); - status: StorageProviderUriSourceStatus = StorageProviderUriSourceStatus.success; - contentUri: string = ''; - contentId: string = ''; - - } - export class StorageProviderGetPathForContentUriResult implements IStorageProviderGetPathForContentUriResult { - // constructor(); - status: StorageProviderUriSourceStatus = StorageProviderUriSourceStatus.success; - path: string = ''; - - } - export enum StorageProviderHardlinkPolicy { - none, - allowed, - } - export enum StorageProviderHydrationPolicy { - partial, - progressive, - full, - alwaysFull, - } - export enum StorageProviderHydrationPolicyModifier { - none, - validationRequired, - streamingAllowed, - autoDehydrationAllowed = 4, - } - export enum StorageProviderInSyncPolicy { - default, - fileCreationTime, - fileReadOnlyAttribute, - fileHiddenAttribute = 4, - fileSystemAttribute = 8, - directoryCreationTime = 16, - directoryReadOnlyAttribute = 32, - directoryHiddenAttribute = 64, - directorySystemAttribute = 128, - fileLastWriteTime = 256, - directoryLastWriteTime = 512, - preserveInsyncForSyncEngine = 2147483648, - } - export class StorageProviderItemProperties { - static setAsync(item: IStorageItem, itemProperties: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function StorageProviderItemProperties.setAsync'); - } - - } - export class StorageProviderItemProperty implements IStorageProviderItemProperty { - // constructor(); - value: string; - id: number; - iconResource: string; - - } - export class StorageProviderItemPropertyDefinition implements IStorageProviderItemPropertyDefinition { - // constructor(); - id: number = 0; - displayNameResource: string = ''; - - } - export enum StorageProviderPopulationPolicy { - full = 1, - alwaysFull, - } - export enum StorageProviderProtectionMode { - unknown, - personal, - } - export class StorageProviderSyncRootInfo implements IStorageProviderSyncRootInfo, IStorageProviderSyncRootInfo2 { - // constructor(); - version: string = ''; - showSiblingsAsGroup: Boolean = false; - recycleBinUri: Foundation.Uri; - protectionMode: StorageProviderProtectionMode = StorageProviderProtectionMode.unknown; - populationPolicy: StorageProviderPopulationPolicy = StorageProviderPopulationPolicy.alwaysFull; - path: IStorageFolder; - inSyncPolicy: StorageProviderInSyncPolicy = StorageProviderInSyncPolicy.default; - id: string = ''; - iconResource: string = ''; - hydrationPolicyModifier: StorageProviderHydrationPolicyModifier = StorageProviderHydrationPolicyModifier.none; - hydrationPolicy: StorageProviderHydrationPolicy = StorageProviderHydrationPolicy.full; - hardlinkPolicy: StorageProviderHardlinkPolicy = StorageProviderHardlinkPolicy.none; - displayNameResource: string = ''; - context: Streams.IBuffer; - allowPinning: Boolean = true; - storageProviderItemPropertyDefinitions: StorageProviderItemPropertyDefinition[] = [ ]; - providerId: string = '00000000-0000-0000-0000-000000000000'; - - } - export class StorageProviderSyncRootManager { - static register(syncRootInformation: StorageProviderSyncRootInfo): void { - console.warn('shimmed function StorageProviderSyncRootManager.register'); - } - - static unregister(id: string): void { - console.warn('shimmed function StorageProviderSyncRootManager.unregister'); - } - - static getSyncRootInformationForFolder(folder: IStorageFolder): StorageProviderSyncRootInfo { - throw new Error('shimmed function StorageProviderSyncRootManager.getSyncRootInformationForFolder'); - } - - static getSyncRootInformationForId(id: string): StorageProviderSyncRootInfo { - throw new Error('shimmed function StorageProviderSyncRootManager.getSyncRootInformationForId'); - } - - static getCurrentSyncRoots(): StorageProviderSyncRootInfo[] { - throw new Error('shimmed function StorageProviderSyncRootManager.getCurrentSyncRoots'); - } - - } - export enum StorageProviderUriSourceStatus { - success, - noSyncRoot, - fileNotFound, - } - export enum UIStatus { - unavailable, - hidden, - visible, - complete, - } - export enum WriteActivationMode { - readOnly, - notNeeded, - afterWrite, - } - } - export namespace Search { - export enum CommonFileQuery { - defaultQuery, - orderByName, - orderByTitle, - orderByMusicProperties, - orderBySearchRank, - orderByDate, - } - export enum CommonFolderQuery { - defaultQuery, - groupByYear = 100, - groupByMonth, - groupByArtist, - groupByAlbum, - groupByAlbumArtist, - groupByComposer, - groupByGenre, - groupByPublishedYear, - groupByRating, - groupByTag, - groupByAuthor, - groupByType, - } - export class ContentIndexer implements IContentIndexer, IContentIndexerQueryOperations { - revision: number; - - addAsync(indexableContent: IIndexableContent): Foundation.IAsyncAction { - throw new Error('shimmed function ContentIndexer.addAsync'); - } - - updateAsync(indexableContent: IIndexableContent): Foundation.IAsyncAction { - throw new Error('shimmed function ContentIndexer.updateAsync'); - } - - deleteAsync(contentId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ContentIndexer.deleteAsync'); - } - - deleteMultipleAsync(contentIds: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function ContentIndexer.deleteMultipleAsync'); - } - - deleteAllAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ContentIndexer.deleteAllAsync'); - } - - retrievePropertiesAsync(contentId: string, propertiesToRetrieve: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentIndexer.retrievePropertiesAsync'); - } - - createQuery(searchFilter: string, propertiesToRetrieve: Foundation.Collections.IIterable, sortOrder: Foundation.Collections.IIterable, searchFilterLanguage: string): ContentIndexerQuery { - throw new Error('shimmed function ContentIndexer.createQuery'); - } - - createQuery_1(searchFilter: string, propertiesToRetrieve: Foundation.Collections.IIterable, sortOrder: Foundation.Collections.IIterable): ContentIndexerQuery { - throw new Error('shimmed function ContentIndexer.createQuery_1'); - } - - createQuery_2(searchFilter: string, propertiesToRetrieve: Foundation.Collections.IIterable): ContentIndexerQuery { - throw new Error('shimmed function ContentIndexer.createQuery_2'); - } - - static getIndexer(indexName: string): ContentIndexer { - throw new Error('shimmed function ContentIndexer.getIndexer'); - } - - static getIndexer_1(): ContentIndexer { - throw new Error('shimmed function ContentIndexer.getIndexer_1'); - } - - } - export class ContentIndexerQuery implements IContentIndexerQuery { - queryFolder: StorageFolder; - - getCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentIndexerQuery.getCountAsync'); - } - - getPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentIndexerQuery.getPropertiesAsync'); - } - - getPropertiesAsync_1(startIndex: number, maxItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentIndexerQuery.getPropertiesAsync_1'); - } - - getAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentIndexerQuery.getAsync'); - } - - getAsync_1(startIndex: number, maxItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentIndexerQuery.getAsync_1'); - } - - } - export enum DateStackOption { - none, - year, - month, - } - export enum FolderDepth { - shallow, - deep, - } - export interface IIndexableContent { - id: string; - properties: string[]; - stream: Streams.IRandomAccessStream; - streamContentType: string; - } - export class IndexableContent implements IIndexableContent { - // constructor(); - streamContentType: string = ''; - stream: Streams.IRandomAccessStream; - id: string = ''; - properties: string[] = [ ]; - - } - export enum IndexedState { - unknown, - notIndexed, - partiallyIndexed, - fullyIndexed, - } - export enum IndexerOption { - useIndexerWhenAvailable, - onlyUseIndexer, - doNotUseIndexer, - onlyUseIndexerAndOptimizeForIndexedProperties, - } - export interface IStorageFolderQueryOperations { - getIndexedStateAsync(): Foundation.IAsyncOperation; - createFileQuery(): StorageFileQueryResult; - createFileQuery_1(query: CommonFileQuery): StorageFileQueryResult; - createFileQueryWithOptions(queryOptions: QueryOptions): StorageFileQueryResult; - createFolderQuery(): StorageFolderQueryResult; - createFolderQuery_1(query: CommonFolderQuery): StorageFolderQueryResult; - createFolderQueryWithOptions(queryOptions: QueryOptions): StorageFolderQueryResult; - createItemQuery(): StorageItemQueryResult; - createItemQueryWithOptions(queryOptions: QueryOptions): StorageItemQueryResult; - getFilesAsync(query: CommonFileQuery, startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation; - getFilesAsync_1(query: CommonFileQuery): Foundation.IAsyncOperation; - getFoldersAsync(query: CommonFolderQuery, startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation; - getFoldersAsync_1(query: CommonFolderQuery): Foundation.IAsyncOperation; - getItemsAsync(startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation; - areQueryOptionsSupported(queryOptions: QueryOptions): Boolean; - isCommonFolderQuerySupported(query: CommonFolderQuery): Boolean; - isCommonFileQuerySupported(query: CommonFileQuery): Boolean; - } - export interface IStorageQueryResultBase { - folder: StorageFolder; - getItemCountAsync(): Foundation.IAsyncOperation; - findStartIndexAsync(value: any): Foundation.IAsyncOperation; - getCurrentQueryOptions(): QueryOptions; - applyNewQueryOptions(newQueryOptions: QueryOptions): void; - } - export class QueryOptions implements IQueryOptions, IQueryOptionsWithProviderFilter { - // constructor(query: CommonFileQuery, fileTypeFilter: Foundation.Collections.IIterable); - // constructor(query: CommonFolderQuery); - // constructor(); - constructor(query: CommonFileQuery, fileTypeFilter: Foundation.Collections.IIterable) {} - - userSearchFilter: string = ''; - language: string = ''; - indexerOption: IndexerOption = IndexerOption.doNotUseIndexer; - folderDepth: FolderDepth = FolderDepth.shallow; - applicationSearchFilter: string = ''; - dateStackOption: DateStackOption = DateStackOption.none; - fileTypeFilter: string[] = [ ]; - groupPropertyName: string = ''; - sortOrder: SortEntry[] = [ null ]; - storageProviderIdFilter: string[] = [ ]; - - saveToString(): string { - throw new Error('shimmed function QueryOptions.saveToString'); - } - - loadFromString(value: string): void { - console.warn('shimmed function QueryOptions.loadFromString'); - } - - setThumbnailPrefetch(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): void { - console.warn('shimmed function QueryOptions.setThumbnailPrefetch'); - } - - setPropertyPrefetch(options: FileProperties.PropertyPrefetchOptions, propertiesToRetrieve: Foundation.Collections.IIterable): void { - console.warn('shimmed function QueryOptions.setPropertyPrefetch'); - } - - } - export interface SortEntry { - propertyName: string; - ascendingOrder: Boolean; - } - export class SortEntryVector implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): SortEntry { - throw new Error('shimmed function SortEntryVector.getAt'); - } - - getView(): SortEntry[] { - throw new Error('shimmed function SortEntryVector.getView'); - } - - indexOf(value: SortEntry): { returnValue: Boolean, index: number } { - throw new Error('shimmed function SortEntryVector.indexOf'); - } - - setAt(index: number, value: SortEntry): void { - console.warn('shimmed function SortEntryVector.setAt'); - } - - insertAt(index: number, value: SortEntry): void { - console.warn('shimmed function SortEntryVector.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function SortEntryVector.removeAt'); - } - - append(value: SortEntry): void { - console.warn('shimmed function SortEntryVector.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function SortEntryVector.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function SortEntryVector.clear'); - } - - getMany(startIndex: number, items: SortEntry[]): number { - throw new Error('shimmed function SortEntryVector.getMany'); - } - - replaceAll(items: SortEntry[]): void { - console.warn('shimmed function SortEntryVector.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function SortEntryVector.first'); - } - - } - export class StorageFileQueryResult implements IStorageFileQueryResult, IStorageQueryResultBase, IStorageFileQueryResult2 { - folder: StorageFolder; - - getFilesAsync(startIndex: number, maxNumberOfItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFileQueryResult.getFilesAsync'); - } - - getFilesAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFileQueryResult.getFilesAsync_1'); - } - - getItemCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFileQueryResult.getItemCountAsync'); - } - - findStartIndexAsync(value: any): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFileQueryResult.findStartIndexAsync'); - } - - getCurrentQueryOptions(): QueryOptions { - throw new Error('shimmed function StorageFileQueryResult.getCurrentQueryOptions'); - } - - applyNewQueryOptions(newQueryOptions: QueryOptions): void { - console.warn('shimmed function StorageFileQueryResult.applyNewQueryOptions'); - } - - getMatchingPropertiesWithRanges(file: StorageFile): string[] { - throw new Error('shimmed function StorageFileQueryResult.getMatchingPropertiesWithRanges'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StorageFileQueryResult::addEventListener: ${name}`); - switch (name) { - case "contentschanged": // Foundation.TypedEventHandler - case "optionschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class StorageFolderQueryResult implements IStorageFolderQueryResult, IStorageQueryResultBase { - folder: StorageFolder; - - getFoldersAsync(startIndex: number, maxNumberOfItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolderQueryResult.getFoldersAsync'); - } - - getFoldersAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolderQueryResult.getFoldersAsync_1'); - } - - getItemCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolderQueryResult.getItemCountAsync'); - } - - findStartIndexAsync(value: any): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolderQueryResult.findStartIndexAsync'); - } - - getCurrentQueryOptions(): QueryOptions { - throw new Error('shimmed function StorageFolderQueryResult.getCurrentQueryOptions'); - } - - applyNewQueryOptions(newQueryOptions: QueryOptions): void { - console.warn('shimmed function StorageFolderQueryResult.applyNewQueryOptions'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StorageFolderQueryResult::addEventListener: ${name}`); - switch (name) { - case "contentschanged": // Foundation.TypedEventHandler - case "optionschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class StorageItemQueryResult implements IStorageItemQueryResult, IStorageQueryResultBase { - folder: StorageFolder; - - getItemsAsync(startIndex: number, maxNumberOfItems: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemQueryResult.getItemsAsync'); - } - - getItemsAsync_1(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemQueryResult.getItemsAsync_1'); - } - - getItemCountAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemQueryResult.getItemCountAsync'); - } - - findStartIndexAsync(value: any): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageItemQueryResult.findStartIndexAsync'); - } - - getCurrentQueryOptions(): QueryOptions { - throw new Error('shimmed function StorageItemQueryResult.getCurrentQueryOptions'); - } - - applyNewQueryOptions(newQueryOptions: QueryOptions): void { - console.warn('shimmed function StorageItemQueryResult.applyNewQueryOptions'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StorageItemQueryResult::addEventListener: ${name}`); - switch (name) { - case "contentschanged": // Foundation.TypedEventHandler - case "optionschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class StorageLibraryChangeTrackerTriggerDetails implements IStorageLibraryChangeTrackerTriggerDetails { - changeTracker: StorageLibraryChangeTracker; - folder: StorageFolder; - - } - export class StorageLibraryContentChangedTriggerDetails implements IStorageLibraryContentChangedTriggerDetails { - folder: StorageFolder; - - createModifiedSinceQuery(lastQueryTime: Date): StorageItemQueryResult { - throw new Error('shimmed function StorageLibraryContentChangedTriggerDetails.createModifiedSinceQuery'); - } - - } - export class ValueAndLanguage implements IValueAndLanguage { - // constructor(); - value: any; - language: string = ''; - - } - } - export class SetVersionDeferral implements ISetVersionDeferral { - complete(): void { - console.warn('shimmed function SetVersionDeferral.complete'); - } - - } - export class SetVersionRequest implements ISetVersionRequest { - currentVersion: number; - desiredVersion: number; - - getDeferral(): SetVersionDeferral { - throw new Error('shimmed function SetVersionRequest.getDeferral'); - } - - } - export enum StorageDeleteOption { - default, - permanentDelete, - } - export class StorageFile implements IStorageFile, IStorageItem, Streams.IRandomAccessStreamReference, Streams.IInputStreamReference, IStorageItemProperties, IStorageItemProperties2, IStorageItem2, IStorageItemPropertiesWithProvider, IStorageFilePropertiesWithAvailability, IStorageFile2 { - contentType: string; - fileType: string; - isAvailable: Boolean; - attributes: FileAttributes; - dateCreated: Date; - name: string; - path: string; - displayName: string; - displayType: string; - folderRelativeId: string; - properties: FileProperties.StorageItemContentProperties; - provider: StorageProvider; - - openAsync(accessMode: FileAccessMode): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.openAsync'); - } - - openTransactedWriteAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.openTransactedWriteAsync'); - } - - copyAsync(destinationFolder: IStorageFolder): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.copyAsync'); - } - - copyAsync_1(destinationFolder: IStorageFolder, desiredNewName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.copyAsync_1'); - } - - copyAsync_2(destinationFolder: IStorageFolder, desiredNewName: string, option: NameCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.copyAsync_2'); - } - - copyAndReplaceAsync(fileToReplace: IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.copyAndReplaceAsync'); - } - - moveAsync(destinationFolder: IStorageFolder): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.moveAsync'); - } - - moveAsync_1(destinationFolder: IStorageFolder, desiredNewName: string): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.moveAsync_1'); - } - - moveAsync_2(destinationFolder: IStorageFolder, desiredNewName: string, option: NameCollisionOption): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.moveAsync_2'); - } - - moveAndReplaceAsync(fileToReplace: IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.moveAndReplaceAsync'); - } - - renameAsync(desiredName: string): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.renameAsync'); - } - - renameAsync_1(desiredName: string, option: NameCollisionOption): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.renameAsync_1'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.deleteAsync'); - } - - deleteAsync_1(option: StorageDeleteOption): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFile.deleteAsync_1'); - } - - getBasicPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getBasicPropertiesAsync'); - } - - isOfType(type: StorageItemTypes): Boolean { - throw new Error('shimmed function StorageFile.isOfType'); - } - - openReadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.openReadAsync'); - } - - openSequentialReadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.openSequentialReadAsync'); - } - - getThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getThumbnailAsync'); - } - - getThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getThumbnailAsync_1'); - } - - getThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getThumbnailAsync_2'); - } - - getScaledImageAsThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getScaledImageAsThumbnailAsync'); - } - - getScaledImageAsThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getScaledImageAsThumbnailAsync_1'); - } - - getScaledImageAsThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getScaledImageAsThumbnailAsync_2'); - } - - getParentAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getParentAsync'); - } - - isEqual(item: IStorageItem): Boolean { - throw new Error('shimmed function StorageFile.isEqual'); - } - - openAsync_1(accessMode: FileAccessMode, options: StorageOpenOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.openAsync_1'); - } - - openTransactedWriteAsync_1(options: StorageOpenOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.openTransactedWriteAsync_1'); - } - - static getFileFromPathAsync(path: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getFileFromPathAsync'); - } - - static getFileFromApplicationUriAsync(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.getFileFromApplicationUriAsync'); - } - - static createStreamedFileAsync(displayNameWithExtension: string, dataRequested: StreamedFileDataRequestedHandler, thumbnail: Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.createStreamedFileAsync'); - } - - static replaceWithStreamedFileAsync(fileToReplace: IStorageFile, dataRequested: StreamedFileDataRequestedHandler, thumbnail: Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.replaceWithStreamedFileAsync'); - } - - static createStreamedFileFromUriAsync(displayNameWithExtension: string, uri: Foundation.Uri, thumbnail: Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.createStreamedFileFromUriAsync'); - } - - static replaceWithStreamedFileFromUriAsync(fileToReplace: IStorageFile, uri: Foundation.Uri, thumbnail: Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFile.replaceWithStreamedFileFromUriAsync'); - } - - } - export class StorageFolder implements IStorageFolder, IStorageItem, Search.IStorageFolderQueryOperations, IStorageItemProperties, IStorageItemProperties2, IStorageItem2, IStorageFolder2, IStorageItemPropertiesWithProvider, IStorageFolder3 { - attributes: FileAttributes; - dateCreated: Date; - name: string; - path: string; - displayName: string; - displayType: string; - folderRelativeId: string; - properties: FileProperties.StorageItemContentProperties; - provider: StorageProvider; - - createFileAsync(desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.createFileAsync'); - } - - createFileAsync_1(desiredName: string, options: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.createFileAsync_1'); - } - - createFolderAsync(desiredName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.createFolderAsync'); - } - - createFolderAsync_1(desiredName: string, options: CreationCollisionOption): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.createFolderAsync_1'); - } - - getFileAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFileAsync'); - } - - getFolderAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFolderAsync'); - } - - getItemAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getItemAsync'); - } - - getFilesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFilesAsync'); - } - - getFoldersAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFoldersAsync'); - } - - getItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getItemsAsync'); - } - - renameAsync(desiredName: string): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFolder.renameAsync'); - } - - renameAsync_1(desiredName: string, option: NameCollisionOption): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFolder.renameAsync_1'); - } - - deleteAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFolder.deleteAsync'); - } - - deleteAsync_1(option: StorageDeleteOption): Foundation.IAsyncAction { - throw new Error('shimmed function StorageFolder.deleteAsync_1'); - } - - getBasicPropertiesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getBasicPropertiesAsync'); - } - - isOfType(type: StorageItemTypes): Boolean { - throw new Error('shimmed function StorageFolder.isOfType'); - } - - getIndexedStateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getIndexedStateAsync'); - } - - createFileQuery(): Search.StorageFileQueryResult { - throw new Error('shimmed function StorageFolder.createFileQuery'); - } - - createFileQuery_1(query: Search.CommonFileQuery): Search.StorageFileQueryResult { - throw new Error('shimmed function StorageFolder.createFileQuery_1'); - } - - createFileQueryWithOptions(queryOptions: Search.QueryOptions): Search.StorageFileQueryResult { - throw new Error('shimmed function StorageFolder.createFileQueryWithOptions'); - } - - createFolderQuery(): Search.StorageFolderQueryResult { - throw new Error('shimmed function StorageFolder.createFolderQuery'); - } - - createFolderQuery_1(query: Search.CommonFolderQuery): Search.StorageFolderQueryResult { - throw new Error('shimmed function StorageFolder.createFolderQuery_1'); - } - - createFolderQueryWithOptions(queryOptions: Search.QueryOptions): Search.StorageFolderQueryResult { - throw new Error('shimmed function StorageFolder.createFolderQueryWithOptions'); - } - - createItemQuery(): Search.StorageItemQueryResult { - throw new Error('shimmed function StorageFolder.createItemQuery'); - } - - createItemQueryWithOptions(queryOptions: Search.QueryOptions): Search.StorageItemQueryResult { - throw new Error('shimmed function StorageFolder.createItemQueryWithOptions'); - } - - getFilesAsync_1(query: Search.CommonFileQuery, startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFilesAsync_1'); - } - - getFilesAsync_2(query: Search.CommonFileQuery): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFilesAsync_2'); - } - - getFoldersAsync_1(query: Search.CommonFolderQuery, startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFoldersAsync_1'); - } - - getFoldersAsync_2(query: Search.CommonFolderQuery): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFoldersAsync_2'); - } - - getItemsAsync_1(startIndex: number, maxItemsToRetrieve: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getItemsAsync_1'); - } - - areQueryOptionsSupported(queryOptions: Search.QueryOptions): Boolean { - throw new Error('shimmed function StorageFolder.areQueryOptionsSupported'); - } - - isCommonFolderQuerySupported(query: Search.CommonFolderQuery): Boolean { - throw new Error('shimmed function StorageFolder.isCommonFolderQuerySupported'); - } - - isCommonFileQuerySupported(query: Search.CommonFileQuery): Boolean { - throw new Error('shimmed function StorageFolder.isCommonFileQuerySupported'); - } - - getThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getThumbnailAsync'); - } - - getThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getThumbnailAsync_1'); - } - - getThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getThumbnailAsync_2'); - } - - getScaledImageAsThumbnailAsync(mode: FileProperties.ThumbnailMode): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getScaledImageAsThumbnailAsync'); - } - - getScaledImageAsThumbnailAsync_1(mode: FileProperties.ThumbnailMode, requestedSize: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getScaledImageAsThumbnailAsync_1'); - } - - getScaledImageAsThumbnailAsync_2(mode: FileProperties.ThumbnailMode, requestedSize: number, options: FileProperties.ThumbnailOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getScaledImageAsThumbnailAsync_2'); - } - - getParentAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getParentAsync'); - } - - isEqual(item: IStorageItem): Boolean { - throw new Error('shimmed function StorageFolder.isEqual'); - } - - tryGetItemAsync(name: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.tryGetItemAsync'); - } - - tryGetChangeTracker(): StorageLibraryChangeTracker { - throw new Error('shimmed function StorageFolder.tryGetChangeTracker'); - } - - static getFolderFromPathAsync(path: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageFolder.getFolderFromPathAsync'); - } - - } - export enum StorageItemTypes { - none, - file, - folder, - } - export class StorageLibrary implements IStorageLibrary, IStorageLibrary2, IStorageLibrary3 { - folders: StorageFolder[]; - saveFolder: StorageFolder; - changeTracker: StorageLibraryChangeTracker; - - requestAddFolderAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageLibrary.requestAddFolderAsync'); - } - - requestRemoveFolderAsync(folder: StorageFolder): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageLibrary.requestRemoveFolderAsync'); - } - - areFolderSuggestionsAvailableAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageLibrary.areFolderSuggestionsAvailableAsync'); - } - - static getLibraryForUserAsync(user: System.User, libraryId: KnownLibraryId): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageLibrary.getLibraryForUserAsync'); - } - - static getLibraryAsync(libraryId: KnownLibraryId): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageLibrary.getLibraryAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StorageLibrary::addEventListener: ${name}`); - switch (name) { - case "definitionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class StorageLibraryChange implements IStorageLibraryChange { - changeType: StorageLibraryChangeType; - path: string; - previousPath: string; - - isOfType(type: StorageItemTypes): Boolean { - throw new Error('shimmed function StorageLibraryChange.isOfType'); - } - - getStorageItemAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageLibraryChange.getStorageItemAsync'); - } - - } - export class StorageLibraryChangeReader implements IStorageLibraryChangeReader { - readBatchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageLibraryChangeReader.readBatchAsync'); - } - - acceptChangesAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StorageLibraryChangeReader.acceptChangesAsync'); - } - - } - export class StorageLibraryChangeTracker implements IStorageLibraryChangeTracker { - getChangeReader(): StorageLibraryChangeReader { - throw new Error('shimmed function StorageLibraryChangeTracker.getChangeReader'); - } - - enable(): void { - console.warn('shimmed function StorageLibraryChangeTracker.enable'); - } - - reset(): void { - console.warn('shimmed function StorageLibraryChangeTracker.reset'); - } - - } - export enum StorageLibraryChangeType { - created, - deleted, - movedOrRenamed, - contentsChanged, - movedOutOfLibrary, - movedIntoLibrary, - contentsReplaced, - indexingStatusChanged, - encryptionChanged, - changeTrackingLost, - } - export enum StorageOpenOptions { - none, - allowOnlyReaders, - allowReadersAndWriters, - } - export class StorageProvider implements IStorageProvider, IStorageProvider2 { - displayName: string; - id: string; - - isPropertySupportedForPartialFileAsync(propertyCanonicalName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StorageProvider.isPropertySupportedForPartialFileAsync'); - } - - } - export class StorageStreamTransaction implements IStorageStreamTransaction, Foundation.IClosable { - stream: Streams.IRandomAccessStream; - - commitAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StorageStreamTransaction.commitAsync'); - } - - close(): void { - console.warn('shimmed function StorageStreamTransaction.close'); - } - - } - export class StreamedFileDataRequest implements Streams.IOutputStream, Foundation.IClosable, IStreamedFileDataRequest { - writeAsync(buffer: Streams.IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function StreamedFileDataRequest.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function StreamedFileDataRequest.flushAsync'); - } - - close(): void { - console.warn('shimmed function StreamedFileDataRequest.close'); - } - - failAndClose(failureMode: StreamedFileFailureMode): void { - console.warn('shimmed function StreamedFileDataRequest.failAndClose'); - } - - } - export type StreamedFileDataRequestedHandler = () => void; - export enum StreamedFileFailureMode { - failed, - currentlyUnavailable, - incomplete, - } - export namespace Streams { - export class Buffer implements IBuffer { - // constructor(capacity: number); - constructor(capacity: number) {} - - length: number; - capacity: number; - - static createCopyFromMemoryBuffer(input: Foundation.IMemoryBuffer): Buffer { - throw new Error('shimmed function Buffer.createCopyFromMemoryBuffer'); - } - - static createMemoryBufferOverIBuffer(input: IBuffer): Foundation.MemoryBuffer { - throw new Error('shimmed function Buffer.createMemoryBufferOverIBuffer'); - } - - } - export enum ByteOrder { - littleEndian, - bigEndian, - } - export class DataReader implements IDataReader, Foundation.IClosable { - // constructor(inputStream: IInputStream); - constructor(inputStream: IInputStream) {} - - unicodeEncoding: UnicodeEncoding; - inputStreamOptions: InputStreamOptions; - byteOrder: ByteOrder; - unconsumedBufferLength: number; - - readByte(): number { - throw new Error('shimmed function DataReader.readByte'); - } - - readBytes(value: number[]): void { - console.warn('shimmed function DataReader.readBytes'); - } - - readBuffer(length: number): IBuffer { - throw new Error('shimmed function DataReader.readBuffer'); - } - - readBoolean(): Boolean { - throw new Error('shimmed function DataReader.readBoolean'); - } - - readGuid(): string { - throw new Error('shimmed function DataReader.readGuid'); - } - - readInt16(): number { - throw new Error('shimmed function DataReader.readInt16'); - } - - readInt32(): number { - throw new Error('shimmed function DataReader.readInt32'); - } - - readInt64(): number { - throw new Error('shimmed function DataReader.readInt64'); - } - - readUInt16(): number { - throw new Error('shimmed function DataReader.readUInt16'); - } - - readUInt32(): number { - throw new Error('shimmed function DataReader.readUInt32'); - } - - readUInt64(): number { - throw new Error('shimmed function DataReader.readUInt64'); - } - - readSingle(): number { - throw new Error('shimmed function DataReader.readSingle'); - } - - readDouble(): number { - throw new Error('shimmed function DataReader.readDouble'); - } - - readString(codeUnitCount: number): string { - throw new Error('shimmed function DataReader.readString'); - } - - readDateTime(): Date { - throw new Error('shimmed function DataReader.readDateTime'); - } - - readTimeSpan(): number { - throw new Error('shimmed function DataReader.readTimeSpan'); - } - - loadAsync(count: number): DataReaderLoadOperation { - throw new Error('shimmed function DataReader.loadAsync'); - } - - detachBuffer(): IBuffer { - throw new Error('shimmed function DataReader.detachBuffer'); - } - - detachStream(): IInputStream { - throw new Error('shimmed function DataReader.detachStream'); - } - - close(): void { - console.warn('shimmed function DataReader.close'); - } - - static fromBuffer(buffer: IBuffer): DataReader { - throw new Error('shimmed function DataReader.fromBuffer'); - } - - } - export class DataReaderLoadOperation implements Foundation.IAsyncOperation, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncOperationCompletedHandler; - - getResults(): number { - throw new Error('shimmed function DataReaderLoadOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function DataReaderLoadOperation.cancel'); - } - - close(): void { - console.warn('shimmed function DataReaderLoadOperation.close'); - } - - } - export class DataWriter implements IDataWriter, Foundation.IClosable { - // constructor(outputStream: IOutputStream); - // constructor(); - constructor(outputStream: IOutputStream) {} - - unicodeEncoding: UnicodeEncoding = UnicodeEncoding.utf8; - byteOrder: ByteOrder = ByteOrder.bigEndian; - unstoredBufferLength: number = 0; - - writeByte(value: number): void { - console.warn('shimmed function DataWriter.writeByte'); - } - - writeBytes(value: number[]): void { - console.warn('shimmed function DataWriter.writeBytes'); - } - - writeBuffer(buffer: IBuffer): void { - console.warn('shimmed function DataWriter.writeBuffer'); - } - - writeBuffer_1(buffer: IBuffer, start: number, count: number): void { - console.warn('shimmed function DataWriter.writeBuffer_1'); - } - - writeBoolean(value: Boolean): void { - console.warn('shimmed function DataWriter.writeBoolean'); - } - - writeGuid(value: string): void { - console.warn('shimmed function DataWriter.writeGuid'); - } - - writeInt16(value: number): void { - console.warn('shimmed function DataWriter.writeInt16'); - } - - writeInt32(value: number): void { - console.warn('shimmed function DataWriter.writeInt32'); - } - - writeInt64(value: number): void { - console.warn('shimmed function DataWriter.writeInt64'); - } - - writeUInt16(value: number): void { - console.warn('shimmed function DataWriter.writeUInt16'); - } - - writeUInt32(value: number): void { - console.warn('shimmed function DataWriter.writeUInt32'); - } - - writeUInt64(value: number): void { - console.warn('shimmed function DataWriter.writeUInt64'); - } - - writeSingle(value: number): void { - console.warn('shimmed function DataWriter.writeSingle'); - } - - writeDouble(value: number): void { - console.warn('shimmed function DataWriter.writeDouble'); - } - - writeDateTime(value: Date): void { - console.warn('shimmed function DataWriter.writeDateTime'); - } - - writeTimeSpan(value: number): void { - console.warn('shimmed function DataWriter.writeTimeSpan'); - } - - writeString(value: string): number { - throw new Error('shimmed function DataWriter.writeString'); - } - - measureString(value: string): number { - throw new Error('shimmed function DataWriter.measureString'); - } - - storeAsync(): DataWriterStoreOperation { - throw new Error('shimmed function DataWriter.storeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function DataWriter.flushAsync'); - } - - detachBuffer(): IBuffer { - throw new Error('shimmed function DataWriter.detachBuffer'); - } - - detachStream(): IOutputStream { - throw new Error('shimmed function DataWriter.detachStream'); - } - - close(): void { - console.warn('shimmed function DataWriter.close'); - } - - } - export class DataWriterStoreOperation implements Foundation.IAsyncOperation, Foundation.IAsyncInfo { - errorCode: number; - id: number; - status: Foundation.AsyncStatus; - completed: Foundation.AsyncOperationCompletedHandler; - - getResults(): number { - throw new Error('shimmed function DataWriterStoreOperation.getResults'); - } - - cancel(): void { - console.warn('shimmed function DataWriterStoreOperation.cancel'); - } - - close(): void { - console.warn('shimmed function DataWriterStoreOperation.close'); - } - - } - export class FileInputStream implements IInputStream, Foundation.IClosable { - readAsync(buffer: IBuffer, count: number, options: InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function FileInputStream.readAsync'); - } - - close(): void { - console.warn('shimmed function FileInputStream.close'); - } - - } - export enum FileOpenDisposition { - openExisting, - openAlways, - createNew, - createAlways, - truncateExisting, - } - export class FileOutputStream implements IOutputStream, Foundation.IClosable { - writeAsync(buffer: IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function FileOutputStream.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileOutputStream.flushAsync'); - } - - close(): void { - console.warn('shimmed function FileOutputStream.close'); - } - - } - export class FileRandomAccessStream implements IRandomAccessStream, Foundation.IClosable, IInputStream, IOutputStream { - size: number; - canRead: Boolean; - canWrite: Boolean; - position: number; - - getInputStreamAt(position: number): IInputStream { - throw new Error('shimmed function FileRandomAccessStream.getInputStreamAt'); - } - - getOutputStreamAt(position: number): IOutputStream { - throw new Error('shimmed function FileRandomAccessStream.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function FileRandomAccessStream.seek'); - } - - cloneStream(): IRandomAccessStream { - throw new Error('shimmed function FileRandomAccessStream.cloneStream'); - } - - close(): void { - console.warn('shimmed function FileRandomAccessStream.close'); - } - - readAsync(buffer: IBuffer, count: number, options: InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function FileRandomAccessStream.readAsync'); - } - - writeAsync(buffer: IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function FileRandomAccessStream.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.flushAsync'); - } - - static openAsync(filePath: string, accessMode: FileAccessMode): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openAsync'); - } - - static openAsync_1(filePath: string, accessMode: FileAccessMode, sharingOptions: StorageOpenOptions, openDisposition: FileOpenDisposition): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openAsync_1'); - } - - static openTransactedWriteAsync(filePath: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openTransactedWriteAsync'); - } - - static openTransactedWriteAsync_1(filePath: string, openOptions: StorageOpenOptions, openDisposition: FileOpenDisposition): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openTransactedWriteAsync_1'); - } - - static openForUserAsync(user: System.User, filePath: string, accessMode: FileAccessMode): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openForUserAsync'); - } - - static openForUserAsync_1(user: System.User, filePath: string, accessMode: FileAccessMode, sharingOptions: StorageOpenOptions, openDisposition: FileOpenDisposition): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openForUserAsync_1'); - } - - static openTransactedWriteForUserAsync(user: System.User, filePath: string): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openTransactedWriteForUserAsync'); - } - - static openTransactedWriteForUserAsync_1(user: System.User, filePath: string, openOptions: StorageOpenOptions, openDisposition: FileOpenDisposition): Foundation.IAsyncOperation { - throw new Error('shimmed function FileRandomAccessStream.openTransactedWriteForUserAsync_1'); - } - - } - export interface IBuffer { - capacity: number; - length: number; - } - export interface IContentTypeProvider { - contentType: string; - } - export interface IDataReader { - byteOrder: ByteOrder; - inputStreamOptions: InputStreamOptions; - unconsumedBufferLength: number; - unicodeEncoding: UnicodeEncoding; - readByte(): number; - readBytes(value: number[]): void; - readBuffer(length: number): IBuffer; - readBoolean(): Boolean; - readGuid(): string; - readInt16(): number; - readInt32(): number; - readInt64(): number; - readUInt16(): number; - readUInt32(): number; - readUInt64(): number; - readSingle(): number; - readDouble(): number; - readString(codeUnitCount: number): string; - readDateTime(): Date; - readTimeSpan(): number; - loadAsync(count: number): DataReaderLoadOperation; - detachBuffer(): IBuffer; - detachStream(): IInputStream; - } - export interface IDataWriter { - byteOrder: ByteOrder; - unicodeEncoding: UnicodeEncoding; - unstoredBufferLength: number; - writeByte(value: number): void; - writeBytes(value: number[]): void; - writeBuffer(buffer: IBuffer): void; - writeBuffer_1(buffer: IBuffer, start: number, count: number): void; - writeBoolean(value: Boolean): void; - writeGuid(value: string): void; - writeInt16(value: number): void; - writeInt32(value: number): void; - writeInt64(value: number): void; - writeUInt16(value: number): void; - writeUInt32(value: number): void; - writeUInt64(value: number): void; - writeSingle(value: number): void; - writeDouble(value: number): void; - writeDateTime(value: Date): void; - writeTimeSpan(value: number): void; - writeString(value: string): number; - measureString(value: string): number; - storeAsync(): DataWriterStoreOperation; - flushAsync(): Foundation.IAsyncOperation; - detachBuffer(): IBuffer; - detachStream(): IOutputStream; - } - export interface IInputStream extends Foundation.IClosable { - readAsync(buffer: IBuffer, count: number, options: InputStreamOptions): Foundation.IAsyncOperationWithProgress; - } - export interface IInputStreamReference { - openSequentialReadAsync(): Foundation.IAsyncOperation; - } - export class InMemoryRandomAccessStream implements IRandomAccessStream, Foundation.IClosable, IInputStream, IOutputStream { - // constructor(); - size: number = 0; - canRead: Boolean = true; - canWrite: Boolean = true; - position: number = 0; - - getInputStreamAt(position: number): IInputStream { - throw new Error('shimmed function InMemoryRandomAccessStream.getInputStreamAt'); - } - - getOutputStreamAt(position: number): IOutputStream { - throw new Error('shimmed function InMemoryRandomAccessStream.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function InMemoryRandomAccessStream.seek'); - } - - cloneStream(): IRandomAccessStream { - throw new Error('shimmed function InMemoryRandomAccessStream.cloneStream'); - } - - close(): void { - console.warn('shimmed function InMemoryRandomAccessStream.close'); - } - - readAsync(buffer: IBuffer, count: number, options: InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InMemoryRandomAccessStream.readAsync'); - } - - writeAsync(buffer: IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InMemoryRandomAccessStream.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function InMemoryRandomAccessStream.flushAsync'); - } - - } - export enum InputStreamOptions { - none, - partial, - readAhead, - } - export class InputStreamOverStream implements IInputStream, Foundation.IClosable { - readAsync(buffer: IBuffer, count: number, options: InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InputStreamOverStream.readAsync'); - } - - close(): void { - console.warn('shimmed function InputStreamOverStream.close'); - } - - } - export interface IOutputStream extends Foundation.IClosable { - writeAsync(buffer: IBuffer): Foundation.IAsyncOperationWithProgress; - flushAsync(): Foundation.IAsyncOperation; - } - export interface IRandomAccessStream extends Foundation.IClosable, IInputStream, IOutputStream { - canRead: Boolean; - canWrite: Boolean; - position: number; - size: number; - getInputStreamAt(position: number): IInputStream; - getOutputStreamAt(position: number): IOutputStream; - seek(position: number): void; - cloneStream(): IRandomAccessStream; - } - export interface IRandomAccessStreamReference { - openReadAsync(): Foundation.IAsyncOperation; - } - export interface IRandomAccessStreamWithContentType extends IRandomAccessStream, Foundation.IClosable, IInputStream, IOutputStream, IContentTypeProvider { - } - export class OutputStreamOverStream implements IOutputStream, Foundation.IClosable { - writeAsync(buffer: IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function OutputStreamOverStream.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function OutputStreamOverStream.flushAsync'); - } - - close(): void { - console.warn('shimmed function OutputStreamOverStream.close'); - } - - } - export class RandomAccessStream { - static copyAsync(source: IInputStream, destination: IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function RandomAccessStream.copyAsync'); - } - - static copyAsync_1(source: IInputStream, destination: IOutputStream, bytesToCopy: number): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function RandomAccessStream.copyAsync_1'); - } - - static copyAndCloseAsync(source: IInputStream, destination: IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function RandomAccessStream.copyAndCloseAsync'); - } - - } - export class RandomAccessStreamOverStream implements IRandomAccessStream, Foundation.IClosable, IInputStream, IOutputStream { - size: number; - canRead: Boolean; - canWrite: Boolean; - position: number; - - getInputStreamAt(position: number): IInputStream { - throw new Error('shimmed function RandomAccessStreamOverStream.getInputStreamAt'); - } - - getOutputStreamAt(position: number): IOutputStream { - throw new Error('shimmed function RandomAccessStreamOverStream.getOutputStreamAt'); - } - - seek(position: number): void { - console.warn('shimmed function RandomAccessStreamOverStream.seek'); - } - - cloneStream(): IRandomAccessStream { - throw new Error('shimmed function RandomAccessStreamOverStream.cloneStream'); - } - - close(): void { - console.warn('shimmed function RandomAccessStreamOverStream.close'); - } - - readAsync(buffer: IBuffer, count: number, options: InputStreamOptions): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function RandomAccessStreamOverStream.readAsync'); - } - - writeAsync(buffer: IBuffer): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function RandomAccessStreamOverStream.writeAsync'); - } - - flushAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RandomAccessStreamOverStream.flushAsync'); - } - - } - export class RandomAccessStreamReference implements IRandomAccessStreamReference { - openReadAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RandomAccessStreamReference.openReadAsync'); - } - - static createFromFile(file: IStorageFile): RandomAccessStreamReference { - throw new Error('shimmed function RandomAccessStreamReference.createFromFile'); - } - - static createFromUri(uri: Foundation.Uri): RandomAccessStreamReference { - throw new Error('shimmed function RandomAccessStreamReference.createFromUri'); - } - - static createFromStream(stream: IRandomAccessStream): RandomAccessStreamReference { - throw new Error('shimmed function RandomAccessStreamReference.createFromStream'); - } - - } - export enum UnicodeEncoding { - utf8, - utf16LE, - utf16BE, - } - } - export class SystemAudioProperties implements ISystemAudioProperties { - encodingBitrate: string; - - } - export class SystemDataPaths implements ISystemDataPaths { - fonts: string; - programData: string; - public: string; - publicDesktop: string; - publicDocuments: string; - publicDownloads: string; - publicMusic: string; - publicPictures: string; - publicVideos: string; - system: string; - systemArm: string; - systemHost: string; - systemX64: string; - systemX86: string; - userProfiles: string; - windows: string; - - static getDefault(): SystemDataPaths { - throw new Error('shimmed function SystemDataPaths.getDefault'); - } - - } - export class SystemGPSProperties implements ISystemGPSProperties { - latitudeDecimal: string; - longitudeDecimal: string; - - } - export class SystemImageProperties implements ISystemImageProperties { - horizontalSize: string; - verticalSize: string; - - } - export class SystemMediaProperties implements ISystemMediaProperties { - duration: string; - producer: string; - publisher: string; - subTitle: string; - writer: string; - year: string; - - } - export class SystemMusicProperties implements ISystemMusicProperties { - albumArtist: string; - albumTitle: string; - artist: string; - composer: string; - conductor: string; - displayArtist: string; - genre: string; - trackNumber: string; - - } - export class SystemPhotoProperties implements ISystemPhotoProperties { - cameraManufacturer: string; - cameraModel: string; - dateTaken: string; - orientation: string; - peopleNames: string; - - } - export class SystemProperties { - static audio: SystemAudioProperties = null; - static author: string = 'System.Author'; - static comment: string = 'System.Comment'; - static gps: SystemGPSProperties = null; - static image: SystemImageProperties = null; - static itemNameDisplay: string = 'System.ItemNameDisplay'; - static keywords: string = 'System.Keywords'; - static media: SystemMediaProperties = null; - static music: SystemMusicProperties = null; - static photo: SystemPhotoProperties = null; - static rating: string = 'System.Rating'; - static title: string = 'System.Title'; - static video: SystemVideoProperties = null; - - } - export class SystemVideoProperties implements ISystemVideoProperties { - director: string; - frameHeight: string; - frameWidth: string; - orientation: string; - totalBitrate: string; - - } - export class UserDataPaths implements IUserDataPaths { - cameraRoll: string; - cookies: string; - desktop: string; - documents: string; - downloads: string; - favorites: string; - history: string; - internetCache: string; - localAppData: string; - localAppDataLow: string; - music: string; - pictures: string; - profile: string; - recent: string; - roamingAppData: string; - savedPictures: string; - screenshots: string; - templates: string; - videos: string; - - static getForUser(user: System.User): UserDataPaths { - throw new Error('shimmed function UserDataPaths.getForUser'); - } - - static getDefault(): UserDataPaths { - throw new Error('shimmed function UserDataPaths.getDefault'); - } - - } - } - export namespace System { - export class AppActivationResult implements IAppActivationResult { - appResourceGroupInfo: AppResourceGroupInfo; - extendedError: number; - - } - export class AppDiagnosticInfo implements IAppDiagnosticInfo, IAppDiagnosticInfo2, IAppDiagnosticInfo3 { - appInfo: ApplicationModel.AppInfo; - - getResourceGroups(): AppResourceGroupInfo[] { - throw new Error('shimmed function AppDiagnosticInfo.getResourceGroups'); - } - - createResourceGroupWatcher(): AppResourceGroupInfoWatcher { - throw new Error('shimmed function AppDiagnosticInfo.createResourceGroupWatcher'); - } - - launchAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppDiagnosticInfo.launchAsync'); - } - - static createWatcher(): AppDiagnosticInfoWatcher { - throw new Error('shimmed function AppDiagnosticInfo.createWatcher'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppDiagnosticInfo.requestAccessAsync'); - } - - static requestInfoForPackageAsync(packageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppDiagnosticInfo.requestInfoForPackageAsync'); - } - - static requestInfoForAppAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppDiagnosticInfo.requestInfoForAppAsync'); - } - - static requestInfoForAppAsync_1(appUserModelId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function AppDiagnosticInfo.requestInfoForAppAsync_1'); - } - - static requestInfoAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppDiagnosticInfo.requestInfoAsync'); - } - - } - export class AppDiagnosticInfoWatcher implements IAppDiagnosticInfoWatcher { - status: AppDiagnosticInfoWatcherStatus; - - start(): void { - console.warn('shimmed function AppDiagnosticInfoWatcher.start'); - } - - stop(): void { - console.warn('shimmed function AppDiagnosticInfoWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppDiagnosticInfoWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppDiagnosticInfoWatcherEventArgs implements IAppDiagnosticInfoWatcherEventArgs { - appDiagnosticInfo: AppDiagnosticInfo; - - } - export enum AppDiagnosticInfoWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export class AppExecutionStateChangeResult implements IAppExecutionStateChangeResult { - extendedError: number; - - } - export class AppMemoryReport implements IAppMemoryReport, IAppMemoryReport2 { - peakPrivateCommitUsage: number; - privateCommitUsage: number; - totalCommitLimit: number; - totalCommitUsage: number; - expectedTotalCommitLimit: number; - - } - export enum AppMemoryUsageLevel { - low, - medium, - high, - overLimit, - } - export class AppMemoryUsageLimitChangingEventArgs implements IAppMemoryUsageLimitChangingEventArgs { - newLimit: number; - oldLimit: number; - - } - export class AppResourceGroupBackgroundTaskReport implements IAppResourceGroupBackgroundTaskReport { - entryPoint: string; - name: string; - taskId: string; - trigger: string; - - } - export enum AppResourceGroupEnergyQuotaState { - unknown, - over, - under, - } - export enum AppResourceGroupExecutionState { - unknown, - running, - suspending, - suspended, - notRunning, - } - export class AppResourceGroupInfo implements IAppResourceGroupInfo, IAppResourceGroupInfo2 { - instanceId: string; - isShared: Boolean; - - getBackgroundTaskReports(): AppResourceGroupBackgroundTaskReport[] { - throw new Error('shimmed function AppResourceGroupInfo.getBackgroundTaskReports'); - } - - getMemoryReport(): AppResourceGroupMemoryReport { - throw new Error('shimmed function AppResourceGroupInfo.getMemoryReport'); - } - - getProcessDiagnosticInfos(): Diagnostics.ProcessDiagnosticInfo[] { - throw new Error('shimmed function AppResourceGroupInfo.getProcessDiagnosticInfos'); - } - - getStateReport(): AppResourceGroupStateReport { - throw new Error('shimmed function AppResourceGroupInfo.getStateReport'); - } - - startSuspendAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppResourceGroupInfo.startSuspendAsync'); - } - - startResumeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppResourceGroupInfo.startResumeAsync'); - } - - startTerminateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppResourceGroupInfo.startTerminateAsync'); - } - - } - export class AppResourceGroupInfoWatcher implements IAppResourceGroupInfoWatcher { - status: AppResourceGroupInfoWatcherStatus; - - start(): void { - console.warn('shimmed function AppResourceGroupInfoWatcher.start'); - } - - stop(): void { - console.warn('shimmed function AppResourceGroupInfoWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppResourceGroupInfoWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "executionstatechanged": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppResourceGroupInfoWatcherEventArgs implements IAppResourceGroupInfoWatcherEventArgs { - appDiagnosticInfos: AppDiagnosticInfo[]; - appResourceGroupInfo: AppResourceGroupInfo; - - } - export class AppResourceGroupInfoWatcherExecutionStateChangedEventArgs implements IAppResourceGroupInfoWatcherExecutionStateChangedEventArgs { - appDiagnosticInfos: AppDiagnosticInfo[]; - appResourceGroupInfo: AppResourceGroupInfo; - - } - export enum AppResourceGroupInfoWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export class AppResourceGroupMemoryReport implements IAppResourceGroupMemoryReport { - commitUsageLevel: AppMemoryUsageLevel; - commitUsageLimit: number; - privateCommitUsage: number; - totalCommitUsage: number; - - } - export class AppResourceGroupStateReport implements IAppResourceGroupStateReport { - energyQuotaState: AppResourceGroupEnergyQuotaState; - executionState: AppResourceGroupExecutionState; - - } - export class AppUriHandlerHost implements IAppUriHandlerHost { - // constructor(name: string); - // constructor(); - constructor(name: string) {} - - name: string = ''; - - } - export class AppUriHandlerRegistration implements IAppUriHandlerRegistration { - name: string; - user: User; - - getAppAddedHostsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppUriHandlerRegistration.getAppAddedHostsAsync'); - } - - setAppAddedHostsAsync(hosts: Foundation.Collections.IIterable): Foundation.IAsyncAction { - throw new Error('shimmed function AppUriHandlerRegistration.setAppAddedHostsAsync'); - } - - } - export class AppUriHandlerRegistrationManager implements IAppUriHandlerRegistrationManager { - user: User; - - tryGetRegistration(name: string): AppUriHandlerRegistration { - throw new Error('shimmed function AppUriHandlerRegistrationManager.tryGetRegistration'); - } - - static getDefault(): AppUriHandlerRegistrationManager { - throw new Error('shimmed function AppUriHandlerRegistrationManager.getDefault'); - } - - static getForUser(user: User): AppUriHandlerRegistrationManager { - throw new Error('shimmed function AppUriHandlerRegistrationManager.getForUser'); - } - - } - export enum AutoUpdateTimeZoneStatus { - attempted, - timedOut, - failed, - } - export class DateTimeSettings { - static setSystemDateTime(utcDateTime: Date): void { - console.warn('shimmed function DateTimeSettings.setSystemDateTime'); - } - - } - export enum DiagnosticAccessStatus { - unspecified, - denied, - limited, - allowed, - } - export namespace Diagnostics { - export namespace DevicePortal { - export class DevicePortalConnection implements IDevicePortalConnection, IDevicePortalWebSocketConnection { - getServerMessageWebSocketForRequest(request: Web.Http.HttpRequestMessage): Networking.Sockets.ServerMessageWebSocket { - throw new Error('shimmed function DevicePortalConnection.getServerMessageWebSocketForRequest'); - } - - getServerMessageWebSocketForRequest_1(request: Web.Http.HttpRequestMessage, messageType: Networking.Sockets.SocketMessageType, protocol: string): Networking.Sockets.ServerMessageWebSocket { - throw new Error('shimmed function DevicePortalConnection.getServerMessageWebSocketForRequest_1'); - } - - getServerMessageWebSocketForRequest_2(request: Web.Http.HttpRequestMessage, messageType: Networking.Sockets.SocketMessageType, protocol: string, outboundBufferSizeInBytes: number, maxMessageSize: number, receiveMode: Networking.Sockets.MessageWebSocketReceiveMode): Networking.Sockets.ServerMessageWebSocket { - throw new Error('shimmed function DevicePortalConnection.getServerMessageWebSocketForRequest_2'); - } - - getServerStreamWebSocketForRequest(request: Web.Http.HttpRequestMessage): Networking.Sockets.ServerStreamWebSocket { - throw new Error('shimmed function DevicePortalConnection.getServerStreamWebSocketForRequest'); - } - - getServerStreamWebSocketForRequest_1(request: Web.Http.HttpRequestMessage, protocol: string, outboundBufferSizeInBytes: number, noDelay: Boolean): Networking.Sockets.ServerStreamWebSocket { - throw new Error('shimmed function DevicePortalConnection.getServerStreamWebSocketForRequest_1'); - } - - static getForAppServiceConnection(appServiceConnection: ApplicationModel.AppService.AppServiceConnection): DevicePortalConnection { - throw new Error('shimmed function DevicePortalConnection.getForAppServiceConnection'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DevicePortalConnection::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "requestreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class DevicePortalConnectionClosedEventArgs implements IDevicePortalConnectionClosedEventArgs { - reason: DevicePortalConnectionClosedReason; - - } - export enum DevicePortalConnectionClosedReason { - unknown, - resourceLimitsExceeded, - protocolError, - notAuthorized, - userNotPresent, - serviceTerminated, - } - export class DevicePortalConnectionRequestReceivedEventArgs implements IDevicePortalConnectionRequestReceivedEventArgs, IDevicePortalWebSocketConnectionRequestReceivedEventArgs { - requestMessage: Web.Http.HttpRequestMessage; - responseMessage: Web.Http.HttpResponseMessage; - isWebSocketUpgradeRequest: Boolean; - webSocketProtocolsRequested: string[]; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function DevicePortalConnectionRequestReceivedEventArgs.getDeferral'); - } - - } - } - export class DiagnosticActionResult implements IDiagnosticActionResult { - extendedError: number; - results: Foundation.Collections.ValueSet; - - } - export enum DiagnosticActionState { - initializing, - downloading, - verifyingTrust, - detecting, - resolving, - verifyingResolution, - } - export class DiagnosticInvoker implements IDiagnosticInvoker, IDiagnosticInvoker2 { - static isSupported: Boolean = true; - - runDiagnosticActionAsync(context: Data.Json.JsonObject): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function DiagnosticInvoker.runDiagnosticActionAsync'); - } - - runDiagnosticActionFromStringAsync(context: string): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function DiagnosticInvoker.runDiagnosticActionFromStringAsync'); - } - - static getDefault(): DiagnosticInvoker { - throw new Error('shimmed function DiagnosticInvoker.getDefault'); - } - - static getForUser(user: User): DiagnosticInvoker { - throw new Error('shimmed function DiagnosticInvoker.getForUser'); - } - - } - export class ProcessCpuUsage implements IProcessCpuUsage { - getReport(): ProcessCpuUsageReport { - throw new Error('shimmed function ProcessCpuUsage.getReport'); - } - - } - export class ProcessCpuUsageReport implements IProcessCpuUsageReport { - kernelTime: number; - userTime: number; - - } - export class ProcessDiagnosticInfo implements IProcessDiagnosticInfo, IProcessDiagnosticInfo2 { - cpuUsage: ProcessCpuUsage; - diskUsage: ProcessDiskUsage; - executableFileName: string; - memoryUsage: ProcessMemoryUsage; - parent: ProcessDiagnosticInfo; - processId: number; - processStartTime: Date; - isPackaged: Boolean; - - getAppDiagnosticInfos(): AppDiagnosticInfo[] { - throw new Error('shimmed function ProcessDiagnosticInfo.getAppDiagnosticInfos'); - } - - static tryGetForProcessId(processId: number): ProcessDiagnosticInfo { - throw new Error('shimmed function ProcessDiagnosticInfo.tryGetForProcessId'); - } - - static getForProcesses(): ProcessDiagnosticInfo[] { - throw new Error('shimmed function ProcessDiagnosticInfo.getForProcesses'); - } - - static getForCurrentProcess(): ProcessDiagnosticInfo { - throw new Error('shimmed function ProcessDiagnosticInfo.getForCurrentProcess'); - } - - } - export class ProcessDiskUsage implements IProcessDiskUsage { - getReport(): ProcessDiskUsageReport { - throw new Error('shimmed function ProcessDiskUsage.getReport'); - } - - } - export class ProcessDiskUsageReport implements IProcessDiskUsageReport { - bytesReadCount: number; - bytesWrittenCount: number; - otherBytesCount: number; - otherOperationCount: number; - readOperationCount: number; - writeOperationCount: number; - - } - export class ProcessMemoryUsage implements IProcessMemoryUsage { - getReport(): ProcessMemoryUsageReport { - throw new Error('shimmed function ProcessMemoryUsage.getReport'); - } - - } - export class ProcessMemoryUsageReport implements IProcessMemoryUsageReport { - nonPagedPoolSizeInBytes: number; - pageFaultCount: number; - pageFileSizeInBytes: number; - pagedPoolSizeInBytes: number; - peakNonPagedPoolSizeInBytes: number; - peakPageFileSizeInBytes: number; - peakPagedPoolSizeInBytes: number; - peakVirtualMemorySizeInBytes: number; - peakWorkingSetSizeInBytes: number; - privatePageCount: number; - virtualMemorySizeInBytes: number; - workingSetSizeInBytes: number; - - } - export class SystemCpuUsage implements ISystemCpuUsage { - getReport(): SystemCpuUsageReport { - throw new Error('shimmed function SystemCpuUsage.getReport'); - } - - } - export class SystemCpuUsageReport implements ISystemCpuUsageReport { - idleTime: number; - kernelTime: number; - userTime: number; - - } - export class SystemDiagnosticInfo implements ISystemDiagnosticInfo { - cpuUsage: SystemCpuUsage; - memoryUsage: SystemMemoryUsage; - - static getForCurrentSystem(): SystemDiagnosticInfo { - throw new Error('shimmed function SystemDiagnosticInfo.getForCurrentSystem'); - } - - } - export class SystemMemoryUsage implements ISystemMemoryUsage { - getReport(): SystemMemoryUsageReport { - throw new Error('shimmed function SystemMemoryUsage.getReport'); - } - - } - export class SystemMemoryUsageReport implements ISystemMemoryUsageReport { - availableSizeInBytes: number; - committedSizeInBytes: number; - totalPhysicalSizeInBytes: number; - - } - export namespace Telemetry { - export class PlatformTelemetryClient { - static register(id: string): PlatformTelemetryRegistrationResult { - throw new Error('shimmed function PlatformTelemetryClient.register'); - } - - static register_1(id: string, settings: PlatformTelemetryRegistrationSettings): PlatformTelemetryRegistrationResult { - throw new Error('shimmed function PlatformTelemetryClient.register_1'); - } - - } - export class PlatformTelemetryRegistrationResult implements IPlatformTelemetryRegistrationResult { - status: PlatformTelemetryRegistrationStatus; - - } - export class PlatformTelemetryRegistrationSettings implements IPlatformTelemetryRegistrationSettings { - // constructor(); - uploadQuotaSize: number = 0; - storageSize: number = 8388608; - - } - export enum PlatformTelemetryRegistrationStatus { - success, - settingsOutOfRange, - unknownFailure, - } - } - export namespace TraceReporting { - export class PlatformDiagnosticActions { - static isScenarioEnabled(scenarioId: string): Boolean { - throw new Error('shimmed function PlatformDiagnosticActions.isScenarioEnabled'); - } - - static tryEscalateScenario(scenarioId: string, escalationType: PlatformDiagnosticEscalationType, outputDirectory: string, timestampOutputDirectory: Boolean, forceEscalationUpload: Boolean, triggers: string[]): Boolean { - throw new Error('shimmed function PlatformDiagnosticActions.tryEscalateScenario'); - } - - static downloadLatestSettingsForNamespace(partner: string, feature: string, isScenarioNamespace: Boolean, downloadOverCostedNetwork: Boolean, downloadOverBattery: Boolean): PlatformDiagnosticActionState { - throw new Error('shimmed function PlatformDiagnosticActions.downloadLatestSettingsForNamespace'); - } - - static getActiveScenarioList(): string[] { - throw new Error('shimmed function PlatformDiagnosticActions.getActiveScenarioList'); - } - - static forceUpload(latency: PlatformDiagnosticEventBufferLatencies, uploadOverCostedNetwork: Boolean, uploadOverBattery: Boolean): PlatformDiagnosticActionState { - throw new Error('shimmed function PlatformDiagnosticActions.forceUpload'); - } - - static isTraceRunning(slotType: PlatformDiagnosticTraceSlotType, scenarioId: string, traceProfileHash: number): PlatformDiagnosticTraceSlotState { - throw new Error('shimmed function PlatformDiagnosticActions.isTraceRunning'); - } - - static getActiveTraceRuntime(slotType: PlatformDiagnosticTraceSlotType): PlatformDiagnosticTraceRuntimeInfo { - throw new Error('shimmed function PlatformDiagnosticActions.getActiveTraceRuntime'); - } - - static getKnownTraceList(slotType: PlatformDiagnosticTraceSlotType): PlatformDiagnosticTraceInfo[] { - throw new Error('shimmed function PlatformDiagnosticActions.getKnownTraceList'); - } - - } - export enum PlatformDiagnosticActionState { - success, - freeNetworkNotAvailable, - acpowerNotAvailable, - } - export enum PlatformDiagnosticEscalationType { - onCompletion, - onFailure, - } - export enum PlatformDiagnosticEventBufferLatencies { - normal = 1, - costDeferred, - realtime = 4, - } - export class PlatformDiagnosticTraceInfo implements IPlatformDiagnosticTraceInfo { - isAutoLogger: Boolean; - isExclusive: Boolean; - maxTraceDurationFileTime: number; - priority: PlatformDiagnosticTracePriority; - profileHash: number; - scenarioId: string; - - } - export enum PlatformDiagnosticTracePriority { - normal, - userElevated, - } - export class PlatformDiagnosticTraceRuntimeInfo implements IPlatformDiagnosticTraceRuntimeInfo { - etwRuntimeFileTime: number; - runtimeFileTime: number; - - } - export enum PlatformDiagnosticTraceSlotState { - notRunning, - running, - throttled, - } - export enum PlatformDiagnosticTraceSlotType { - alternative, - alwaysOn, - mini, - } - } - } - export class DispatcherQueue implements IDispatcherQueue, IDispatcherQueue2 { - hasThreadAccess: Boolean; - - createTimer(): DispatcherQueueTimer { - throw new Error('shimmed function DispatcherQueue.createTimer'); - } - - tryEnqueue(callback: DispatcherQueueHandler): Boolean { - throw new Error('shimmed function DispatcherQueue.tryEnqueue'); - } - - tryEnqueue_1(priority: DispatcherQueuePriority, callback: DispatcherQueueHandler): Boolean { - throw new Error('shimmed function DispatcherQueue.tryEnqueue_1'); - } - - static getForCurrentThread(): DispatcherQueue { - throw new Error('shimmed function DispatcherQueue.getForCurrentThread'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DispatcherQueue::addEventListener: ${name}`); - switch (name) { - case "shutdowncompleted": // Foundation.TypedEventHandler - case "shutdownstarting": // Foundation.TypedEventHandler - break; - } - - } - } - export class DispatcherQueueController implements IDispatcherQueueController { - dispatcherQueue: DispatcherQueue; - - shutdownQueueAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function DispatcherQueueController.shutdownQueueAsync'); - } - - static createOnDedicatedThread(): DispatcherQueueController { - throw new Error('shimmed function DispatcherQueueController.createOnDedicatedThread'); - } - - } - export type DispatcherQueueHandler = () => void; - export enum DispatcherQueuePriority { - low = -10, - normal = 0, - high = 10, - } - export class DispatcherQueueShutdownStartingEventArgs implements IDispatcherQueueShutdownStartingEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function DispatcherQueueShutdownStartingEventArgs.getDeferral'); - } - - } - export class DispatcherQueueTimer implements IDispatcherQueueTimer { - isRepeating: Boolean; - interval: number; - isRunning: Boolean; - - start(): void { - console.warn('shimmed function DispatcherQueueTimer.start'); - } - - stop(): void { - console.warn('shimmed function DispatcherQueueTimer.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DispatcherQueueTimer::addEventListener: ${name}`); - switch (name) { - case "tick": // Foundation.TypedEventHandler - break; - } - - } - } - export namespace Display { - export class DisplayRequest implements IDisplayRequest { - // constructor(); - requestActive(): void { - console.warn('shimmed function DisplayRequest.requestActive'); - } - - requestRelease(): void { - console.warn('shimmed function DisplayRequest.requestRelease'); - } - - } - } - export class FolderLauncherOptions implements IFolderLauncherOptions, ILauncherViewOptions { - // constructor(); - itemsToSelect: Storage.IStorageItem[] = [ ]; - desiredRemainingView: UI.ViewManagement.ViewSizePreference = ViewSizePreference.default; - - } - export interface ILauncherViewOptions { - desiredRemainingView: UI.ViewManagement.ViewSizePreference; - } - export namespace Inventory { - export class InstalledDesktopApp implements IInstalledDesktopApp, Foundation.IStringable { - displayName: string; - displayVersion: string; - id: string; - publisher: string; - - static getInventoryAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function InstalledDesktopApp.getInventoryAsync'); - } - - } - } - export class KnownUserProperties { - static accountName: string = 'accountName'; - static displayName: string = 'displayName'; - static domainName: string = 'domainName'; - static firstName: string = 'firstName'; - static guestHost: string = 'guestHost'; - static lastName: string = 'lastName'; - static principalName: string = 'principalName'; - static providerName: string = 'providerName'; - static sessionInitiationProtocolUri: string = 'sipUri'; - - } - export class Launcher { - static launchFolderPathAsync(path: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFolderPathAsync'); - } - - static launchFolderPathAsync_1(path: string, options: FolderLauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFolderPathAsync_1'); - } - - static launchFolderPathForUserAsync(user: User, path: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFolderPathForUserAsync'); - } - - static launchFolderPathForUserAsync_1(user: User, path: string, options: FolderLauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFolderPathForUserAsync_1'); - } - - static queryAppUriSupportAsync(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.queryAppUriSupportAsync'); - } - - static queryAppUriSupportAsync_1(uri: Foundation.Uri, packageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.queryAppUriSupportAsync_1'); - } - - static findAppUriHandlersAsync(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.findAppUriHandlersAsync'); - } - - static launchUriForUserAsync(user: User, uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriForUserAsync'); - } - - static launchUriForUserAsync_1(user: User, uri: Foundation.Uri, options: LauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriForUserAsync_1'); - } - - static launchUriForUserAsync_2(user: User, uri: Foundation.Uri, options: LauncherOptions, inputData: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriForUserAsync_2'); - } - - static launchUriForResultsForUserAsync(user: User, uri: Foundation.Uri, options: LauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriForResultsForUserAsync'); - } - - static launchUriForResultsForUserAsync_1(user: User, uri: Foundation.Uri, options: LauncherOptions, inputData: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriForResultsForUserAsync_1'); - } - - static launchFileAsync(file: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFileAsync'); - } - - static launchFileAsync_1(file: Storage.IStorageFile, options: LauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFileAsync_1'); - } - - static launchUriAsync(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriAsync'); - } - - static launchUriAsync_1(uri: Foundation.Uri, options: LauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriAsync_1'); - } - - static launchFolderAsync(folder: Storage.IStorageFolder): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFolderAsync'); - } - - static launchFolderAsync_1(folder: Storage.IStorageFolder, options: FolderLauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchFolderAsync_1'); - } - - static launchUriForResultsAsync(uri: Foundation.Uri, options: LauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriForResultsAsync'); - } - - static launchUriForResultsAsync_1(uri: Foundation.Uri, options: LauncherOptions, inputData: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriForResultsAsync_1'); - } - - static launchUriAsync_2(uri: Foundation.Uri, options: LauncherOptions, inputData: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.launchUriAsync_2'); - } - - static queryUriSupportAsync(uri: Foundation.Uri, launchQuerySupportType: LaunchQuerySupportType): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.queryUriSupportAsync'); - } - - static queryUriSupportAsync_1(uri: Foundation.Uri, launchQuerySupportType: LaunchQuerySupportType, packageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.queryUriSupportAsync_1'); - } - - static queryFileSupportAsync(file: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.queryFileSupportAsync'); - } - - static queryFileSupportAsync_1(file: Storage.StorageFile, packageFamilyName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.queryFileSupportAsync_1'); - } - - static findUriSchemeHandlersAsync(scheme: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.findUriSchemeHandlersAsync'); - } - - static findUriSchemeHandlersAsync_1(scheme: string, launchQuerySupportType: LaunchQuerySupportType): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.findUriSchemeHandlersAsync_1'); - } - - static findFileHandlersAsync(extension: string): Foundation.IAsyncOperation { - throw new Error('shimmed function Launcher.findFileHandlersAsync'); - } - - } - export class LauncherOptions implements ILauncherOptions2, ILauncherOptions, ILauncherOptions3, ILauncherOptions4, ILauncherViewOptions { - // constructor(); - treatAsUntrusted: Boolean = false; - preferredApplicationPackageFamilyName: string = ''; - preferredApplicationDisplayName: string = ''; - fallbackUri: Foundation.Uri; - displayApplicationPicker: Boolean = false; - contentType: string = ''; - ui: LauncherUIOptions = null; - targetApplicationPackageFamilyName: string = ''; - neighboringFilesQuery: Storage.Search.StorageFileQueryResult; - ignoreAppUriHandlers: Boolean = false; - limitPickerToCurrentAppAndAppUriHandlers: Boolean = false; - desiredRemainingView: UI.ViewManagement.ViewSizePreference = ViewSizePreference.default; - - } - export class LauncherUIOptions implements ILauncherUIOptions { - selectionRect: Foundation.Rect | null; - preferredPlacement: UI.Popups.Placement; - invocationPoint: Foundation.Point | null; - - } - export enum LaunchFileStatus { - success, - appUnavailable, - deniedByPolicy, - fileTypeNotSupported, - unknown, - } - export enum LaunchQuerySupportStatus { - available, - appNotInstalled, - appUnavailable, - notSupported, - unknown, - } - export enum LaunchQuerySupportType { - uri, - uriForResults, - } - export class LaunchUriResult implements ILaunchUriResult { - result: Foundation.Collections.ValueSet; - status: LaunchUriStatus; - - } - export enum LaunchUriStatus { - success, - appUnavailable, - protocolUnavailable, - unknown, - } - export class MemoryManager { - static appMemoryUsage: number = 185610240; - static appMemoryUsageLevel: AppMemoryUsageLevel = AppMemoryUsageLevel.low; - static appMemoryUsageLimit: number = 31125544960; - static expectedAppMemoryUsageLimit: number = 18446744073709551615; - - static trySetAppMemoryUsageLimit(value: number): Boolean { - throw new Error('shimmed function MemoryManager.trySetAppMemoryUsageLimit'); - } - - static getAppMemoryReport(): AppMemoryReport { - throw new Error('shimmed function MemoryManager.getAppMemoryReport'); - } - - static getProcessMemoryReport(): ProcessMemoryReport { - throw new Error('shimmed function MemoryManager.getProcessMemoryReport'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`MemoryManager::addEventListener: ${name}`); - switch (name) { - case "appmemoryusagedecreased": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "appmemoryusageincreased": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "appmemoryusagelimitchanging": // /* System.EventHandler`1[[Windows.System.AppMemoryUsageLimitChangingEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export namespace Power { - export class BackgroundEnergyManager { - static excessiveUsageLevel: number = 0; - static lowUsageLevel: number = 0; - static maxAcceptableUsageLevel: number = 0; - static nearMaxAcceptableUsageLevel: number = 0; - static nearTerminationUsageLevel: number = 0; - static recentEnergyUsage: number = 0; - static recentEnergyUsageLevel: number = 0; - static terminationUsageLevel: number = 0; - - static addEventListener(name: string, handler: Function) { - console.warn(`BackgroundEnergyManager::addEventListener: ${name}`); - switch (name) { - case "recentenergyusageincreased": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "recentenergyusagereturnedtolow": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum BatteryStatus { - notPresent, - discharging, - idle, - charging, - } - export namespace Diagnostics { - export class BackgroundEnergyDiagnostics { - static deviceSpecificConversionFactor: number = 0; - - static computeTotalEnergyUsage(): number { - throw new Error('shimmed function BackgroundEnergyDiagnostics.computeTotalEnergyUsage'); - } - - static resetTotalEnergyUsage(): void { - console.warn('shimmed function BackgroundEnergyDiagnostics.resetTotalEnergyUsage'); - } - - } - export class ForegroundEnergyDiagnostics { - static deviceSpecificConversionFactor: number = 0; - - static computeTotalEnergyUsage(): number { - throw new Error('shimmed function ForegroundEnergyDiagnostics.computeTotalEnergyUsage'); - } - - static resetTotalEnergyUsage(): void { - console.warn('shimmed function ForegroundEnergyDiagnostics.resetTotalEnergyUsage'); - } - - } - } - export enum EnergySaverStatus { - disabled, - off, - on, - } - export class ForegroundEnergyManager { - static excessiveUsageLevel: number = 0; - static lowUsageLevel: number = 0; - static maxAcceptableUsageLevel: number = 0; - static nearMaxAcceptableUsageLevel: number = 0; - static recentEnergyUsage: number = 0; - static recentEnergyUsageLevel: number = 0; - - static addEventListener(name: string, handler: Function) { - console.warn(`ForegroundEnergyManager::addEventListener: ${name}`); - switch (name) { - case "recentenergyusageincreased": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "recentenergyusagereturnedtolow": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class PowerManager { - static batteryStatus: BatteryStatus = BatteryStatus.notPresent; - static energySaverStatus: EnergySaverStatus = EnergySaverStatus.disabled; - static powerSupplyStatus: PowerSupplyStatus = PowerSupplyStatus.adequate; - static remainingChargePercent: number = 100; - static remainingDischargeTime: number = 922337203685477; - - static addEventListener(name: string, handler: Function) { - console.warn(`PowerManager::addEventListener: ${name}`); - switch (name) { - case "batterystatuschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "energysaverstatuschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "powersupplystatuschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "remainingchargepercentchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "remainingdischargetimechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum PowerSupplyStatus { - notPresent, - inadequate, - adequate, - } - } - export enum PowerState { - connectedStandby, - sleepS3, - } - export namespace Preview { - export enum HingeState { - unknown, - closed, - concave, - flat, - convex, - full, - } - export class TwoPanelHingedDevicePosturePreview implements ITwoPanelHingedDevicePosturePreview { - getCurrentPostureAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TwoPanelHingedDevicePosturePreview.getCurrentPostureAsync'); - } - - static getDefaultAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TwoPanelHingedDevicePosturePreview.getDefaultAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TwoPanelHingedDevicePosturePreview::addEventListener: ${name}`); - switch (name) { - case "posturechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class TwoPanelHingedDevicePosturePreviewReading implements ITwoPanelHingedDevicePosturePreviewReading { - hingeState: HingeState; - panel1Id: string; - panel1Orientation: Devices.Sensors.SimpleOrientation; - panel2Id: string; - panel2Orientation: Devices.Sensors.SimpleOrientation; - timestamp: Date; - - } - export class TwoPanelHingedDevicePosturePreviewReadingChangedEventArgs implements ITwoPanelHingedDevicePosturePreviewReadingChangedEventArgs { - reading: TwoPanelHingedDevicePosturePreviewReading; - - } - } - export class ProcessLauncher { - static runToCompletionAsync(fileName: string, args: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ProcessLauncher.runToCompletionAsync'); - } - - static runToCompletionAsync_1(fileName: string, args: string, options: ProcessLauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function ProcessLauncher.runToCompletionAsync_1'); - } - - } - export class ProcessLauncherOptions implements IProcessLauncherOptions { - // constructor(); - workingDirectory: string = ''; - standardOutput: Storage.Streams.IOutputStream; - standardInput: Storage.Streams.IInputStream; - standardError: Storage.Streams.IOutputStream; - - } - export class ProcessLauncherResult implements IProcessLauncherResult { - exitCode: number; - - } - export class ProcessMemoryReport implements IProcessMemoryReport { - privateWorkingSetUsage: number; - totalWorkingSetUsage: number; - - } - export enum ProcessorArchitecture { - x86, - arm = 5, - x64 = 9, - neutral = 11, - arm64, - x86OnArm64 = 14, - unknown = 65535, - } - export namespace Profile { - export class AnalyticsInfo { - static deviceForm: string = 'Unknown'; - static versionInfo: AnalyticsVersionInfo = null; - - static getSystemPropertiesAsync(attributeNames: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function AnalyticsInfo.getSystemPropertiesAsync'); - } - - } - export class AnalyticsVersionInfo implements IAnalyticsVersionInfo { - deviceFamily: string; - deviceFamilyVersion: string; - - } - export class AppApplicability { - static getUnsupportedAppRequirements(capabilities: Foundation.Collections.IIterable): UnsupportedAppRequirement[] { - throw new Error('shimmed function AppApplicability.getUnsupportedAppRequirements'); - } - - } - export class EducationSettings { - static isEducationEnvironment: Boolean = false; - - } - export class HardwareIdentification { - static getPackageSpecificToken(nonce: Storage.Streams.IBuffer): HardwareToken { - throw new Error('shimmed function HardwareIdentification.getPackageSpecificToken'); - } - - } - export class HardwareToken implements IHardwareToken { - certificate: Storage.Streams.IBuffer; - id: Storage.Streams.IBuffer; - signature: Storage.Streams.IBuffer; - - } - export class KnownRetailInfoProperties { - static batteryLifeDescription: string = 'BatteryLifeDescription'; - static displayDescription: string = 'DisplayDescription'; - static displayModelName: string = 'DisplayModelName'; - static formFactor: string = 'FormFactor'; - static frontCameraDescription: string = 'FrontCameraDescription'; - static graphicsDescription: string = 'GraphicsDescription'; - static hasNfc: string = 'HasNfc'; - static hasOpticalDrive: string = 'HasOpticalDrive'; - static hasSdSlot: string = 'HasSdSlot'; - static isFeatured: string = 'IsFeatured'; - static isOfficeInstalled: string = 'IsOfficeInstalled'; - static manufacturerName: string = 'ManufacturerName'; - static memory: string = 'Memory'; - static modelName: string = 'ModelName'; - static price: string = 'Price'; - static processorDescription: string = 'ProcessorDescription'; - static rearCameraDescription: string = 'RearCameraDescription'; - static retailAccessCode: string = 'RetailAccessCode'; - static screenSize: string = 'ScreenSize'; - static storageDescription: string = 'StorageDescription'; - static weight: string = 'Weight'; - static windowsEdition: string = 'WindowsEdition'; - - } - export enum PlatformDataCollectionLevel { - security, - basic, - enhanced, - full, - } - export class PlatformDiagnosticsAndUsageDataSettings { - static collectionLevel: PlatformDataCollectionLevel = PlatformDataCollectionLevel.full; - - static canCollectDiagnostics(level: PlatformDataCollectionLevel): Boolean { - throw new Error('shimmed function PlatformDiagnosticsAndUsageDataSettings.canCollectDiagnostics'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`PlatformDiagnosticsAndUsageDataSettings::addEventListener: ${name}`); - switch (name) { - case "collectionlevelchanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export interface ProfileHardwareTokenContract { - } - export interface ProfileRetailInfoContract { - } - export interface ProfileSharedModeContract { - } - export class RetailInfo { - static isDemoModeEnabled: Boolean = false; - static properties: string[] = [ ]; - - } - export class SharedModeSettings { - static isEnabled: Boolean = false; - static shouldAvoidLocalStorage: Boolean = false; - - } - export class SystemIdentification { - static getSystemIdForPublisher(): SystemIdentificationInfo { - throw new Error('shimmed function SystemIdentification.getSystemIdForPublisher'); - } - - static getSystemIdForUser(user: User): SystemIdentificationInfo { - throw new Error('shimmed function SystemIdentification.getSystemIdForUser'); - } - - } - export class SystemIdentificationInfo implements ISystemIdentificationInfo { - id: Storage.Streams.IBuffer; - source: SystemIdentificationSource; - - } - export enum SystemIdentificationSource { - none, - tpm, - uefi, - registry, - } - export namespace SystemManufacturers { - export class OemSupportInfo implements IOemSupportInfo { - supportAppLink: Foundation.Uri; - supportLink: Foundation.Uri; - supportProvider: string; - - } - export class SmbiosInformation { - static serialNumber: string; - - } - export interface SystemManufacturersContract { - } - export class SystemSupportDeviceInfo implements ISystemSupportDeviceInfo { - friendlyName: string; - operatingSystem: string; - systemFirmwareVersion: string; - systemHardwareVersion: string; - systemManufacturer: string; - systemProductName: string; - systemSku: string; - - } - export class SystemSupportInfo { - static localSystemEdition: string = 'Professional'; - static oemSupportInfo: OemSupportInfo = null; - static localDeviceInfo: SystemSupportDeviceInfo = null; - - } - } - export enum SystemOutOfBoxExperienceState { - notStarted, - inProgress, - completed, - } - export class SystemSetupInfo { - static outOfBoxExperienceState: SystemOutOfBoxExperienceState = SystemOutOfBoxExperienceState.completed; - - static addEventListener(name: string, handler: Function) { - console.warn(`SystemSetupInfo::addEventListener: ${name}`); - switch (name) { - case "outofboxexperiencestatechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class UnsupportedAppRequirement implements IUnsupportedAppRequirement { - reasons: UnsupportedAppRequirementReasons; - requirement: string; - - } - export enum UnsupportedAppRequirementReasons { - unknown, - deniedBySystem, - } - export class WindowsIntegrityPolicy { - static canDisable: Boolean = false; - static isDisableSupported: Boolean = false; - static isEnabled: Boolean = false; - static isEnabledForTrial: Boolean = false; - - static addEventListener(name: string, handler: Function) { - console.warn(`WindowsIntegrityPolicy::addEventListener: ${name}`); - switch (name) { - case "policychanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - } - export class ProtocolForResultsOperation implements IProtocolForResultsOperation { - reportCompleted(data: Foundation.Collections.ValueSet): void { - console.warn('shimmed function ProtocolForResultsOperation.reportCompleted'); - } - - } - export namespace RemoteDesktop { - export class InteractiveSession { - static isRemote: Boolean = false; - - } - } - export class RemoteLauncher { - static launchUriAsync(remoteSystemConnectionRequest: RemoteSystems.RemoteSystemConnectionRequest, uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteLauncher.launchUriAsync'); - } - - static launchUriAsync_1(remoteSystemConnectionRequest: RemoteSystems.RemoteSystemConnectionRequest, uri: Foundation.Uri, options: RemoteLauncherOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteLauncher.launchUriAsync_1'); - } - - static launchUriAsync_2(remoteSystemConnectionRequest: RemoteSystems.RemoteSystemConnectionRequest, uri: Foundation.Uri, options: RemoteLauncherOptions, inputData: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteLauncher.launchUriAsync_2'); - } - - } - export class RemoteLauncherOptions implements IRemoteLauncherOptions { - // constructor(); - fallbackUri: Foundation.Uri; - preferredAppIds: string[] = [ ]; - - } - export enum RemoteLaunchUriStatus { - unknown, - success, - appUnavailable, - protocolUnavailable, - remoteSystemUnavailable, - valueSetTooLarge, - deniedByLocalSystem, - deniedByRemoteSystem, - } - export namespace RemoteSystems { - export interface IRemoteSystemFilter { - } - export class KnownRemoteSystemCapabilities { - static appService: string = 'CDP/AppService'; - static launchUri: string = 'CDP/LaunchUri'; - static remoteSession: string = 'CDP/RemoteSession'; - static spatialEntity: string = 'Perception/SpatialEntity'; - - } - export class RemoteSystem implements IRemoteSystem, IRemoteSystem2, IRemoteSystem3, IRemoteSystem4, IRemoteSystem5, IRemoteSystem6 { - displayName: string; - id: string; - isAvailableByProximity: Boolean; - kind: string; - status: RemoteSystemStatus; - isAvailableBySpatialProximity: Boolean; - manufacturerDisplayName: string; - modelDisplayName: string; - platform: RemoteSystemPlatform; - apps: RemoteSystemApp[]; - user: User; - - getCapabilitySupportedAsync(capabilityName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystem.getCapabilitySupportedAsync'); - } - - static createWatcherForUser(user: User): RemoteSystemWatcher { - throw new Error('shimmed function RemoteSystem.createWatcherForUser'); - } - - static createWatcherForUser_1(user: User, filters: Foundation.Collections.IIterable): RemoteSystemWatcher { - throw new Error('shimmed function RemoteSystem.createWatcherForUser_1'); - } - - static isAuthorizationKindEnabled(kind: RemoteSystemAuthorizationKind): Boolean { - throw new Error('shimmed function RemoteSystem.isAuthorizationKindEnabled'); - } - - static findByHostNameAsync(hostName: Networking.HostName): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystem.findByHostNameAsync'); - } - - static createWatcher(): RemoteSystemWatcher { - throw new Error('shimmed function RemoteSystem.createWatcher'); - } - - static createWatcher_1(filters: Foundation.Collections.IIterable): RemoteSystemWatcher { - throw new Error('shimmed function RemoteSystem.createWatcher_1'); - } - - static requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystem.requestAccessAsync'); - } - - } - export enum RemoteSystemAccessStatus { - unspecified, - allowed, - deniedByUser, - deniedBySystem, - } - export class RemoteSystemAddedEventArgs implements IRemoteSystemAddedEventArgs { - remoteSystem: RemoteSystem; - - } - export class RemoteSystemApp implements IRemoteSystemApp, IRemoteSystemApp2 { - attributes: string[]; - displayName: string; - id: string; - isAvailableByProximity: Boolean; - isAvailableBySpatialProximity: Boolean; - connectionToken: string; - user: User; - - } - export class RemoteSystemAppRegistration implements IRemoteSystemAppRegistration { - attributes: string[]; - user: User; - - saveAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemAppRegistration.saveAsync'); - } - - static getDefault(): RemoteSystemAppRegistration { - throw new Error('shimmed function RemoteSystemAppRegistration.getDefault'); - } - - static getForUser(user: User): RemoteSystemAppRegistration { - throw new Error('shimmed function RemoteSystemAppRegistration.getForUser'); - } - - } - export enum RemoteSystemAuthorizationKind { - sameUser, - anonymous, - } - export class RemoteSystemAuthorizationKindFilter implements IRemoteSystemAuthorizationKindFilter, IRemoteSystemFilter { - // constructor(remoteSystemAuthorizationKind: RemoteSystemAuthorizationKind); - constructor(remoteSystemAuthorizationKind: RemoteSystemAuthorizationKind) {} - - remoteSystemAuthorizationKind: RemoteSystemAuthorizationKind; - - } - export class RemoteSystemConnectionInfo implements IRemoteSystemConnectionInfo { - isProximal: Boolean; - - static tryCreateFromAppServiceConnection(connection: ApplicationModel.AppService.AppServiceConnection): RemoteSystemConnectionInfo { - throw new Error('shimmed function RemoteSystemConnectionInfo.tryCreateFromAppServiceConnection'); - } - - } - export class RemoteSystemConnectionRequest implements IRemoteSystemConnectionRequest, IRemoteSystemConnectionRequest2, IRemoteSystemConnectionRequest3 { - // constructor(remoteSystem: RemoteSystem); - constructor(remoteSystem: RemoteSystem) {} - - remoteSystem: RemoteSystem; - remoteSystemApp: RemoteSystemApp; - connectionToken: string; - - static createFromConnectionToken(connectionToken: string): RemoteSystemConnectionRequest { - throw new Error('shimmed function RemoteSystemConnectionRequest.createFromConnectionToken'); - } - - static createFromConnectionTokenForUser(user: User, connectionToken: string): RemoteSystemConnectionRequest { - throw new Error('shimmed function RemoteSystemConnectionRequest.createFromConnectionTokenForUser'); - } - - static createForApp(remoteSystemApp: RemoteSystemApp): RemoteSystemConnectionRequest { - throw new Error('shimmed function RemoteSystemConnectionRequest.createForApp'); - } - - } - export enum RemoteSystemDiscoveryType { - any, - proximal, - cloud, - spatiallyProximal, - } - export class RemoteSystemDiscoveryTypeFilter implements IRemoteSystemDiscoveryTypeFilter, IRemoteSystemFilter { - // constructor(discoveryType: RemoteSystemDiscoveryType); - constructor(discoveryType: RemoteSystemDiscoveryType) {} - - remoteSystemDiscoveryType: RemoteSystemDiscoveryType; - - } - export class RemoteSystemEnumerationCompletedEventArgs implements IRemoteSystemEnumerationCompletedEventArgs { - } - export class RemoteSystemKindFilter implements IRemoteSystemKindFilter, IRemoteSystemFilter { - // constructor(remoteSystemKinds: Foundation.Collections.IIterable); - constructor(remoteSystemKinds: Foundation.Collections.IIterable) {} - - remoteSystemKinds: string[]; - - } - export class RemoteSystemKinds { - static desktop: string = 'Desktop'; - static holographic: string = 'Holographic'; - static hub: string = 'Hub'; - static phone: string = 'Phone'; - static xbox: string = 'Xbox'; - static iot: string = 'Iot'; - static laptop: string = 'Laptop'; - static tablet: string = 'Tablet'; - - } - export enum RemoteSystemPlatform { - unknown, - windows, - android, - ios, - linux, - } - export class RemoteSystemRemovedEventArgs implements IRemoteSystemRemovedEventArgs { - remoteSystemId: string; - - } - export class RemoteSystemSession implements IRemoteSystemSession, Foundation.IClosable { - controllerDisplayName: string; - displayName: string; - id: string; - - createParticipantWatcher(): RemoteSystemSessionParticipantWatcher { - throw new Error('shimmed function RemoteSystemSession.createParticipantWatcher'); - } - - sendInvitationAsync(invitee: RemoteSystem): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemSession.sendInvitationAsync'); - } - - close(): void { - console.warn('shimmed function RemoteSystemSession.close'); - } - - static createWatcher(): RemoteSystemSessionWatcher { - throw new Error('shimmed function RemoteSystemSession.createWatcher'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RemoteSystemSession::addEventListener: ${name}`); - switch (name) { - case "disconnected": // Foundation.TypedEventHandler - break; - } - - } - } - export class RemoteSystemSessionAddedEventArgs implements IRemoteSystemSessionAddedEventArgs { - sessionInfo: RemoteSystemSessionInfo; - - } - export class RemoteSystemSessionController implements IRemoteSystemSessionController { - // constructor(displayName: string); - // constructor(displayName: string, options: RemoteSystemSessionOptions); - constructor(displayName: string, options: RemoteSystemSessionOptions) {} - - removeParticipantAsync(pParticipant: RemoteSystemSessionParticipant): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemSessionController.removeParticipantAsync'); - } - - createSessionAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemSessionController.createSessionAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RemoteSystemSessionController::addEventListener: ${name}`); - switch (name) { - case "joinrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RemoteSystemSessionCreationResult implements IRemoteSystemSessionCreationResult { - session: RemoteSystemSession; - status: RemoteSystemSessionCreationStatus; - - } - export enum RemoteSystemSessionCreationStatus { - success, - sessionLimitsExceeded, - operationAborted, - } - export class RemoteSystemSessionDisconnectedEventArgs implements IRemoteSystemSessionDisconnectedEventArgs { - reason: RemoteSystemSessionDisconnectedReason; - - } - export enum RemoteSystemSessionDisconnectedReason { - sessionUnavailable, - removedByController, - sessionClosed, - } - export class RemoteSystemSessionInfo implements IRemoteSystemSessionInfo { - controllerDisplayName: string; - displayName: string; - - joinAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemSessionInfo.joinAsync'); - } - - } - export class RemoteSystemSessionInvitation implements IRemoteSystemSessionInvitation { - sender: RemoteSystem; - sessionInfo: RemoteSystemSessionInfo; - - } - export class RemoteSystemSessionInvitationListener implements IRemoteSystemSessionInvitationListener { - // constructor(); - addEventListener(name: string, handler: Function) { - console.warn(`RemoteSystemSessionInvitationListener::addEventListener: ${name}`); - switch (name) { - case "invitationreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class RemoteSystemSessionInvitationReceivedEventArgs implements IRemoteSystemSessionInvitationReceivedEventArgs { - invitation: RemoteSystemSessionInvitation; - - } - export class RemoteSystemSessionJoinRequest implements IRemoteSystemSessionJoinRequest { - participant: RemoteSystemSessionParticipant; - - accept(): void { - console.warn('shimmed function RemoteSystemSessionJoinRequest.accept'); - } - - } - export class RemoteSystemSessionJoinRequestedEventArgs implements IRemoteSystemSessionJoinRequestedEventArgs { - joinRequest: RemoteSystemSessionJoinRequest; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function RemoteSystemSessionJoinRequestedEventArgs.getDeferral'); - } - - } - export class RemoteSystemSessionJoinResult implements IRemoteSystemSessionJoinResult { - session: RemoteSystemSession; - status: RemoteSystemSessionJoinStatus; - - } - export enum RemoteSystemSessionJoinStatus { - success, - sessionLimitsExceeded, - operationAborted, - sessionUnavailable, - rejectedByController, - } - export class RemoteSystemSessionMessageChannel implements IRemoteSystemSessionMessageChannel { - // constructor(session: RemoteSystemSession, channelName: string); - // constructor(session: RemoteSystemSession, channelName: string, reliability: RemoteSystemSessionMessageChannelReliability); - constructor(session: RemoteSystemSession, channelName: string, reliability: RemoteSystemSessionMessageChannelReliability) {} - - session: RemoteSystemSession; - - broadcastValueSetAsync(messageData: Foundation.Collections.ValueSet): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemSessionMessageChannel.broadcastValueSetAsync'); - } - - sendValueSetAsync(messageData: Foundation.Collections.ValueSet, participant: RemoteSystemSessionParticipant): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemSessionMessageChannel.sendValueSetAsync'); - } - - sendValueSetToParticipantsAsync(messageData: Foundation.Collections.ValueSet, participants: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function RemoteSystemSessionMessageChannel.sendValueSetToParticipantsAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RemoteSystemSessionMessageChannel::addEventListener: ${name}`); - switch (name) { - case "valuesetreceived": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RemoteSystemSessionMessageChannelReliability { - reliable, - unreliable, - } - export class RemoteSystemSessionOptions implements IRemoteSystemSessionOptions { - // constructor(); - isInviteOnly: Boolean = false; - - } - export class RemoteSystemSessionParticipant implements IRemoteSystemSessionParticipant { - remoteSystem: RemoteSystem; - - getHostNames(): Networking.HostName[] { - throw new Error('shimmed function RemoteSystemSessionParticipant.getHostNames'); - } - - } - export class RemoteSystemSessionParticipantAddedEventArgs implements IRemoteSystemSessionParticipantAddedEventArgs { - participant: RemoteSystemSessionParticipant; - - } - export class RemoteSystemSessionParticipantRemovedEventArgs implements IRemoteSystemSessionParticipantRemovedEventArgs { - participant: RemoteSystemSessionParticipant; - - } - export class RemoteSystemSessionParticipantWatcher implements IRemoteSystemSessionParticipantWatcher { - status: RemoteSystemSessionParticipantWatcherStatus; - - start(): void { - console.warn('shimmed function RemoteSystemSessionParticipantWatcher.start'); - } - - stop(): void { - console.warn('shimmed function RemoteSystemSessionParticipantWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RemoteSystemSessionParticipantWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RemoteSystemSessionParticipantWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export class RemoteSystemSessionRemovedEventArgs implements IRemoteSystemSessionRemovedEventArgs { - sessionInfo: RemoteSystemSessionInfo; - - } - export class RemoteSystemSessionUpdatedEventArgs implements IRemoteSystemSessionUpdatedEventArgs { - sessionInfo: RemoteSystemSessionInfo; - - } - export class RemoteSystemSessionValueSetReceivedEventArgs implements IRemoteSystemSessionValueSetReceivedEventArgs { - message: Foundation.Collections.ValueSet; - sender: RemoteSystemSessionParticipant; - - } - export class RemoteSystemSessionWatcher implements IRemoteSystemSessionWatcher { - status: RemoteSystemSessionWatcherStatus; - - start(): void { - console.warn('shimmed function RemoteSystemSessionWatcher.start'); - } - - stop(): void { - console.warn('shimmed function RemoteSystemSessionWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RemoteSystemSessionWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RemoteSystemSessionWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export enum RemoteSystemStatus { - unavailable, - discoveringAvailability, - available, - unknown, - } - export enum RemoteSystemStatusType { - any, - available, - } - export class RemoteSystemStatusTypeFilter implements IRemoteSystemStatusTypeFilter, IRemoteSystemFilter { - // constructor(remoteSystemStatusType: RemoteSystemStatusType); - constructor(remoteSystemStatusType: RemoteSystemStatusType) {} - - remoteSystemStatusType: RemoteSystemStatusType; - - } - export class RemoteSystemUpdatedEventArgs implements IRemoteSystemUpdatedEventArgs { - remoteSystem: RemoteSystem; - - } - export class RemoteSystemWatcher implements IRemoteSystemWatcher, IRemoteSystemWatcher2, IRemoteSystemWatcher3 { - user: User; - - start(): void { - console.warn('shimmed function RemoteSystemWatcher.start'); - } - - stop(): void { - console.warn('shimmed function RemoteSystemWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RemoteSystemWatcher::addEventListener: ${name}`); - switch (name) { - case "remotesystemadded": // Foundation.TypedEventHandler - case "remotesystemremoved": // Foundation.TypedEventHandler - case "remotesystemupdated": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "erroroccurred": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RemoteSystemWatcherError { - unknown, - internetNotAvailable, - authenticationError, - } - export class RemoteSystemWatcherErrorOccurredEventArgs implements IRemoteSystemWatcherErrorOccurredEventArgs { - error: RemoteSystemWatcherError; - - } - export class RemoteSystemWebAccountFilter implements IRemoteSystemWebAccountFilter, IRemoteSystemFilter { - // constructor(account: Security.Credentials.WebAccount); - constructor(account: Security.Credentials.WebAccount) {} - - account: Security.Credentials.WebAccount; - - } - } - export enum ShutdownKind { - shutdown, - restart, - } - export class ShutdownManager { - static isPowerStateSupported(powerState: PowerState): Boolean { - throw new Error('shimmed function ShutdownManager.isPowerStateSupported'); - } - - static enterPowerState(powerState: PowerState): void { - console.warn('shimmed function ShutdownManager.enterPowerState'); - } - - static enterPowerState_1(powerState: PowerState, wakeUpAfter: number): void { - console.warn('shimmed function ShutdownManager.enterPowerState_1'); - } - - static beginShutdown(shutdownKind: ShutdownKind, timeout: number): void { - console.warn('shimmed function ShutdownManager.beginShutdown'); - } - - static cancelShutdown(): void { - console.warn('shimmed function ShutdownManager.cancelShutdown'); - } - - } - export interface SystemManagementContract { - } - export namespace Threading { - export namespace Core { - export class PreallocatedWorkItem implements IPreallocatedWorkItem { - // constructor(handler: WorkItemHandler); - // constructor(handler: WorkItemHandler, priority: WorkItemPriority); - // constructor(handler: WorkItemHandler, priority: WorkItemPriority, options: WorkItemOptions); - constructor(handler: WorkItemHandler, priority: WorkItemPriority, options: WorkItemOptions) {} - - runAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function PreallocatedWorkItem.runAsync'); - } - - } - export type SignalHandler = (timedOut: Boolean) => void; - export class SignalNotifier implements ISignalNotifier { - enable(): void { - console.warn('shimmed function SignalNotifier.enable'); - } - - terminate(): void { - console.warn('shimmed function SignalNotifier.terminate'); - } - - static attachToEvent(name: string, handler: SignalHandler): SignalNotifier { - throw new Error('shimmed function SignalNotifier.attachToEvent'); - } - - static attachToEvent_1(name: string, handler: SignalHandler, timeout: number): SignalNotifier { - throw new Error('shimmed function SignalNotifier.attachToEvent_1'); - } - - static attachToSemaphore(name: string, handler: SignalHandler): SignalNotifier { - throw new Error('shimmed function SignalNotifier.attachToSemaphore'); - } - - static attachToSemaphore_1(name: string, handler: SignalHandler, timeout: number): SignalNotifier { - throw new Error('shimmed function SignalNotifier.attachToSemaphore_1'); - } - - } - } - export class ThreadPool { - static runAsync(handler: WorkItemHandler): Foundation.IAsyncAction { - throw new Error('shimmed function ThreadPool.runAsync'); - } - - static runAsync_1(handler: WorkItemHandler, priority: WorkItemPriority): Foundation.IAsyncAction { - throw new Error('shimmed function ThreadPool.runAsync_1'); - } - - static runAsync_2(handler: WorkItemHandler, priority: WorkItemPriority, options: WorkItemOptions): Foundation.IAsyncAction { - throw new Error('shimmed function ThreadPool.runAsync_2'); - } - - } - export class ThreadPoolTimer implements IThreadPoolTimer { - delay: number; - period: number; - - cancel(): void { - console.warn('shimmed function ThreadPoolTimer.cancel'); - } - - static createPeriodicTimer(handler: TimerElapsedHandler, period: number): ThreadPoolTimer { - throw new Error('shimmed function ThreadPoolTimer.createPeriodicTimer'); - } - - static createTimer(handler: TimerElapsedHandler, delay: number): ThreadPoolTimer { - throw new Error('shimmed function ThreadPoolTimer.createTimer'); - } - - static createPeriodicTimer_1(handler: TimerElapsedHandler, period: number, destroyed: TimerDestroyedHandler): ThreadPoolTimer { - throw new Error('shimmed function ThreadPoolTimer.createPeriodicTimer_1'); - } - - static createTimer_1(handler: TimerElapsedHandler, delay: number, destroyed: TimerDestroyedHandler): ThreadPoolTimer { - throw new Error('shimmed function ThreadPoolTimer.createTimer_1'); - } - - } - export type TimerDestroyedHandler = () => void; - export type TimerElapsedHandler = () => void; - export type WorkItemHandler = () => void; - export enum WorkItemOptions { - none, - timeSliced, - } - export enum WorkItemPriority { - low = -1, - normal, - high, - } - } - export class TimeZoneSettings { - static canChangeTimeZone: Boolean = false; - static currentTimeZoneDisplayName: string = '(UTC+00:00) Dublin, Edinburgh, Lisbon, London'; - static supportedTimeZoneDisplayNames: string[] = [ '(UTC+14:00) Kiritimati Island', '(UTC+13:00) Samoa', '(UTC+13:00) Nuku'alofa', '(UTC+13:00) Co-ordinated Universal Time+13', '(UTC+12:45) Chatham Islands', '(UTC+12:00) Auckland, Wellington', '(UTC+12:00) Petropavlovsk-Kamchatsky - Old', '(UTC+12:00) Anadyr, Petropavlovsk-Kamchatsky', '(UTC+12:00) Fiji', '(UTC+12:00) Co-ordinated Universal Time+12', '(UTC+11:00) Norfolk Island', '(UTC+11:00) Chokurdakh', '(UTC+11:00) Magadan', '(UTC+11:00) Sakhalin', '(UTC+11:00) Bougainville Island', '(UTC+11:00) Solomon Is., New Caledonia', '(UTC+10:30) Lord Howe Island', '(UTC+10:00) Canberra, Melbourne, Sydney', '(UTC+10:00) Guam, Port Moresby', '(UTC+10:00) Hobart', '(UTC+10:00) Brisbane', '(UTC+10:00) Vladivostok', '(UTC+09:30) Darwin', '(UTC+09:30) Adelaide', '(UTC+09:00) Seoul', '(UTC+09:00) Pyongyang', '(UTC+09:00) Yakutsk', '(UTC+09:00) Osaka, Sapporo, Tokyo', '(UTC+09:00) Chita', '(UTC+08:45) Eucla', '(UTC+08:00) Perth', '(UTC+08:00) Ulaanbaatar', '(UTC+08:00) Beijing, Chongqing, Hong Kong SAR, Urumqi', '(UTC+08:00) Taipei', '(UTC+08:00) Kuala Lumpur, Singapore', '(UTC+08:00) Irkutsk', '(UTC+07:00) Hovd', '(UTC+07:00) Tomsk', '(UTC+07:00) Bangkok, Hanoi, Jakarta', '(UTC+07:00) Novosibirsk', '(UTC+07:00) Krasnoyarsk', '(UTC+07:00) Barnaul, Gorno-Altaysk', '(UTC+06:30) Yangon (Rangoon)', '(UTC+06:00) Astana', '(UTC+06:00) Dhaka', '(UTC+06:00) Omsk', '(UTC+05:45) Kathmandu', '(UTC+05:30) Sri Jayawardenepura', '(UTC+05:30) Chennai, Kolkata, Mumbai, New Delhi', '(UTC+05:00) Ekaterinburg', '(UTC+05:00) Islamabad, Karachi', '(UTC+05:00) Ashgabat, Tashkent', '(UTC+05:00) Qyzylorda', '(UTC+04:30) Kabul', '(UTC+04:00) Yerevan', '(UTC+04:00) Volgograd', '(UTC+04:00) Saratov', '(UTC+04:00) Tbilisi', '(UTC+04:00) Astrakhan, Ulyanovsk', '(UTC+04:00) Izhevsk, Samara', '(UTC+04:00) Baku', '(UTC+04:00) Abu Dhabi, Muscat', '(UTC+04:00) Port Louis', '(UTC+03:30) Tehran', '(UTC+03:00) Minsk', '(UTC+03:00) Moscow, St Petersburg', '(UTC+03:00) Kuwait, Riyadh', '(UTC+03:00) Baghdad', '(UTC+03:00) Istanbul', '(UTC+03:00) Nairobi', '(UTC+02:00) Beirut', '(UTC+02:00) Windhoek', '(UTC+02:00) Juba', '(UTC+02:00) Khartoum', '(UTC+02:00) Tripoli', '(UTC+02:00) Kaliningrad', '(UTC+02:00) Amman', '(UTC+02:00) Jerusalem', '(UTC+02:00) Cairo', '(UTC+02:00) Chisinau', '(UTC+02:00) Athens, Bucharest', '(UTC+02:00) Damascus', '(UTC+02:00) Harare, Pretoria', '(UTC+02:00) Helsinki, Kyiv, Riga, Sofia, Tallinn, Vilnius', '(UTC+02:00) Gaza, Hebron', '(UTC+01:00) Belgrade, Bratislava, Budapest, Ljubljana, Prague', '(UTC+01:00) Sarajevo, Skopje, Warsaw, Zagreb', '(UTC+01:00) Brussels, Copenhagen, Madrid, Paris', '(UTC+01:00) West Central Africa', '(UTC+01:00) Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna', '(UTC+01:00) Casablanca', '(UTC) Co-ordinated Universal Time', '(UTC+00:00) Monrovia, Reykjavik', '(UTC+00:00) Dublin, Edinburgh, Lisbon, London', '(UTC+00:00) Sao Tome', '(UTC-01:00) Azores', '(UTC-01:00) Cabo Verde Is.', '(UTC-02:00) Mid-Atlantic - Old', '(UTC-02:00) Co-ordinated Universal Time-02', '(UTC-03:00) Greenland', '(UTC-03:00) Punta Arenas', '(UTC-03:00) Araguaina', '(UTC-03:00) Brasilia', '(UTC-03:00) Cayenne, Fortaleza', '(UTC-03:00) City of Buenos Aires', '(UTC-03:00) Montevideo', '(UTC-03:00) Salvador', '(UTC-03:00) Saint Pierre and Miquelon', '(UTC-03:30) Newfoundland', '(UTC-04:00) Asuncion', '(UTC-04:00) Georgetown, La Paz, Manaus, San Juan', '(UTC-04:00) Santiago', '(UTC-04:00) Caracas', '(UTC-04:00) Cuiaba', '(UTC-04:00) Atlantic Time (Canada)', '(UTC-05:00) Turks and Caicos', '(UTC-05:00) Indiana (East)', '(UTC-05:00) Eastern Time (US & Canada)', '(UTC-05:00) Chetumal', '(UTC-05:00) Bogota, Lima, Quito, Rio Branco', '(UTC-05:00) Haiti', '(UTC-05:00) Havana', '(UTC-06:00) Guadalajara, Mexico City, Monterrey', '(UTC-06:00) Central Time (US & Canada)', '(UTC-06:00) Easter Island', '(UTC-06:00) Central America', '(UTC-06:00) Saskatchewan', '(UTC-07:00) Chihuahua, La Paz, Mazatlan', '(UTC-07:00) Arizona', '(UTC-07:00) Mountain Time (US & Canada)', '(UTC-07:00) Yukon', '(UTC-08:00) Pacific Time (US & Canada)', '(UTC-08:00) Co-ordinated Universal Time-08', '(UTC-08:00) Baja California', '(UTC-09:00) Alaska', '(UTC-09:00) Co-ordinated Universal Time-09', '(UTC-09:30) Marquesas Islands', '(UTC-10:00) Aleutian Islands', '(UTC-10:00) Hawaii', '(UTC-11:00) Co-ordinated Universal Time-11', '(UTC-12:00) International Date Line West' ]; - - static autoUpdateTimeZoneAsync(timeout: number): Foundation.IAsyncOperation { - throw new Error('shimmed function TimeZoneSettings.autoUpdateTimeZoneAsync'); - } - - static changeTimeZoneByDisplayName(timeZoneDisplayName: string): void { - console.warn('shimmed function TimeZoneSettings.changeTimeZoneByDisplayName'); - } - - } - export namespace Update { - export enum SystemUpdateAttentionRequiredReason { - none, - networkRequired, - insufficientDiskSpace, - insufficientBattery, - updateBlocked, - } - export class SystemUpdateItem implements ISystemUpdateItem { - description: string; - downloadProgress: number; - extendedError: number; - id: string; - installProgress: number; - revision: number; - state: SystemUpdateItemState; - title: string; - - } - export enum SystemUpdateItemState { - notStarted, - initializing, - preparing, - calculating, - downloading, - installing, - completed, - rebootRequired, - error, - } - export class SystemUpdateLastErrorInfo implements ISystemUpdateLastErrorInfo { - extendedError: number; - isInteractive: Boolean; - state: SystemUpdateManagerState; - - } - export class SystemUpdateManager { - static attentionRequiredReason: SystemUpdateAttentionRequiredReason = SystemUpdateAttentionRequiredReason.none; - static downloadProgress: number = 0; - static extendedError: number = null; - static installProgress: number = 0; - static lastErrorInfo: SystemUpdateLastErrorInfo; - static lastUpdateCheckTime: Date = new Date(-11644473600000); - static lastUpdateInstallTime: Date = new Date(-11644473600000); - static state: SystemUpdateManagerState = SystemUpdateManagerState.error; - static userActiveHoursEnd: number = 0; - static userActiveHoursMax: number = 0; - static userActiveHoursStart: number = 0; - - static isSupported(): Boolean { - throw new Error('shimmed function SystemUpdateManager.isSupported'); - } - - static trySetUserActiveHours(start: number, end: number): Boolean { - throw new Error('shimmed function SystemUpdateManager.trySetUserActiveHours'); - } - - static getAutomaticRebootBlockIds(): string[] { - throw new Error('shimmed function SystemUpdateManager.getAutomaticRebootBlockIds'); - } - - static blockAutomaticRebootAsync(lockId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SystemUpdateManager.blockAutomaticRebootAsync'); - } - - static unblockAutomaticRebootAsync(lockId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SystemUpdateManager.unblockAutomaticRebootAsync'); - } - - static getUpdateItems(): SystemUpdateItem[] { - throw new Error('shimmed function SystemUpdateManager.getUpdateItems'); - } - - static setFlightRing(flightRing: string): Boolean { - throw new Error('shimmed function SystemUpdateManager.setFlightRing'); - } - - static getFlightRing(): string { - throw new Error('shimmed function SystemUpdateManager.getFlightRing'); - } - - static startInstall(action: SystemUpdateStartInstallAction): void { - console.warn('shimmed function SystemUpdateManager.startInstall'); - } - - static rebootToCompleteInstall(): void { - console.warn('shimmed function SystemUpdateManager.rebootToCompleteInstall'); - } - - static startCancelUpdates(): void { - console.warn('shimmed function SystemUpdateManager.startCancelUpdates'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`SystemUpdateManager::addEventListener: ${name}`); - switch (name) { - case "statechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum SystemUpdateManagerState { - idle, - detecting, - readyToDownload, - downloading, - readyToInstall, - installing, - rebootRequired, - readyToFinalize, - finalizing, - completed, - attentionRequired, - error, - } - export enum SystemUpdateStartInstallAction { - upToReboot, - allowReboot, - } - } - export class User implements IUser { - authenticationStatus: UserAuthenticationStatus; - nonRoamableId: string; - type: UserType; - - getPropertyAsync(value: string): Foundation.IAsyncOperation { - throw new Error('shimmed function User.getPropertyAsync'); - } - - getPropertiesAsync(values: string[]): Foundation.IAsyncOperation { - throw new Error('shimmed function User.getPropertiesAsync'); - } - - getPictureAsync(desiredSize: UserPictureSize): Foundation.IAsyncOperation { - throw new Error('shimmed function User.getPictureAsync'); - } - - static createWatcher(): UserWatcher { - throw new Error('shimmed function User.createWatcher'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function User.findAllAsync'); - } - - static findAllAsync_1(type: UserType): Foundation.IAsyncOperation { - throw new Error('shimmed function User.findAllAsync_1'); - } - - static findAllAsync_2(type: UserType, status: UserAuthenticationStatus): Foundation.IAsyncOperation { - throw new Error('shimmed function User.findAllAsync_2'); - } - - static getFromId(nonRoamableId: string): User { - throw new Error('shimmed function User.getFromId'); - } - - } - export enum UserAuthenticationStatus { - unauthenticated, - locallyAuthenticated, - remotelyAuthenticated, - } - export class UserAuthenticationStatusChangeDeferral implements IUserAuthenticationStatusChangeDeferral { - complete(): void { - console.warn('shimmed function UserAuthenticationStatusChangeDeferral.complete'); - } - - } - export class UserAuthenticationStatusChangingEventArgs implements IUserAuthenticationStatusChangingEventArgs { - currentStatus: UserAuthenticationStatus; - newStatus: UserAuthenticationStatus; - user: User; - - getDeferral(): UserAuthenticationStatusChangeDeferral { - throw new Error('shimmed function UserAuthenticationStatusChangingEventArgs.getDeferral'); - } - - } - export class UserChangedEventArgs implements IUserChangedEventArgs { - user: User; - - } - export class UserDeviceAssociation { - static findUserFromDeviceId(deviceId: string): User { - throw new Error('shimmed function UserDeviceAssociation.findUserFromDeviceId'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`UserDeviceAssociation::addEventListener: ${name}`); - switch (name) { - case "userdeviceassociationchanged": // /* System.EventHandler`1[[Windows.System.UserDeviceAssociationChangedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export class UserDeviceAssociationChangedEventArgs implements IUserDeviceAssociationChangedEventArgs { - deviceId: string; - newUser: User; - oldUser: User; - - } - export class UserPicker implements IUserPicker { - // constructor(); - suggestedSelectedUser: User; - allowGuestAccounts: Boolean = false; - - pickSingleUserAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserPicker.pickSingleUserAsync'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function UserPicker.isSupported'); - } - - } - export enum UserPictureSize { - size64x64, - size208x208, - size424x424, - size1080x1080, - } - export namespace UserProfile { - export enum AccountPictureKind { - smallImage, - largeImage, - video, - } - export class AdvertisingManager { - static advertisingId: string = ''; - - static getForUser(user: User): AdvertisingManagerForUser { - throw new Error('shimmed function AdvertisingManager.getForUser'); - } - - } - export class AdvertisingManagerForUser implements IAdvertisingManagerForUser { - advertisingId: string; - user: User; - - } - export class AssignedAccessSettings implements IAssignedAccessSettings { - isEnabled: Boolean; - isSingleAppKioskMode: Boolean; - user: User; - - static getDefault(): AssignedAccessSettings { - throw new Error('shimmed function AssignedAccessSettings.getDefault'); - } - - static getForUser(user: User): AssignedAccessSettings { - throw new Error('shimmed function AssignedAccessSettings.getForUser'); - } - - } - export class DiagnosticsSettings implements IDiagnosticsSettings { - canUseDiagnosticsToTailorExperiences: Boolean; - user: User; - - static getDefault(): DiagnosticsSettings { - throw new Error('shimmed function DiagnosticsSettings.getDefault'); - } - - static getForUser(user: User): DiagnosticsSettings { - throw new Error('shimmed function DiagnosticsSettings.getForUser'); - } - - } - export class FirstSignInSettings implements IFirstSignInSettings, Foundation.Collections.IMapView, Foundation.Collections.IIterable> { - size: number; - - lookup(key: string): any { - throw new Error('shimmed function FirstSignInSettings.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function FirstSignInSettings.hasKey'); - } - - split(): { first: string[], second: string[] } { - throw new Error('shimmed function FirstSignInSettings.split'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function FirstSignInSettings.first'); - } - - static getDefault(): FirstSignInSettings { - throw new Error('shimmed function FirstSignInSettings.getDefault'); - } - - } - export class GlobalizationPreferences { - static calendars: string[] = [ 'GregorianCalendar' ]; - static clocks: string[] = [ '24HourClock' ]; - static currencies: string[] = [ 'GBP' ]; - static homeGeographicRegion: string = 'GB'; - static languages: string[] = [ 'en-GB' ]; - static weekStartsOn: Globalization.DayOfWeek = DayOfWeek.monday; - - static getForUser(user: User): GlobalizationPreferencesForUser { - throw new Error('shimmed function GlobalizationPreferences.getForUser'); - } - - static trySetHomeGeographicRegion(region: string): Boolean { - throw new Error('shimmed function GlobalizationPreferences.trySetHomeGeographicRegion'); - } - - static trySetLanguages(languageTags: Foundation.Collections.IIterable): Boolean { - throw new Error('shimmed function GlobalizationPreferences.trySetLanguages'); - } - - } - export class GlobalizationPreferencesForUser implements IGlobalizationPreferencesForUser { - calendars: string[]; - clocks: string[]; - currencies: string[]; - homeGeographicRegion: string; - languages: string[]; - user: User; - weekStartsOn: Globalization.DayOfWeek; - - } - export class LockScreen { - static originalImageFile: Foundation.Uri = new Uri('file:///C:/WINDOWS/Web/Screen/img100.jpg'); - - static requestSetImageFeedAsync(syndicationFeedUri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function LockScreen.requestSetImageFeedAsync'); - } - - static tryRemoveImageFeed(): Boolean { - throw new Error('shimmed function LockScreen.tryRemoveImageFeed'); - } - - static getImageStream(): Storage.Streams.IRandomAccessStream { - throw new Error('shimmed function LockScreen.getImageStream'); - } - - static setImageFileAsync(value: Storage.IStorageFile): Foundation.IAsyncAction { - throw new Error('shimmed function LockScreen.setImageFileAsync'); - } - - static setImageStreamAsync(value: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function LockScreen.setImageStreamAsync'); - } - - } - export enum SetAccountPictureResult { - success, - changeDisabled, - largeOrDynamicError, - videoFrameSizeError, - fileSizeError, - failure, - } - export enum SetImageFeedResult { - success, - changeDisabled, - userCanceled, - } - export class UserInformation { - static accountPictureChangeEnabled: Boolean = false; - static nameAccessAllowed: Boolean = false; - - static getAccountPicture(kind: AccountPictureKind): Storage.IStorageFile { - throw new Error('shimmed function UserInformation.getAccountPicture'); - } - - static setAccountPictureAsync(image: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.setAccountPictureAsync'); - } - - static setAccountPicturesAsync(smallImage: Storage.IStorageFile, largeImage: Storage.IStorageFile, video: Storage.IStorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.setAccountPicturesAsync'); - } - - static setAccountPictureFromStreamAsync(image: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.setAccountPictureFromStreamAsync'); - } - - static setAccountPicturesFromStreamsAsync(smallImage: Storage.Streams.IRandomAccessStream, largeImage: Storage.Streams.IRandomAccessStream, video: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.setAccountPicturesFromStreamsAsync'); - } - - static getDisplayNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.getDisplayNameAsync'); - } - - static getFirstNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.getFirstNameAsync'); - } - - static getLastNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.getLastNameAsync'); - } - - static getPrincipalNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.getPrincipalNameAsync'); - } - - static getSessionInitiationProtocolUriAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.getSessionInitiationProtocolUriAsync'); - } - - static getDomainNameAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserInformation.getDomainNameAsync'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`UserInformation::addEventListener: ${name}`); - switch (name) { - case "accountpicturechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export interface UserProfileContract { - } - export interface UserProfileLockScreenContract { - } - export class UserProfilePersonalizationSettings implements IUserProfilePersonalizationSettings { - static current: UserProfilePersonalizationSettings = null; - - trySetLockScreenImageAsync(imageFile: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function UserProfilePersonalizationSettings.trySetLockScreenImageAsync'); - } - - trySetWallpaperImageAsync(imageFile: Storage.StorageFile): Foundation.IAsyncOperation { - throw new Error('shimmed function UserProfilePersonalizationSettings.trySetWallpaperImageAsync'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function UserProfilePersonalizationSettings.isSupported'); - } - - } - } - export enum UserType { - localUser, - remoteUser, - localGuest, - remoteGuest, - } - export class UserWatcher implements IUserWatcher { - status: UserWatcherStatus; - - start(): void { - console.warn('shimmed function UserWatcher.start'); - } - - stop(): void { - console.warn('shimmed function UserWatcher.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserWatcher::addEventListener: ${name}`); - switch (name) { - case "added": // Foundation.TypedEventHandler - case "authenticationstatuschanged": // Foundation.TypedEventHandler - case "authenticationstatuschanging": // Foundation.TypedEventHandler - case "enumerationcompleted": // Foundation.TypedEventHandler - case "removed": // Foundation.TypedEventHandler - case "stopped": // Foundation.TypedEventHandler - case "updated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum UserWatcherStatus { - created, - started, - enumerationCompleted, - stopping, - stopped, - aborted, - } - export enum VirtualKey { - none, - leftButton, - rightButton, - cancel, - middleButton, - xbutton1, - xbutton2, - back = 8, - tab, - clear = 12, - enter, - shift = 16, - control, - menu, - pause, - capitalLock, - kana, - hangul = 21, - junja = 23, - final, - hanja, - kanji = 25, - escape = 27, - convert, - nonConvert, - accept, - modeChange, - space, - pageUp, - pageDown, - end, - home, - left, - up, - right, - down, - select, - print, - execute, - snapshot, - insert, - delete, - help, - number0, - number1, - number2, - number3, - number4, - number5, - number6, - number7, - number8, - number9, - a = 65, - b, - c, - d, - e, - f, - g, - h, - i, - j, - k, - l, - m, - n, - o, - p, - q, - r, - s, - t, - u, - v, - w, - x, - y, - z, - leftWindows, - rightWindows, - application, - sleep = 95, - numberPad0, - numberPad1, - numberPad2, - numberPad3, - numberPad4, - numberPad5, - numberPad6, - numberPad7, - numberPad8, - numberPad9, - multiply, - add, - separator, - subtract, - decimal, - divide, - f1, - f2, - f3, - f4, - f5, - f6, - f7, - f8, - f9, - f10, - f11, - f12, - f13, - f14, - f15, - f16, - f17, - f18, - f19, - f20, - f21, - f22, - f23, - f24, - navigationView, - navigationMenu, - navigationUp, - navigationDown, - navigationLeft, - navigationRight, - navigationAccept, - navigationCancel, - numberKeyLock, - scroll, - leftShift = 160, - rightShift, - leftControl, - rightControl, - leftMenu, - rightMenu, - goBack, - goForward, - refresh, - stop, - search, - favorites, - goHome, - gamepadA = 195, - gamepadB, - gamepadX, - gamepadY, - gamepadRightShoulder, - gamepadLeftShoulder, - gamepadLeftTrigger, - gamepadRightTrigger, - gamepadDPadUp, - gamepadDPadDown, - gamepadDPadLeft, - gamepadDPadRight, - gamepadMenu, - gamepadView, - gamepadLeftThumbstickButton, - gamepadRightThumbstickButton, - gamepadLeftThumbstickUp, - gamepadLeftThumbstickDown, - gamepadLeftThumbstickRight, - gamepadLeftThumbstickLeft, - gamepadRightThumbstickUp, - gamepadRightThumbstickDown, - gamepadRightThumbstickRight, - gamepadRightThumbstickLeft, - } - export enum VirtualKeyModifiers { - none, - control, - menu, - shift = 4, - windows = 8, - } - } - export namespace UI { - export namespace Accessibility { - export class ScreenReaderPositionChangedEventArgs implements IScreenReaderPositionChangedEventArgs { - isReadingText: Boolean; - screenPositionInRawPixels: Foundation.Rect; - - } - export class ScreenReaderService implements IScreenReaderService { - // constructor(); - currentScreenReaderPosition: ScreenReaderPositionChangedEventArgs = null; - - addEventListener(name: string, handler: Function) { - console.warn(`ScreenReaderService::addEventListener: ${name}`); - switch (name) { - case "screenreaderpositionchanged": // Foundation.TypedEventHandler - break; - } - - } - } - } - export namespace ApplicationSettings { - export class AccountsSettingsPane implements IAccountsSettingsPane { - static showManageAccountsForUserAsync(user: System.User): Foundation.IAsyncAction { - throw new Error('shimmed function AccountsSettingsPane.showManageAccountsForUserAsync'); - } - - static showAddAccountForUserAsync(user: System.User): Foundation.IAsyncAction { - throw new Error('shimmed function AccountsSettingsPane.showAddAccountForUserAsync'); - } - - static showManageAccountsAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AccountsSettingsPane.showManageAccountsAsync'); - } - - static showAddAccountAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AccountsSettingsPane.showAddAccountAsync'); - } - - static getForCurrentView(): AccountsSettingsPane { - throw new Error('shimmed function AccountsSettingsPane.getForCurrentView'); - } - - static show(): void { - console.warn('shimmed function AccountsSettingsPane.show'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AccountsSettingsPane::addEventListener: ${name}`); - switch (name) { - case "accountcommandsrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class AccountsSettingsPaneCommandsRequestedEventArgs implements IAccountsSettingsPaneCommandsRequestedEventArgs, IAccountsSettingsPaneCommandsRequestedEventArgs2 { - headerText: string; - commands: SettingsCommand[]; - credentialCommands: CredentialCommand[]; - webAccountCommands: WebAccountCommand[]; - webAccountProviderCommands: WebAccountProviderCommand[]; - user: System.User; - - getDeferral(): AccountsSettingsPaneEventDeferral { - throw new Error('shimmed function AccountsSettingsPaneCommandsRequestedEventArgs.getDeferral'); - } - - } - export class AccountsSettingsPaneEventDeferral implements IAccountsSettingsPaneEventDeferral { - complete(): void { - console.warn('shimmed function AccountsSettingsPaneEventDeferral.complete'); - } - - } - export interface ApplicationsSettingsContract { - } - export class CredentialCommand implements ICredentialCommand { - // constructor(passwordCredential: Security.Credentials.PasswordCredential); - // constructor(passwordCredential: Security.Credentials.PasswordCredential, deleted: CredentialCommandCredentialDeletedHandler); - constructor(passwordCredential: Security.Credentials.PasswordCredential, deleted: CredentialCommandCredentialDeletedHandler) {} - - credentialDeleted: CredentialCommandCredentialDeletedHandler; - passwordCredential: Security.Credentials.PasswordCredential; - - } - export type CredentialCommandCredentialDeletedHandler = () => void; - export class SettingsCommand implements Popups.IUICommand { - // constructor(settingsCommandId: any, label: string, handler: Popups.UICommandInvokedHandler); - constructor(settingsCommandId: any, label: string, handler: Popups.UICommandInvokedHandler) {} - - label: string; - invoked: Popups.UICommandInvokedHandler; - id: any; - static accountsCommand: SettingsCommand = null; - - } - export enum SettingsEdgeLocation { - right, - left, - } - export class SettingsPane implements ISettingsPane { - static edge: SettingsEdgeLocation = SettingsEdgeLocation.right; - - static getForCurrentView(): SettingsPane { - throw new Error('shimmed function SettingsPane.getForCurrentView'); - } - - static show(): void { - console.warn('shimmed function SettingsPane.show'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SettingsPane::addEventListener: ${name}`); - switch (name) { - case "commandsrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SettingsPaneCommandsRequest implements ISettingsPaneCommandsRequest { - applicationCommands: SettingsCommand[]; - - } - export class SettingsPaneCommandsRequestedEventArgs implements ISettingsPaneCommandsRequestedEventArgs { - request: SettingsPaneCommandsRequest; - - } - export enum SupportedWebAccountActions { - none, - reconnect, - remove, - viewDetails = 4, - manage = 8, - more = 16, - } - export enum WebAccountAction { - reconnect, - remove, - viewDetails, - manage, - more, - } - export class WebAccountCommand implements IWebAccountCommand { - // constructor(webAccount: Security.Credentials.WebAccount, invoked: WebAccountCommandInvokedHandler, actions: SupportedWebAccountActions); - constructor(webAccount: Security.Credentials.WebAccount, invoked: WebAccountCommandInvokedHandler, actions: SupportedWebAccountActions) {} - - actions: SupportedWebAccountActions; - invoked: WebAccountCommandInvokedHandler; - webAccount: Security.Credentials.WebAccount; - - } - export type WebAccountCommandInvokedHandler = (args: WebAccountInvokedArgs) => void; - export class WebAccountInvokedArgs implements IWebAccountInvokedArgs { - action: WebAccountAction; - - } - export class WebAccountProviderCommand implements IWebAccountProviderCommand { - // constructor(webAccountProvider: Security.Credentials.WebAccountProvider, invoked: WebAccountProviderCommandInvokedHandler); - constructor(webAccountProvider: Security.Credentials.WebAccountProvider, invoked: WebAccountProviderCommandInvokedHandler) {} - - invoked: WebAccountProviderCommandInvokedHandler; - webAccountProvider: Security.Credentials.WebAccountProvider; - - } - export type WebAccountProviderCommandInvokedHandler = () => void; - } - export interface Color { - a: number; - r: number; - g: number; - b: number; - } - export class ColorHelper implements IColorHelper { - static toDisplayName(color: Color): string { - throw new Error('shimmed function ColorHelper.toDisplayName'); - } - - static fromArgb(a: number, r: number, g: number, b: number): Color { - throw new Error('shimmed function ColorHelper.fromArgb'); - } - - } - export class Colors implements IColors { - static aliceBlue: Color = { a: 255, r: 240, g: 248, b: 255 }; - static antiqueWhite: Color = { a: 255, r: 250, g: 235, b: 215 }; - static aqua: Color = { a: 255, r: 0, g: 255, b: 255 }; - static aquamarine: Color = { a: 255, r: 127, g: 255, b: 212 }; - static azure: Color = { a: 255, r: 240, g: 255, b: 255 }; - static beige: Color = { a: 255, r: 245, g: 245, b: 220 }; - static bisque: Color = { a: 255, r: 255, g: 228, b: 196 }; - static black: Color = { a: 255, r: 0, g: 0, b: 0 }; - static blanchedAlmond: Color = { a: 255, r: 255, g: 235, b: 205 }; - static blue: Color = { a: 255, r: 0, g: 0, b: 255 }; - static blueViolet: Color = { a: 255, r: 138, g: 43, b: 226 }; - static brown: Color = { a: 255, r: 165, g: 42, b: 42 }; - static burlyWood: Color = { a: 255, r: 222, g: 184, b: 135 }; - static cadetBlue: Color = { a: 255, r: 95, g: 158, b: 160 }; - static chartreuse: Color = { a: 255, r: 127, g: 255, b: 0 }; - static chocolate: Color = { a: 255, r: 210, g: 105, b: 30 }; - static coral: Color = { a: 255, r: 255, g: 127, b: 80 }; - static cornflowerBlue: Color = { a: 255, r: 100, g: 149, b: 237 }; - static cornsilk: Color = { a: 255, r: 255, g: 248, b: 220 }; - static crimson: Color = { a: 255, r: 220, g: 20, b: 60 }; - static cyan: Color = { a: 255, r: 0, g: 255, b: 255 }; - static darkBlue: Color = { a: 255, r: 0, g: 0, b: 139 }; - static darkCyan: Color = { a: 255, r: 0, g: 139, b: 139 }; - static darkGoldenrod: Color = { a: 255, r: 184, g: 134, b: 11 }; - static darkGray: Color = { a: 255, r: 169, g: 169, b: 169 }; - static darkGreen: Color = { a: 255, r: 0, g: 100, b: 0 }; - static darkKhaki: Color = { a: 255, r: 189, g: 183, b: 107 }; - static darkMagenta: Color = { a: 255, r: 139, g: 0, b: 139 }; - static darkOliveGreen: Color = { a: 255, r: 85, g: 107, b: 47 }; - static darkOrange: Color = { a: 255, r: 255, g: 140, b: 0 }; - static darkOrchid: Color = { a: 255, r: 153, g: 50, b: 204 }; - static darkRed: Color = { a: 255, r: 139, g: 0, b: 0 }; - static darkSalmon: Color = { a: 255, r: 233, g: 150, b: 122 }; - static darkSeaGreen: Color = { a: 255, r: 143, g: 188, b: 143 }; - static darkSlateBlue: Color = { a: 255, r: 72, g: 61, b: 139 }; - static darkSlateGray: Color = { a: 255, r: 47, g: 79, b: 79 }; - static darkTurquoise: Color = { a: 255, r: 0, g: 206, b: 209 }; - static darkViolet: Color = { a: 255, r: 148, g: 0, b: 211 }; - static deepPink: Color = { a: 255, r: 255, g: 20, b: 147 }; - static deepSkyBlue: Color = { a: 255, r: 0, g: 191, b: 255 }; - static dimGray: Color = { a: 255, r: 105, g: 105, b: 105 }; - static dodgerBlue: Color = { a: 255, r: 30, g: 144, b: 255 }; - static firebrick: Color = { a: 255, r: 178, g: 34, b: 34 }; - static floralWhite: Color = { a: 255, r: 255, g: 250, b: 240 }; - static forestGreen: Color = { a: 255, r: 34, g: 139, b: 34 }; - static fuchsia: Color = { a: 255, r: 255, g: 0, b: 255 }; - static gainsboro: Color = { a: 255, r: 220, g: 220, b: 220 }; - static ghostWhite: Color = { a: 255, r: 248, g: 248, b: 255 }; - static gold: Color = { a: 255, r: 255, g: 215, b: 0 }; - static goldenrod: Color = { a: 255, r: 218, g: 165, b: 32 }; - static gray: Color = { a: 255, r: 128, g: 128, b: 128 }; - static green: Color = { a: 255, r: 0, g: 128, b: 0 }; - static greenYellow: Color = { a: 255, r: 173, g: 255, b: 47 }; - static honeydew: Color = { a: 255, r: 240, g: 255, b: 240 }; - static hotPink: Color = { a: 255, r: 255, g: 105, b: 180 }; - static indianRed: Color = { a: 255, r: 205, g: 92, b: 92 }; - static indigo: Color = { a: 255, r: 75, g: 0, b: 130 }; - static ivory: Color = { a: 255, r: 255, g: 255, b: 240 }; - static khaki: Color = { a: 255, r: 240, g: 230, b: 140 }; - static lavender: Color = { a: 255, r: 230, g: 230, b: 250 }; - static lavenderBlush: Color = { a: 255, r: 255, g: 240, b: 245 }; - static lawnGreen: Color = { a: 255, r: 124, g: 252, b: 0 }; - static lemonChiffon: Color = { a: 255, r: 255, g: 250, b: 205 }; - static lightBlue: Color = { a: 255, r: 173, g: 216, b: 230 }; - static lightCoral: Color = { a: 255, r: 240, g: 128, b: 128 }; - static lightCyan: Color = { a: 255, r: 224, g: 255, b: 255 }; - static lightGoldenrodYellow: Color = { a: 255, r: 250, g: 250, b: 210 }; - static lightGray: Color = { a: 255, r: 211, g: 211, b: 211 }; - static lightGreen: Color = { a: 255, r: 144, g: 238, b: 144 }; - static lightPink: Color = { a: 255, r: 255, g: 182, b: 193 }; - static lightSalmon: Color = { a: 255, r: 255, g: 160, b: 122 }; - static lightSeaGreen: Color = { a: 255, r: 32, g: 178, b: 170 }; - static lightSkyBlue: Color = { a: 255, r: 135, g: 206, b: 250 }; - static lightSlateGray: Color = { a: 255, r: 119, g: 136, b: 153 }; - static lightSteelBlue: Color = { a: 255, r: 176, g: 196, b: 222 }; - static lightYellow: Color = { a: 255, r: 255, g: 255, b: 224 }; - static lime: Color = { a: 255, r: 0, g: 255, b: 0 }; - static limeGreen: Color = { a: 255, r: 50, g: 205, b: 50 }; - static linen: Color = { a: 255, r: 250, g: 240, b: 230 }; - static magenta: Color = { a: 255, r: 255, g: 0, b: 255 }; - static maroon: Color = { a: 255, r: 128, g: 0, b: 0 }; - static mediumAquamarine: Color = { a: 255, r: 102, g: 205, b: 170 }; - static mediumBlue: Color = { a: 255, r: 0, g: 0, b: 205 }; - static mediumOrchid: Color = { a: 255, r: 186, g: 85, b: 211 }; - static mediumPurple: Color = { a: 255, r: 147, g: 112, b: 219 }; - static mediumSeaGreen: Color = { a: 255, r: 60, g: 179, b: 113 }; - static mediumSlateBlue: Color = { a: 255, r: 123, g: 104, b: 238 }; - static mediumSpringGreen: Color = { a: 255, r: 0, g: 250, b: 154 }; - static mediumTurquoise: Color = { a: 255, r: 72, g: 209, b: 204 }; - static mediumVioletRed: Color = { a: 255, r: 199, g: 21, b: 133 }; - static midnightBlue: Color = { a: 255, r: 25, g: 25, b: 112 }; - static mintCream: Color = { a: 255, r: 245, g: 255, b: 250 }; - static mistyRose: Color = { a: 255, r: 255, g: 228, b: 225 }; - static moccasin: Color = { a: 255, r: 255, g: 228, b: 181 }; - static navajoWhite: Color = { a: 255, r: 255, g: 222, b: 173 }; - static navy: Color = { a: 255, r: 0, g: 0, b: 128 }; - static oldLace: Color = { a: 255, r: 253, g: 245, b: 230 }; - static olive: Color = { a: 255, r: 128, g: 128, b: 0 }; - static oliveDrab: Color = { a: 255, r: 107, g: 142, b: 35 }; - static orange: Color = { a: 255, r: 255, g: 165, b: 0 }; - static orangeRed: Color = { a: 255, r: 255, g: 69, b: 0 }; - static orchid: Color = { a: 255, r: 218, g: 112, b: 214 }; - static paleGoldenrod: Color = { a: 255, r: 238, g: 232, b: 170 }; - static paleGreen: Color = { a: 255, r: 152, g: 251, b: 152 }; - static paleTurquoise: Color = { a: 255, r: 175, g: 238, b: 238 }; - static paleVioletRed: Color = { a: 255, r: 219, g: 112, b: 147 }; - static papayaWhip: Color = { a: 255, r: 255, g: 239, b: 213 }; - static peachPuff: Color = { a: 255, r: 255, g: 218, b: 185 }; - static peru: Color = { a: 255, r: 205, g: 133, b: 63 }; - static pink: Color = { a: 255, r: 255, g: 192, b: 203 }; - static plum: Color = { a: 255, r: 221, g: 160, b: 221 }; - static powderBlue: Color = { a: 255, r: 176, g: 224, b: 230 }; - static purple: Color = { a: 255, r: 128, g: 0, b: 128 }; - static red: Color = { a: 255, r: 255, g: 0, b: 0 }; - static rosyBrown: Color = { a: 255, r: 188, g: 143, b: 143 }; - static royalBlue: Color = { a: 255, r: 65, g: 105, b: 225 }; - static saddleBrown: Color = { a: 255, r: 139, g: 69, b: 19 }; - static salmon: Color = { a: 255, r: 250, g: 128, b: 114 }; - static sandyBrown: Color = { a: 255, r: 244, g: 164, b: 96 }; - static seaGreen: Color = { a: 255, r: 46, g: 139, b: 87 }; - static seaShell: Color = { a: 255, r: 255, g: 245, b: 238 }; - static sienna: Color = { a: 255, r: 160, g: 82, b: 45 }; - static silver: Color = { a: 255, r: 192, g: 192, b: 192 }; - static skyBlue: Color = { a: 255, r: 135, g: 206, b: 235 }; - static slateBlue: Color = { a: 255, r: 106, g: 90, b: 205 }; - static slateGray: Color = { a: 255, r: 112, g: 128, b: 144 }; - static snow: Color = { a: 255, r: 255, g: 250, b: 250 }; - static springGreen: Color = { a: 255, r: 0, g: 255, b: 127 }; - static steelBlue: Color = { a: 255, r: 70, g: 130, b: 180 }; - static tan: Color = { a: 255, r: 210, g: 180, b: 140 }; - static teal: Color = { a: 255, r: 0, g: 128, b: 128 }; - static thistle: Color = { a: 255, r: 216, g: 191, b: 216 }; - static tomato: Color = { a: 255, r: 255, g: 99, b: 71 }; - static transparent: Color = { a: 0, r: 255, g: 255, b: 255 }; - static turquoise: Color = { a: 255, r: 64, g: 224, b: 208 }; - static violet: Color = { a: 255, r: 238, g: 130, b: 238 }; - static wheat: Color = { a: 255, r: 245, g: 222, b: 179 }; - static white: Color = { a: 255, r: 255, g: 255, b: 255 }; - static whiteSmoke: Color = { a: 255, r: 245, g: 245, b: 245 }; - static yellow: Color = { a: 255, r: 255, g: 255, b: 0 }; - static yellowGreen: Color = { a: 255, r: 154, g: 205, b: 50 }; - - } - export namespace Composition { - export class AmbientLight implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionLight, ICompositionLight2, ICompositionLight3, IAmbientLight, IAmbientLight2 { - color: Color; - intensity: number; - targets: VisualUnorderedCollection; - exclusionsFromTargets: VisualUnorderedCollection; - isEnabled: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function AmbientLight.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function AmbientLight.stopAnimation'); - } - - close(): void { - console.warn('shimmed function AmbientLight.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function AmbientLight.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function AmbientLight.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function AmbientLight.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function AmbientLight.populatePropertyInfo'); - } - - } - export class AnimationController implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IAnimationController { - progressBehavior: AnimationControllerProgressBehavior; - progress: number; - playbackRate: number; - static maxPlaybackRate: number = 16; - static minPlaybackRate: number = 0.0625; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function AnimationController.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function AnimationController.stopAnimation'); - } - - close(): void { - console.warn('shimmed function AnimationController.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function AnimationController.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function AnimationController.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function AnimationController.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function AnimationController.populatePropertyInfo'); - } - - pause(): void { - console.warn('shimmed function AnimationController.pause'); - } - - resume(): void { - console.warn('shimmed function AnimationController.resume'); - } - - } - export enum AnimationControllerProgressBehavior { - default, - includesDelayTime, - } - export enum AnimationDelayBehavior { - setInitialValueAfterDelay, - setInitialValueBeforeDelay, - } - export enum AnimationDirection { - normal, - reverse, - alternate, - alternateReverse, - } - export enum AnimationIterationBehavior { - count, - forever, - } - export enum AnimationPropertyAccessMode { - none, - readOnly, - writeOnly, - readWrite, - } - export class AnimationPropertyInfo implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IAnimationPropertyInfo { - accessMode: AnimationPropertyAccessMode; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function AnimationPropertyInfo.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function AnimationPropertyInfo.stopAnimation'); - } - - close(): void { - console.warn('shimmed function AnimationPropertyInfo.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function AnimationPropertyInfo.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function AnimationPropertyInfo.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function AnimationPropertyInfo.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function AnimationPropertyInfo.populatePropertyInfo'); - } - - } - export enum AnimationStopBehavior { - leaveCurrentValue, - setToInitialValue, - setToFinalValue, - } - export class BooleanKeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IBooleanKeyFrameAnimation { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function BooleanKeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function BooleanKeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function BooleanKeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BooleanKeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BooleanKeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function BooleanKeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function BooleanKeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function BooleanKeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function BooleanKeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function BooleanKeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function BooleanKeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function BooleanKeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, value: Boolean): void { - console.warn('shimmed function BooleanKeyFrameAnimation.insertKeyFrame'); - } - - } - export class BounceScalarNaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IScalarNaturalMotionAnimation, IBounceScalarNaturalMotionAnimation { - restitution: number; - acceleration: number; - initialVelocity: number; - initialValue: number | null; - finalValue: number | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function BounceScalarNaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function BounceScalarNaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class BounceVector2NaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IVector2NaturalMotionAnimation, IBounceVector2NaturalMotionAnimation { - restitution: number; - acceleration: number; - initialVelocity: Foundation.Numerics.Vector2; - initialValue: Foundation.Numerics.Vector2 | null; - finalValue: Foundation.Numerics.Vector2 | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function BounceVector2NaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function BounceVector2NaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class BounceVector3NaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IVector3NaturalMotionAnimation, IBounceVector3NaturalMotionAnimation { - restitution: number; - acceleration: number; - initialVelocity: Foundation.Numerics.Vector3; - initialValue: Foundation.Numerics.Vector3 | null; - finalValue: Foundation.Numerics.Vector3 | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function BounceVector3NaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function BounceVector3NaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class ColorKeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IColorKeyFrameAnimation { - interpolationColorSpace: CompositionColorSpace; - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ColorKeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ColorKeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ColorKeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ColorKeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ColorKeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ColorKeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ColorKeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function ColorKeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function ColorKeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function ColorKeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function ColorKeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function ColorKeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function ColorKeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function ColorKeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function ColorKeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function ColorKeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function ColorKeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function ColorKeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function ColorKeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function ColorKeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function ColorKeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function ColorKeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, value: Color): void { - console.warn('shimmed function ColorKeyFrameAnimation.insertKeyFrame'); - } - - insertKeyFrame_1(normalizedProgressKey: number, value: Color, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function ColorKeyFrameAnimation.insertKeyFrame_1'); - } - - } - export class CompositionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase { - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function CompositionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function CompositionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function CompositionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function CompositionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function CompositionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function CompositionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function CompositionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function CompositionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function CompositionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function CompositionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function CompositionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function CompositionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function CompositionAnimation.setExpressionReferenceParameter'); - } - - } - export class CompositionAnimationGroup implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimationGroup, Foundation.Collections.IIterable, ICompositionAnimationBase { - count: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionAnimationGroup.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionAnimationGroup.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionAnimationGroup.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionAnimationGroup.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionAnimationGroup.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionAnimationGroup.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionAnimationGroup.populatePropertyInfo'); - } - - add(value: CompositionAnimation): void { - console.warn('shimmed function CompositionAnimationGroup.add'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CompositionAnimationGroup.first'); - } - - } - export class CompositionBackdropBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionBackdropBrush { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionBackdropBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionBackdropBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionBackdropBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionBackdropBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionBackdropBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionBackdropBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionBackdropBrush.populatePropertyInfo'); - } - - } - export enum CompositionBackfaceVisibility { - inherit, - visible, - hidden, - } - export class CompositionBatchCompletedEventArgs implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBatchCompletedEventArgs { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionBatchCompletedEventArgs.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionBatchCompletedEventArgs.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionBatchCompletedEventArgs.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionBatchCompletedEventArgs.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionBatchCompletedEventArgs.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionBatchCompletedEventArgs.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionBatchCompletedEventArgs.populatePropertyInfo'); - } - - } - export enum CompositionBatchTypes { - none, - animation, - effect, - infiniteAnimation = 4, - allAnimations, - } - export enum CompositionBitmapInterpolationMode { - nearestNeighbor, - linear, - magLinearMinLinearMipLinear, - magLinearMinLinearMipNearest, - magLinearMinNearestMipLinear, - magLinearMinNearestMipNearest, - magNearestMinLinearMipLinear, - magNearestMinLinearMipNearest, - magNearestMinNearestMipLinear, - magNearestMinNearestMipNearest, - } - export enum CompositionBorderMode { - inherit, - soft, - hard, - } - export class CompositionBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionBrush.populatePropertyInfo'); - } - - } - export class CompositionCapabilities implements ICompositionCapabilities { - areEffectsSupported(): Boolean { - throw new Error('shimmed function CompositionCapabilities.areEffectsSupported'); - } - - areEffectsFast(): Boolean { - throw new Error('shimmed function CompositionCapabilities.areEffectsFast'); - } - - static getForCurrentView(): CompositionCapabilities { - throw new Error('shimmed function CompositionCapabilities.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CompositionCapabilities::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - break; - } - - } - } - export class CompositionClip implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionClip, ICompositionClip2 { - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - centerPoint: Foundation.Numerics.Vector2; - anchorPoint: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionClip.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionClip.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionClip.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionClip.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionClip.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionClip.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionClip.populatePropertyInfo'); - } - - } - export class CompositionColorBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionColorBrush { - color: Color; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionColorBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionColorBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionColorBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionColorBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionColorBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionColorBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionColorBrush.populatePropertyInfo'); - } - - } - export class CompositionColorGradientStop implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionColorGradientStop { - offset: number; - color: Color; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionColorGradientStop.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionColorGradientStop.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionColorGradientStop.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionColorGradientStop.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionColorGradientStop.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionColorGradientStop.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionColorGradientStop.populatePropertyInfo'); - } - - } - export class CompositionColorGradientStopCollection implements ICompositionColorGradientStopCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): CompositionColorGradientStop { - throw new Error('shimmed function CompositionColorGradientStopCollection.getAt'); - } - - getView(): CompositionColorGradientStop[] { - throw new Error('shimmed function CompositionColorGradientStopCollection.getView'); - } - - indexOf(value: CompositionColorGradientStop): { returnValue: Boolean, index: number } { - throw new Error('shimmed function CompositionColorGradientStopCollection.indexOf'); - } - - setAt(index: number, value: CompositionColorGradientStop): void { - console.warn('shimmed function CompositionColorGradientStopCollection.setAt'); - } - - insertAt(index: number, value: CompositionColorGradientStop): void { - console.warn('shimmed function CompositionColorGradientStopCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function CompositionColorGradientStopCollection.removeAt'); - } - - append(value: CompositionColorGradientStop): void { - console.warn('shimmed function CompositionColorGradientStopCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function CompositionColorGradientStopCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function CompositionColorGradientStopCollection.clear'); - } - - getMany(startIndex: number, items: CompositionColorGradientStop[]): number { - throw new Error('shimmed function CompositionColorGradientStopCollection.getMany'); - } - - replaceAll(items: CompositionColorGradientStop[]): void { - console.warn('shimmed function CompositionColorGradientStopCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CompositionColorGradientStopCollection.first'); - } - - } - export enum CompositionColorSpace { - auto, - hsl, - rgb, - hslLinear, - rgbLinear, - } - export class CompositionCommitBatch implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionCommitBatch { - isActive: Boolean; - isEnded: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionCommitBatch.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionCommitBatch.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionCommitBatch.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionCommitBatch.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionCommitBatch.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionCommitBatch.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionCommitBatch.populatePropertyInfo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CompositionCommitBatch::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CompositionCompositeMode { - inherit, - sourceOver, - destinationInvert, - minBlend, - } - export class CompositionContainerShape implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionShape, ICompositionContainerShape { - shapes: CompositionShapeCollection; - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - centerPoint: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionContainerShape.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionContainerShape.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionContainerShape.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionContainerShape.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionContainerShape.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionContainerShape.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionContainerShape.populatePropertyInfo'); - } - - } - export class CompositionDrawingSurface implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionDrawingSurface, ICompositionSurface, ICompositionDrawingSurface2 { - alphaMode: Graphics.DirectX.DirectXAlphaMode; - pixelFormat: Graphics.DirectX.DirectXPixelFormat; - size: Foundation.Size; - sizeInt32: Graphics.SizeInt32; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionDrawingSurface.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionDrawingSurface.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionDrawingSurface.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionDrawingSurface.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionDrawingSurface.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionDrawingSurface.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionDrawingSurface.populatePropertyInfo'); - } - - resize(sizePixels: Graphics.SizeInt32): void { - console.warn('shimmed function CompositionDrawingSurface.resize'); - } - - scroll(offset: Graphics.PointInt32): void { - console.warn('shimmed function CompositionDrawingSurface.scroll'); - } - - scroll_1(offset: Graphics.PointInt32, scrollRect: Graphics.RectInt32): void { - console.warn('shimmed function CompositionDrawingSurface.scroll_1'); - } - - scrollWithClip(offset: Graphics.PointInt32, clipRect: Graphics.RectInt32): void { - console.warn('shimmed function CompositionDrawingSurface.scrollWithClip'); - } - - scrollWithClip_1(offset: Graphics.PointInt32, clipRect: Graphics.RectInt32, scrollRect: Graphics.RectInt32): void { - console.warn('shimmed function CompositionDrawingSurface.scrollWithClip_1'); - } - - } - export enum CompositionDropShadowSourcePolicy { - default, - inheritFromVisualContent, - } - export class CompositionEasingFunction implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionEasingFunction { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionEasingFunction.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionEasingFunction.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionEasingFunction.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEasingFunction.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEasingFunction.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionEasingFunction.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionEasingFunction.populatePropertyInfo'); - } - - } - export class CompositionEffectBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionEffectBrush { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionEffectBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionEffectBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionEffectBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEffectBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEffectBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionEffectBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionEffectBrush.populatePropertyInfo'); - } - - getSourceParameter(name: string): CompositionBrush { - throw new Error('shimmed function CompositionEffectBrush.getSourceParameter'); - } - - setSourceParameter(name: string, source: CompositionBrush): void { - console.warn('shimmed function CompositionEffectBrush.setSourceParameter'); - } - - } - export class CompositionEffectFactory implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionEffectFactory { - extendedError: number; - loadStatus: CompositionEffectFactoryLoadStatus; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionEffectFactory.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionEffectFactory.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionEffectFactory.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEffectFactory.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEffectFactory.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionEffectFactory.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionEffectFactory.populatePropertyInfo'); - } - - createBrush(): CompositionEffectBrush { - throw new Error('shimmed function CompositionEffectFactory.createBrush'); - } - - } - export enum CompositionEffectFactoryLoadStatus { - success, - effectTooComplex, - pending, - other = -1, - } - export class CompositionEffectSourceParameter implements ICompositionEffectSourceParameter, Graphics.Effects.IGraphicsEffectSource { - // constructor(name: string); - constructor(name: string) {} - - name: string; - - } - export class CompositionEllipseGeometry implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionGeometry, ICompositionEllipseGeometry { - radius: Foundation.Numerics.Vector2; - center: Foundation.Numerics.Vector2; - trimStart: number; - trimOffset: number; - trimEnd: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionEllipseGeometry.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionEllipseGeometry.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionEllipseGeometry.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEllipseGeometry.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionEllipseGeometry.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionEllipseGeometry.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionEllipseGeometry.populatePropertyInfo'); - } - - } - export class CompositionGeometricClip implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionClip, ICompositionClip2, ICompositionGeometricClip { - viewBox: CompositionViewBox; - geometry: CompositionGeometry; - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - centerPoint: Foundation.Numerics.Vector2; - anchorPoint: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionGeometricClip.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionGeometricClip.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionGeometricClip.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGeometricClip.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGeometricClip.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionGeometricClip.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionGeometricClip.populatePropertyInfo'); - } - - } - export class CompositionGeometry implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionGeometry { - trimStart: number; - trimOffset: number; - trimEnd: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionGeometry.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionGeometry.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionGeometry.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGeometry.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGeometry.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionGeometry.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionGeometry.populatePropertyInfo'); - } - - } - export enum CompositionGetValueStatus { - succeeded, - typeMismatch, - notFound, - } - export class CompositionGradientBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionGradientBrush, ICompositionGradientBrush2 { - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - interpolationSpace: CompositionColorSpace; - extendMode: CompositionGradientExtendMode; - centerPoint: Foundation.Numerics.Vector2; - anchorPoint: Foundation.Numerics.Vector2; - colorStops: CompositionColorGradientStopCollection; - mappingMode: CompositionMappingMode; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionGradientBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionGradientBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionGradientBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGradientBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGradientBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionGradientBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionGradientBrush.populatePropertyInfo'); - } - - } - export enum CompositionGradientExtendMode { - clamp, - wrap, - mirror, - } - export class CompositionGraphicsDevice implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionGraphicsDevice, ICompositionGraphicsDevice2, ICompositionGraphicsDevice3 { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionGraphicsDevice.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionGraphicsDevice.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionGraphicsDevice.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGraphicsDevice.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionGraphicsDevice.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionGraphicsDevice.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionGraphicsDevice.populatePropertyInfo'); - } - - createDrawingSurface(sizePixels: Foundation.Size, pixelFormat: Graphics.DirectX.DirectXPixelFormat, alphaMode: Graphics.DirectX.DirectXAlphaMode): CompositionDrawingSurface { - throw new Error('shimmed function CompositionGraphicsDevice.createDrawingSurface'); - } - - createDrawingSurface2(sizePixels: Graphics.SizeInt32, pixelFormat: Graphics.DirectX.DirectXPixelFormat, alphaMode: Graphics.DirectX.DirectXAlphaMode): CompositionDrawingSurface { - throw new Error('shimmed function CompositionGraphicsDevice.createDrawingSurface2'); - } - - createVirtualDrawingSurface(sizePixels: Graphics.SizeInt32, pixelFormat: Graphics.DirectX.DirectXPixelFormat, alphaMode: Graphics.DirectX.DirectXAlphaMode): CompositionVirtualDrawingSurface { - throw new Error('shimmed function CompositionGraphicsDevice.createVirtualDrawingSurface'); - } - - createMipmapSurface(sizePixels: Graphics.SizeInt32, pixelFormat: Graphics.DirectX.DirectXPixelFormat, alphaMode: Graphics.DirectX.DirectXAlphaMode): CompositionMipmapSurface { - throw new Error('shimmed function CompositionGraphicsDevice.createMipmapSurface'); - } - - trim(): void { - console.warn('shimmed function CompositionGraphicsDevice.trim'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CompositionGraphicsDevice::addEventListener: ${name}`); - switch (name) { - case "renderingdevicereplaced": // Foundation.TypedEventHandler - break; - } - - } - } - export class CompositionLight implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionLight, ICompositionLight2, ICompositionLight3 { - targets: VisualUnorderedCollection; - exclusionsFromTargets: VisualUnorderedCollection; - isEnabled: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionLight.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionLight.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionLight.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionLight.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionLight.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionLight.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionLight.populatePropertyInfo'); - } - - } - export class CompositionLinearGradientBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionGradientBrush, ICompositionGradientBrush2, ICompositionLinearGradientBrush { - startPoint: Foundation.Numerics.Vector2; - endPoint: Foundation.Numerics.Vector2; - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - interpolationSpace: CompositionColorSpace; - extendMode: CompositionGradientExtendMode; - centerPoint: Foundation.Numerics.Vector2; - anchorPoint: Foundation.Numerics.Vector2; - colorStops: CompositionColorGradientStopCollection; - mappingMode: CompositionMappingMode; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionLinearGradientBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionLinearGradientBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionLinearGradientBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionLinearGradientBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionLinearGradientBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionLinearGradientBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionLinearGradientBrush.populatePropertyInfo'); - } - - } - export class CompositionLineGeometry implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionGeometry, ICompositionLineGeometry { - start: Foundation.Numerics.Vector2; - end: Foundation.Numerics.Vector2; - trimStart: number; - trimOffset: number; - trimEnd: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionLineGeometry.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionLineGeometry.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionLineGeometry.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionLineGeometry.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionLineGeometry.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionLineGeometry.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionLineGeometry.populatePropertyInfo'); - } - - } - export enum CompositionMappingMode { - absolute, - relative, - } - export class CompositionMaskBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionMaskBrush { - source: CompositionBrush; - mask: CompositionBrush; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionMaskBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionMaskBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionMaskBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionMaskBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionMaskBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionMaskBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionMaskBrush.populatePropertyInfo'); - } - - } - export class CompositionMipmapSurface implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionMipmapSurface, ICompositionSurface { - alphaMode: Graphics.DirectX.DirectXAlphaMode; - levelCount: number; - pixelFormat: Graphics.DirectX.DirectXPixelFormat; - sizeInt32: Graphics.SizeInt32; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionMipmapSurface.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionMipmapSurface.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionMipmapSurface.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionMipmapSurface.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionMipmapSurface.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionMipmapSurface.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionMipmapSurface.populatePropertyInfo'); - } - - getDrawingSurfaceForLevel(level: number): CompositionDrawingSurface { - throw new Error('shimmed function CompositionMipmapSurface.getDrawingSurfaceForLevel'); - } - - } - export class CompositionNineGridBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionNineGridBrush { - topInsetScale: number; - topInset: number; - source: CompositionBrush; - rightInsetScale: number; - rightInset: number; - leftInsetScale: number; - leftInset: number; - isCenterHollow: Boolean; - bottomInsetScale: number; - bottomInset: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionNineGridBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionNineGridBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionNineGridBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionNineGridBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionNineGridBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionNineGridBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionNineGridBrush.populatePropertyInfo'); - } - - setInsets(inset: number): void { - console.warn('shimmed function CompositionNineGridBrush.setInsets'); - } - - setInsets_1(left: number, top: number, right: number, bottom: number): void { - console.warn('shimmed function CompositionNineGridBrush.setInsets_1'); - } - - setInsetScales(scale: number): void { - console.warn('shimmed function CompositionNineGridBrush.setInsetScales'); - } - - setInsetScales_1(left: number, top: number, right: number, bottom: number): void { - console.warn('shimmed function CompositionNineGridBrush.setInsetScales_1'); - } - - } - export class CompositionObject implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionObject.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionObject.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionObject.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionObject.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionObject.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionObject.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionObject.populatePropertyInfo'); - } - - static startAnimationWithIAnimationObject(target: IAnimationObject, propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionObject.startAnimationWithIAnimationObject'); - } - - static startAnimationGroupWithIAnimationObject(target: IAnimationObject, animation: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionObject.startAnimationGroupWithIAnimationObject'); - } - - } - export class CompositionPath implements ICompositionPath, Graphics.IGeometrySource2D { - // constructor(source: Graphics.IGeometrySource2D); - constructor(source: Graphics.IGeometrySource2D) {} - - } - export class CompositionPathGeometry implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionGeometry, ICompositionPathGeometry { - path: CompositionPath; - trimStart: number; - trimOffset: number; - trimEnd: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionPathGeometry.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionPathGeometry.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionPathGeometry.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionPathGeometry.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionPathGeometry.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionPathGeometry.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionPathGeometry.populatePropertyInfo'); - } - - } - export class CompositionProjectedShadow implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionProjectedShadow { - minBlurRadius: number; - maxBlurRadius: number; - lightSource: CompositionLight; - blurRadiusMultiplier: number; - casters: CompositionProjectedShadowCasterCollection; - receivers: CompositionProjectedShadowReceiverUnorderedCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionProjectedShadow.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionProjectedShadow.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionProjectedShadow.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadow.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadow.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionProjectedShadow.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionProjectedShadow.populatePropertyInfo'); - } - - } - export class CompositionProjectedShadowCaster implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionProjectedShadowCaster { - castingVisual: Visual; - brush: CompositionBrush; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionProjectedShadowCaster.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionProjectedShadowCaster.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionProjectedShadowCaster.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowCaster.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowCaster.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionProjectedShadowCaster.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionProjectedShadowCaster.populatePropertyInfo'); - } - - } - export class CompositionProjectedShadowCasterCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionProjectedShadowCasterCollection, Foundation.Collections.IIterable { - count: number; - static maxRespectedCasters: number = 5; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionProjectedShadowCasterCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.populatePropertyInfo'); - } - - insertAbove(newCaster: CompositionProjectedShadowCaster, reference: CompositionProjectedShadowCaster): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.insertAbove'); - } - - insertAtBottom(newCaster: CompositionProjectedShadowCaster): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.insertAtBottom'); - } - - insertAtTop(newCaster: CompositionProjectedShadowCaster): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.insertAtTop'); - } - - insertBelow(newCaster: CompositionProjectedShadowCaster, reference: CompositionProjectedShadowCaster): void { - console.warn('shimmed function CompositionProjectedShadowCasterCollection.insertBelow'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CompositionProjectedShadowCasterCollection.first'); - } - - } - export class CompositionProjectedShadowReceiver implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionProjectedShadowReceiver { - receivingVisual: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionProjectedShadowReceiver.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionProjectedShadowReceiver.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionProjectedShadowReceiver.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowReceiver.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowReceiver.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionProjectedShadowReceiver.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionProjectedShadowReceiver.populatePropertyInfo'); - } - - } - export class CompositionProjectedShadowReceiverUnorderedCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionProjectedShadowReceiverUnorderedCollection, Foundation.Collections.IIterable { - count: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.populatePropertyInfo'); - } - - add(value: CompositionProjectedShadowReceiver): void { - console.warn('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.add'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CompositionProjectedShadowReceiverUnorderedCollection.first'); - } - - } - export class CompositionPropertySet implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionPropertySet, ICompositionPropertySet2 { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionPropertySet.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionPropertySet.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionPropertySet.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionPropertySet.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionPropertySet.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionPropertySet.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionPropertySet.populatePropertyInfo'); - } - - insertColor(propertyName: string, value: Color): void { - console.warn('shimmed function CompositionPropertySet.insertColor'); - } - - insertMatrix3x2(propertyName: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function CompositionPropertySet.insertMatrix3x2'); - } - - insertMatrix4x4(propertyName: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function CompositionPropertySet.insertMatrix4x4'); - } - - insertQuaternion(propertyName: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function CompositionPropertySet.insertQuaternion'); - } - - insertScalar(propertyName: string, value: number): void { - console.warn('shimmed function CompositionPropertySet.insertScalar'); - } - - insertVector2(propertyName: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function CompositionPropertySet.insertVector2'); - } - - insertVector3(propertyName: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function CompositionPropertySet.insertVector3'); - } - - insertVector4(propertyName: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function CompositionPropertySet.insertVector4'); - } - - tryGetColor(propertyName: string): { returnValue: CompositionGetValueStatus, value: Color } { - throw new Error('shimmed function CompositionPropertySet.tryGetColor'); - } - - tryGetMatrix3x2(propertyName: string): { returnValue: CompositionGetValueStatus, value: Foundation.Numerics.Matrix3x2 } { - throw new Error('shimmed function CompositionPropertySet.tryGetMatrix3x2'); - } - - tryGetMatrix4x4(propertyName: string): { returnValue: CompositionGetValueStatus, value: Foundation.Numerics.Matrix4x4 } { - throw new Error('shimmed function CompositionPropertySet.tryGetMatrix4x4'); - } - - tryGetQuaternion(propertyName: string): { returnValue: CompositionGetValueStatus, value: Foundation.Numerics.Quaternion } { - throw new Error('shimmed function CompositionPropertySet.tryGetQuaternion'); - } - - tryGetScalar(propertyName: string): { returnValue: CompositionGetValueStatus, value: number } { - throw new Error('shimmed function CompositionPropertySet.tryGetScalar'); - } - - tryGetVector2(propertyName: string): { returnValue: CompositionGetValueStatus, value: Foundation.Numerics.Vector2 } { - throw new Error('shimmed function CompositionPropertySet.tryGetVector2'); - } - - tryGetVector3(propertyName: string): { returnValue: CompositionGetValueStatus, value: Foundation.Numerics.Vector3 } { - throw new Error('shimmed function CompositionPropertySet.tryGetVector3'); - } - - tryGetVector4(propertyName: string): { returnValue: CompositionGetValueStatus, value: Foundation.Numerics.Vector4 } { - throw new Error('shimmed function CompositionPropertySet.tryGetVector4'); - } - - insertBoolean(propertyName: string, value: Boolean): void { - console.warn('shimmed function CompositionPropertySet.insertBoolean'); - } - - tryGetBoolean(propertyName: string): { returnValue: CompositionGetValueStatus, value: Boolean } { - throw new Error('shimmed function CompositionPropertySet.tryGetBoolean'); - } - - } - export class CompositionRadialGradientBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionGradientBrush, ICompositionGradientBrush2, ICompositionRadialGradientBrush { - gradientOriginOffset: Foundation.Numerics.Vector2; - ellipseRadius: Foundation.Numerics.Vector2; - ellipseCenter: Foundation.Numerics.Vector2; - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - interpolationSpace: CompositionColorSpace; - extendMode: CompositionGradientExtendMode; - centerPoint: Foundation.Numerics.Vector2; - anchorPoint: Foundation.Numerics.Vector2; - colorStops: CompositionColorGradientStopCollection; - mappingMode: CompositionMappingMode; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionRadialGradientBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionRadialGradientBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionRadialGradientBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionRadialGradientBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionRadialGradientBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionRadialGradientBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionRadialGradientBrush.populatePropertyInfo'); - } - - } - export class CompositionRectangleGeometry implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionGeometry, ICompositionRectangleGeometry { - size: Foundation.Numerics.Vector2; - offset: Foundation.Numerics.Vector2; - trimStart: number; - trimOffset: number; - trimEnd: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionRectangleGeometry.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionRectangleGeometry.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionRectangleGeometry.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionRectangleGeometry.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionRectangleGeometry.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionRectangleGeometry.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionRectangleGeometry.populatePropertyInfo'); - } - - } - export class CompositionRoundedRectangleGeometry implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionGeometry, ICompositionRoundedRectangleGeometry { - size: Foundation.Numerics.Vector2; - offset: Foundation.Numerics.Vector2; - cornerRadius: Foundation.Numerics.Vector2; - trimStart: number; - trimOffset: number; - trimEnd: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionRoundedRectangleGeometry.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionRoundedRectangleGeometry.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionRoundedRectangleGeometry.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionRoundedRectangleGeometry.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionRoundedRectangleGeometry.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionRoundedRectangleGeometry.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionRoundedRectangleGeometry.populatePropertyInfo'); - } - - } - export class CompositionScopedBatch implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionScopedBatch { - isActive: Boolean; - isEnded: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionScopedBatch.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionScopedBatch.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionScopedBatch.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionScopedBatch.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionScopedBatch.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionScopedBatch.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionScopedBatch.populatePropertyInfo'); - } - - end(): void { - console.warn('shimmed function CompositionScopedBatch.end'); - } - - resume(): void { - console.warn('shimmed function CompositionScopedBatch.resume'); - } - - suspend(): void { - console.warn('shimmed function CompositionScopedBatch.suspend'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CompositionScopedBatch::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - break; - } - - } - } - export class CompositionShadow implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionShadow { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionShadow.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionShadow.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionShadow.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionShadow.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionShadow.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionShadow.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionShadow.populatePropertyInfo'); - } - - } - export class CompositionShape implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionShape { - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - centerPoint: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionShape.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionShape.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionShape.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionShape.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionShape.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionShape.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionShape.populatePropertyInfo'); - } - - } - export class CompositionShapeCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionShapeCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionShapeCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionShapeCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionShapeCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionShapeCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionShapeCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionShapeCollection.populatePropertyInfo'); - } - - getAt(index: number): CompositionShape { - throw new Error('shimmed function CompositionShapeCollection.getAt'); - } - - getView(): CompositionShape[] { - throw new Error('shimmed function CompositionShapeCollection.getView'); - } - - indexOf(value: CompositionShape): { returnValue: Boolean, index: number } { - throw new Error('shimmed function CompositionShapeCollection.indexOf'); - } - - setAt(index: number, value: CompositionShape): void { - console.warn('shimmed function CompositionShapeCollection.setAt'); - } - - insertAt(index: number, value: CompositionShape): void { - console.warn('shimmed function CompositionShapeCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function CompositionShapeCollection.removeAt'); - } - - append(value: CompositionShape): void { - console.warn('shimmed function CompositionShapeCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function CompositionShapeCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function CompositionShapeCollection.clear'); - } - - getMany(startIndex: number, items: CompositionShape[]): number { - throw new Error('shimmed function CompositionShapeCollection.getMany'); - } - - replaceAll(items: CompositionShape[]): void { - console.warn('shimmed function CompositionShapeCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CompositionShapeCollection.first'); - } - - } - export class CompositionSpriteShape implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionShape, ICompositionSpriteShape { - strokeThickness: number; - strokeStartCap: CompositionStrokeCap; - strokeMiterLimit: number; - strokeLineJoin: CompositionStrokeLineJoin; - strokeEndCap: CompositionStrokeCap; - strokeDashOffset: number; - strokeDashCap: CompositionStrokeCap; - strokeBrush: CompositionBrush; - isStrokeNonScaling: Boolean; - geometry: CompositionGeometry; - fillBrush: CompositionBrush; - strokeDashArray: CompositionStrokeDashArray; - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - centerPoint: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionSpriteShape.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionSpriteShape.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionSpriteShape.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionSpriteShape.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionSpriteShape.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionSpriteShape.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionSpriteShape.populatePropertyInfo'); - } - - } - export enum CompositionStretch { - none, - fill, - uniform, - uniformToFill, - } - export enum CompositionStrokeCap { - flat, - square, - round, - triangle, - } - export class CompositionStrokeDashArray implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionStrokeDashArray.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionStrokeDashArray.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionStrokeDashArray.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionStrokeDashArray.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionStrokeDashArray.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionStrokeDashArray.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionStrokeDashArray.populatePropertyInfo'); - } - - getAt(index: number): number { - throw new Error('shimmed function CompositionStrokeDashArray.getAt'); - } - - getView(): number[] { - throw new Error('shimmed function CompositionStrokeDashArray.getView'); - } - - indexOf(value: number): { returnValue: Boolean, index: number } { - throw new Error('shimmed function CompositionStrokeDashArray.indexOf'); - } - - setAt(index: number, value: number): void { - console.warn('shimmed function CompositionStrokeDashArray.setAt'); - } - - insertAt(index: number, value: number): void { - console.warn('shimmed function CompositionStrokeDashArray.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function CompositionStrokeDashArray.removeAt'); - } - - append(value: number): void { - console.warn('shimmed function CompositionStrokeDashArray.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function CompositionStrokeDashArray.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function CompositionStrokeDashArray.clear'); - } - - getMany(startIndex: number, items: number[]): number { - throw new Error('shimmed function CompositionStrokeDashArray.getMany'); - } - - replaceAll(items: number[]): void { - console.warn('shimmed function CompositionStrokeDashArray.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CompositionStrokeDashArray.first'); - } - - } - export enum CompositionStrokeLineJoin { - miter, - bevel, - round, - miterOrBevel, - } - export class CompositionSurfaceBrush implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionBrush, ICompositionSurfaceBrush, ICompositionSurfaceBrush2, ICompositionSurfaceBrush3 { - verticalAlignmentRatio: number; - surface: ICompositionSurface; - stretch: CompositionStretch; - horizontalAlignmentRatio: number; - bitmapInterpolationMode: CompositionBitmapInterpolationMode; - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - centerPoint: Foundation.Numerics.Vector2; - anchorPoint: Foundation.Numerics.Vector2; - snapToPixels: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionSurfaceBrush.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionSurfaceBrush.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionSurfaceBrush.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionSurfaceBrush.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionSurfaceBrush.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionSurfaceBrush.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionSurfaceBrush.populatePropertyInfo'); - } - - } - export class CompositionTarget implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionTarget { - root: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionTarget.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionTarget.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionTarget.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionTarget.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionTarget.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionTarget.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionTarget.populatePropertyInfo'); - } - - } - export class CompositionTransform implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionTransform { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionTransform.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionTransform.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionTransform.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionTransform.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionTransform.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionTransform.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionTransform.populatePropertyInfo'); - } - - } - export class CompositionViewBox implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionViewBox { - verticalAlignmentRatio: number; - stretch: CompositionStretch; - size: Foundation.Numerics.Vector2; - offset: Foundation.Numerics.Vector2; - horizontalAlignmentRatio: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionViewBox.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionViewBox.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionViewBox.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionViewBox.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionViewBox.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionViewBox.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionViewBox.populatePropertyInfo'); - } - - } - export class CompositionVirtualDrawingSurface implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionDrawingSurface, ICompositionSurface, ICompositionDrawingSurface2, ICompositionVirtualDrawingSurface { - alphaMode: Graphics.DirectX.DirectXAlphaMode; - pixelFormat: Graphics.DirectX.DirectXPixelFormat; - size: Foundation.Size; - sizeInt32: Graphics.SizeInt32; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionVirtualDrawingSurface.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.populatePropertyInfo'); - } - - resize(sizePixels: Graphics.SizeInt32): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.resize'); - } - - scroll(offset: Graphics.PointInt32): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.scroll'); - } - - scroll_1(offset: Graphics.PointInt32, scrollRect: Graphics.RectInt32): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.scroll_1'); - } - - scrollWithClip(offset: Graphics.PointInt32, clipRect: Graphics.RectInt32): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.scrollWithClip'); - } - - scrollWithClip_1(offset: Graphics.PointInt32, clipRect: Graphics.RectInt32, scrollRect: Graphics.RectInt32): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.scrollWithClip_1'); - } - - trim(rects: Graphics.RectInt32[]): void { - console.warn('shimmed function CompositionVirtualDrawingSurface.trim'); - } - - } - export class CompositionVisualSurface implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionVisualSurface, ICompositionSurface { - sourceVisual: Visual; - sourceSize: Foundation.Numerics.Vector2; - sourceOffset: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionVisualSurface.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionVisualSurface.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionVisualSurface.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionVisualSurface.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionVisualSurface.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionVisualSurface.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionVisualSurface.populatePropertyInfo'); - } - - } - export class Compositor implements ICompositor, Foundation.IClosable, ICompositor2, ICompositor3, ICompositor4, ICompositor5, ICompositor6, ICompositorWithProjectedShadow, ICompositorWithRadialGradient, ICompositorWithVisualSurface { - // constructor(); - globalPlaybackRate: number = 0; - comment: string = ''; - static maxGlobalPlaybackRate: number = 16; - static minGlobalPlaybackRate: number = 0.0625; - - createColorKeyFrameAnimation(): ColorKeyFrameAnimation { - throw new Error('shimmed function Compositor.createColorKeyFrameAnimation'); - } - - createColorBrush(): CompositionColorBrush { - throw new Error('shimmed function Compositor.createColorBrush'); - } - - createColorBrush_1(color: Color): CompositionColorBrush { - throw new Error('shimmed function Compositor.createColorBrush_1'); - } - - createContainerVisual(): ContainerVisual { - throw new Error('shimmed function Compositor.createContainerVisual'); - } - - createCubicBezierEasingFunction(controlPoint1: Foundation.Numerics.Vector2, controlPoint2: Foundation.Numerics.Vector2): CubicBezierEasingFunction { - throw new Error('shimmed function Compositor.createCubicBezierEasingFunction'); - } - - createEffectFactory(graphicsEffect: Graphics.Effects.IGraphicsEffect): CompositionEffectFactory { - throw new Error('shimmed function Compositor.createEffectFactory'); - } - - createEffectFactory_1(graphicsEffect: Graphics.Effects.IGraphicsEffect, animatableProperties: Foundation.Collections.IIterable): CompositionEffectFactory { - throw new Error('shimmed function Compositor.createEffectFactory_1'); - } - - createExpressionAnimation(): ExpressionAnimation { - throw new Error('shimmed function Compositor.createExpressionAnimation'); - } - - createExpressionAnimation_1(expression: string): ExpressionAnimation { - throw new Error('shimmed function Compositor.createExpressionAnimation_1'); - } - - createInsetClip(): InsetClip { - throw new Error('shimmed function Compositor.createInsetClip'); - } - - createInsetClip_1(leftInset: number, topInset: number, rightInset: number, bottomInset: number): InsetClip { - throw new Error('shimmed function Compositor.createInsetClip_1'); - } - - createLinearEasingFunction(): LinearEasingFunction { - throw new Error('shimmed function Compositor.createLinearEasingFunction'); - } - - createPropertySet(): CompositionPropertySet { - throw new Error('shimmed function Compositor.createPropertySet'); - } - - createQuaternionKeyFrameAnimation(): QuaternionKeyFrameAnimation { - throw new Error('shimmed function Compositor.createQuaternionKeyFrameAnimation'); - } - - createScalarKeyFrameAnimation(): ScalarKeyFrameAnimation { - throw new Error('shimmed function Compositor.createScalarKeyFrameAnimation'); - } - - createScopedBatch(batchType: CompositionBatchTypes): CompositionScopedBatch { - throw new Error('shimmed function Compositor.createScopedBatch'); - } - - createSpriteVisual(): SpriteVisual { - throw new Error('shimmed function Compositor.createSpriteVisual'); - } - - createSurfaceBrush(): CompositionSurfaceBrush { - throw new Error('shimmed function Compositor.createSurfaceBrush'); - } - - createSurfaceBrush_1(surface: ICompositionSurface): CompositionSurfaceBrush { - throw new Error('shimmed function Compositor.createSurfaceBrush_1'); - } - - createTargetForCurrentView(): CompositionTarget { - throw new Error('shimmed function Compositor.createTargetForCurrentView'); - } - - createVector2KeyFrameAnimation(): Vector2KeyFrameAnimation { - throw new Error('shimmed function Compositor.createVector2KeyFrameAnimation'); - } - - createVector3KeyFrameAnimation(): Vector3KeyFrameAnimation { - throw new Error('shimmed function Compositor.createVector3KeyFrameAnimation'); - } - - createVector4KeyFrameAnimation(): Vector4KeyFrameAnimation { - throw new Error('shimmed function Compositor.createVector4KeyFrameAnimation'); - } - - getCommitBatch(batchType: CompositionBatchTypes): CompositionCommitBatch { - throw new Error('shimmed function Compositor.getCommitBatch'); - } - - close(): void { - console.warn('shimmed function Compositor.close'); - } - - createAmbientLight(): AmbientLight { - throw new Error('shimmed function Compositor.createAmbientLight'); - } - - createAnimationGroup(): CompositionAnimationGroup { - throw new Error('shimmed function Compositor.createAnimationGroup'); - } - - createBackdropBrush(): CompositionBackdropBrush { - throw new Error('shimmed function Compositor.createBackdropBrush'); - } - - createDistantLight(): DistantLight { - throw new Error('shimmed function Compositor.createDistantLight'); - } - - createDropShadow(): DropShadow { - throw new Error('shimmed function Compositor.createDropShadow'); - } - - createImplicitAnimationCollection(): ImplicitAnimationCollection { - throw new Error('shimmed function Compositor.createImplicitAnimationCollection'); - } - - createLayerVisual(): LayerVisual { - throw new Error('shimmed function Compositor.createLayerVisual'); - } - - createMaskBrush(): CompositionMaskBrush { - throw new Error('shimmed function Compositor.createMaskBrush'); - } - - createNineGridBrush(): CompositionNineGridBrush { - throw new Error('shimmed function Compositor.createNineGridBrush'); - } - - createPointLight(): PointLight { - throw new Error('shimmed function Compositor.createPointLight'); - } - - createSpotLight(): SpotLight { - throw new Error('shimmed function Compositor.createSpotLight'); - } - - createStepEasingFunction(): StepEasingFunction { - throw new Error('shimmed function Compositor.createStepEasingFunction'); - } - - createStepEasingFunction_1(stepCount: number): StepEasingFunction { - throw new Error('shimmed function Compositor.createStepEasingFunction_1'); - } - - createHostBackdropBrush(): CompositionBackdropBrush { - throw new Error('shimmed function Compositor.createHostBackdropBrush'); - } - - createColorGradientStop(): CompositionColorGradientStop { - throw new Error('shimmed function Compositor.createColorGradientStop'); - } - - createColorGradientStop_1(offset: number, color: Color): CompositionColorGradientStop { - throw new Error('shimmed function Compositor.createColorGradientStop_1'); - } - - createLinearGradientBrush(): CompositionLinearGradientBrush { - throw new Error('shimmed function Compositor.createLinearGradientBrush'); - } - - createSpringScalarAnimation(): SpringScalarNaturalMotionAnimation { - throw new Error('shimmed function Compositor.createSpringScalarAnimation'); - } - - createSpringVector2Animation(): SpringVector2NaturalMotionAnimation { - throw new Error('shimmed function Compositor.createSpringVector2Animation'); - } - - createSpringVector3Animation(): SpringVector3NaturalMotionAnimation { - throw new Error('shimmed function Compositor.createSpringVector3Animation'); - } - - createBounceScalarAnimation(): BounceScalarNaturalMotionAnimation { - throw new Error('shimmed function Compositor.createBounceScalarAnimation'); - } - - createBounceVector2Animation(): BounceVector2NaturalMotionAnimation { - throw new Error('shimmed function Compositor.createBounceVector2Animation'); - } - - createBounceVector3Animation(): BounceVector3NaturalMotionAnimation { - throw new Error('shimmed function Compositor.createBounceVector3Animation'); - } - - createContainerShape(): CompositionContainerShape { - throw new Error('shimmed function Compositor.createContainerShape'); - } - - createEllipseGeometry(): CompositionEllipseGeometry { - throw new Error('shimmed function Compositor.createEllipseGeometry'); - } - - createLineGeometry(): CompositionLineGeometry { - throw new Error('shimmed function Compositor.createLineGeometry'); - } - - createPathGeometry(): CompositionPathGeometry { - throw new Error('shimmed function Compositor.createPathGeometry'); - } - - createPathGeometry_1(path: CompositionPath): CompositionPathGeometry { - throw new Error('shimmed function Compositor.createPathGeometry_1'); - } - - createPathKeyFrameAnimation(): PathKeyFrameAnimation { - throw new Error('shimmed function Compositor.createPathKeyFrameAnimation'); - } - - createRectangleGeometry(): CompositionRectangleGeometry { - throw new Error('shimmed function Compositor.createRectangleGeometry'); - } - - createRoundedRectangleGeometry(): CompositionRoundedRectangleGeometry { - throw new Error('shimmed function Compositor.createRoundedRectangleGeometry'); - } - - createShapeVisual(): ShapeVisual { - throw new Error('shimmed function Compositor.createShapeVisual'); - } - - createSpriteShape(): CompositionSpriteShape { - throw new Error('shimmed function Compositor.createSpriteShape'); - } - - createSpriteShape_1(geometry: CompositionGeometry): CompositionSpriteShape { - throw new Error('shimmed function Compositor.createSpriteShape_1'); - } - - createViewBox(): CompositionViewBox { - throw new Error('shimmed function Compositor.createViewBox'); - } - - requestCommitAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function Compositor.requestCommitAsync'); - } - - createGeometricClip(): CompositionGeometricClip { - throw new Error('shimmed function Compositor.createGeometricClip'); - } - - createGeometricClip_1(geometry: CompositionGeometry): CompositionGeometricClip { - throw new Error('shimmed function Compositor.createGeometricClip_1'); - } - - createRedirectVisual(): RedirectVisual { - throw new Error('shimmed function Compositor.createRedirectVisual'); - } - - createRedirectVisual_1(source: Visual): RedirectVisual { - throw new Error('shimmed function Compositor.createRedirectVisual_1'); - } - - createBooleanKeyFrameAnimation(): BooleanKeyFrameAnimation { - throw new Error('shimmed function Compositor.createBooleanKeyFrameAnimation'); - } - - createProjectedShadowCaster(): CompositionProjectedShadowCaster { - throw new Error('shimmed function Compositor.createProjectedShadowCaster'); - } - - createProjectedShadow(): CompositionProjectedShadow { - throw new Error('shimmed function Compositor.createProjectedShadow'); - } - - createProjectedShadowReceiver(): CompositionProjectedShadowReceiver { - throw new Error('shimmed function Compositor.createProjectedShadowReceiver'); - } - - createRadialGradientBrush(): CompositionRadialGradientBrush { - throw new Error('shimmed function Compositor.createRadialGradientBrush'); - } - - createVisualSurface(): CompositionVisualSurface { - throw new Error('shimmed function Compositor.createVisualSurface'); - } - - } - export class ContainerVisual implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisual, IVisual2, IContainerVisual { - children: VisualCollection; - transformMatrix: Foundation.Numerics.Matrix4x4; - size: Foundation.Numerics.Vector2; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - opacity: number; - offset: Foundation.Numerics.Vector3; - isVisible: Boolean; - compositeMode: CompositionCompositeMode; - clip: CompositionClip; - centerPoint: Foundation.Numerics.Vector3; - borderMode: CompositionBorderMode; - backfaceVisibility: CompositionBackfaceVisibility; - anchorPoint: Foundation.Numerics.Vector2; - parent: ContainerVisual; - relativeSizeAdjustment: Foundation.Numerics.Vector2; - relativeOffsetAdjustment: Foundation.Numerics.Vector3; - parentForTransform: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ContainerVisual.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ContainerVisual.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ContainerVisual.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ContainerVisual.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ContainerVisual.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ContainerVisual.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ContainerVisual.populatePropertyInfo'); - } - - } - export namespace Core { - export class CompositorController implements ICompositorController, Foundation.IClosable { - // constructor(); - compositor: Compositor = null; - - commit(): void { - console.warn('shimmed function CompositorController.commit'); - } - - ensurePreviousCommitCompletedAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function CompositorController.ensurePreviousCommitCompletedAsync'); - } - - close(): void { - console.warn('shimmed function CompositorController.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CompositorController::addEventListener: ${name}`); - switch (name) { - case "commitneeded": // Foundation.TypedEventHandler - break; - } - - } - } - } - export class CubicBezierEasingFunction implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionEasingFunction, ICubicBezierEasingFunction { - controlPoint1: Foundation.Numerics.Vector2; - controlPoint2: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CubicBezierEasingFunction.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CubicBezierEasingFunction.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CubicBezierEasingFunction.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CubicBezierEasingFunction.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CubicBezierEasingFunction.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CubicBezierEasingFunction.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CubicBezierEasingFunction.populatePropertyInfo'); - } - - } - export namespace Desktop { - export class DesktopWindowTarget implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionTarget, IDesktopWindowTarget { - isTopmost: Boolean; - root: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function DesktopWindowTarget.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function DesktopWindowTarget.stopAnimation'); - } - - close(): void { - console.warn('shimmed function DesktopWindowTarget.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function DesktopWindowTarget.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function DesktopWindowTarget.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function DesktopWindowTarget.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function DesktopWindowTarget.populatePropertyInfo'); - } - - } - } - export namespace Diagnostics { - export class CompositionDebugHeatMaps implements ICompositionDebugHeatMaps { - hide(subtree: Visual): void { - console.warn('shimmed function CompositionDebugHeatMaps.hide'); - } - - showMemoryUsage(subtree: Visual): void { - console.warn('shimmed function CompositionDebugHeatMaps.showMemoryUsage'); - } - - showOverdraw(subtree: Visual, contentKinds: CompositionDebugOverdrawContentKinds): void { - console.warn('shimmed function CompositionDebugHeatMaps.showOverdraw'); - } - - showRedraw(subtree: Visual): void { - console.warn('shimmed function CompositionDebugHeatMaps.showRedraw'); - } - - } - export enum CompositionDebugOverdrawContentKinds { - none, - offscreenRendered, - colors, - effects = 4, - shadows = 8, - lights = 16, - surfaces = 32, - swapChains = 64, - all = 4294967295, - } - export class CompositionDebugSettings implements ICompositionDebugSettings { - heatMaps: CompositionDebugHeatMaps; - - static tryGetSettings(compositor: Compositor): CompositionDebugSettings { - throw new Error('shimmed function CompositionDebugSettings.tryGetSettings'); - } - - } - } - export class DistantLight implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionLight, ICompositionLight2, ICompositionLight3, IDistantLight, IDistantLight2 { - direction: Foundation.Numerics.Vector3; - coordinateSpace: Visual; - color: Color; - intensity: number; - targets: VisualUnorderedCollection; - exclusionsFromTargets: VisualUnorderedCollection; - isEnabled: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function DistantLight.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function DistantLight.stopAnimation'); - } - - close(): void { - console.warn('shimmed function DistantLight.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function DistantLight.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function DistantLight.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function DistantLight.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function DistantLight.populatePropertyInfo'); - } - - } - export class DropShadow implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionShadow, IDropShadow, IDropShadow2 { - opacity: number; - offset: Foundation.Numerics.Vector3; - mask: CompositionBrush; - color: Color; - blurRadius: number; - sourcePolicy: CompositionDropShadowSourcePolicy; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function DropShadow.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function DropShadow.stopAnimation'); - } - - close(): void { - console.warn('shimmed function DropShadow.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function DropShadow.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function DropShadow.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function DropShadow.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function DropShadow.populatePropertyInfo'); - } - - } - export namespace Effects { - export class SceneLightingEffect implements ISceneLightingEffect, Graphics.Effects.IGraphicsEffect, Graphics.Effects.IGraphicsEffectSource, ISceneLightingEffect2 { - // constructor(); - name: string = ''; - specularShine: number = 16; - specularAmount: number = 1; - normalMapSource: Graphics.Effects.IGraphicsEffectSource; - diffuseAmount: number = 1; - ambientAmount: number = 1; - reflectanceModel: SceneLightingEffectReflectanceModel = SceneLightingEffectReflectanceModel.blinnPhong; - - } - export enum SceneLightingEffectReflectanceModel { - blinnPhong, - physicallyBasedBlinnPhong, - } - } - export class ExpressionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IExpressionAnimation { - expression: string; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ExpressionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ExpressionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ExpressionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ExpressionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ExpressionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ExpressionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ExpressionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function ExpressionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function ExpressionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function ExpressionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function ExpressionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function ExpressionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function ExpressionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function ExpressionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function ExpressionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function ExpressionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function ExpressionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function ExpressionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function ExpressionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function ExpressionAnimation.setExpressionReferenceParameter'); - } - - } - export interface IAnimationObject { - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void; - } - export interface ICompositionAnimationBase { - } - export interface ICompositionSurface { - } - export class ImplicitAnimationCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IImplicitAnimationCollection, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - size: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ImplicitAnimationCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ImplicitAnimationCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ImplicitAnimationCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ImplicitAnimationCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ImplicitAnimationCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ImplicitAnimationCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ImplicitAnimationCollection.populatePropertyInfo'); - } - - lookup(key: string): ICompositionAnimationBase { - throw new Error('shimmed function ImplicitAnimationCollection.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function ImplicitAnimationCollection.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function ImplicitAnimationCollection.getView'); - } - - insert(key: string, value: ICompositionAnimationBase): Boolean { - throw new Error('shimmed function ImplicitAnimationCollection.insert'); - } - - clear(): void { - console.warn('shimmed function ImplicitAnimationCollection.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ImplicitAnimationCollection.first'); - } - - } - export class InitialValueExpressionCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - size: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InitialValueExpressionCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InitialValueExpressionCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InitialValueExpressionCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InitialValueExpressionCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InitialValueExpressionCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InitialValueExpressionCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InitialValueExpressionCollection.populatePropertyInfo'); - } - - lookup(key: string): string { - throw new Error('shimmed function InitialValueExpressionCollection.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function InitialValueExpressionCollection.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function InitialValueExpressionCollection.getView'); - } - - insert(key: string, value: string): Boolean { - throw new Error('shimmed function InitialValueExpressionCollection.insert'); - } - - clear(): void { - console.warn('shimmed function InitialValueExpressionCollection.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function InitialValueExpressionCollection.first'); - } - - } - export class InsetClip implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionClip, ICompositionClip2, IInsetClip { - topInset: number; - rightInset: number; - leftInset: number; - bottomInset: number; - transformMatrix: Foundation.Numerics.Matrix3x2; - scale: Foundation.Numerics.Vector2; - rotationAngleInDegrees: number; - rotationAngle: number; - offset: Foundation.Numerics.Vector2; - centerPoint: Foundation.Numerics.Vector2; - anchorPoint: Foundation.Numerics.Vector2; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InsetClip.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InsetClip.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InsetClip.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InsetClip.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InsetClip.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InsetClip.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InsetClip.populatePropertyInfo'); - } - - } - export namespace Interactions { - export class CompositionConditionalValue implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionConditionalValue { - value: ExpressionAnimation; - condition: ExpressionAnimation; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionConditionalValue.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionConditionalValue.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionConditionalValue.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionConditionalValue.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionConditionalValue.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionConditionalValue.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionConditionalValue.populatePropertyInfo'); - } - - static create(compositor: Compositor): CompositionConditionalValue { - throw new Error('shimmed function CompositionConditionalValue.create'); - } - - } - export class CompositionInteractionSourceCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionInteractionSourceCollection, Foundation.Collections.IIterable { - count: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function CompositionInteractionSourceCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function CompositionInteractionSourceCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function CompositionInteractionSourceCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionInteractionSourceCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function CompositionInteractionSourceCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function CompositionInteractionSourceCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function CompositionInteractionSourceCollection.populatePropertyInfo'); - } - - add(value: ICompositionInteractionSource): void { - console.warn('shimmed function CompositionInteractionSourceCollection.add'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function CompositionInteractionSourceCollection.first'); - } - - } - export interface ICompositionInteractionSource { - } - export interface IInteractionTrackerOwner { - customAnimationStateEntered(sender: InteractionTracker, args: InteractionTrackerCustomAnimationStateEnteredArgs): void; - idleStateEntered(sender: InteractionTracker, args: InteractionTrackerIdleStateEnteredArgs): void; - inertiaStateEntered(sender: InteractionTracker, args: InteractionTrackerInertiaStateEnteredArgs): void; - interactingStateEntered(sender: InteractionTracker, args: InteractionTrackerInteractingStateEnteredArgs): void; - requestIgnored(sender: InteractionTracker, args: InteractionTrackerRequestIgnoredArgs): void; - valuesChanged(sender: InteractionTracker, args: InteractionTrackerValuesChangedArgs): void; - } - export enum InteractionBindingAxisModes { - none, - positionX, - positionY, - scale = 4, - } - export enum InteractionChainingMode { - auto, - always, - never, - } - export class InteractionSourceConfiguration implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionSourceConfiguration { - scaleSourceMode: InteractionSourceRedirectionMode; - positionYSourceMode: InteractionSourceRedirectionMode; - positionXSourceMode: InteractionSourceRedirectionMode; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionSourceConfiguration.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionSourceConfiguration.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionSourceConfiguration.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionSourceConfiguration.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionSourceConfiguration.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionSourceConfiguration.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionSourceConfiguration.populatePropertyInfo'); - } - - } - export enum InteractionSourceMode { - disabled, - enabledWithInertia, - enabledWithoutInertia, - } - export enum InteractionSourceRedirectionMode { - disabled, - enabled, - } - export class InteractionTracker implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionTracker, IInteractionTracker2, IInteractionTracker3, IInteractionTracker4 { - scaleInertiaDecayRate: number | null; - positionInertiaDecayRate: Foundation.Numerics.Vector3 | null; - minScale: number; - minPosition: Foundation.Numerics.Vector3; - maxScale: number; - maxPosition: Foundation.Numerics.Vector3; - interactionSources: CompositionInteractionSourceCollection; - isPositionRoundingSuggested: Boolean; - naturalRestingPosition: Foundation.Numerics.Vector3; - naturalRestingScale: number; - owner: IInteractionTrackerOwner; - position: Foundation.Numerics.Vector3; - positionVelocityInPixelsPerSecond: Foundation.Numerics.Vector3; - scale: number; - scaleVelocityInPercentPerSecond: number; - isInertiaFromImpulse: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionTracker.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionTracker.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionTracker.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTracker.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTracker.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionTracker.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionTracker.populatePropertyInfo'); - } - - adjustPositionXIfGreaterThanThreshold(adjustment: number, positionThreshold: number): void { - console.warn('shimmed function InteractionTracker.adjustPositionXIfGreaterThanThreshold'); - } - - adjustPositionYIfGreaterThanThreshold(adjustment: number, positionThreshold: number): void { - console.warn('shimmed function InteractionTracker.adjustPositionYIfGreaterThanThreshold'); - } - - configurePositionXInertiaModifiers(modifiers: Foundation.Collections.IIterable): void { - console.warn('shimmed function InteractionTracker.configurePositionXInertiaModifiers'); - } - - configurePositionYInertiaModifiers(modifiers: Foundation.Collections.IIterable): void { - console.warn('shimmed function InteractionTracker.configurePositionYInertiaModifiers'); - } - - configureScaleInertiaModifiers(modifiers: Foundation.Collections.IIterable): void { - console.warn('shimmed function InteractionTracker.configureScaleInertiaModifiers'); - } - - tryUpdatePosition(value: Foundation.Numerics.Vector3): number { - throw new Error('shimmed function InteractionTracker.tryUpdatePosition'); - } - - tryUpdatePositionBy(amount: Foundation.Numerics.Vector3): number { - throw new Error('shimmed function InteractionTracker.tryUpdatePositionBy'); - } - - tryUpdatePositionWithAnimation(animation: CompositionAnimation): number { - throw new Error('shimmed function InteractionTracker.tryUpdatePositionWithAnimation'); - } - - tryUpdatePositionWithAdditionalVelocity(velocityInPixelsPerSecond: Foundation.Numerics.Vector3): number { - throw new Error('shimmed function InteractionTracker.tryUpdatePositionWithAdditionalVelocity'); - } - - tryUpdateScale(value: number, centerPoint: Foundation.Numerics.Vector3): number { - throw new Error('shimmed function InteractionTracker.tryUpdateScale'); - } - - tryUpdateScaleWithAnimation(animation: CompositionAnimation, centerPoint: Foundation.Numerics.Vector3): number { - throw new Error('shimmed function InteractionTracker.tryUpdateScaleWithAnimation'); - } - - tryUpdateScaleWithAdditionalVelocity(velocityInPercentPerSecond: number, centerPoint: Foundation.Numerics.Vector3): number { - throw new Error('shimmed function InteractionTracker.tryUpdateScaleWithAdditionalVelocity'); - } - - configureCenterPointXInertiaModifiers(conditionalValues: Foundation.Collections.IIterable): void { - console.warn('shimmed function InteractionTracker.configureCenterPointXInertiaModifiers'); - } - - configureCenterPointYInertiaModifiers(conditionalValues: Foundation.Collections.IIterable): void { - console.warn('shimmed function InteractionTracker.configureCenterPointYInertiaModifiers'); - } - - configureVector2PositionInertiaModifiers(modifiers: Foundation.Collections.IIterable): void { - console.warn('shimmed function InteractionTracker.configureVector2PositionInertiaModifiers'); - } - - tryUpdatePosition_1(value: Foundation.Numerics.Vector3, option: InteractionTrackerClampingOption): number { - throw new Error('shimmed function InteractionTracker.tryUpdatePosition_1'); - } - - tryUpdatePositionBy_1(amount: Foundation.Numerics.Vector3, option: InteractionTrackerClampingOption): number { - throw new Error('shimmed function InteractionTracker.tryUpdatePositionBy_1'); - } - - static setBindingMode(boundTracker1: InteractionTracker, boundTracker2: InteractionTracker, axisMode: InteractionBindingAxisModes): void { - console.warn('shimmed function InteractionTracker.setBindingMode'); - } - - static getBindingMode(boundTracker1: InteractionTracker, boundTracker2: InteractionTracker): InteractionBindingAxisModes { - throw new Error('shimmed function InteractionTracker.getBindingMode'); - } - - static create(compositor: Compositor): InteractionTracker { - throw new Error('shimmed function InteractionTracker.create'); - } - - static createWithOwner(compositor: Compositor, owner: IInteractionTrackerOwner): InteractionTracker { - throw new Error('shimmed function InteractionTracker.createWithOwner'); - } - - } - export enum InteractionTrackerClampingOption { - auto, - disabled, - } - export class InteractionTrackerCustomAnimationStateEnteredArgs implements IInteractionTrackerCustomAnimationStateEnteredArgs, IInteractionTrackerCustomAnimationStateEnteredArgs2 { - requestId: number; - isFromBinding: Boolean; - - } - export class InteractionTrackerIdleStateEnteredArgs implements IInteractionTrackerIdleStateEnteredArgs, IInteractionTrackerIdleStateEnteredArgs2 { - requestId: number; - isFromBinding: Boolean; - - } - export class InteractionTrackerInertiaModifier implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionTrackerInertiaModifier { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionTrackerInertiaModifier.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionTrackerInertiaModifier.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionTrackerInertiaModifier.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaModifier.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaModifier.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionTrackerInertiaModifier.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionTrackerInertiaModifier.populatePropertyInfo'); - } - - } - export class InteractionTrackerInertiaMotion implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionTrackerInertiaModifier, IInteractionTrackerInertiaMotion { - motion: ExpressionAnimation; - condition: ExpressionAnimation; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionTrackerInertiaMotion.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionTrackerInertiaMotion.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionTrackerInertiaMotion.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaMotion.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaMotion.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionTrackerInertiaMotion.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionTrackerInertiaMotion.populatePropertyInfo'); - } - - static create(compositor: Compositor): InteractionTrackerInertiaMotion { - throw new Error('shimmed function InteractionTrackerInertiaMotion.create'); - } - - } - export class InteractionTrackerInertiaNaturalMotion implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionTrackerInertiaModifier, IInteractionTrackerInertiaNaturalMotion { - naturalMotion: ScalarNaturalMotionAnimation; - condition: ExpressionAnimation; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionTrackerInertiaNaturalMotion.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionTrackerInertiaNaturalMotion.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionTrackerInertiaNaturalMotion.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaNaturalMotion.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaNaturalMotion.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionTrackerInertiaNaturalMotion.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionTrackerInertiaNaturalMotion.populatePropertyInfo'); - } - - static create(compositor: Compositor): InteractionTrackerInertiaNaturalMotion { - throw new Error('shimmed function InteractionTrackerInertiaNaturalMotion.create'); - } - - } - export class InteractionTrackerInertiaRestingValue implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionTrackerInertiaModifier, IInteractionTrackerInertiaRestingValue { - restingValue: ExpressionAnimation; - condition: ExpressionAnimation; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionTrackerInertiaRestingValue.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionTrackerInertiaRestingValue.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionTrackerInertiaRestingValue.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaRestingValue.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerInertiaRestingValue.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionTrackerInertiaRestingValue.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionTrackerInertiaRestingValue.populatePropertyInfo'); - } - - static create(compositor: Compositor): InteractionTrackerInertiaRestingValue { - throw new Error('shimmed function InteractionTrackerInertiaRestingValue.create'); - } - - } - export class InteractionTrackerInertiaStateEnteredArgs implements IInteractionTrackerInertiaStateEnteredArgs, IInteractionTrackerInertiaStateEnteredArgs2, IInteractionTrackerInertiaStateEnteredArgs3 { - modifiedRestingPosition: Foundation.Numerics.Vector3 | null; - modifiedRestingScale: number | null; - naturalRestingPosition: Foundation.Numerics.Vector3; - naturalRestingScale: number; - positionVelocityInPixelsPerSecond: Foundation.Numerics.Vector3; - requestId: number; - scaleVelocityInPercentPerSecond: number; - isInertiaFromImpulse: Boolean; - isFromBinding: Boolean; - - } - export class InteractionTrackerInteractingStateEnteredArgs implements IInteractionTrackerInteractingStateEnteredArgs, IInteractionTrackerInteractingStateEnteredArgs2 { - requestId: number; - isFromBinding: Boolean; - - } - export class InteractionTrackerRequestIgnoredArgs implements IInteractionTrackerRequestIgnoredArgs { - requestId: number; - - } - export class InteractionTrackerValuesChangedArgs implements IInteractionTrackerValuesChangedArgs { - position: Foundation.Numerics.Vector3; - requestId: number; - scale: number; - - } - export class InteractionTrackerVector2InertiaModifier implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionTrackerVector2InertiaModifier { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionTrackerVector2InertiaModifier.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionTrackerVector2InertiaModifier.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionTrackerVector2InertiaModifier.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerVector2InertiaModifier.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerVector2InertiaModifier.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionTrackerVector2InertiaModifier.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionTrackerVector2InertiaModifier.populatePropertyInfo'); - } - - } - export class InteractionTrackerVector2InertiaNaturalMotion implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IInteractionTrackerVector2InertiaModifier, IInteractionTrackerVector2InertiaNaturalMotion { - naturalMotion: Vector2NaturalMotionAnimation; - condition: ExpressionAnimation; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function InteractionTrackerVector2InertiaNaturalMotion.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function InteractionTrackerVector2InertiaNaturalMotion.stopAnimation'); - } - - close(): void { - console.warn('shimmed function InteractionTrackerVector2InertiaNaturalMotion.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerVector2InertiaNaturalMotion.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function InteractionTrackerVector2InertiaNaturalMotion.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function InteractionTrackerVector2InertiaNaturalMotion.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function InteractionTrackerVector2InertiaNaturalMotion.populatePropertyInfo'); - } - - static create(compositor: Compositor): InteractionTrackerVector2InertiaNaturalMotion { - throw new Error('shimmed function InteractionTrackerVector2InertiaNaturalMotion.create'); - } - - } - export class VisualInteractionSource implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisualInteractionSource, IVisualInteractionSource2, IVisualInteractionSource3, ICompositionInteractionSource { - scaleSourceMode: InteractionSourceMode; - scaleChainingMode: InteractionChainingMode; - positionYSourceMode: InteractionSourceMode; - positionYChainingMode: InteractionChainingMode; - positionXSourceMode: InteractionSourceMode; - positionXChainingMode: InteractionChainingMode; - manipulationRedirectionMode: VisualInteractionSourceRedirectionMode; - isPositionYRailsEnabled: Boolean; - isPositionXRailsEnabled: Boolean; - source: Visual; - deltaPosition: Foundation.Numerics.Vector3; - deltaScale: number; - position: Foundation.Numerics.Vector3; - positionVelocity: Foundation.Numerics.Vector3; - scale: number; - scaleVelocity: number; - pointerWheelConfig: InteractionSourceConfiguration; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function VisualInteractionSource.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function VisualInteractionSource.stopAnimation'); - } - - close(): void { - console.warn('shimmed function VisualInteractionSource.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function VisualInteractionSource.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function VisualInteractionSource.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function VisualInteractionSource.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function VisualInteractionSource.populatePropertyInfo'); - } - - tryRedirectForManipulation(pointerPoint: Input.PointerPoint): void { - console.warn('shimmed function VisualInteractionSource.tryRedirectForManipulation'); - } - - configureCenterPointXModifiers(conditionalValues: Foundation.Collections.IIterable): void { - console.warn('shimmed function VisualInteractionSource.configureCenterPointXModifiers'); - } - - configureCenterPointYModifiers(conditionalValues: Foundation.Collections.IIterable): void { - console.warn('shimmed function VisualInteractionSource.configureCenterPointYModifiers'); - } - - configureDeltaPositionXModifiers(conditionalValues: Foundation.Collections.IIterable): void { - console.warn('shimmed function VisualInteractionSource.configureDeltaPositionXModifiers'); - } - - configureDeltaPositionYModifiers(conditionalValues: Foundation.Collections.IIterable): void { - console.warn('shimmed function VisualInteractionSource.configureDeltaPositionYModifiers'); - } - - configureDeltaScaleModifiers(conditionalValues: Foundation.Collections.IIterable): void { - console.warn('shimmed function VisualInteractionSource.configureDeltaScaleModifiers'); - } - - static createFromIVisualElement(source: IVisualElement): VisualInteractionSource { - throw new Error('shimmed function VisualInteractionSource.createFromIVisualElement'); - } - - static create(source: Visual): VisualInteractionSource { - throw new Error('shimmed function VisualInteractionSource.create'); - } - - } - export enum VisualInteractionSourceRedirectionMode { - off, - capableTouchpadOnly, - pointerWheelOnly, - capableTouchpadAndPointerWheel, - } - } - export interface IVisualElement { - } - export class KeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3 { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function KeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function KeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function KeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function KeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function KeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function KeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function KeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function KeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function KeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function KeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function KeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function KeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function KeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function KeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function KeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function KeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function KeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function KeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function KeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function KeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function KeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function KeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - } - export class LayerVisual implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisual, IVisual2, IContainerVisual, ILayerVisual, ILayerVisual2 { - effect: CompositionEffectBrush; - shadow: CompositionShadow; - children: VisualCollection; - transformMatrix: Foundation.Numerics.Matrix4x4; - size: Foundation.Numerics.Vector2; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - opacity: number; - offset: Foundation.Numerics.Vector3; - isVisible: Boolean; - compositeMode: CompositionCompositeMode; - clip: CompositionClip; - centerPoint: Foundation.Numerics.Vector3; - borderMode: CompositionBorderMode; - backfaceVisibility: CompositionBackfaceVisibility; - anchorPoint: Foundation.Numerics.Vector2; - parent: ContainerVisual; - relativeSizeAdjustment: Foundation.Numerics.Vector2; - relativeOffsetAdjustment: Foundation.Numerics.Vector3; - parentForTransform: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function LayerVisual.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function LayerVisual.stopAnimation'); - } - - close(): void { - console.warn('shimmed function LayerVisual.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function LayerVisual.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function LayerVisual.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function LayerVisual.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function LayerVisual.populatePropertyInfo'); - } - - } - export class LinearEasingFunction implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionEasingFunction, ILinearEasingFunction { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function LinearEasingFunction.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function LinearEasingFunction.stopAnimation'); - } - - close(): void { - console.warn('shimmed function LinearEasingFunction.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function LinearEasingFunction.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function LinearEasingFunction.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function LinearEasingFunction.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function LinearEasingFunction.populatePropertyInfo'); - } - - } - export class NaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation { - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function NaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function NaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function NaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function NaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function NaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function NaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function NaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function NaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function NaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function NaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function NaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function NaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function NaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function NaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function NaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function NaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function NaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function NaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function NaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function NaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class PathKeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IPathKeyFrameAnimation { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function PathKeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function PathKeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function PathKeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function PathKeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function PathKeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function PathKeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function PathKeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function PathKeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function PathKeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function PathKeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function PathKeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function PathKeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function PathKeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function PathKeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function PathKeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function PathKeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function PathKeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function PathKeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function PathKeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function PathKeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function PathKeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function PathKeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, path: CompositionPath): void { - console.warn('shimmed function PathKeyFrameAnimation.insertKeyFrame'); - } - - insertKeyFrame_1(normalizedProgressKey: number, path: CompositionPath, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function PathKeyFrameAnimation.insertKeyFrame_1'); - } - - } - export class PointLight implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionLight, ICompositionLight2, ICompositionLight3, IPointLight, IPointLight2, IPointLight3 { - quadraticAttenuation: number; - offset: Foundation.Numerics.Vector3; - linearAttenuation: number; - coordinateSpace: Visual; - constantAttenuation: number; - color: Color; - intensity: number; - minAttenuationCutoff: number; - maxAttenuationCutoff: number; - targets: VisualUnorderedCollection; - exclusionsFromTargets: VisualUnorderedCollection; - isEnabled: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function PointLight.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function PointLight.stopAnimation'); - } - - close(): void { - console.warn('shimmed function PointLight.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function PointLight.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function PointLight.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function PointLight.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function PointLight.populatePropertyInfo'); - } - - } - export class QuaternionKeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IQuaternionKeyFrameAnimation { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function QuaternionKeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.insertKeyFrame'); - } - - insertKeyFrame_1(normalizedProgressKey: number, value: Foundation.Numerics.Quaternion, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function QuaternionKeyFrameAnimation.insertKeyFrame_1'); - } - - } - export class RedirectVisual implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisual, IVisual2, IContainerVisual, IRedirectVisual { - source: Visual; - children: VisualCollection; - transformMatrix: Foundation.Numerics.Matrix4x4; - size: Foundation.Numerics.Vector2; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - opacity: number; - offset: Foundation.Numerics.Vector3; - isVisible: Boolean; - compositeMode: CompositionCompositeMode; - clip: CompositionClip; - centerPoint: Foundation.Numerics.Vector3; - borderMode: CompositionBorderMode; - backfaceVisibility: CompositionBackfaceVisibility; - anchorPoint: Foundation.Numerics.Vector2; - parent: ContainerVisual; - relativeSizeAdjustment: Foundation.Numerics.Vector2; - relativeOffsetAdjustment: Foundation.Numerics.Vector3; - parentForTransform: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function RedirectVisual.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function RedirectVisual.stopAnimation'); - } - - close(): void { - console.warn('shimmed function RedirectVisual.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function RedirectVisual.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function RedirectVisual.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function RedirectVisual.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function RedirectVisual.populatePropertyInfo'); - } - - } - export class RenderingDeviceReplacedEventArgs implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IRenderingDeviceReplacedEventArgs { - graphicsDevice: CompositionGraphicsDevice; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function RenderingDeviceReplacedEventArgs.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function RenderingDeviceReplacedEventArgs.stopAnimation'); - } - - close(): void { - console.warn('shimmed function RenderingDeviceReplacedEventArgs.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function RenderingDeviceReplacedEventArgs.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function RenderingDeviceReplacedEventArgs.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function RenderingDeviceReplacedEventArgs.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function RenderingDeviceReplacedEventArgs.populatePropertyInfo'); - } - - } - export class ScalarKeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IScalarKeyFrameAnimation { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ScalarKeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ScalarKeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ScalarKeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ScalarKeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ScalarKeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ScalarKeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ScalarKeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function ScalarKeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function ScalarKeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function ScalarKeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function ScalarKeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function ScalarKeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, value: number): void { - console.warn('shimmed function ScalarKeyFrameAnimation.insertKeyFrame'); - } - - insertKeyFrame_1(normalizedProgressKey: number, value: number, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function ScalarKeyFrameAnimation.insertKeyFrame_1'); - } - - } - export class ScalarNaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IScalarNaturalMotionAnimation { - initialVelocity: number; - initialValue: number | null; - finalValue: number | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ScalarNaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function ScalarNaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export namespace Scenes { - export enum SceneAlphaMode { - opaque, - alphaTest, - blend, - } - export enum SceneAttributeSemantic { - index, - vertex, - normal, - texCoord0, - texCoord1, - color, - tangent, - } - export class SceneBoundingBox implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneBoundingBox { - center: Foundation.Numerics.Vector3; - extents: Foundation.Numerics.Vector3; - max: Foundation.Numerics.Vector3; - min: Foundation.Numerics.Vector3; - size: Foundation.Numerics.Vector3; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneBoundingBox.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneBoundingBox.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneBoundingBox.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneBoundingBox.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneBoundingBox.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneBoundingBox.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneBoundingBox.populatePropertyInfo'); - } - - } - export class SceneComponent implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneComponent { - componentType: SceneComponentType; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneComponent.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneComponent.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneComponent.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneComponent.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneComponent.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneComponent.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneComponent.populatePropertyInfo'); - } - - } - export class SceneComponentCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneComponentCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneComponentCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneComponentCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneComponentCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneComponentCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneComponentCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneComponentCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneComponentCollection.populatePropertyInfo'); - } - - getAt(index: number): SceneComponent { - throw new Error('shimmed function SceneComponentCollection.getAt'); - } - - getView(): SceneComponent[] { - throw new Error('shimmed function SceneComponentCollection.getView'); - } - - indexOf(value: SceneComponent): { returnValue: Boolean, index: number } { - throw new Error('shimmed function SceneComponentCollection.indexOf'); - } - - setAt(index: number, value: SceneComponent): void { - console.warn('shimmed function SceneComponentCollection.setAt'); - } - - insertAt(index: number, value: SceneComponent): void { - console.warn('shimmed function SceneComponentCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function SceneComponentCollection.removeAt'); - } - - append(value: SceneComponent): void { - console.warn('shimmed function SceneComponentCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function SceneComponentCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function SceneComponentCollection.clear'); - } - - getMany(startIndex: number, items: SceneComponent[]): number { - throw new Error('shimmed function SceneComponentCollection.getMany'); - } - - replaceAll(items: SceneComponent[]): void { - console.warn('shimmed function SceneComponentCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function SceneComponentCollection.first'); - } - - } - export enum SceneComponentType { - meshRendererComponent, - } - export class SceneMaterial implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneMaterial { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneMaterial.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneMaterial.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneMaterial.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMaterial.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMaterial.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneMaterial.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneMaterial.populatePropertyInfo'); - } - - } - export class SceneMaterialInput implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneMaterialInput { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneMaterialInput.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneMaterialInput.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneMaterialInput.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMaterialInput.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMaterialInput.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneMaterialInput.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneMaterialInput.populatePropertyInfo'); - } - - } - export class SceneMesh implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneMesh { - primitiveTopology: Graphics.DirectX.DirectXPrimitiveTopology; - bounds: SceneBoundingBox; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneMesh.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneMesh.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneMesh.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMesh.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMesh.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneMesh.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneMesh.populatePropertyInfo'); - } - - fillMeshAttribute(semantic: SceneAttributeSemantic, format: Graphics.DirectX.DirectXPixelFormat, memory: Foundation.MemoryBuffer): void { - console.warn('shimmed function SceneMesh.fillMeshAttribute'); - } - - static create(compositor: Compositor): SceneMesh { - throw new Error('shimmed function SceneMesh.create'); - } - - } - export class SceneMeshMaterialAttributeMap implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneMeshMaterialAttributeMap, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - size: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneMeshMaterialAttributeMap.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneMeshMaterialAttributeMap.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneMeshMaterialAttributeMap.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMeshMaterialAttributeMap.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMeshMaterialAttributeMap.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneMeshMaterialAttributeMap.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneMeshMaterialAttributeMap.populatePropertyInfo'); - } - - lookup(key: string): SceneAttributeSemantic { - throw new Error('shimmed function SceneMeshMaterialAttributeMap.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function SceneMeshMaterialAttributeMap.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function SceneMeshMaterialAttributeMap.getView'); - } - - insert(key: string, value: SceneAttributeSemantic): Boolean { - throw new Error('shimmed function SceneMeshMaterialAttributeMap.insert'); - } - - clear(): void { - console.warn('shimmed function SceneMeshMaterialAttributeMap.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function SceneMeshMaterialAttributeMap.first'); - } - - } - export class SceneMeshRendererComponent implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneComponent, ISceneRendererComponent, ISceneMeshRendererComponent { - mesh: SceneMesh; - material: SceneMaterial; - uvmappings: SceneMeshMaterialAttributeMap; - componentType: SceneComponentType; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneMeshRendererComponent.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneMeshRendererComponent.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneMeshRendererComponent.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMeshRendererComponent.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMeshRendererComponent.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneMeshRendererComponent.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneMeshRendererComponent.populatePropertyInfo'); - } - - static create(compositor: Compositor): SceneMeshRendererComponent { - throw new Error('shimmed function SceneMeshRendererComponent.create'); - } - - } - export class SceneMetallicRoughnessMaterial implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneMaterial, IScenePbrMaterial, ISceneMetallicRoughnessMaterial { - roughnessFactor: number; - metallicRoughnessInput: SceneMaterialInput; - metallicFactor: number; - baseColorInput: SceneMaterialInput; - baseColorFactor: Foundation.Numerics.Vector4; - occlusionStrength: number; - occlusionInput: SceneMaterialInput; - normalScale: number; - normalInput: SceneMaterialInput; - isDoubleSided: Boolean; - emissiveInput: SceneMaterialInput; - emissiveFactor: Foundation.Numerics.Vector3; - alphaMode: SceneAlphaMode; - alphaCutoff: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneMetallicRoughnessMaterial.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneMetallicRoughnessMaterial.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneMetallicRoughnessMaterial.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMetallicRoughnessMaterial.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneMetallicRoughnessMaterial.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneMetallicRoughnessMaterial.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneMetallicRoughnessMaterial.populatePropertyInfo'); - } - - static create(compositor: Compositor): SceneMetallicRoughnessMaterial { - throw new Error('shimmed function SceneMetallicRoughnessMaterial.create'); - } - - } - export class SceneModelTransform implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionTransform, ISceneModelTransform { - translation: Foundation.Numerics.Vector3; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneModelTransform.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneModelTransform.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneModelTransform.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneModelTransform.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneModelTransform.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneModelTransform.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneModelTransform.populatePropertyInfo'); - } - - } - export class SceneNode implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneNode { - children: SceneNodeCollection; - components: SceneComponentCollection; - parent: SceneNode; - transform: SceneModelTransform; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneNode.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneNode.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneNode.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneNode.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneNode.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneNode.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneNode.populatePropertyInfo'); - } - - findFirstComponentOfType(value: SceneComponentType): SceneComponent { - throw new Error('shimmed function SceneNode.findFirstComponentOfType'); - } - - static create(compositor: Compositor): SceneNode { - throw new Error('shimmed function SceneNode.create'); - } - - } - export class SceneNodeCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneNodeCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneNodeCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneNodeCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneNodeCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneNodeCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneNodeCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneNodeCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneNodeCollection.populatePropertyInfo'); - } - - getAt(index: number): SceneNode { - throw new Error('shimmed function SceneNodeCollection.getAt'); - } - - getView(): SceneNode[] { - throw new Error('shimmed function SceneNodeCollection.getView'); - } - - indexOf(value: SceneNode): { returnValue: Boolean, index: number } { - throw new Error('shimmed function SceneNodeCollection.indexOf'); - } - - setAt(index: number, value: SceneNode): void { - console.warn('shimmed function SceneNodeCollection.setAt'); - } - - insertAt(index: number, value: SceneNode): void { - console.warn('shimmed function SceneNodeCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function SceneNodeCollection.removeAt'); - } - - append(value: SceneNode): void { - console.warn('shimmed function SceneNodeCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function SceneNodeCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function SceneNodeCollection.clear'); - } - - getMany(startIndex: number, items: SceneNode[]): number { - throw new Error('shimmed function SceneNodeCollection.getMany'); - } - - replaceAll(items: SceneNode[]): void { - console.warn('shimmed function SceneNodeCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function SceneNodeCollection.first'); - } - - } - export class SceneObject implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject { - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneObject.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneObject.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneObject.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneObject.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneObject.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneObject.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneObject.populatePropertyInfo'); - } - - } - export class ScenePbrMaterial implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneMaterial, IScenePbrMaterial { - occlusionStrength: number; - occlusionInput: SceneMaterialInput; - normalScale: number; - normalInput: SceneMaterialInput; - isDoubleSided: Boolean; - emissiveInput: SceneMaterialInput; - emissiveFactor: Foundation.Numerics.Vector3; - alphaMode: SceneAlphaMode; - alphaCutoff: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ScenePbrMaterial.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ScenePbrMaterial.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ScenePbrMaterial.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ScenePbrMaterial.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ScenePbrMaterial.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ScenePbrMaterial.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ScenePbrMaterial.populatePropertyInfo'); - } - - } - export class SceneRendererComponent implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneComponent, ISceneRendererComponent { - componentType: SceneComponentType; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneRendererComponent.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneRendererComponent.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneRendererComponent.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneRendererComponent.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneRendererComponent.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneRendererComponent.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneRendererComponent.populatePropertyInfo'); - } - - } - export class SceneSurfaceMaterialInput implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ISceneObject, ISceneMaterialInput, ISceneSurfaceMaterialInput { - wrappingVMode: SceneWrappingMode; - wrappingUMode: SceneWrappingMode; - surface: ICompositionSurface; - bitmapInterpolationMode: CompositionBitmapInterpolationMode; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneSurfaceMaterialInput.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneSurfaceMaterialInput.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneSurfaceMaterialInput.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneSurfaceMaterialInput.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneSurfaceMaterialInput.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneSurfaceMaterialInput.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneSurfaceMaterialInput.populatePropertyInfo'); - } - - static create(compositor: Compositor): SceneSurfaceMaterialInput { - throw new Error('shimmed function SceneSurfaceMaterialInput.create'); - } - - } - export class SceneVisual implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisual, IVisual2, IContainerVisual, ISceneVisual { - root: SceneNode; - children: VisualCollection; - transformMatrix: Foundation.Numerics.Matrix4x4; - size: Foundation.Numerics.Vector2; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - opacity: number; - offset: Foundation.Numerics.Vector3; - isVisible: Boolean; - compositeMode: CompositionCompositeMode; - clip: CompositionClip; - centerPoint: Foundation.Numerics.Vector3; - borderMode: CompositionBorderMode; - backfaceVisibility: CompositionBackfaceVisibility; - anchorPoint: Foundation.Numerics.Vector2; - parent: ContainerVisual; - relativeSizeAdjustment: Foundation.Numerics.Vector2; - relativeOffsetAdjustment: Foundation.Numerics.Vector3; - parentForTransform: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SceneVisual.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SceneVisual.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SceneVisual.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneVisual.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SceneVisual.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SceneVisual.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SceneVisual.populatePropertyInfo'); - } - - static create(compositor: Compositor): SceneVisual { - throw new Error('shimmed function SceneVisual.create'); - } - - } - export enum SceneWrappingMode { - clampToEdge, - mirroredRepeat, - repeat, - } - } - export class ShapeVisual implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisual, IVisual2, IContainerVisual, IShapeVisual { - viewBox: CompositionViewBox; - shapes: CompositionShapeCollection; - children: VisualCollection; - transformMatrix: Foundation.Numerics.Matrix4x4; - size: Foundation.Numerics.Vector2; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - opacity: number; - offset: Foundation.Numerics.Vector3; - isVisible: Boolean; - compositeMode: CompositionCompositeMode; - clip: CompositionClip; - centerPoint: Foundation.Numerics.Vector3; - borderMode: CompositionBorderMode; - backfaceVisibility: CompositionBackfaceVisibility; - anchorPoint: Foundation.Numerics.Vector2; - parent: ContainerVisual; - relativeSizeAdjustment: Foundation.Numerics.Vector2; - relativeOffsetAdjustment: Foundation.Numerics.Vector3; - parentForTransform: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function ShapeVisual.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function ShapeVisual.stopAnimation'); - } - - close(): void { - console.warn('shimmed function ShapeVisual.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ShapeVisual.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function ShapeVisual.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function ShapeVisual.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function ShapeVisual.populatePropertyInfo'); - } - - } - export class SpotLight implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionLight, ICompositionLight2, ICompositionLight3, ISpotLight, ISpotLight2, ISpotLight3 { - quadraticAttenuation: number; - outerConeColor: Color; - outerConeAngleInDegrees: number; - outerConeAngle: number; - offset: Foundation.Numerics.Vector3; - linearAttenuation: number; - innerConeColor: Color; - innerConeAngleInDegrees: number; - innerConeAngle: number; - direction: Foundation.Numerics.Vector3; - coordinateSpace: Visual; - constantAttenuation: number; - outerConeIntensity: number; - innerConeIntensity: number; - minAttenuationCutoff: number; - maxAttenuationCutoff: number; - targets: VisualUnorderedCollection; - exclusionsFromTargets: VisualUnorderedCollection; - isEnabled: Boolean; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SpotLight.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SpotLight.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SpotLight.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpotLight.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpotLight.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SpotLight.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SpotLight.populatePropertyInfo'); - } - - } - export class SpringScalarNaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IScalarNaturalMotionAnimation, ISpringScalarNaturalMotionAnimation { - period: number; - dampingRatio: number; - initialVelocity: number; - initialValue: number | null; - finalValue: number | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SpringScalarNaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function SpringScalarNaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class SpringVector2NaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IVector2NaturalMotionAnimation, ISpringVector2NaturalMotionAnimation { - period: number; - dampingRatio: number; - initialVelocity: Foundation.Numerics.Vector2; - initialValue: Foundation.Numerics.Vector2 | null; - finalValue: Foundation.Numerics.Vector2 | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SpringVector2NaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function SpringVector2NaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class SpringVector3NaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IVector3NaturalMotionAnimation, ISpringVector3NaturalMotionAnimation { - period: number; - dampingRatio: number; - initialVelocity: Foundation.Numerics.Vector3; - initialValue: Foundation.Numerics.Vector3 | null; - finalValue: Foundation.Numerics.Vector3 | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SpringVector3NaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function SpringVector3NaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class SpriteVisual implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisual, IVisual2, IContainerVisual, ISpriteVisual, ISpriteVisual2 { - brush: CompositionBrush; - shadow: CompositionShadow; - children: VisualCollection; - transformMatrix: Foundation.Numerics.Matrix4x4; - size: Foundation.Numerics.Vector2; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - opacity: number; - offset: Foundation.Numerics.Vector3; - isVisible: Boolean; - compositeMode: CompositionCompositeMode; - clip: CompositionClip; - centerPoint: Foundation.Numerics.Vector3; - borderMode: CompositionBorderMode; - backfaceVisibility: CompositionBackfaceVisibility; - anchorPoint: Foundation.Numerics.Vector2; - parent: ContainerVisual; - relativeSizeAdjustment: Foundation.Numerics.Vector2; - relativeOffsetAdjustment: Foundation.Numerics.Vector3; - parentForTransform: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function SpriteVisual.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function SpriteVisual.stopAnimation'); - } - - close(): void { - console.warn('shimmed function SpriteVisual.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpriteVisual.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function SpriteVisual.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function SpriteVisual.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function SpriteVisual.populatePropertyInfo'); - } - - } - export class StepEasingFunction implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionEasingFunction, IStepEasingFunction { - stepCount: number; - isInitialStepSingleFrame: Boolean; - isFinalStepSingleFrame: Boolean; - initialStep: number; - finalStep: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function StepEasingFunction.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function StepEasingFunction.stopAnimation'); - } - - close(): void { - console.warn('shimmed function StepEasingFunction.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function StepEasingFunction.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function StepEasingFunction.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function StepEasingFunction.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function StepEasingFunction.populatePropertyInfo'); - } - - } - export class Vector2KeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IVector2KeyFrameAnimation { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function Vector2KeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function Vector2KeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function Vector2KeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector2KeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector2KeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function Vector2KeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function Vector2KeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function Vector2KeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function Vector2KeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function Vector2KeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function Vector2KeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function Vector2KeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function Vector2KeyFrameAnimation.insertKeyFrame'); - } - - insertKeyFrame_1(normalizedProgressKey: number, value: Foundation.Numerics.Vector2, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function Vector2KeyFrameAnimation.insertKeyFrame_1'); - } - - } - export class Vector2NaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IVector2NaturalMotionAnimation { - initialVelocity: Foundation.Numerics.Vector2; - initialValue: Foundation.Numerics.Vector2 | null; - finalValue: Foundation.Numerics.Vector2 | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function Vector2NaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function Vector2NaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class Vector3KeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IVector3KeyFrameAnimation { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function Vector3KeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function Vector3KeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function Vector3KeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector3KeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector3KeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function Vector3KeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function Vector3KeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function Vector3KeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function Vector3KeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function Vector3KeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function Vector3KeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function Vector3KeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function Vector3KeyFrameAnimation.insertKeyFrame'); - } - - insertKeyFrame_1(normalizedProgressKey: number, value: Foundation.Numerics.Vector3, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function Vector3KeyFrameAnimation.insertKeyFrame_1'); - } - - } - export class Vector3NaturalMotionAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, INaturalMotionAnimation, IVector3NaturalMotionAnimation { - initialVelocity: Foundation.Numerics.Vector3; - initialValue: Foundation.Numerics.Vector3 | null; - finalValue: Foundation.Numerics.Vector3 | null; - stopBehavior: AnimationStopBehavior; - delayTime: number; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function Vector3NaturalMotionAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function Vector3NaturalMotionAnimation.setExpressionReferenceParameter'); - } - - } - export class Vector4KeyFrameAnimation implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, ICompositionAnimation, ICompositionAnimation2, ICompositionAnimation3, ICompositionAnimation4, ICompositionAnimationBase, IKeyFrameAnimation, IKeyFrameAnimation2, IKeyFrameAnimation3, IVector4KeyFrameAnimation { - stopBehavior: AnimationStopBehavior; - iterationCount: number; - iterationBehavior: AnimationIterationBehavior; - duration: number; - delayTime: number; - keyFrameCount: number; - direction: AnimationDirection; - delayBehavior: AnimationDelayBehavior; - target: string; - initialValueExpressions: InitialValueExpressionCollection; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function Vector4KeyFrameAnimation.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function Vector4KeyFrameAnimation.stopAnimation'); - } - - close(): void { - console.warn('shimmed function Vector4KeyFrameAnimation.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector4KeyFrameAnimation.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Vector4KeyFrameAnimation.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function Vector4KeyFrameAnimation.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function Vector4KeyFrameAnimation.populatePropertyInfo'); - } - - clearAllParameters(): void { - console.warn('shimmed function Vector4KeyFrameAnimation.clearAllParameters'); - } - - clearParameter(key: string): void { - console.warn('shimmed function Vector4KeyFrameAnimation.clearParameter'); - } - - setColorParameter(key: string, value: Color): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setColorParameter'); - } - - setMatrix3x2Parameter(key: string, value: Foundation.Numerics.Matrix3x2): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setMatrix3x2Parameter'); - } - - setMatrix4x4Parameter(key: string, value: Foundation.Numerics.Matrix4x4): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setMatrix4x4Parameter'); - } - - setQuaternionParameter(key: string, value: Foundation.Numerics.Quaternion): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setQuaternionParameter'); - } - - setReferenceParameter(key: string, compositionObject: CompositionObject): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setReferenceParameter'); - } - - setScalarParameter(key: string, value: number): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setScalarParameter'); - } - - setVector2Parameter(key: string, value: Foundation.Numerics.Vector2): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setVector2Parameter'); - } - - setVector3Parameter(key: string, value: Foundation.Numerics.Vector3): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setVector3Parameter'); - } - - setVector4Parameter(key: string, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setVector4Parameter'); - } - - setBooleanParameter(key: string, value: Boolean): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setBooleanParameter'); - } - - setExpressionReferenceParameter(parameterName: string, source: IAnimationObject): void { - console.warn('shimmed function Vector4KeyFrameAnimation.setExpressionReferenceParameter'); - } - - insertExpressionKeyFrame(normalizedProgressKey: number, value: string): void { - console.warn('shimmed function Vector4KeyFrameAnimation.insertExpressionKeyFrame'); - } - - insertExpressionKeyFrame_1(normalizedProgressKey: number, value: string, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function Vector4KeyFrameAnimation.insertExpressionKeyFrame_1'); - } - - insertKeyFrame(normalizedProgressKey: number, value: Foundation.Numerics.Vector4): void { - console.warn('shimmed function Vector4KeyFrameAnimation.insertKeyFrame'); - } - - insertKeyFrame_1(normalizedProgressKey: number, value: Foundation.Numerics.Vector4, easingFunction: CompositionEasingFunction): void { - console.warn('shimmed function Vector4KeyFrameAnimation.insertKeyFrame_1'); - } - - } - export class Visual implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisual, IVisual2 { - transformMatrix: Foundation.Numerics.Matrix4x4; - size: Foundation.Numerics.Vector2; - scale: Foundation.Numerics.Vector3; - rotationAxis: Foundation.Numerics.Vector3; - rotationAngleInDegrees: number; - rotationAngle: number; - orientation: Foundation.Numerics.Quaternion; - opacity: number; - offset: Foundation.Numerics.Vector3; - isVisible: Boolean; - compositeMode: CompositionCompositeMode; - clip: CompositionClip; - centerPoint: Foundation.Numerics.Vector3; - borderMode: CompositionBorderMode; - backfaceVisibility: CompositionBackfaceVisibility; - anchorPoint: Foundation.Numerics.Vector2; - parent: ContainerVisual; - relativeSizeAdjustment: Foundation.Numerics.Vector2; - relativeOffsetAdjustment: Foundation.Numerics.Vector3; - parentForTransform: Visual; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function Visual.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function Visual.stopAnimation'); - } - - close(): void { - console.warn('shimmed function Visual.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Visual.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function Visual.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function Visual.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function Visual.populatePropertyInfo'); - } - - } - export class VisualCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisualCollection, Foundation.Collections.IIterable { - count: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function VisualCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function VisualCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function VisualCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function VisualCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function VisualCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function VisualCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function VisualCollection.populatePropertyInfo'); - } - - insertAbove(newChild: Visual, sibling: Visual): void { - console.warn('shimmed function VisualCollection.insertAbove'); - } - - insertAtBottom(newChild: Visual): void { - console.warn('shimmed function VisualCollection.insertAtBottom'); - } - - insertAtTop(newChild: Visual): void { - console.warn('shimmed function VisualCollection.insertAtTop'); - } - - insertBelow(newChild: Visual, sibling: Visual): void { - console.warn('shimmed function VisualCollection.insertBelow'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function VisualCollection.first'); - } - - } - export class VisualUnorderedCollection implements ICompositionObject, Foundation.IClosable, ICompositionObject2, ICompositionObject3, ICompositionObject4, IAnimationObject, IVisualUnorderedCollection, Foundation.Collections.IIterable { - count: number; - compositor: Compositor; - dispatcher: Core.CoreDispatcher; - properties: CompositionPropertySet; - implicitAnimations: ImplicitAnimationCollection; - comment: string; - dispatcherQueue: System.DispatcherQueue; - - startAnimation(propertyName: string, animation: CompositionAnimation): void { - console.warn('shimmed function VisualUnorderedCollection.startAnimation'); - } - - stopAnimation(propertyName: string): void { - console.warn('shimmed function VisualUnorderedCollection.stopAnimation'); - } - - close(): void { - console.warn('shimmed function VisualUnorderedCollection.close'); - } - - startAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function VisualUnorderedCollection.startAnimationGroup'); - } - - stopAnimationGroup(value: ICompositionAnimationBase): void { - console.warn('shimmed function VisualUnorderedCollection.stopAnimationGroup'); - } - - tryGetAnimationController(propertyName: string): AnimationController { - throw new Error('shimmed function VisualUnorderedCollection.tryGetAnimationController'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: AnimationPropertyInfo): void { - console.warn('shimmed function VisualUnorderedCollection.populatePropertyInfo'); - } - - add(newVisual: Visual): void { - console.warn('shimmed function VisualUnorderedCollection.add'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function VisualUnorderedCollection.first'); - } - - } - } - export namespace Core { - export class AcceleratorKeyEventArgs implements IAcceleratorKeyEventArgs, ICoreWindowEventArgs, IAcceleratorKeyEventArgs2 { - eventType: CoreAcceleratorKeyEventType; - keyStatus: CorePhysicalKeyStatus; - virtualKey: System.VirtualKey; - deviceId: string; - handled: Boolean; - - } - export namespace AnimationMetrics { - export class AnimationDescription implements IAnimationDescription { - // constructor(effect: AnimationEffect, target: AnimationEffectTarget); - constructor(effect: AnimationEffect, target: AnimationEffectTarget) {} - - animations: IPropertyAnimation[]; - delayLimit: number; - staggerDelay: number; - staggerDelayFactor: number; - zorder: number; - - } - export enum AnimationEffect { - expand, - collapse, - reposition, - fadeIn, - fadeOut, - addToList, - deleteFromList, - addToGrid, - deleteFromGrid, - addToSearchGrid, - deleteFromSearchGrid, - addToSearchList, - deleteFromSearchList, - showEdgeUI, - showPanel, - hideEdgeUI, - hidePanel, - showPopup, - hidePopup, - pointerDown, - pointerUp, - dragSourceStart, - dragSourceEnd, - transitionContent, - reveal, - hide, - dragBetweenEnter, - dragBetweenLeave, - swipeSelect, - swipeDeselect, - swipeReveal, - enterPage, - transitionPage, - crossFade, - peek, - updateBadge, - } - export enum AnimationEffectTarget { - primary, - added, - affected, - background, - content, - deleted, - deselected, - dragSource, - hidden, - incoming, - outgoing, - outline, - remaining, - revealed, - rowIn, - rowOut, - selected, - selection, - shown, - tapped, - } - export interface AnimationMetricsContract { - } - export interface IPropertyAnimation { - control1: Foundation.Point; - control2: Foundation.Point; - delay: number; - duration: number; - type: PropertyAnimationType; - } - export class OpacityAnimation implements IOpacityAnimation, IPropertyAnimation { - finalOpacity: number; - initialOpacity: number | null; - control1: Foundation.Point; - control2: Foundation.Point; - delay: number; - duration: number; - type: PropertyAnimationType; - - } - export class PropertyAnimation implements IPropertyAnimation { - control1: Foundation.Point; - control2: Foundation.Point; - delay: number; - duration: number; - type: PropertyAnimationType; - - } - export enum PropertyAnimationType { - scale, - translation, - opacity, - } - export class ScaleAnimation implements IScaleAnimation, IPropertyAnimation { - control1: Foundation.Point; - control2: Foundation.Point; - delay: number; - duration: number; - type: PropertyAnimationType; - finalScaleX: number; - finalScaleY: number; - initialScaleX: number | null; - initialScaleY: number | null; - normalizedOrigin: Foundation.Point; - - } - export class TranslationAnimation implements IPropertyAnimation { - control1: Foundation.Point; - control2: Foundation.Point; - delay: number; - duration: number; - type: PropertyAnimationType; - - } - } - export enum AppViewBackButtonVisibility { - visible, - collapsed, - disabled, - } - export class AutomationProviderRequestedEventArgs implements IAutomationProviderRequestedEventArgs, ICoreWindowEventArgs { - automationProvider: any; - handled: Boolean; - - } - export class BackRequestedEventArgs implements IBackRequestedEventArgs { - handled: Boolean; - - } - export class CharacterReceivedEventArgs implements ICharacterReceivedEventArgs, ICoreWindowEventArgs { - keyCode: number; - keyStatus: CorePhysicalKeyStatus; - handled: Boolean; - - } - export class ClosestInteractiveBoundsRequestedEventArgs implements IClosestInteractiveBoundsRequestedEventArgs { - closestInteractiveBounds: Foundation.Rect; - pointerPosition: Foundation.Point; - searchBounds: Foundation.Rect; - - } - export enum CoreAcceleratorKeyEventType { - character = 2, - deadCharacter, - keyDown = 0, - keyUp, - systemCharacter = 6, - systemDeadCharacter, - systemKeyDown = 4, - systemKeyUp, - unicodeCharacter = 8, - } - export class CoreAcceleratorKeys implements ICoreAcceleratorKeys { - addEventListener(name: string, handler: Function) { - console.warn(`CoreAcceleratorKeys::addEventListener: ${name}`); - switch (name) { - case "acceleratorkeyactivated": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreComponentInputSource implements ICoreInputSourceBase, ICorePointerInputSource, ICoreKeyboardInputSource, ICoreComponentFocusable, ICoreTouchHitTesting, ICoreClosestInteractiveBoundsRequested, ICoreKeyboardInputSource2, ICorePointerInputSource2 { - hasFocus: Boolean; - isInputEnabled: Boolean; - dispatcher: CoreDispatcher; - pointerCursor: CoreCursor; - hasCapture: Boolean; - pointerPosition: Foundation.Point; - dispatcherQueue: System.DispatcherQueue; - - releasePointerCapture(): void { - console.warn('shimmed function CoreComponentInputSource.releasePointerCapture'); - } - - setPointerCapture(): void { - console.warn('shimmed function CoreComponentInputSource.setPointerCapture'); - } - - getCurrentKeyState(virtualKey: System.VirtualKey): CoreVirtualKeyStates { - throw new Error('shimmed function CoreComponentInputSource.getCurrentKeyState'); - } - - getCurrentKeyEventDeviceId(): string { - throw new Error('shimmed function CoreComponentInputSource.getCurrentKeyEventDeviceId'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreComponentInputSource::addEventListener: ${name}`); - switch (name) { - case "inputenabled": // Foundation.TypedEventHandler - case "pointercapturelost": // Foundation.TypedEventHandler - case "pointerentered": // Foundation.TypedEventHandler - case "pointerexited": // Foundation.TypedEventHandler - case "pointermoved": // Foundation.TypedEventHandler - case "pointerpressed": // Foundation.TypedEventHandler - case "pointerreleased": // Foundation.TypedEventHandler - case "pointerwheelchanged": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "keydown": // Foundation.TypedEventHandler - case "keyup": // Foundation.TypedEventHandler - case "gotfocus": // Foundation.TypedEventHandler - case "lostfocus": // Foundation.TypedEventHandler - case "touchhittesting": // Foundation.TypedEventHandler - case "closestinteractiveboundsrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreCursor implements ICoreCursor { - // constructor(type: CoreCursorType, id: number); - constructor(type: CoreCursorType, id: number) {} - - id: number; - type: CoreCursorType; - - } - export enum CoreCursorType { - arrow, - cross, - custom, - hand, - help, - ibeam, - sizeAll, - sizeNortheastSouthwest, - sizeNorthSouth, - sizeNorthwestSoutheast, - sizeWestEast, - universalNo, - upArrow, - wait, - pin, - person, - } - export class CoreDispatcher implements ICoreDispatcher, ICoreAcceleratorKeys, ICoreDispatcherWithTaskPriority, ICoreDispatcher2 { - hasThreadAccess: Boolean; - currentPriority: CoreDispatcherPriority; - - processEvents(options: CoreProcessEventsOption): void { - console.warn('shimmed function CoreDispatcher.processEvents'); - } - - runAsync(priority: CoreDispatcherPriority, agileCallback: DispatchedHandler): Foundation.IAsyncAction { - throw new Error('shimmed function CoreDispatcher.runAsync'); - } - - runIdleAsync(agileCallback: IdleDispatchedHandler): Foundation.IAsyncAction { - throw new Error('shimmed function CoreDispatcher.runIdleAsync'); - } - - shouldYield(): Boolean { - throw new Error('shimmed function CoreDispatcher.shouldYield'); - } - - shouldYield_1(priority: CoreDispatcherPriority): Boolean { - throw new Error('shimmed function CoreDispatcher.shouldYield_1'); - } - - stopProcessEvents(): void { - console.warn('shimmed function CoreDispatcher.stopProcessEvents'); - } - - tryRunAsync(priority: CoreDispatcherPriority, agileCallback: DispatchedHandler): Foundation.IAsyncOperation { - throw new Error('shimmed function CoreDispatcher.tryRunAsync'); - } - - tryRunIdleAsync(agileCallback: IdleDispatchedHandler): Foundation.IAsyncOperation { - throw new Error('shimmed function CoreDispatcher.tryRunIdleAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreDispatcher::addEventListener: ${name}`); - switch (name) { - case "acceleratorkeyactivated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CoreDispatcherPriority { - idle = -2, - low, - normal, - high, - } - export class CoreIndependentInputSource implements ICoreInputSourceBase, ICorePointerInputSource, ICorePointerInputSource2 { - isInputEnabled: Boolean; - dispatcher: CoreDispatcher; - pointerCursor: CoreCursor; - hasCapture: Boolean; - pointerPosition: Foundation.Point; - dispatcherQueue: System.DispatcherQueue; - - releasePointerCapture(): void { - console.warn('shimmed function CoreIndependentInputSource.releasePointerCapture'); - } - - setPointerCapture(): void { - console.warn('shimmed function CoreIndependentInputSource.setPointerCapture'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreIndependentInputSource::addEventListener: ${name}`); - switch (name) { - case "inputenabled": // Foundation.TypedEventHandler - case "pointercapturelost": // Foundation.TypedEventHandler - case "pointerentered": // Foundation.TypedEventHandler - case "pointerexited": // Foundation.TypedEventHandler - case "pointermoved": // Foundation.TypedEventHandler - case "pointerpressed": // Foundation.TypedEventHandler - case "pointerreleased": // Foundation.TypedEventHandler - case "pointerwheelchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CoreInputDeviceTypes { - none, - touch, - pen, - mouse = 4, - } - export interface CorePhysicalKeyStatus { - repeatCount: number; - scanCode: number; - isExtendedKey: Boolean; - isMenuKeyDown: Boolean; - wasKeyDown: Boolean; - isKeyReleased: Boolean; - } - export enum CoreProcessEventsOption { - processOneAndAllPending, - processOneIfPresent, - processUntilQuit, - processAllIfPresent, - } - export interface CoreProximityEvaluation { - score: number; - adjustedPoint: Foundation.Point; - } - export enum CoreProximityEvaluationScore { - closest, - farthest = 2147483647, - } - export enum CoreVirtualKeyStates { - none, - down, - locked, - } - export class CoreWindow implements ICoreWindow, ICoreWindow2, ICorePointerRedirector, ICoreWindow3, ICoreWindow4, ICoreWindow5, ICoreWindowWithContext { - pointerPosition: Foundation.Point; - pointerCursor: CoreCursor; - isInputEnabled: Boolean; - flowDirection: CoreWindowFlowDirection; - automationHostProvider: any; - bounds: Foundation.Rect; - customProperties: Foundation.Collections.IPropertySet; - dispatcher: CoreDispatcher; - visible: Boolean; - activationMode: CoreWindowActivationMode; - dispatcherQueue: System.DispatcherQueue; - uicontext: UIContext; - - activate(): void { - console.warn('shimmed function CoreWindow.activate'); - } - - close(): void { - console.warn('shimmed function CoreWindow.close'); - } - - getAsyncKeyState(virtualKey: System.VirtualKey): CoreVirtualKeyStates { - throw new Error('shimmed function CoreWindow.getAsyncKeyState'); - } - - getKeyState(virtualKey: System.VirtualKey): CoreVirtualKeyStates { - throw new Error('shimmed function CoreWindow.getKeyState'); - } - - releasePointerCapture(): void { - console.warn('shimmed function CoreWindow.releasePointerCapture'); - } - - setPointerCapture(): void { - console.warn('shimmed function CoreWindow.setPointerCapture'); - } - - getCurrentKeyEventDeviceId(): string { - throw new Error('shimmed function CoreWindow.getCurrentKeyEventDeviceId'); - } - - static getForCurrentThread(): CoreWindow { - throw new Error('shimmed function CoreWindow.getForCurrentThread'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreWindow::addEventListener: ${name}`); - switch (name) { - case "activated": // Foundation.TypedEventHandler - case "automationproviderrequested": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - case "inputenabled": // Foundation.TypedEventHandler - case "keydown": // Foundation.TypedEventHandler - case "keyup": // Foundation.TypedEventHandler - case "pointercapturelost": // Foundation.TypedEventHandler - case "pointerentered": // Foundation.TypedEventHandler - case "pointerexited": // Foundation.TypedEventHandler - case "pointermoved": // Foundation.TypedEventHandler - case "pointerpressed": // Foundation.TypedEventHandler - case "pointerreleased": // Foundation.TypedEventHandler - case "pointerwheelchanged": // Foundation.TypedEventHandler - case "sizechanged": // Foundation.TypedEventHandler - case "touchhittesting": // Foundation.TypedEventHandler - case "visibilitychanged": // Foundation.TypedEventHandler - case "pointerroutedaway": // Foundation.TypedEventHandler - case "pointerroutedreleased": // Foundation.TypedEventHandler - case "pointerroutedto": // Foundation.TypedEventHandler - case "closestinteractiveboundsrequested": // Foundation.TypedEventHandler - case "resizecompleted": // Foundation.TypedEventHandler - case "resizestarted": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CoreWindowActivationMode { - none, - deactivated, - activatedNotForeground, - activatedInForeground, - } - export enum CoreWindowActivationState { - codeActivated, - deactivated, - pointerActivated, - } - export class CoreWindowDialog implements ICoreWindowDialog { - // constructor(title: string); - // constructor(); - constructor(title: string) {} - - title: string = ''; - isInteractionDelayed: number = 0; - defaultCommandIndex: number = 4294967295; - cancelCommandIndex: number = 4294967295; - backButtonCommand: Popups.UICommandInvokedHandler; - commands: Popups.IUICommand[] = [ ]; - maxSize: Foundation.Size = { 1000000, height: 1000000 }; - minSize: Foundation.Size = { 0, height: 0 }; - - showAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CoreWindowDialog.showAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreWindowDialog::addEventListener: ${name}`); - switch (name) { - case "showing": // Foundation.TypedEventHandler - break; - } - - } - } - export interface CoreWindowDialogsContract { - } - export class CoreWindowEventArgs implements ICoreWindowEventArgs { - handled: Boolean; - - } - export enum CoreWindowFlowDirection { - leftToRight, - rightToLeft, - } - export class CoreWindowFlyout implements ICoreWindowFlyout { - // constructor(position: Foundation.Point); - // constructor(position: Foundation.Point, title: string); - constructor(position: Foundation.Point, title: string) {} - - title: string; - isInteractionDelayed: number; - defaultCommandIndex: number; - backButtonCommand: Popups.UICommandInvokedHandler; - commands: Popups.IUICommand[]; - maxSize: Foundation.Size; - minSize: Foundation.Size; - - showAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function CoreWindowFlyout.showAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreWindowFlyout::addEventListener: ${name}`); - switch (name) { - case "showing": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreWindowPopupShowingEventArgs implements ICoreWindowPopupShowingEventArgs { - setDesiredSize(value: Foundation.Size): void { - console.warn('shimmed function CoreWindowPopupShowingEventArgs.setDesiredSize'); - } - - } - export class CoreWindowResizeManager implements ICoreWindowResizeManager, ICoreWindowResizeManagerLayoutCapability { - shouldWaitForLayoutCompletion: Boolean; - - notifyLayoutCompleted(): void { - console.warn('shimmed function CoreWindowResizeManager.notifyLayoutCompleted'); - } - - static getForCurrentView(): CoreWindowResizeManager { - throw new Error('shimmed function CoreWindowResizeManager.getForCurrentView'); - } - - } - export type DispatchedHandler = () => void; - export interface ICoreAcceleratorKeys { - } - export interface ICoreInputSourceBase { - dispatcher: CoreDispatcher; - isInputEnabled: Boolean; - } - export interface ICorePointerInputSource { - hasCapture: Boolean; - pointerCursor: CoreCursor; - pointerPosition: Foundation.Point; - releasePointerCapture(): void; - setPointerCapture(): void; - } - export interface ICorePointerInputSource2 extends ICorePointerInputSource { - dispatcherQueue: System.DispatcherQueue; - } - export interface ICorePointerRedirector { - } - export interface ICoreWindow { - automationHostProvider: any; - bounds: Foundation.Rect; - customProperties: Foundation.Collections.IPropertySet; - dispatcher: CoreDispatcher; - flowDirection: CoreWindowFlowDirection; - isInputEnabled: Boolean; - pointerCursor: CoreCursor; - pointerPosition: Foundation.Point; - visible: Boolean; - activate(): void; - close(): void; - getAsyncKeyState(virtualKey: System.VirtualKey): CoreVirtualKeyStates; - getKeyState(virtualKey: System.VirtualKey): CoreVirtualKeyStates; - releasePointerCapture(): void; - setPointerCapture(): void; - } - export interface ICoreWindowEventArgs { - handled: Boolean; - } - export type IdleDispatchedHandler = () => void; - export class IdleDispatchedHandlerArgs implements IIdleDispatchedHandlerArgs { - isDispatcherIdle: Boolean; - - } - export interface IInitializeWithCoreWindow { - initialize(window: CoreWindow): void; - } - export class InputEnabledEventArgs implements IInputEnabledEventArgs, ICoreWindowEventArgs { - handled: Boolean; - inputEnabled: Boolean; - - } - export class KeyEventArgs implements IKeyEventArgs, ICoreWindowEventArgs, IKeyEventArgs2 { - handled: Boolean; - keyStatus: CorePhysicalKeyStatus; - virtualKey: System.VirtualKey; - deviceId: string; - - } - export class PointerEventArgs implements IPointerEventArgs, ICoreWindowEventArgs { - handled: Boolean; - currentPoint: Input.PointerPoint; - keyModifiers: System.VirtualKeyModifiers; - - getIntermediatePoints(): Input.PointerPoint[] { - throw new Error('shimmed function PointerEventArgs.getIntermediatePoints'); - } - - } - export namespace Preview { - export class CoreAppWindowPreview implements ICoreAppWindowPreview { - static getIdFromWindow(window: WindowManagement.AppWindow): number { - throw new Error('shimmed function CoreAppWindowPreview.getIdFromWindow'); - } - - } - export class SystemNavigationCloseRequestedPreviewEventArgs implements ISystemNavigationCloseRequestedPreviewEventArgs { - handled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function SystemNavigationCloseRequestedPreviewEventArgs.getDeferral'); - } - - } - export class SystemNavigationManagerPreview implements ISystemNavigationManagerPreview { - static getForCurrentView(): SystemNavigationManagerPreview { - throw new Error('shimmed function SystemNavigationManagerPreview.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SystemNavigationManagerPreview::addEventListener: ${name}`); - switch (name) { - case "closerequested": // /* System.EventHandler`1[[Windows.UI.Core.Preview.SystemNavigationCloseRequestedPreviewEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - } - export class SystemNavigationManager implements ISystemNavigationManager, ISystemNavigationManager2 { - appViewBackButtonVisibility: AppViewBackButtonVisibility; - - static getForCurrentView(): SystemNavigationManager { - throw new Error('shimmed function SystemNavigationManager.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SystemNavigationManager::addEventListener: ${name}`); - switch (name) { - case "backrequested": // /* System.EventHandler`1[[Windows.UI.Core.BackRequestedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export class TouchHitTestingEventArgs implements ITouchHitTestingEventArgs, ICoreWindowEventArgs { - handled: Boolean; - proximityEvaluation: CoreProximityEvaluation; - boundingBox: Foundation.Rect; - point: Foundation.Point; - - evaluateProximity(controlBoundingBox: Foundation.Rect): CoreProximityEvaluation { - throw new Error('shimmed function TouchHitTestingEventArgs.evaluateProximity'); - } - - evaluateProximity_1(controlVertices: Foundation.Point[]): CoreProximityEvaluation { - throw new Error('shimmed function TouchHitTestingEventArgs.evaluateProximity_1'); - } - - } - export class VisibilityChangedEventArgs implements IVisibilityChangedEventArgs, ICoreWindowEventArgs { - handled: Boolean; - visible: Boolean; - - } - export class WindowActivatedEventArgs implements IWindowActivatedEventArgs, ICoreWindowEventArgs { - handled: Boolean; - windowActivationState: CoreWindowActivationState; - - } - export class WindowSizeChangedEventArgs implements IWindowSizeChangedEventArgs, ICoreWindowEventArgs { - handled: Boolean; - size: Foundation.Size; - - } - } - export namespace Input { - export class AttachableInputObject implements IAttachableInputObject, Foundation.IClosable { - close(): void { - console.warn('shimmed function AttachableInputObject.close'); - } - - } - export namespace Core { - export class RadialControllerIndependentInputSource implements IRadialControllerIndependentInputSource, IRadialControllerIndependentInputSource2 { - controller: RadialController; - dispatcher: Core.CoreDispatcher; - dispatcherQueue: System.DispatcherQueue; - - static createForView(view: ApplicationModel.Core.CoreApplicationView): RadialControllerIndependentInputSource { - throw new Error('shimmed function RadialControllerIndependentInputSource.createForView'); - } - - } - } - export interface CrossSlideThresholds { - selectionStart: number; - speedBumpStart: number; - speedBumpEnd: number; - rearrangeStart: number; - } - export class CrossSlidingEventArgs implements ICrossSlidingEventArgs { - crossSlidingState: CrossSlidingState; - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - - } - export enum CrossSlidingState { - started, - dragging, - selecting, - selectSpeedBumping, - speedBumping, - rearranging, - completed, - } - export class DraggingEventArgs implements IDraggingEventArgs { - draggingState: DraggingState; - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - - } - export enum DraggingState { - started, - continuing, - completed, - } - export class EdgeGesture implements IEdgeGesture { - static getForCurrentView(): EdgeGesture { - throw new Error('shimmed function EdgeGesture.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`EdgeGesture::addEventListener: ${name}`); - switch (name) { - case "canceled": // Foundation.TypedEventHandler - case "completed": // Foundation.TypedEventHandler - case "starting": // Foundation.TypedEventHandler - break; - } - - } - } - export class EdgeGestureEventArgs implements IEdgeGestureEventArgs { - kind: EdgeGestureKind; - - } - export enum EdgeGestureKind { - touch, - keyboard, - mouse, - } - export enum GazeInputAccessStatus { - unspecified, - allowed, - deniedByUser, - deniedBySystem, - } - export class GestureRecognizer implements IGestureRecognizer { - // constructor(); - inertiaRotationDeceleration: number = 0; - inertiaTranslationDeceleration: number = 0; - inertiaExpansionDeceleration: number = 0; - inertiaExpansion: number = 0; - autoProcessInertia: Boolean = true; - crossSlideThresholds: CrossSlideThresholds = null; - crossSlideExact: Boolean = false; - gestureSettings: GestureSettings = GestureSettings.none; - inertiaRotationAngle: number = 0; - showGestureFeedback: Boolean = true; - pivotRadius: number = 0; - crossSlideHorizontally: Boolean = false; - pivotCenter: Foundation.Point = null; - manipulationExact: Boolean = false; - inertiaTranslationDisplacement: number = 0; - isActive: Boolean = false; - isInertial: Boolean = false; - mouseWheelParameters: MouseWheelParameters = null; - - canBeDoubleTap(value: PointerPoint): Boolean { - throw new Error('shimmed function GestureRecognizer.canBeDoubleTap'); - } - - processDownEvent(value: PointerPoint): void { - console.warn('shimmed function GestureRecognizer.processDownEvent'); - } - - processMoveEvents(value: PointerPoint[]): void { - console.warn('shimmed function GestureRecognizer.processMoveEvents'); - } - - processUpEvent(value: PointerPoint): void { - console.warn('shimmed function GestureRecognizer.processUpEvent'); - } - - processMouseWheelEvent(value: PointerPoint, isShiftKeyDown: Boolean, isControlKeyDown: Boolean): void { - console.warn('shimmed function GestureRecognizer.processMouseWheelEvent'); - } - - processInertia(): void { - console.warn('shimmed function GestureRecognizer.processInertia'); - } - - completeGesture(): void { - console.warn('shimmed function GestureRecognizer.completeGesture'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GestureRecognizer::addEventListener: ${name}`); - switch (name) { - case "crosssliding": // Foundation.TypedEventHandler - case "dragging": // Foundation.TypedEventHandler - case "holding": // Foundation.TypedEventHandler - case "manipulationcompleted": // Foundation.TypedEventHandler - case "manipulationinertiastarting": // Foundation.TypedEventHandler - case "manipulationstarted": // Foundation.TypedEventHandler - case "manipulationupdated": // Foundation.TypedEventHandler - case "righttapped": // Foundation.TypedEventHandler - case "tapped": // Foundation.TypedEventHandler - break; - } - - } - } - export enum GestureSettings { - none, - tap, - doubleTap, - hold = 4, - holdWithMouse = 8, - rightTap = 16, - drag = 32, - manipulationTranslateX = 64, - manipulationTranslateY = 128, - manipulationTranslateRailsX = 256, - manipulationTranslateRailsY = 512, - manipulationRotate = 1024, - manipulationScale = 2048, - manipulationTranslateInertia = 4096, - manipulationRotateInertia = 8192, - manipulationScaleInertia = 16384, - crossSlide = 32768, - manipulationMultipleFingerPanning = 65536, - } - export class HoldingEventArgs implements IHoldingEventArgs { - holdingState: HoldingState; - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - - } - export enum HoldingState { - started, - completed, - canceled, - } - export namespace Inking { - export namespace Analysis { - export interface IInkAnalysisNode { - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - getStrokeIds(): number[]; - } - export interface IInkAnalyzerFactory { - createAnalyzer(): InkAnalyzer; - } - export enum InkAnalysisDrawingKind { - drawing, - circle, - ellipse, - triangle, - isoscelesTriangle, - equilateralTriangle, - rightTriangle, - quadrilateral, - rectangle, - square, - diamond, - trapezoid, - parallelogram, - pentagon, - hexagon, - } - export class InkAnalysisInkBullet implements IInkAnalysisInkBullet, IInkAnalysisNode { - recognizedText: string; - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisInkBullet.getStrokeIds'); - } - - } - export class InkAnalysisInkDrawing implements IInkAnalysisInkDrawing, IInkAnalysisNode { - center: Foundation.Point; - drawingKind: InkAnalysisDrawingKind; - points: Foundation.Point[]; - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisInkDrawing.getStrokeIds'); - } - - } - export class InkAnalysisInkWord implements IInkAnalysisInkWord, IInkAnalysisNode { - recognizedText: string; - textAlternates: string[]; - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisInkWord.getStrokeIds'); - } - - } - export class InkAnalysisLine implements IInkAnalysisLine, IInkAnalysisNode { - indentLevel: number; - recognizedText: string; - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisLine.getStrokeIds'); - } - - } - export class InkAnalysisListItem implements IInkAnalysisListItem, IInkAnalysisNode { - recognizedText: string; - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisListItem.getStrokeIds'); - } - - } - export class InkAnalysisNode implements IInkAnalysisNode { - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisNode.getStrokeIds'); - } - - } - export enum InkAnalysisNodeKind { - unclassifiedInk, - root, - writingRegion, - paragraph, - line, - inkWord, - inkBullet, - inkDrawing, - listItem, - } - export class InkAnalysisParagraph implements IInkAnalysisParagraph, IInkAnalysisNode { - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - recognizedText: string; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisParagraph.getStrokeIds'); - } - - } - export class InkAnalysisResult implements IInkAnalysisResult { - status: InkAnalysisStatus; - - } - export class InkAnalysisRoot implements IInkAnalysisRoot, IInkAnalysisNode { - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - recognizedText: string; - - findNodes(nodeKind: InkAnalysisNodeKind): IInkAnalysisNode[] { - throw new Error('shimmed function InkAnalysisRoot.findNodes'); - } - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisRoot.getStrokeIds'); - } - - } - export enum InkAnalysisStatus { - updated, - unchanged, - } - export enum InkAnalysisStrokeKind { - auto, - writing, - drawing, - } - export class InkAnalysisWritingRegion implements IInkAnalysisWritingRegion, IInkAnalysisNode { - boundingRect: Foundation.Rect; - children: IInkAnalysisNode[]; - id: number; - kind: InkAnalysisNodeKind; - parent: IInkAnalysisNode; - rotatedBoundingRect: Foundation.Point[]; - recognizedText: string; - - getStrokeIds(): number[] { - throw new Error('shimmed function InkAnalysisWritingRegion.getStrokeIds'); - } - - } - export class InkAnalyzer implements IInkAnalyzer { - // constructor(); - analysisRoot: InkAnalysisRoot = null; - isAnalyzing: Boolean = false; - - addDataForStroke(stroke: InkStroke): void { - console.warn('shimmed function InkAnalyzer.addDataForStroke'); - } - - addDataForStrokes(strokes: Foundation.Collections.IIterable): void { - console.warn('shimmed function InkAnalyzer.addDataForStrokes'); - } - - clearDataForAllStrokes(): void { - console.warn('shimmed function InkAnalyzer.clearDataForAllStrokes'); - } - - removeDataForStroke(strokeId: number): void { - console.warn('shimmed function InkAnalyzer.removeDataForStroke'); - } - - removeDataForStrokes(strokeIds: Foundation.Collections.IIterable): void { - console.warn('shimmed function InkAnalyzer.removeDataForStrokes'); - } - - replaceDataForStroke(stroke: InkStroke): void { - console.warn('shimmed function InkAnalyzer.replaceDataForStroke'); - } - - setStrokeDataKind(strokeId: number, strokeKind: InkAnalysisStrokeKind): void { - console.warn('shimmed function InkAnalyzer.setStrokeDataKind'); - } - - analyzeAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function InkAnalyzer.analyzeAsync'); - } - - } - } - export namespace Core { - export class CoreIncrementalInkStroke implements ICoreIncrementalInkStroke { - // constructor(drawingAttributes: InkDrawingAttributes, pointTransform: Foundation.Numerics.Matrix3x2); - constructor(drawingAttributes: InkDrawingAttributes, pointTransform: Foundation.Numerics.Matrix3x2) {} - - boundingRect: Foundation.Rect; - drawingAttributes: InkDrawingAttributes; - pointTransform: Foundation.Numerics.Matrix3x2; - - appendInkPoints(inkPoints: Foundation.Collections.IIterable): Foundation.Rect { - throw new Error('shimmed function CoreIncrementalInkStroke.appendInkPoints'); - } - - createInkStroke(): InkStroke { - throw new Error('shimmed function CoreIncrementalInkStroke.createInkStroke'); - } - - } - export class CoreInkIndependentInputSource implements ICoreInkIndependentInputSource { - inkPresenter: InkPresenter; - - static create(inkPresenter: InkPresenter): CoreInkIndependentInputSource { - throw new Error('shimmed function CoreInkIndependentInputSource.create'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreInkIndependentInputSource::addEventListener: ${name}`); - switch (name) { - case "pointerentering": // Foundation.TypedEventHandler - case "pointerexiting": // Foundation.TypedEventHandler - case "pointerhovering": // Foundation.TypedEventHandler - case "pointerlost": // Foundation.TypedEventHandler - case "pointermoving": // Foundation.TypedEventHandler - case "pointerpressing": // Foundation.TypedEventHandler - case "pointerreleasing": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreInkPresenterHost implements ICoreInkPresenterHost { - // constructor(); - rootVisual: Composition.ContainerVisual; - inkPresenter: InkPresenter; - - } - export enum CoreWetStrokeDisposition { - inking, - completed, - canceled, - } - export class CoreWetStrokeUpdateEventArgs implements ICoreWetStrokeUpdateEventArgs { - disposition: CoreWetStrokeDisposition; - newInkPoints: InkPoint[]; - pointerId: number; - - } - export class CoreWetStrokeUpdateSource implements ICoreWetStrokeUpdateSource { - inkPresenter: InkPresenter; - - static create(inkPresenter: InkPresenter): CoreWetStrokeUpdateSource { - throw new Error('shimmed function CoreWetStrokeUpdateSource.create'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreWetStrokeUpdateSource::addEventListener: ${name}`); - switch (name) { - case "wetstrokecanceled": // Foundation.TypedEventHandler - case "wetstrokecompleted": // Foundation.TypedEventHandler - case "wetstrokecontinuing": // Foundation.TypedEventHandler - case "wetstrokestarting": // Foundation.TypedEventHandler - case "wetstrokestopping": // Foundation.TypedEventHandler - break; - } - - } - } - } - export enum HandwritingLineHeight { - small, - medium, - large, - } - export interface IInkPointFactory { - createInkPoint(position: Foundation.Point, pressure: number): InkPoint; - } - export interface IInkPresenterRulerFactory { - create(inkPresenter: InkPresenter): InkPresenterRuler; - } - export interface IInkPresenterStencil { - backgroundColor: Color; - foregroundColor: Color; - isVisible: Boolean; - kind: InkPresenterStencilKind; - transform: Foundation.Numerics.Matrix3x2; - } - export interface IInkRecognizerContainer { - setDefaultRecognizer(recognizer: InkRecognizer): void; - recognizeAsync(strokeCollection: InkStrokeContainer, recognitionTarget: InkRecognitionTarget): Foundation.IAsyncOperation; - getRecognizers(): InkRecognizer[]; - } - export interface IInkStrokeContainer { - boundingRect: Foundation.Rect; - addStroke(stroke: InkStroke): void; - deleteSelected(): Foundation.Rect; - moveSelected(translation: Foundation.Point): Foundation.Rect; - selectWithPolyLine(polyline: Foundation.Collections.IIterable): Foundation.Rect; - selectWithLine(from: Foundation.Point, to: Foundation.Point): Foundation.Rect; - copySelectedToClipboard(): void; - pasteFromClipboard(position: Foundation.Point): Foundation.Rect; - canPasteFromClipboard(): Boolean; - loadAsync(inputStream: Storage.Streams.IInputStream): Foundation.IAsyncActionWithProgress; - saveAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress; - updateRecognitionResults(recognitionResults: InkRecognitionResult[]): void; - getStrokes(): InkStroke[]; - getRecognitionResults(): InkRecognitionResult[]; - } - export class InkDrawingAttributes implements IInkDrawingAttributes, IInkDrawingAttributes2, IInkDrawingAttributes3, IInkDrawingAttributes4, IInkDrawingAttributes5 { - // constructor(); - size: Foundation.Size = { 2, height: 2 }; - penTip: PenTipShape = PenTipShape.circle; - ignorePressure: Boolean = false; - fitToCurve: Boolean = true; - color: Color = { a: 255, r: 0, g: 0, b: 0 }; - penTipTransform: Foundation.Numerics.Matrix3x2 = null; - drawAsHighlighter: Boolean = false; - kind: InkDrawingAttributesKind = InkDrawingAttributesKind.default; - pencilProperties: InkDrawingAttributesPencilProperties; - ignoreTilt: Boolean = true; - modelerAttributes: InkModelerAttributes = null; - - static createForPencil(): InkDrawingAttributes { - throw new Error('shimmed function InkDrawingAttributes.createForPencil'); - } - - } - export enum InkDrawingAttributesKind { - default, - pencil, - } - export class InkDrawingAttributesPencilProperties implements IInkDrawingAttributesPencilProperties { - opacity: number; - - } - export enum InkHighContrastAdjustment { - useSystemColorsWhenNecessary, - useSystemColors, - useOriginalColors, - } - export class InkInputConfiguration implements IInkInputConfiguration { - isPrimaryBarrelButtonInputEnabled: Boolean; - isEraserInputEnabled: Boolean; - - } - export class InkInputProcessingConfiguration implements IInkInputProcessingConfiguration { - rightDragAction: InkInputRightDragAction; - mode: InkInputProcessingMode; - - } - export enum InkInputProcessingMode { - none, - inking, - erasing, - } - export enum InkInputRightDragAction { - leaveUnprocessed, - allowProcessing, - } - export class InkManager implements IInkManager, IInkStrokeContainer, IInkRecognizerContainer { - // constructor(); - mode: InkManipulationMode = InkManipulationMode.inking; - boundingRect: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - - processPointerDown(pointerPoint: PointerPoint): void { - console.warn('shimmed function InkManager.processPointerDown'); - } - - processPointerUpdate(pointerPoint: PointerPoint): any { - throw new Error('shimmed function InkManager.processPointerUpdate'); - } - - processPointerUp(pointerPoint: PointerPoint): Foundation.Rect { - throw new Error('shimmed function InkManager.processPointerUp'); - } - - setDefaultDrawingAttributes(drawingAttributes: InkDrawingAttributes): void { - console.warn('shimmed function InkManager.setDefaultDrawingAttributes'); - } - - recognizeAsync(recognitionTarget: InkRecognitionTarget): Foundation.IAsyncOperation { - throw new Error('shimmed function InkManager.recognizeAsync'); - } - - addStroke(stroke: InkStroke): void { - console.warn('shimmed function InkManager.addStroke'); - } - - deleteSelected(): Foundation.Rect { - throw new Error('shimmed function InkManager.deleteSelected'); - } - - moveSelected(translation: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function InkManager.moveSelected'); - } - - selectWithPolyLine(polyline: Foundation.Collections.IIterable): Foundation.Rect { - throw new Error('shimmed function InkManager.selectWithPolyLine'); - } - - selectWithLine(from: Foundation.Point, to: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function InkManager.selectWithLine'); - } - - copySelectedToClipboard(): void { - console.warn('shimmed function InkManager.copySelectedToClipboard'); - } - - pasteFromClipboard(position: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function InkManager.pasteFromClipboard'); - } - - canPasteFromClipboard(): Boolean { - throw new Error('shimmed function InkManager.canPasteFromClipboard'); - } - - loadAsync(inputStream: Storage.Streams.IInputStream): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function InkManager.loadAsync'); - } - - saveAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InkManager.saveAsync'); - } - - updateRecognitionResults(recognitionResults: InkRecognitionResult[]): void { - console.warn('shimmed function InkManager.updateRecognitionResults'); - } - - getStrokes(): InkStroke[] { - throw new Error('shimmed function InkManager.getStrokes'); - } - - getRecognitionResults(): InkRecognitionResult[] { - throw new Error('shimmed function InkManager.getRecognitionResults'); - } - - setDefaultRecognizer(recognizer: InkRecognizer): void { - console.warn('shimmed function InkManager.setDefaultRecognizer'); - } - - recognizeAsync_1(strokeCollection: InkStrokeContainer, recognitionTarget: InkRecognitionTarget): Foundation.IAsyncOperation { - throw new Error('shimmed function InkManager.recognizeAsync_1'); - } - - getRecognizers(): InkRecognizer[] { - throw new Error('shimmed function InkManager.getRecognizers'); - } - - } - export enum InkManipulationMode { - inking, - erasing, - selecting, - } - export class InkModelerAttributes implements IInkModelerAttributes { - scalingFactor: number; - predictionTime: number; - - } - export enum InkPersistenceFormat { - gifWithEmbeddedIsf, - isf, - } - export class InkPoint implements IInkPoint, IInkPoint2 { - // constructor(position: Foundation.Point, pressure: number, tiltX: number, tiltY: number, timestamp: number); - // constructor(position: Foundation.Point, pressure: number); - constructor(position: Foundation.Point, pressure: number, tiltX: number, tiltY: number, timestamp: number) {} - - position: Foundation.Point; - pressure: number; - tiltX: number; - tiltY: number; - timestamp: number; - - } - export class InkPresenter implements IInkPresenter, IInkPresenter2, IInkPresenter3 { - strokeContainer: InkStrokeContainer; - isInputEnabled: Boolean; - inputDeviceTypes: Core.CoreInputDeviceTypes; - inputProcessingConfiguration: InkInputProcessingConfiguration; - strokeInput: InkStrokeInput; - unprocessedInput: InkUnprocessedInput; - highContrastAdjustment: InkHighContrastAdjustment; - inputConfiguration: InkInputConfiguration; - - copyDefaultDrawingAttributes(): InkDrawingAttributes { - throw new Error('shimmed function InkPresenter.copyDefaultDrawingAttributes'); - } - - updateDefaultDrawingAttributes(value: InkDrawingAttributes): void { - console.warn('shimmed function InkPresenter.updateDefaultDrawingAttributes'); - } - - activateCustomDrying(): InkSynchronizer { - throw new Error('shimmed function InkPresenter.activateCustomDrying'); - } - - setPredefinedConfiguration(value: InkPresenterPredefinedConfiguration): void { - console.warn('shimmed function InkPresenter.setPredefinedConfiguration'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkPresenter::addEventListener: ${name}`); - switch (name) { - case "strokescollected": // Foundation.TypedEventHandler - case "strokeserased": // Foundation.TypedEventHandler - break; - } - - } - } - export enum InkPresenterPredefinedConfiguration { - simpleSinglePointer, - simpleMultiplePointer, - } - export class InkPresenterProtractor implements IInkPresenterProtractor, IInkPresenterStencil { - // constructor(inkPresenter: InkPresenter); - constructor(inkPresenter: InkPresenter) {} - - radius: number; - isResizable: Boolean; - isCenterMarkerVisible: Boolean; - isAngleReadoutVisible: Boolean; - areTickMarksVisible: Boolean; - areRaysVisible: Boolean; - accentColor: Color; - transform: Foundation.Numerics.Matrix3x2; - isVisible: Boolean; - foregroundColor: Color; - backgroundColor: Color; - kind: InkPresenterStencilKind; - - } - export class InkPresenterRuler implements IInkPresenterRuler, IInkPresenterStencil, IInkPresenterRuler2 { - // constructor(inkPresenter: InkPresenter); - constructor(inkPresenter: InkPresenter) {} - - width: number; - length: number; - isCompassVisible: Boolean; - areTickMarksVisible: Boolean; - transform: Foundation.Numerics.Matrix3x2; - isVisible: Boolean; - foregroundColor: Color; - backgroundColor: Color; - kind: InkPresenterStencilKind; - - } - export enum InkPresenterStencilKind { - other, - ruler, - protractor, - } - export class InkRecognitionResult implements IInkRecognitionResult { - boundingRect: Foundation.Rect; - - getTextCandidates(): string[] { - throw new Error('shimmed function InkRecognitionResult.getTextCandidates'); - } - - getStrokes(): InkStroke[] { - throw new Error('shimmed function InkRecognitionResult.getStrokes'); - } - - } - export enum InkRecognitionTarget { - all, - selected, - recent, - } - export class InkRecognizer implements IInkRecognizer { - name: string; - - } - export class InkRecognizerContainer implements IInkRecognizerContainer { - // constructor(); - setDefaultRecognizer(recognizer: InkRecognizer): void { - console.warn('shimmed function InkRecognizerContainer.setDefaultRecognizer'); - } - - recognizeAsync(strokeCollection: InkStrokeContainer, recognitionTarget: InkRecognitionTarget): Foundation.IAsyncOperation { - throw new Error('shimmed function InkRecognizerContainer.recognizeAsync'); - } - - getRecognizers(): InkRecognizer[] { - throw new Error('shimmed function InkRecognizerContainer.getRecognizers'); - } - - } - export class InkStroke implements IInkStroke, IInkStroke2, IInkStroke3 { - selected: Boolean; - drawingAttributes: InkDrawingAttributes; - boundingRect: Foundation.Rect; - recognized: Boolean; - pointTransform: Foundation.Numerics.Matrix3x2; - strokeStartedTime: Date | null; - strokeDuration: number | null; - id: number; - - getRenderingSegments(): InkStrokeRenderingSegment[] { - throw new Error('shimmed function InkStroke.getRenderingSegments'); - } - - getInkPoints(): InkPoint[] { - throw new Error('shimmed function InkStroke.getInkPoints'); - } - - } - export class InkStrokeBuilder implements IInkStrokeBuilder, IInkStrokeBuilder2, IInkStrokeBuilder3 { - // constructor(); - beginStroke(pointerPoint: PointerPoint): void { - console.warn('shimmed function InkStrokeBuilder.beginStroke'); - } - - appendToStroke(pointerPoint: PointerPoint): PointerPoint { - throw new Error('shimmed function InkStrokeBuilder.appendToStroke'); - } - - endStroke(pointerPoint: PointerPoint): InkStroke { - throw new Error('shimmed function InkStrokeBuilder.endStroke'); - } - - createStroke(points: Foundation.Collections.IIterable): InkStroke { - throw new Error('shimmed function InkStrokeBuilder.createStroke'); - } - - setDefaultDrawingAttributes(drawingAttributes: InkDrawingAttributes): void { - console.warn('shimmed function InkStrokeBuilder.setDefaultDrawingAttributes'); - } - - createStrokeFromInkPoints(inkPoints: Foundation.Collections.IIterable, transform: Foundation.Numerics.Matrix3x2): InkStroke { - throw new Error('shimmed function InkStrokeBuilder.createStrokeFromInkPoints'); - } - - createStrokeFromInkPoints_1(inkPoints: Foundation.Collections.IIterable, transform: Foundation.Numerics.Matrix3x2, strokeStartedTime: Date | null, strokeDuration: number | null): InkStroke { - throw new Error('shimmed function InkStrokeBuilder.createStrokeFromInkPoints_1'); - } - - } - export class InkStrokeContainer implements IInkStrokeContainer, IInkStrokeContainer2, IInkStrokeContainer3 { - // constructor(); - boundingRect: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - - addStroke(stroke: InkStroke): void { - console.warn('shimmed function InkStrokeContainer.addStroke'); - } - - deleteSelected(): Foundation.Rect { - throw new Error('shimmed function InkStrokeContainer.deleteSelected'); - } - - moveSelected(translation: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function InkStrokeContainer.moveSelected'); - } - - selectWithPolyLine(polyline: Foundation.Collections.IIterable): Foundation.Rect { - throw new Error('shimmed function InkStrokeContainer.selectWithPolyLine'); - } - - selectWithLine(from: Foundation.Point, to: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function InkStrokeContainer.selectWithLine'); - } - - copySelectedToClipboard(): void { - console.warn('shimmed function InkStrokeContainer.copySelectedToClipboard'); - } - - pasteFromClipboard(position: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function InkStrokeContainer.pasteFromClipboard'); - } - - canPasteFromClipboard(): Boolean { - throw new Error('shimmed function InkStrokeContainer.canPasteFromClipboard'); - } - - loadAsync(inputStream: Storage.Streams.IInputStream): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function InkStrokeContainer.loadAsync'); - } - - saveAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InkStrokeContainer.saveAsync'); - } - - updateRecognitionResults(recognitionResults: InkRecognitionResult[]): void { - console.warn('shimmed function InkStrokeContainer.updateRecognitionResults'); - } - - getStrokes(): InkStroke[] { - throw new Error('shimmed function InkStrokeContainer.getStrokes'); - } - - getRecognitionResults(): InkRecognitionResult[] { - throw new Error('shimmed function InkStrokeContainer.getRecognitionResults'); - } - - addStrokes(strokes: Foundation.Collections.IIterable): void { - console.warn('shimmed function InkStrokeContainer.addStrokes'); - } - - clear(): void { - console.warn('shimmed function InkStrokeContainer.clear'); - } - - saveAsync_1(outputStream: Storage.Streams.IOutputStream, inkPersistenceFormat: InkPersistenceFormat): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function InkStrokeContainer.saveAsync_1'); - } - - getStrokeById(id: number): InkStroke { - throw new Error('shimmed function InkStrokeContainer.getStrokeById'); - } - - } - export class InkStrokeInput implements IInkStrokeInput { - inkPresenter: InkPresenter; - - addEventListener(name: string, handler: Function) { - console.warn(`InkStrokeInput::addEventListener: ${name}`); - switch (name) { - case "strokecanceled": // Foundation.TypedEventHandler - case "strokecontinued": // Foundation.TypedEventHandler - case "strokeended": // Foundation.TypedEventHandler - case "strokestarted": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkStrokeRenderingSegment implements IInkStrokeRenderingSegment { - bezierControlPoint1: Foundation.Point; - bezierControlPoint2: Foundation.Point; - position: Foundation.Point; - pressure: number; - tiltX: number; - tiltY: number; - twist: number; - - } - export class InkStrokesCollectedEventArgs implements IInkStrokesCollectedEventArgs { - strokes: InkStroke[]; - - } - export class InkStrokesErasedEventArgs implements IInkStrokesErasedEventArgs { - strokes: InkStroke[]; - - } - export class InkSynchronizer implements IInkSynchronizer { - beginDry(): InkStroke[] { - throw new Error('shimmed function InkSynchronizer.beginDry'); - } - - endDry(): void { - console.warn('shimmed function InkSynchronizer.endDry'); - } - - } - export class InkUnprocessedInput implements IInkUnprocessedInput { - inkPresenter: InkPresenter; - - addEventListener(name: string, handler: Function) { - console.warn(`InkUnprocessedInput::addEventListener: ${name}`); - switch (name) { - case "pointerentered": // Foundation.TypedEventHandler - case "pointerexited": // Foundation.TypedEventHandler - case "pointerhovered": // Foundation.TypedEventHandler - case "pointerlost": // Foundation.TypedEventHandler - case "pointermoved": // Foundation.TypedEventHandler - case "pointerpressed": // Foundation.TypedEventHandler - case "pointerreleased": // Foundation.TypedEventHandler - break; - } - - } - } - export class PenAndInkSettings implements IPenAndInkSettings { - fontFamilyName: string; - handwritingLineHeight: HandwritingLineHeight; - isHandwritingDirectlyIntoTextFieldEnabled: Boolean; - isTouchHandwritingEnabled: Boolean; - penHandedness: PenHandedness; - userConsentsToHandwritingTelemetryCollection: Boolean; - - static getDefault(): PenAndInkSettings { - throw new Error('shimmed function PenAndInkSettings.getDefault'); - } - - } - export enum PenHandedness { - right, - left, - } - export enum PenTipShape { - circle, - rectangle, - } - export namespace Preview { - export class PalmRejectionDelayZonePreview implements IPalmRejectionDelayZonePreview, Foundation.IClosable { - close(): void { - console.warn('shimmed function PalmRejectionDelayZonePreview.close'); - } - - static createForVisual(inputPanelVisual: Composition.Visual, inputPanelRect: Foundation.Rect): PalmRejectionDelayZonePreview { - throw new Error('shimmed function PalmRejectionDelayZonePreview.createForVisual'); - } - - static createForVisual_1(inputPanelVisual: Composition.Visual, inputPanelRect: Foundation.Rect, viewportVisual: Composition.Visual, viewportRect: Foundation.Rect): PalmRejectionDelayZonePreview { - throw new Error('shimmed function PalmRejectionDelayZonePreview.createForVisual_1'); - } - - } - } - } - export class InputActivationListener implements IAttachableInputObject, Foundation.IClosable, IInputActivationListener { - state: InputActivationState; - - close(): void { - console.warn('shimmed function InputActivationListener.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InputActivationListener::addEventListener: ${name}`); - switch (name) { - case "inputactivationchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class InputActivationListenerActivationChangedEventArgs implements IInputActivationListenerActivationChangedEventArgs { - state: InputActivationState; - - } - export enum InputActivationState { - none, - deactivated, - activatedNotForeground, - activatedInForeground, - } - export interface IPointerPointTransform { - inverse: IPointerPointTransform; - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point }; - transformBounds(rect: Foundation.Rect): Foundation.Rect; - } - export class KeyboardDeliveryInterceptor implements IKeyboardDeliveryInterceptor { - isInterceptionEnabledWhenInForeground: Boolean; - - static getForCurrentView(): KeyboardDeliveryInterceptor { - throw new Error('shimmed function KeyboardDeliveryInterceptor.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`KeyboardDeliveryInterceptor::addEventListener: ${name}`); - switch (name) { - case "keydown": // Foundation.TypedEventHandler - case "keyup": // Foundation.TypedEventHandler - break; - } - - } - } - export class ManipulationCompletedEventArgs implements IManipulationCompletedEventArgs { - cumulative: ManipulationDelta; - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - velocities: ManipulationVelocities; - - } - export interface ManipulationDelta { - translation: Foundation.Point; - scale: number; - rotation: number; - expansion: number; - } - export class ManipulationInertiaStartingEventArgs implements IManipulationInertiaStartingEventArgs { - cumulative: ManipulationDelta; - delta: ManipulationDelta; - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - velocities: ManipulationVelocities; - - } - export class ManipulationStartedEventArgs implements IManipulationStartedEventArgs { - cumulative: ManipulationDelta; - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - - } - export class ManipulationUpdatedEventArgs implements IManipulationUpdatedEventArgs { - cumulative: ManipulationDelta; - delta: ManipulationDelta; - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - velocities: ManipulationVelocities; - - } - export interface ManipulationVelocities { - linear: Foundation.Point; - angular: number; - expansion: number; - } - export class MouseWheelParameters implements IMouseWheelParameters { - pageTranslation: Foundation.Point; - deltaScale: number; - deltaRotationAngle: number; - charTranslation: Foundation.Point; - - } - export class PointerPoint implements IPointerPoint { - frameId: number; - isInContact: Boolean; - pointerDevice: Devices.Input.PointerDevice; - pointerId: number; - position: Foundation.Point; - properties: PointerPointProperties; - rawPosition: Foundation.Point; - timestamp: number; - - static getCurrentPoint(pointerId: number): PointerPoint { - throw new Error('shimmed function PointerPoint.getCurrentPoint'); - } - - static getIntermediatePoints(pointerId: number): PointerPoint[] { - throw new Error('shimmed function PointerPoint.getIntermediatePoints'); - } - - static getCurrentPoint_1(pointerId: number, transform: IPointerPointTransform): PointerPoint { - throw new Error('shimmed function PointerPoint.getCurrentPoint_1'); - } - - static getIntermediatePoints_1(pointerId: number, transform: IPointerPointTransform): PointerPoint[] { - throw new Error('shimmed function PointerPoint.getIntermediatePoints_1'); - } - - } - export class PointerPointProperties implements IPointerPointProperties, IPointerPointProperties2 { - contactRect: Foundation.Rect; - contactRectRaw: Foundation.Rect; - isBarrelButtonPressed: Boolean; - isCanceled: Boolean; - isEraser: Boolean; - isHorizontalMouseWheel: Boolean; - isInRange: Boolean; - isInverted: Boolean; - isLeftButtonPressed: Boolean; - isMiddleButtonPressed: Boolean; - isPrimary: Boolean; - isRightButtonPressed: Boolean; - isXButton1Pressed: Boolean; - isXButton2Pressed: Boolean; - mouseWheelDelta: number; - orientation: number; - pointerUpdateKind: PointerUpdateKind; - pressure: number; - touchConfidence: Boolean; - twist: number; - xtilt: number; - ytilt: number; - zdistance: number | null; - - hasUsage(usagePage: number, usageId: number): Boolean { - throw new Error('shimmed function PointerPointProperties.hasUsage'); - } - - getUsageValue(usagePage: number, usageId: number): number { - throw new Error('shimmed function PointerPointProperties.getUsageValue'); - } - - } - export enum PointerUpdateKind { - other, - leftButtonPressed, - leftButtonReleased, - rightButtonPressed, - rightButtonReleased, - middleButtonPressed, - middleButtonReleased, - xbutton1Pressed, - xbutton1Released, - xbutton2Pressed, - xbutton2Released, - } - export class PointerVisualizationSettings implements IPointerVisualizationSettings { - isContactFeedbackEnabled: Boolean; - isBarrelButtonFeedbackEnabled: Boolean; - - static getForCurrentView(): PointerVisualizationSettings { - throw new Error('shimmed function PointerVisualizationSettings.getForCurrentView'); - } - - } - export namespace Preview { - export namespace Injection { - export enum InjectedInputButtonChangeKind { - none, - firstButtonDown, - firstButtonUp, - secondButtonDown, - secondButtonUp, - thirdButtonDown, - thirdButtonUp, - fourthButtonDown, - fourthButtonUp, - fifthButtonDown, - fifthButtonUp, - } - export class InjectedInputGamepadInfo implements IInjectedInputGamepadInfo { - // constructor(reading: Gaming.Input.GamepadReading); - // constructor(); - constructor(reading: Gaming.Input.GamepadReading) {} - - rightTrigger: number = 0; - rightThumbstickY: number = 0; - rightThumbstickX: number = 0; - leftTrigger: number = 0; - leftThumbstickY: number = 0; - leftThumbstickX: number = 0; - buttons: Gaming.Input.GamepadButtons = GamepadButtons.none; - - } - export class InjectedInputKeyboardInfo implements IInjectedInputKeyboardInfo { - // constructor(); - virtualKey: number = 0; - scanCode: number = 0; - keyOptions: InjectedInputKeyOptions = InjectedInputKeyOptions.none; - - } - export enum InjectedInputKeyOptions { - none, - extendedKey, - keyUp, - scanCode = 8, - unicode = 4, - } - export class InjectedInputMouseInfo implements IInjectedInputMouseInfo { - // constructor(); - timeOffsetInMilliseconds: number = 0; - mouseOptions: InjectedInputMouseOptions = InjectedInputMouseOptions.none; - mouseData: number = 0; - deltaY: number = 0; - deltaX: number = 0; - - } - export enum InjectedInputMouseOptions { - none, - move, - leftDown, - leftUp = 4, - rightDown = 8, - rightUp = 16, - middleDown = 32, - middleUp = 64, - xdown = 128, - xup = 256, - wheel = 2048, - hwheel = 4096, - moveNoCoalesce = 8192, - virtualDesk = 16384, - absolute = 32768, - } - export enum InjectedInputPenButtons { - none, - barrel, - inverted, - eraser = 4, - } - export class InjectedInputPenInfo implements IInjectedInputPenInfo { - // constructor(); - tiltY: number = 0; - tiltX: number = 0; - rotation: number = 0; - pressure: number = 0; - pointerInfo: InjectedInputPointerInfo = null; - penParameters: InjectedInputPenParameters = InjectedInputPenParameters.none; - penButtons: InjectedInputPenButtons = InjectedInputPenButtons.none; - - } - export enum InjectedInputPenParameters { - none, - pressure, - rotation, - tiltX = 4, - tiltY = 8, - } - export interface InjectedInputPoint { - positionX: number; - positionY: number; - } - export interface InjectedInputPointerInfo { - pointerId: number; - pointerOptions: InjectedInputPointerOptions; - pixelLocation: InjectedInputPoint; - timeOffsetInMilliseconds: number; - performanceCount: number; - } - export enum InjectedInputPointerOptions { - none, - new, - inRange, - inContact = 4, - firstButton = 16, - secondButton = 32, - primary = 8192, - confidence = 16384, - canceled = 32768, - pointerDown = 65536, - update = 131072, - pointerUp = 262144, - captureChanged = 2097152, - } - export interface InjectedInputRectangle { - left: number; - top: number; - bottom: number; - right: number; - } - export enum InjectedInputShortcut { - back, - start, - search, - } - export class InjectedInputTouchInfo implements IInjectedInputTouchInfo { - // constructor(); - touchParameters: InjectedInputTouchParameters = InjectedInputTouchParameters.none; - pressure: number = 0; - pointerInfo: InjectedInputPointerInfo = null; - orientation: number = 0; - contact: InjectedInputRectangle = null; - - } - export enum InjectedInputTouchParameters { - none, - contact, - orientation, - pressure = 4, - } - export enum InjectedInputVisualizationMode { - none, - default, - indirect, - } - export class InputInjector implements IInputInjector, IInputInjector2 { - injectKeyboardInput(input: Foundation.Collections.IIterable): void { - console.warn('shimmed function InputInjector.injectKeyboardInput'); - } - - injectMouseInput(input: Foundation.Collections.IIterable): void { - console.warn('shimmed function InputInjector.injectMouseInput'); - } - - initializeTouchInjection(visualMode: InjectedInputVisualizationMode): void { - console.warn('shimmed function InputInjector.initializeTouchInjection'); - } - - injectTouchInput(input: Foundation.Collections.IIterable): void { - console.warn('shimmed function InputInjector.injectTouchInput'); - } - - uninitializeTouchInjection(): void { - console.warn('shimmed function InputInjector.uninitializeTouchInjection'); - } - - initializePenInjection(visualMode: InjectedInputVisualizationMode): void { - console.warn('shimmed function InputInjector.initializePenInjection'); - } - - injectPenInput(input: InjectedInputPenInfo): void { - console.warn('shimmed function InputInjector.injectPenInput'); - } - - uninitializePenInjection(): void { - console.warn('shimmed function InputInjector.uninitializePenInjection'); - } - - injectShortcut(shortcut: InjectedInputShortcut): void { - console.warn('shimmed function InputInjector.injectShortcut'); - } - - initializeGamepadInjection(): void { - console.warn('shimmed function InputInjector.initializeGamepadInjection'); - } - - injectGamepadInput(input: InjectedInputGamepadInfo): void { - console.warn('shimmed function InputInjector.injectGamepadInput'); - } - - uninitializeGamepadInjection(): void { - console.warn('shimmed function InputInjector.uninitializeGamepadInjection'); - } - - static tryCreateForAppBroadcastOnly(): InputInjector { - throw new Error('shimmed function InputInjector.tryCreateForAppBroadcastOnly'); - } - - static tryCreate(): InputInjector { - throw new Error('shimmed function InputInjector.tryCreate'); - } - - } - } - export class InputActivationListenerPreview { - static createForApplicationWindow(window: WindowManagement.AppWindow): InputActivationListener { - throw new Error('shimmed function InputActivationListenerPreview.createForApplicationWindow'); - } - - } - } - export class RadialController implements IRadialController, IRadialController2 { - useAutomaticHapticFeedback: Boolean; - rotationResolutionInDegrees: number; - menu: RadialControllerMenu; - - static isSupported(): Boolean { - throw new Error('shimmed function RadialController.isSupported'); - } - - static createForCurrentView(): RadialController { - throw new Error('shimmed function RadialController.createForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RadialController::addEventListener: ${name}`); - switch (name) { - case "buttonclicked": // Foundation.TypedEventHandler - case "controlacquired": // Foundation.TypedEventHandler - case "controllost": // Foundation.TypedEventHandler - case "rotationchanged": // Foundation.TypedEventHandler - case "screencontactcontinued": // Foundation.TypedEventHandler - case "screencontactended": // Foundation.TypedEventHandler - case "screencontactstarted": // Foundation.TypedEventHandler - case "buttonholding": // Foundation.TypedEventHandler - case "buttonpressed": // Foundation.TypedEventHandler - case "buttonreleased": // Foundation.TypedEventHandler - break; - } - - } - } - export class RadialControllerButtonClickedEventArgs implements IRadialControllerButtonClickedEventArgs, IRadialControllerButtonClickedEventArgs2 { - contact: RadialControllerScreenContact; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerButtonHoldingEventArgs implements IRadialControllerButtonHoldingEventArgs { - contact: RadialControllerScreenContact; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerButtonPressedEventArgs implements IRadialControllerButtonPressedEventArgs { - contact: RadialControllerScreenContact; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerButtonReleasedEventArgs implements IRadialControllerButtonReleasedEventArgs { - contact: RadialControllerScreenContact; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerConfiguration implements IRadialControllerConfiguration, IRadialControllerConfiguration2 { - isMenuSuppressed: Boolean; - activeControllerWhenMenuIsSuppressed: RadialController; - static isAppControllerEnabled: Boolean = false; - static appController: RadialController; - - setDefaultMenuItems(buttons: Foundation.Collections.IIterable): void { - console.warn('shimmed function RadialControllerConfiguration.setDefaultMenuItems'); - } - - resetToDefaultMenuItems(): void { - console.warn('shimmed function RadialControllerConfiguration.resetToDefaultMenuItems'); - } - - trySelectDefaultMenuItem(type: RadialControllerSystemMenuItemKind): Boolean { - throw new Error('shimmed function RadialControllerConfiguration.trySelectDefaultMenuItem'); - } - - static getForCurrentView(): RadialControllerConfiguration { - throw new Error('shimmed function RadialControllerConfiguration.getForCurrentView'); - } - - } - export class RadialControllerControlAcquiredEventArgs implements IRadialControllerControlAcquiredEventArgs, IRadialControllerControlAcquiredEventArgs2 { - contact: RadialControllerScreenContact; - isButtonPressed: Boolean; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerMenu implements IRadialControllerMenu { - isEnabled: Boolean; - items: RadialControllerMenuItem[]; - - getSelectedMenuItem(): RadialControllerMenuItem { - throw new Error('shimmed function RadialControllerMenu.getSelectedMenuItem'); - } - - selectMenuItem(menuItem: RadialControllerMenuItem): void { - console.warn('shimmed function RadialControllerMenu.selectMenuItem'); - } - - trySelectPreviouslySelectedMenuItem(): Boolean { - throw new Error('shimmed function RadialControllerMenu.trySelectPreviouslySelectedMenuItem'); - } - - } - export class RadialControllerMenuItem implements IRadialControllerMenuItem { - tag: any; - displayText: string; - - static createFromFontGlyph(displayText: string, glyph: string, fontFamily: string): RadialControllerMenuItem { - throw new Error('shimmed function RadialControllerMenuItem.createFromFontGlyph'); - } - - static createFromFontGlyph_1(displayText: string, glyph: string, fontFamily: string, fontUri: Foundation.Uri): RadialControllerMenuItem { - throw new Error('shimmed function RadialControllerMenuItem.createFromFontGlyph_1'); - } - - static createFromIcon(displayText: string, icon: Storage.Streams.RandomAccessStreamReference): RadialControllerMenuItem { - throw new Error('shimmed function RadialControllerMenuItem.createFromIcon'); - } - - static createFromKnownIcon(displayText: string, value: RadialControllerMenuKnownIcon): RadialControllerMenuItem { - throw new Error('shimmed function RadialControllerMenuItem.createFromKnownIcon'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RadialControllerMenuItem::addEventListener: ${name}`); - switch (name) { - case "invoked": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RadialControllerMenuKnownIcon { - scroll, - zoom, - undoRedo, - volume, - nextPreviousTrack, - ruler, - inkColor, - inkThickness, - penType, - } - export class RadialControllerRotationChangedEventArgs implements IRadialControllerRotationChangedEventArgs, IRadialControllerRotationChangedEventArgs2 { - contact: RadialControllerScreenContact; - rotationDeltaInDegrees: number; - isButtonPressed: Boolean; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerScreenContact implements IRadialControllerScreenContact { - bounds: Foundation.Rect; - position: Foundation.Point; - - } - export class RadialControllerScreenContactContinuedEventArgs implements IRadialControllerScreenContactContinuedEventArgs, IRadialControllerScreenContactContinuedEventArgs2 { - contact: RadialControllerScreenContact; - isButtonPressed: Boolean; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerScreenContactEndedEventArgs implements IRadialControllerScreenContactEndedEventArgs { - isButtonPressed: Boolean; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export class RadialControllerScreenContactStartedEventArgs implements IRadialControllerScreenContactStartedEventArgs, IRadialControllerScreenContactStartedEventArgs2 { - contact: RadialControllerScreenContact; - isButtonPressed: Boolean; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - - } - export enum RadialControllerSystemMenuItemKind { - scroll, - zoom, - undoRedo, - volume, - nextPreviousTrack, - } - export class RightTappedEventArgs implements IRightTappedEventArgs { - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - - } - export namespace Spatial { - export class SpatialGestureRecognizer implements ISpatialGestureRecognizer { - // constructor(settings: SpatialGestureSettings); - constructor(settings: SpatialGestureSettings) {} - - gestureSettings: SpatialGestureSettings; - - captureInteraction(interaction: SpatialInteraction): void { - console.warn('shimmed function SpatialGestureRecognizer.captureInteraction'); - } - - cancelPendingGestures(): void { - console.warn('shimmed function SpatialGestureRecognizer.cancelPendingGestures'); - } - - trySetGestureSettings(settings: SpatialGestureSettings): Boolean { - throw new Error('shimmed function SpatialGestureRecognizer.trySetGestureSettings'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpatialGestureRecognizer::addEventListener: ${name}`); - switch (name) { - case "holdcanceled": // Foundation.TypedEventHandler - case "holdcompleted": // Foundation.TypedEventHandler - case "holdstarted": // Foundation.TypedEventHandler - case "manipulationcanceled": // Foundation.TypedEventHandler - case "manipulationcompleted": // Foundation.TypedEventHandler - case "manipulationstarted": // Foundation.TypedEventHandler - case "manipulationupdated": // Foundation.TypedEventHandler - case "navigationcanceled": // Foundation.TypedEventHandler - case "navigationcompleted": // Foundation.TypedEventHandler - case "navigationstarted": // Foundation.TypedEventHandler - case "navigationupdated": // Foundation.TypedEventHandler - case "recognitionended": // Foundation.TypedEventHandler - case "recognitionstarted": // Foundation.TypedEventHandler - case "tapped": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SpatialGestureSettings { - none, - tap, - doubleTap, - hold = 4, - manipulationTranslate = 8, - navigationX = 16, - navigationY = 32, - navigationZ = 64, - navigationRailsX = 128, - navigationRailsY = 256, - navigationRailsZ = 512, - } - export class SpatialHoldCanceledEventArgs implements ISpatialHoldCanceledEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - } - export class SpatialHoldCompletedEventArgs implements ISpatialHoldCompletedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - } - export class SpatialHoldStartedEventArgs implements ISpatialHoldStartedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - tryGetPointerPose(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialPointerPose { - throw new Error('shimmed function SpatialHoldStartedEventArgs.tryGetPointerPose'); - } - - } - export class SpatialInteraction implements ISpatialInteraction { - sourceState: SpatialInteractionSourceState; - - } - export class SpatialInteractionController implements ISpatialInteractionController, ISpatialInteractionController2, ISpatialInteractionController3 { - hasThumbstick: Boolean; - hasTouchpad: Boolean; - productId: number; - simpleHapticsController: Devices.Haptics.SimpleHapticsController; - vendorId: number; - version: number; - - tryGetRenderableModelAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialInteractionController.tryGetRenderableModelAsync'); - } - - tryGetBatteryReport(): Devices.Power.BatteryReport { - throw new Error('shimmed function SpatialInteractionController.tryGetBatteryReport'); - } - - } - export class SpatialInteractionControllerProperties implements ISpatialInteractionControllerProperties { - isThumbstickPressed: Boolean; - isTouchpadPressed: Boolean; - isTouchpadTouched: Boolean; - thumbstickX: number; - thumbstickY: number; - touchpadX: number; - touchpadY: number; - - } - export class SpatialInteractionDetectedEventArgs implements ISpatialInteractionDetectedEventArgs, ISpatialInteractionDetectedEventArgs2 { - interaction: SpatialInteraction; - interactionSourceKind: SpatialInteractionSourceKind; - interactionSource: SpatialInteractionSource; - - tryGetPointerPose(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialPointerPose { - throw new Error('shimmed function SpatialInteractionDetectedEventArgs.tryGetPointerPose'); - } - - } - export class SpatialInteractionManager implements ISpatialInteractionManager { - getDetectedSourcesAtTimestamp(timeStamp: Perception.PerceptionTimestamp): SpatialInteractionSourceState[] { - throw new Error('shimmed function SpatialInteractionManager.getDetectedSourcesAtTimestamp'); - } - - static isSourceKindSupported(kind: SpatialInteractionSourceKind): Boolean { - throw new Error('shimmed function SpatialInteractionManager.isSourceKindSupported'); - } - - static getForCurrentView(): SpatialInteractionManager { - throw new Error('shimmed function SpatialInteractionManager.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SpatialInteractionManager::addEventListener: ${name}`); - switch (name) { - case "interactiondetected": // Foundation.TypedEventHandler - case "sourcedetected": // Foundation.TypedEventHandler - case "sourcelost": // Foundation.TypedEventHandler - case "sourcepressed": // Foundation.TypedEventHandler - case "sourcereleased": // Foundation.TypedEventHandler - case "sourceupdated": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SpatialInteractionPressKind { - none, - select, - menu, - grasp, - touchpad, - thumbstick, - } - export class SpatialInteractionSource implements ISpatialInteractionSource, ISpatialInteractionSource2, ISpatialInteractionSource3, ISpatialInteractionSource4 { - id: number; - kind: SpatialInteractionSourceKind; - controller: SpatialInteractionController; - isGraspSupported: Boolean; - isMenuSupported: Boolean; - isPointingSupported: Boolean; - handedness: SpatialInteractionSourceHandedness; - - tryGetStateAtTimestamp(timestamp: Perception.PerceptionTimestamp): SpatialInteractionSourceState { - throw new Error('shimmed function SpatialInteractionSource.tryGetStateAtTimestamp'); - } - - tryCreateHandMeshObserver(): Perception.People.HandMeshObserver { - throw new Error('shimmed function SpatialInteractionSource.tryCreateHandMeshObserver'); - } - - tryCreateHandMeshObserverAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SpatialInteractionSource.tryCreateHandMeshObserverAsync'); - } - - } - export class SpatialInteractionSourceEventArgs implements ISpatialInteractionSourceEventArgs, ISpatialInteractionSourceEventArgs2 { - state: SpatialInteractionSourceState; - pressKind: SpatialInteractionPressKind; - - } - export enum SpatialInteractionSourceHandedness { - unspecified, - left, - right, - } - export enum SpatialInteractionSourceKind { - other, - hand, - voice, - controller, - } - export class SpatialInteractionSourceLocation implements ISpatialInteractionSourceLocation, ISpatialInteractionSourceLocation2, ISpatialInteractionSourceLocation3 { - position: Foundation.Numerics.Vector3 | null; - velocity: Foundation.Numerics.Vector3 | null; - orientation: Foundation.Numerics.Quaternion | null; - angularVelocity: Foundation.Numerics.Vector3 | null; - positionAccuracy: SpatialInteractionSourcePositionAccuracy; - sourcePointerPose: SpatialPointerInteractionSourcePose; - - } - export enum SpatialInteractionSourcePositionAccuracy { - high, - approximate, - } - export class SpatialInteractionSourceProperties implements ISpatialInteractionSourceProperties { - sourceLossRisk: number; - - tryGetSourceLossMitigationDirection(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): Foundation.Numerics.Vector3 | null { - throw new Error('shimmed function SpatialInteractionSourceProperties.tryGetSourceLossMitigationDirection'); - } - - tryGetLocation(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialInteractionSourceLocation { - throw new Error('shimmed function SpatialInteractionSourceProperties.tryGetLocation'); - } - - } - export class SpatialInteractionSourceState implements ISpatialInteractionSourceState, ISpatialInteractionSourceState2, ISpatialInteractionSourceState3 { - isPressed: Boolean; - properties: SpatialInteractionSourceProperties; - source: SpatialInteractionSource; - timestamp: Perception.PerceptionTimestamp; - controllerProperties: SpatialInteractionControllerProperties; - isGrasped: Boolean; - isMenuPressed: Boolean; - isSelectPressed: Boolean; - selectPressedValue: number; - - tryGetPointerPose(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialPointerPose { - throw new Error('shimmed function SpatialInteractionSourceState.tryGetPointerPose'); - } - - tryGetHandPose(): Perception.People.HandPose { - throw new Error('shimmed function SpatialInteractionSourceState.tryGetHandPose'); - } - - } - export class SpatialManipulationCanceledEventArgs implements ISpatialManipulationCanceledEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - } - export class SpatialManipulationCompletedEventArgs implements ISpatialManipulationCompletedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - tryGetCumulativeDelta(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialManipulationDelta { - throw new Error('shimmed function SpatialManipulationCompletedEventArgs.tryGetCumulativeDelta'); - } - - } - export class SpatialManipulationDelta implements ISpatialManipulationDelta { - translation: Foundation.Numerics.Vector3; - - } - export class SpatialManipulationStartedEventArgs implements ISpatialManipulationStartedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - tryGetPointerPose(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialPointerPose { - throw new Error('shimmed function SpatialManipulationStartedEventArgs.tryGetPointerPose'); - } - - } - export class SpatialManipulationUpdatedEventArgs implements ISpatialManipulationUpdatedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - tryGetCumulativeDelta(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialManipulationDelta { - throw new Error('shimmed function SpatialManipulationUpdatedEventArgs.tryGetCumulativeDelta'); - } - - } - export class SpatialNavigationCanceledEventArgs implements ISpatialNavigationCanceledEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - } - export class SpatialNavigationCompletedEventArgs implements ISpatialNavigationCompletedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - normalizedOffset: Foundation.Numerics.Vector3; - - } - export class SpatialNavigationStartedEventArgs implements ISpatialNavigationStartedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - isNavigatingX: Boolean; - isNavigatingY: Boolean; - isNavigatingZ: Boolean; - - tryGetPointerPose(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialPointerPose { - throw new Error('shimmed function SpatialNavigationStartedEventArgs.tryGetPointerPose'); - } - - } - export class SpatialNavigationUpdatedEventArgs implements ISpatialNavigationUpdatedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - normalizedOffset: Foundation.Numerics.Vector3; - - } - export class SpatialPointerInteractionSourcePose implements ISpatialPointerInteractionSourcePose, ISpatialPointerInteractionSourcePose2 { - forwardDirection: Foundation.Numerics.Vector3; - position: Foundation.Numerics.Vector3; - upDirection: Foundation.Numerics.Vector3; - orientation: Foundation.Numerics.Quaternion; - positionAccuracy: SpatialInteractionSourcePositionAccuracy; - - } - export class SpatialPointerPose implements ISpatialPointerPose, ISpatialPointerPose2, ISpatialPointerPose3 { - head: Perception.People.HeadPose; - timestamp: Perception.PerceptionTimestamp; - eyes: Perception.People.EyesPose; - isHeadCapturedBySystem: Boolean; - - tryGetInteractionSourcePose(source: SpatialInteractionSource): SpatialPointerInteractionSourcePose { - throw new Error('shimmed function SpatialPointerPose.tryGetInteractionSourcePose'); - } - - static tryGetAtTimestamp(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem, timestamp: Perception.PerceptionTimestamp): SpatialPointerPose { - throw new Error('shimmed function SpatialPointerPose.tryGetAtTimestamp'); - } - - } - export class SpatialRecognitionEndedEventArgs implements ISpatialRecognitionEndedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - } - export class SpatialRecognitionStartedEventArgs implements ISpatialRecognitionStartedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - - tryGetPointerPose(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialPointerPose { - throw new Error('shimmed function SpatialRecognitionStartedEventArgs.tryGetPointerPose'); - } - - isGesturePossible(gesture: SpatialGestureSettings): Boolean { - throw new Error('shimmed function SpatialRecognitionStartedEventArgs.isGesturePossible'); - } - - } - export class SpatialTappedEventArgs implements ISpatialTappedEventArgs { - interactionSourceKind: SpatialInteractionSourceKind; - tapCount: number; - - tryGetPointerPose(coordinateSystem: Perception.Spatial.SpatialCoordinateSystem): SpatialPointerPose { - throw new Error('shimmed function SpatialTappedEventArgs.tryGetPointerPose'); - } - - } - } - export class TappedEventArgs implements ITappedEventArgs { - pointerDeviceType: Devices.Input.PointerDeviceType; - position: Foundation.Point; - tapCount: number; - - } - } - export namespace Notifications { - export enum AdaptiveNotificationContentKind { - text, - } - export class AdaptiveNotificationText implements IAdaptiveNotificationText, IAdaptiveNotificationContent { - // constructor(); - hints: string[] = [ ]; - kind: AdaptiveNotificationContentKind = AdaptiveNotificationContentKind.text; - text: string = ''; - language: string = ''; - - } - export class BadgeNotification implements IBadgeNotification { - // constructor(content: Data.Xml.Dom.XmlDocument); - constructor(content: Data.Xml.Dom.XmlDocument) {} - - expirationTime: Date | null; - content: Data.Xml.Dom.XmlDocument; - - } - export enum BadgeTemplateType { - badgeGlyph, - badgeNumber, - } - export class BadgeUpdateManager { - static getForUser(user: System.User): BadgeUpdateManagerForUser { - throw new Error('shimmed function BadgeUpdateManager.getForUser'); - } - - static createBadgeUpdaterForApplication(): BadgeUpdater { - throw new Error('shimmed function BadgeUpdateManager.createBadgeUpdaterForApplication'); - } - - static createBadgeUpdaterForApplication_1(applicationId: string): BadgeUpdater { - throw new Error('shimmed function BadgeUpdateManager.createBadgeUpdaterForApplication_1'); - } - - static createBadgeUpdaterForSecondaryTile(tileId: string): BadgeUpdater { - throw new Error('shimmed function BadgeUpdateManager.createBadgeUpdaterForSecondaryTile'); - } - - static getTemplateContent(type: BadgeTemplateType): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function BadgeUpdateManager.getTemplateContent'); - } - - } - export class BadgeUpdateManagerForUser implements IBadgeUpdateManagerForUser { - user: System.User; - - createBadgeUpdaterForApplication(): BadgeUpdater { - throw new Error('shimmed function BadgeUpdateManagerForUser.createBadgeUpdaterForApplication'); - } - - createBadgeUpdaterForApplication_1(applicationId: string): BadgeUpdater { - throw new Error('shimmed function BadgeUpdateManagerForUser.createBadgeUpdaterForApplication_1'); - } - - createBadgeUpdaterForSecondaryTile(tileId: string): BadgeUpdater { - throw new Error('shimmed function BadgeUpdateManagerForUser.createBadgeUpdaterForSecondaryTile'); - } - - } - export class BadgeUpdater implements IBadgeUpdater { - update(notification: BadgeNotification): void { - console.warn('shimmed function BadgeUpdater.update'); - } - - clear(): void { - console.warn('shimmed function BadgeUpdater.clear'); - } - - startPeriodicUpdate(badgeContent: Foundation.Uri, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function BadgeUpdater.startPeriodicUpdate'); - } - - startPeriodicUpdate_1(badgeContent: Foundation.Uri, startTime: Date, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function BadgeUpdater.startPeriodicUpdate_1'); - } - - stopPeriodicUpdate(): void { - console.warn('shimmed function BadgeUpdater.stopPeriodicUpdate'); - } - - } - export interface IAdaptiveNotificationContent { - hints: string[]; - kind: AdaptiveNotificationContentKind; - } - export class KnownAdaptiveNotificationHints { - static align: string = 'hint-align'; - static maxLines: string = 'hint-maxLines'; - static minLines: string = 'hint-minLines'; - static style: string = 'hint-style'; - static textStacking: string = 'hint-textStacking'; - static wrap: string = 'hint-wrap'; - - } - export class KnownAdaptiveNotificationTextStyles { - static base: string = 'Base'; - static baseSubtle: string = 'BaseSubtle'; - static body: string = 'Body'; - static bodySubtle: string = 'BodySubtle'; - static caption: string = 'Caption'; - static captionSubtle: string = 'CaptionSubtle'; - static header: string = 'Header'; - static headerNumeral: string = 'HeaderNumeral'; - static headerNumeralSubtle: string = 'HeaderNumeralSubtle'; - static headerSubtle: string = 'HeaderSubtle'; - static subheader: string = 'Subheader'; - static subheaderNumeral: string = 'SubheaderNumeral'; - static subheaderNumeralSubtle: string = 'SubheaderNumeralSubtle'; - static subheaderSubtle: string = 'SubheaderSubtle'; - static subtitle: string = 'Subtitle'; - static subtitleSubtle: string = 'SubtitleSubtle'; - static title: string = 'Title'; - static titleNumeral: string = 'TitleNumeral'; - static titleSubtle: string = 'TitleSubtle'; - - } - export class KnownNotificationBindings { - static toastGeneric: string = 'ToastGeneric'; - - } - export namespace Management { - export class UserNotificationListener implements IUserNotificationListener { - static current: UserNotificationListener = null; - - requestAccessAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function UserNotificationListener.requestAccessAsync'); - } - - getAccessStatus(): UserNotificationListenerAccessStatus { - throw new Error('shimmed function UserNotificationListener.getAccessStatus'); - } - - getNotificationsAsync(kinds: NotificationKinds): Foundation.IAsyncOperation { - throw new Error('shimmed function UserNotificationListener.getNotificationsAsync'); - } - - getNotification(notificationId: number): UserNotification { - throw new Error('shimmed function UserNotificationListener.getNotification'); - } - - clearNotifications(): void { - console.warn('shimmed function UserNotificationListener.clearNotifications'); - } - - removeNotification(notificationId: number): void { - console.warn('shimmed function UserNotificationListener.removeNotification'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserNotificationListener::addEventListener: ${name}`); - switch (name) { - case "notificationchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum UserNotificationListenerAccessStatus { - unspecified, - allowed, - denied, - } - } - export class Notification implements INotification { - // constructor(); - visual: NotificationVisual; - expirationTime: Date | null; - - } - export class NotificationBinding implements INotificationBinding { - template: string; - language: string; - hints: string[]; - - getTextElements(): AdaptiveNotificationText[] { - throw new Error('shimmed function NotificationBinding.getTextElements'); - } - - } - export class NotificationData implements INotificationData { - // constructor(initialValues: Foundation.Collections.IIterable>, sequenceNumber: number); - // constructor(initialValues: Foundation.Collections.IIterable>); - // constructor(); - constructor(initialValues: Foundation.Collections.IIterable>, sequenceNumber: number) {} - - sequenceNumber: number = 0; - values: string[] = [ ]; - - } - export enum NotificationKinds { - unknown, - toast, - } - export enum NotificationMirroring { - allowed, - disabled, - } - export enum NotificationSetting { - enabled, - disabledForApplication, - disabledForUser, - disabledByGroupPolicy, - disabledByManifest, - } - export enum NotificationUpdateResult { - succeeded, - failed, - notificationNotFound, - } - export class NotificationVisual implements INotificationVisual { - language: string; - bindings: NotificationBinding[]; - - getBinding(templateName: string): NotificationBinding { - throw new Error('shimmed function NotificationVisual.getBinding'); - } - - } - export enum PeriodicUpdateRecurrence { - halfHour, - hour, - sixHours, - twelveHours, - daily, - } - export class ScheduledTileNotification implements IScheduledTileNotification { - // constructor(content: Data.Xml.Dom.XmlDocument, deliveryTime: Date); - constructor(content: Data.Xml.Dom.XmlDocument, deliveryTime: Date) {} - - tag: string; - id: string; - expirationTime: Date | null; - content: Data.Xml.Dom.XmlDocument; - deliveryTime: Date; - - } - export class ScheduledToastNotification implements IScheduledToastNotification, IScheduledToastNotification2, IScheduledToastNotification3, IScheduledToastNotification4 { - // constructor(content: Data.Xml.Dom.XmlDocument, deliveryTime: Date); - // constructor(content: Data.Xml.Dom.XmlDocument, deliveryTime: Date, snoozeInterval: number, maximumSnoozeCount: number); - constructor(content: Data.Xml.Dom.XmlDocument, deliveryTime: Date, snoozeInterval: number, maximumSnoozeCount: number) {} - - id: string; - content: Data.Xml.Dom.XmlDocument; - deliveryTime: Date; - maximumSnoozeCount: number; - snoozeInterval: number | null; - tag: string; - suppressPopup: Boolean; - group: string; - remoteId: string; - notificationMirroring: NotificationMirroring; - expirationTime: Date | null; - - } - export class ScheduledToastNotificationShowingEventArgs implements IScheduledToastNotificationShowingEventArgs { - cancel: Boolean; - scheduledToastNotification: ScheduledToastNotification; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function ScheduledToastNotificationShowingEventArgs.getDeferral'); - } - - } - export class ShownTileNotification implements IShownTileNotification { - __arguments: string; - - } - export class TileFlyoutNotification implements ITileFlyoutNotification { - // constructor(content: Data.Xml.Dom.XmlDocument); - constructor(content: Data.Xml.Dom.XmlDocument) {} - - expirationTime: Date | null; - content: Data.Xml.Dom.XmlDocument; - - } - export enum TileFlyoutTemplateType { - tileFlyoutTemplate01, - } - export class TileFlyoutUpdateManager { - static createTileFlyoutUpdaterForApplication(): TileFlyoutUpdater { - throw new Error('shimmed function TileFlyoutUpdateManager.createTileFlyoutUpdaterForApplication'); - } - - static createTileFlyoutUpdaterForApplication_1(applicationId: string): TileFlyoutUpdater { - throw new Error('shimmed function TileFlyoutUpdateManager.createTileFlyoutUpdaterForApplication_1'); - } - - static createTileFlyoutUpdaterForSecondaryTile(tileId: string): TileFlyoutUpdater { - throw new Error('shimmed function TileFlyoutUpdateManager.createTileFlyoutUpdaterForSecondaryTile'); - } - - static getTemplateContent(type: TileFlyoutTemplateType): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function TileFlyoutUpdateManager.getTemplateContent'); - } - - } - export class TileFlyoutUpdater implements ITileFlyoutUpdater { - setting: NotificationSetting; - - update(notification: TileFlyoutNotification): void { - console.warn('shimmed function TileFlyoutUpdater.update'); - } - - clear(): void { - console.warn('shimmed function TileFlyoutUpdater.clear'); - } - - startPeriodicUpdate(tileFlyoutContent: Foundation.Uri, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function TileFlyoutUpdater.startPeriodicUpdate'); - } - - startPeriodicUpdate_1(tileFlyoutContent: Foundation.Uri, startTime: Date, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function TileFlyoutUpdater.startPeriodicUpdate_1'); - } - - stopPeriodicUpdate(): void { - console.warn('shimmed function TileFlyoutUpdater.stopPeriodicUpdate'); - } - - } - export class TileNotification implements ITileNotification { - // constructor(content: Data.Xml.Dom.XmlDocument); - constructor(content: Data.Xml.Dom.XmlDocument) {} - - tag: string; - expirationTime: Date | null; - content: Data.Xml.Dom.XmlDocument; - - } - export enum TileTemplateType { - tileSquareImage, - tileSquareBlock, - tileSquareText01, - tileSquareText02, - tileSquareText03, - tileSquareText04, - tileSquarePeekImageAndText01, - tileSquarePeekImageAndText02, - tileSquarePeekImageAndText03, - tileSquarePeekImageAndText04, - tileWideImage, - tileWideImageCollection, - tileWideImageAndText01, - tileWideImageAndText02, - tileWideBlockAndText01, - tileWideBlockAndText02, - tileWidePeekImageCollection01, - tileWidePeekImageCollection02, - tileWidePeekImageCollection03, - tileWidePeekImageCollection04, - tileWidePeekImageCollection05, - tileWidePeekImageCollection06, - tileWidePeekImageAndText01, - tileWidePeekImageAndText02, - tileWidePeekImage01, - tileWidePeekImage02, - tileWidePeekImage03, - tileWidePeekImage04, - tileWidePeekImage05, - tileWidePeekImage06, - tileWideSmallImageAndText01, - tileWideSmallImageAndText02, - tileWideSmallImageAndText03, - tileWideSmallImageAndText04, - tileWideSmallImageAndText05, - tileWideText01, - tileWideText02, - tileWideText03, - tileWideText04, - tileWideText05, - tileWideText06, - tileWideText07, - tileWideText08, - tileWideText09, - tileWideText10, - tileWideText11, - tileSquare150x150Image = 0, - tileSquare150x150Block, - tileSquare150x150Text01, - tileSquare150x150Text02, - tileSquare150x150Text03, - tileSquare150x150Text04, - tileSquare150x150PeekImageAndText01, - tileSquare150x150PeekImageAndText02, - tileSquare150x150PeekImageAndText03, - tileSquare150x150PeekImageAndText04, - tileWide310x150Image, - tileWide310x150ImageCollection, - tileWide310x150ImageAndText01, - tileWide310x150ImageAndText02, - tileWide310x150BlockAndText01, - tileWide310x150BlockAndText02, - tileWide310x150PeekImageCollection01, - tileWide310x150PeekImageCollection02, - tileWide310x150PeekImageCollection03, - tileWide310x150PeekImageCollection04, - tileWide310x150PeekImageCollection05, - tileWide310x150PeekImageCollection06, - tileWide310x150PeekImageAndText01, - tileWide310x150PeekImageAndText02, - tileWide310x150PeekImage01, - tileWide310x150PeekImage02, - tileWide310x150PeekImage03, - tileWide310x150PeekImage04, - tileWide310x150PeekImage05, - tileWide310x150PeekImage06, - tileWide310x150SmallImageAndText01, - tileWide310x150SmallImageAndText02, - tileWide310x150SmallImageAndText03, - tileWide310x150SmallImageAndText04, - tileWide310x150SmallImageAndText05, - tileWide310x150Text01, - tileWide310x150Text02, - tileWide310x150Text03, - tileWide310x150Text04, - tileWide310x150Text05, - tileWide310x150Text06, - tileWide310x150Text07, - tileWide310x150Text08, - tileWide310x150Text09, - tileWide310x150Text10, - tileWide310x150Text11, - tileSquare310x310BlockAndText01, - tileSquare310x310BlockAndText02, - tileSquare310x310Image, - tileSquare310x310ImageAndText01, - tileSquare310x310ImageAndText02, - tileSquare310x310ImageAndTextOverlay01, - tileSquare310x310ImageAndTextOverlay02, - tileSquare310x310ImageAndTextOverlay03, - tileSquare310x310ImageCollectionAndText01, - tileSquare310x310ImageCollectionAndText02, - tileSquare310x310ImageCollection, - tileSquare310x310SmallImagesAndTextList01, - tileSquare310x310SmallImagesAndTextList02, - tileSquare310x310SmallImagesAndTextList03, - tileSquare310x310SmallImagesAndTextList04, - tileSquare310x310Text01, - tileSquare310x310Text02, - tileSquare310x310Text03, - tileSquare310x310Text04, - tileSquare310x310Text05, - tileSquare310x310Text06, - tileSquare310x310Text07, - tileSquare310x310Text08, - tileSquare310x310TextList01, - tileSquare310x310TextList02, - tileSquare310x310TextList03, - tileSquare310x310SmallImageAndText01, - tileSquare310x310SmallImagesAndTextList05, - tileSquare310x310Text09, - tileSquare71x71IconWithBadge, - tileSquare150x150IconWithBadge, - tileWide310x150IconWithBadgeAndText, - tileSquare71x71Image, - tileTall150x310Image, - } - export class TileUpdateManager { - static getForUser(user: System.User): TileUpdateManagerForUser { - throw new Error('shimmed function TileUpdateManager.getForUser'); - } - - static createTileUpdaterForApplication(): TileUpdater { - throw new Error('shimmed function TileUpdateManager.createTileUpdaterForApplication'); - } - - static createTileUpdaterForApplication_1(applicationId: string): TileUpdater { - throw new Error('shimmed function TileUpdateManager.createTileUpdaterForApplication_1'); - } - - static createTileUpdaterForSecondaryTile(tileId: string): TileUpdater { - throw new Error('shimmed function TileUpdateManager.createTileUpdaterForSecondaryTile'); - } - - static getTemplateContent(type: TileTemplateType): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function TileUpdateManager.getTemplateContent'); - } - - } - export class TileUpdateManagerForUser implements ITileUpdateManagerForUser { - user: System.User; - - createTileUpdaterForApplicationForUser(): TileUpdater { - throw new Error('shimmed function TileUpdateManagerForUser.createTileUpdaterForApplicationForUser'); - } - - createTileUpdaterForApplication(applicationId: string): TileUpdater { - throw new Error('shimmed function TileUpdateManagerForUser.createTileUpdaterForApplication'); - } - - createTileUpdaterForSecondaryTile(tileId: string): TileUpdater { - throw new Error('shimmed function TileUpdateManagerForUser.createTileUpdaterForSecondaryTile'); - } - - } - export class TileUpdater implements ITileUpdater, ITileUpdater2 { - setting: NotificationSetting; - - update(notification: TileNotification): void { - console.warn('shimmed function TileUpdater.update'); - } - - clear(): void { - console.warn('shimmed function TileUpdater.clear'); - } - - enableNotificationQueue(enable: Boolean): void { - console.warn('shimmed function TileUpdater.enableNotificationQueue'); - } - - addToSchedule(scheduledTile: ScheduledTileNotification): void { - console.warn('shimmed function TileUpdater.addToSchedule'); - } - - removeFromSchedule(scheduledTile: ScheduledTileNotification): void { - console.warn('shimmed function TileUpdater.removeFromSchedule'); - } - - getScheduledTileNotifications(): ScheduledTileNotification[] { - throw new Error('shimmed function TileUpdater.getScheduledTileNotifications'); - } - - startPeriodicUpdate(tileContent: Foundation.Uri, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function TileUpdater.startPeriodicUpdate'); - } - - startPeriodicUpdate_1(tileContent: Foundation.Uri, startTime: Date, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function TileUpdater.startPeriodicUpdate_1'); - } - - stopPeriodicUpdate(): void { - console.warn('shimmed function TileUpdater.stopPeriodicUpdate'); - } - - startPeriodicUpdateBatch(tileContents: Foundation.Collections.IIterable, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function TileUpdater.startPeriodicUpdateBatch'); - } - - startPeriodicUpdateBatch_1(tileContents: Foundation.Collections.IIterable, startTime: Date, requestedInterval: PeriodicUpdateRecurrence): void { - console.warn('shimmed function TileUpdater.startPeriodicUpdateBatch_1'); - } - - enableNotificationQueueForSquare150x150(enable: Boolean): void { - console.warn('shimmed function TileUpdater.enableNotificationQueueForSquare150x150'); - } - - enableNotificationQueueForWide310x150(enable: Boolean): void { - console.warn('shimmed function TileUpdater.enableNotificationQueueForWide310x150'); - } - - enableNotificationQueueForSquare310x310(enable: Boolean): void { - console.warn('shimmed function TileUpdater.enableNotificationQueueForSquare310x310'); - } - - } - export class ToastActivatedEventArgs implements IToastActivatedEventArgs, IToastActivatedEventArgs2 { - __arguments: string; - userInput: Foundation.Collections.ValueSet; - - } - export class ToastCollection implements IToastCollection { - // constructor(collectionId: string, displayName: string, launchArgs: string, iconUri: Foundation.Uri); - constructor(collectionId: string, displayName: string, launchArgs: string, iconUri: Foundation.Uri) {} - - launchArgs: string; - icon: Foundation.Uri; - displayName: string; - id: string; - - } - export class ToastCollectionManager implements IToastCollectionManager { - appId: string; - user: System.User; - - saveToastCollectionAsync(collection: ToastCollection): Foundation.IAsyncAction { - throw new Error('shimmed function ToastCollectionManager.saveToastCollectionAsync'); - } - - findAllToastCollectionsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ToastCollectionManager.findAllToastCollectionsAsync'); - } - - getToastCollectionAsync(collectionId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ToastCollectionManager.getToastCollectionAsync'); - } - - removeToastCollectionAsync(collectionId: string): Foundation.IAsyncAction { - throw new Error('shimmed function ToastCollectionManager.removeToastCollectionAsync'); - } - - removeAllToastCollectionsAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function ToastCollectionManager.removeAllToastCollectionsAsync'); - } - - } - export enum ToastDismissalReason { - userCanceled, - applicationHidden, - timedOut, - } - export class ToastDismissedEventArgs implements IToastDismissedEventArgs { - reason: ToastDismissalReason; - - } - export class ToastFailedEventArgs implements IToastFailedEventArgs { - errorCode: number; - - } - export enum ToastHistoryChangedType { - cleared, - removed, - expired, - added, - } - export class ToastNotification implements IToastNotification, IToastNotification2, IToastNotification3, IToastNotification4, IToastNotification6 { - // constructor(content: Data.Xml.Dom.XmlDocument); - constructor(content: Data.Xml.Dom.XmlDocument) {} - - expirationTime: Date | null; - content: Data.Xml.Dom.XmlDocument; - tag: string; - suppressPopup: Boolean; - group: string; - remoteId: string; - notificationMirroring: NotificationMirroring; - priority: ToastNotificationPriority; - data: NotificationData; - expiresOnReboot: Boolean; - - addEventListener(name: string, handler: Function) { - console.warn(`ToastNotification::addEventListener: ${name}`); - switch (name) { - case "activated": // Foundation.TypedEventHandler - case "dismissed": // Foundation.TypedEventHandler - case "failed": // Foundation.TypedEventHandler - break; - } - - } - } - export class ToastNotificationActionTriggerDetail implements IToastNotificationActionTriggerDetail { - argument: string; - userInput: Foundation.Collections.ValueSet; - - } - export class ToastNotificationHistory implements IToastNotificationHistory2, IToastNotificationHistory { - getHistory(): ToastNotification[] { - throw new Error('shimmed function ToastNotificationHistory.getHistory'); - } - - getHistory_1(applicationId: string): ToastNotification[] { - throw new Error('shimmed function ToastNotificationHistory.getHistory_1'); - } - - removeGroup(group: string): void { - console.warn('shimmed function ToastNotificationHistory.removeGroup'); - } - - removeGroup_1(group: string, applicationId: string): void { - console.warn('shimmed function ToastNotificationHistory.removeGroup_1'); - } - - clear(): void { - console.warn('shimmed function ToastNotificationHistory.clear'); - } - - clear_1(applicationId: string): void { - console.warn('shimmed function ToastNotificationHistory.clear_1'); - } - - } - export class ToastNotificationHistoryChangedTriggerDetail implements IToastNotificationHistoryChangedTriggerDetail, IToastNotificationHistoryChangedTriggerDetail2 { - changeType: ToastHistoryChangedType; - collectionId: string; - - } - export class ToastNotificationManager { - static history: ToastNotificationHistory = null; - - static getDefault(): ToastNotificationManagerForUser { - throw new Error('shimmed function ToastNotificationManager.getDefault'); - } - - static getForUser(user: System.User): ToastNotificationManagerForUser { - throw new Error('shimmed function ToastNotificationManager.getForUser'); - } - - static configureNotificationMirroring(value: NotificationMirroring): void { - console.warn('shimmed function ToastNotificationManager.configureNotificationMirroring'); - } - - static createToastNotifier(): ToastNotifier { - throw new Error('shimmed function ToastNotificationManager.createToastNotifier'); - } - - static createToastNotifier_1(applicationId: string): ToastNotifier { - throw new Error('shimmed function ToastNotificationManager.createToastNotifier_1'); - } - - static getTemplateContent(type: ToastTemplateType): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function ToastNotificationManager.getTemplateContent'); - } - - } - export class ToastNotificationManagerForUser implements IToastNotificationManagerForUser, IToastNotificationManagerForUser2 { - history: ToastNotificationHistory; - user: System.User; - - createToastNotifier(): ToastNotifier { - throw new Error('shimmed function ToastNotificationManagerForUser.createToastNotifier'); - } - - createToastNotifier_1(applicationId: string): ToastNotifier { - throw new Error('shimmed function ToastNotificationManagerForUser.createToastNotifier_1'); - } - - getToastNotifierForToastCollectionIdAsync(collectionId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ToastNotificationManagerForUser.getToastNotifierForToastCollectionIdAsync'); - } - - getHistoryForToastCollectionIdAsync(collectionId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ToastNotificationManagerForUser.getHistoryForToastCollectionIdAsync'); - } - - getToastCollectionManager(): ToastCollectionManager { - throw new Error('shimmed function ToastNotificationManagerForUser.getToastCollectionManager'); - } - - getToastCollectionManager_1(appId: string): ToastCollectionManager { - throw new Error('shimmed function ToastNotificationManagerForUser.getToastCollectionManager_1'); - } - - } - export enum ToastNotificationPriority { - default, - high, - } - export class ToastNotifier implements IToastNotifier, IToastNotifier2, IToastNotifier3 { - setting: NotificationSetting; - - show(notification: ToastNotification): void { - console.warn('shimmed function ToastNotifier.show'); - } - - hide(notification: ToastNotification): void { - console.warn('shimmed function ToastNotifier.hide'); - } - - addToSchedule(scheduledToast: ScheduledToastNotification): void { - console.warn('shimmed function ToastNotifier.addToSchedule'); - } - - removeFromSchedule(scheduledToast: ScheduledToastNotification): void { - console.warn('shimmed function ToastNotifier.removeFromSchedule'); - } - - getScheduledToastNotifications(): ScheduledToastNotification[] { - throw new Error('shimmed function ToastNotifier.getScheduledToastNotifications'); - } - - update(data: NotificationData, tag: string, group: string): NotificationUpdateResult { - throw new Error('shimmed function ToastNotifier.update'); - } - - update_1(data: NotificationData, tag: string): NotificationUpdateResult { - throw new Error('shimmed function ToastNotifier.update_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ToastNotifier::addEventListener: ${name}`); - switch (name) { - case "scheduledtoastnotificationshowing": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ToastTemplateType { - toastImageAndText01, - toastImageAndText02, - toastImageAndText03, - toastImageAndText04, - toastText01, - toastText02, - toastText03, - toastText04, - } - export class UserNotification implements IUserNotification { - appInfo: ApplicationModel.AppInfo; - creationTime: Date; - id: number; - notification: Notification; - - } - export class UserNotificationChangedEventArgs implements IUserNotificationChangedEventArgs { - changeKind: UserNotificationChangedKind; - userNotificationId: number; - - } - export enum UserNotificationChangedKind { - added, - removed, - } - } - export namespace Popups { - export interface IUICommand { - id: any; - invoked: UICommandInvokedHandler; - label: string; - } - export class MessageDialog implements IMessageDialog { - // constructor(content: string); - // constructor(content: string, title: string); - constructor(content: string, title: string) {} - - title: string; - options: MessageDialogOptions; - defaultCommandIndex: number; - content: string; - cancelCommandIndex: number; - commands: IUICommand[]; - - showAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MessageDialog.showAsync'); - } - - } - export enum MessageDialogOptions { - none, - acceptUserInputAfterDelay, - } - export enum Placement { - default, - above, - below, - left, - right, - } - export class PopupMenu implements IPopupMenu { - // constructor(); - commands: IUICommand[] = [ ]; - - showAsync(invocationPoint: Foundation.Point): Foundation.IAsyncOperation { - throw new Error('shimmed function PopupMenu.showAsync'); - } - - showForSelectionAsync(selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function PopupMenu.showForSelectionAsync'); - } - - showForSelectionAsync_1(selection: Foundation.Rect, preferredPlacement: Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function PopupMenu.showForSelectionAsync_1'); - } - - } - export class UICommand implements IUICommand { - // constructor(label: string); - // constructor(label: string, action: UICommandInvokedHandler); - // constructor(label: string, action: UICommandInvokedHandler, commandId: any); - // constructor(); - constructor(label: string, action: UICommandInvokedHandler, commandId: any) {} - - label: string = ''; - invoked: UICommandInvokedHandler; - id: any; - - } - export type UICommandInvokedHandler = () => void; - export class UICommandSeparator implements IUICommand { - // constructor(); - label: string = ''; - invoked: UICommandInvokedHandler; - id: any; - - } - } - export namespace Shell { - export class AdaptiveCardBuilder { - static createAdaptiveCardFromJson(value: string): IAdaptiveCard { - throw new Error('shimmed function AdaptiveCardBuilder.createAdaptiveCardFromJson'); - } - - } - export interface IAdaptiveCard { - toJson(): string; - } - export interface IAdaptiveCardBuilderStatics { - createAdaptiveCardFromJson(value: string): IAdaptiveCard; - } - export enum SecurityAppKind { - webProtection, - } - export class SecurityAppManager implements ISecurityAppManager { - // constructor(); - register(kind: SecurityAppKind, displayName: string, detailsUri: Foundation.Uri, registerPerUser: Boolean): string { - throw new Error('shimmed function SecurityAppManager.register'); - } - - unregister(kind: SecurityAppKind, guidRegistration: string): void { - console.warn('shimmed function SecurityAppManager.unregister'); - } - - updateState(kind: SecurityAppKind, guidRegistration: string, state: SecurityAppState, substatus: SecurityAppSubstatus, detailsUri: Foundation.Uri): void { - console.warn('shimmed function SecurityAppManager.updateState'); - } - - } - export interface SecurityAppManagerContract { - } - export enum SecurityAppState { - disabled, - enabled, - } - export enum SecurityAppSubstatus { - undetermined, - noActionNeeded, - actionRecommended, - actionNeeded, - } - export class TaskbarManager implements ITaskbarManager, ITaskbarManager2 { - isPinningAllowed: Boolean; - isSupported: Boolean; - - isCurrentAppPinnedAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TaskbarManager.isCurrentAppPinnedAsync'); - } - - isAppListEntryPinnedAsync(appListEntry: ApplicationModel.Core.AppListEntry): Foundation.IAsyncOperation { - throw new Error('shimmed function TaskbarManager.isAppListEntryPinnedAsync'); - } - - requestPinCurrentAppAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TaskbarManager.requestPinCurrentAppAsync'); - } - - requestPinAppListEntryAsync(appListEntry: ApplicationModel.Core.AppListEntry): Foundation.IAsyncOperation { - throw new Error('shimmed function TaskbarManager.requestPinAppListEntryAsync'); - } - - isSecondaryTilePinnedAsync(tileId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TaskbarManager.isSecondaryTilePinnedAsync'); - } - - requestPinSecondaryTileAsync(secondaryTile: StartScreen.SecondaryTile): Foundation.IAsyncOperation { - throw new Error('shimmed function TaskbarManager.requestPinSecondaryTileAsync'); - } - - tryUnpinSecondaryTileAsync(tileId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TaskbarManager.tryUnpinSecondaryTileAsync'); - } - - static getDefault(): TaskbarManager { - throw new Error('shimmed function TaskbarManager.getDefault'); - } - - } - } - export namespace StartScreen { - export enum ForegroundText { - dark, - light, - } - export class JumpList implements IJumpList { - systemGroupKind: JumpListSystemGroupKind; - items: JumpListItem[]; - - saveAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function JumpList.saveAsync'); - } - - static loadCurrentAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function JumpList.loadCurrentAsync'); - } - - static isSupported(): Boolean { - throw new Error('shimmed function JumpList.isSupported'); - } - - } - export class JumpListItem implements IJumpListItem { - logo: Foundation.Uri; - groupName: string; - displayName: string; - description: string; - __arguments: string; - kind: JumpListItemKind; - removedByUser: Boolean; - - static createWithArguments(__arguments: string, displayName: string): JumpListItem { - throw new Error('shimmed function JumpListItem.createWithArguments'); - } - - static createSeparator(): JumpListItem { - throw new Error('shimmed function JumpListItem.createSeparator'); - } - - } - export enum JumpListItemKind { - __arguments, - separator, - } - export enum JumpListSystemGroupKind { - none, - frequent, - recent, - } - export class SecondaryTile implements ISecondaryTile, ISecondaryTile2 { - // constructor(tileId: string, displayName: string, __arguments: string, square150x150Logo: Foundation.Uri, desiredSize: TileSize); - // constructor(tileId: string, shortName: string, displayName: string, __arguments: string, tileOptions: TileOptions, logoReference: Foundation.Uri); - // constructor(tileId: string, shortName: string, displayName: string, __arguments: string, tileOptions: TileOptions, logoReference: Foundation.Uri, wideLogoReference: Foundation.Uri); - // constructor(tileId: string); - // constructor(); - constructor(tileId: string, displayName: string, __arguments: string, square150x150Logo: Foundation.Uri, desiredSize: TileSize, shortName: string, tileOptions: TileOptions, logoReference: Foundation.Uri, wideLogoReference: Foundation.Uri) {} - - shortName: string = ''; - logo: Foundation.Uri = new Uri('ms-appx:///'); - tileId: string = ''; - lockScreenDisplayBadgeAndTileText: Boolean = false; - lockScreenBadgeLogo: Foundation.Uri = new Uri('ms-appx:///'); - __arguments: string = ''; - foregroundText: ForegroundText = ForegroundText.light; - displayName: string = ''; - backgroundColor: Color = { a: 0, r: 0, g: 0, b: 0 }; - wideLogo: Foundation.Uri = new Uri('ms-appx:///'); - tileOptions: TileOptions = TileOptions.none; - smallLogo: Foundation.Uri = new Uri('ms-appx:///'); - roamingEnabled: Boolean = true; - phoneticName: string = ''; - visualElements: SecondaryTileVisualElements = null; - - requestCreateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestCreateAsync'); - } - - requestCreateAsync_1(invocationPoint: Foundation.Point): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestCreateAsync_1'); - } - - requestCreateForSelectionAsync(selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestCreateForSelectionAsync'); - } - - requestCreateForSelectionAsync_1(selection: Foundation.Rect, preferredPlacement: Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestCreateForSelectionAsync_1'); - } - - requestDeleteAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestDeleteAsync'); - } - - requestDeleteAsync_1(invocationPoint: Foundation.Point): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestDeleteAsync_1'); - } - - requestDeleteForSelectionAsync(selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestDeleteForSelectionAsync'); - } - - requestDeleteForSelectionAsync_1(selection: Foundation.Rect, preferredPlacement: Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.requestDeleteForSelectionAsync_1'); - } - - updateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.updateAsync'); - } - - static exists(tileId: string): Boolean { - throw new Error('shimmed function SecondaryTile.exists'); - } - - static findAllAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.findAllAsync'); - } - - static findAllAsync_1(applicationId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.findAllAsync_1'); - } - - static findAllForPackageAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function SecondaryTile.findAllForPackageAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SecondaryTile::addEventListener: ${name}`); - switch (name) { - case "visualelementsrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SecondaryTileVisualElements implements ISecondaryTileVisualElements, ISecondaryTileVisualElements2, ISecondaryTileVisualElements3, ISecondaryTileVisualElements4 { - square150x150Logo: Foundation.Uri; - showNameOnWide310x150Logo: Boolean; - showNameOnSquare310x310Logo: Boolean; - showNameOnSquare150x150Logo: Boolean; - foregroundText: ForegroundText; - backgroundColor: Color; - wide310x150Logo: Foundation.Uri; - square70x70Logo: Foundation.Uri; - square310x310Logo: Foundation.Uri; - square30x30Logo: Foundation.Uri; - square71x71Logo: Foundation.Uri; - square44x44Logo: Foundation.Uri; - mixedRealityModel: TileMixedRealityModel; - - } - export class StartScreenManager implements IStartScreenManager, IStartScreenManager2 { - user: System.User; - - supportsAppListEntry(appListEntry: ApplicationModel.Core.AppListEntry): Boolean { - throw new Error('shimmed function StartScreenManager.supportsAppListEntry'); - } - - containsAppListEntryAsync(appListEntry: ApplicationModel.Core.AppListEntry): Foundation.IAsyncOperation { - throw new Error('shimmed function StartScreenManager.containsAppListEntryAsync'); - } - - requestAddAppListEntryAsync(appListEntry: ApplicationModel.Core.AppListEntry): Foundation.IAsyncOperation { - throw new Error('shimmed function StartScreenManager.requestAddAppListEntryAsync'); - } - - containsSecondaryTileAsync(tileId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StartScreenManager.containsSecondaryTileAsync'); - } - - tryRemoveSecondaryTileAsync(tileId: string): Foundation.IAsyncOperation { - throw new Error('shimmed function StartScreenManager.tryRemoveSecondaryTileAsync'); - } - - static getDefault(): StartScreenManager { - throw new Error('shimmed function StartScreenManager.getDefault'); - } - - static getForUser(user: System.User): StartScreenManager { - throw new Error('shimmed function StartScreenManager.getForUser'); - } - - } - export class TileMixedRealityModel implements ITileMixedRealityModel, ITileMixedRealityModel2 { - uri: Foundation.Uri; - boundingBox: Perception.Spatial.SpatialBoundingBox | null; - activationBehavior: TileMixedRealityModelActivationBehavior; - - } - export enum TileMixedRealityModelActivationBehavior { - default, - none, - } - export enum TileOptions { - none, - showNameOnLogo, - showNameOnWideLogo, - copyOnDeployment = 4, - } - export enum TileSize { - default, - square30x30, - square70x70, - square150x150, - wide310x150, - square310x310, - square71x71, - square44x44, - } - export class VisualElementsRequest implements IVisualElementsRequest { - alternateVisualElements: SecondaryTileVisualElements[]; - deadline: Date; - visualElements: SecondaryTileVisualElements; - - getDeferral(): VisualElementsRequestDeferral { - throw new Error('shimmed function VisualElementsRequest.getDeferral'); - } - - } - export class VisualElementsRequestDeferral implements IVisualElementsRequestDeferral { - complete(): void { - console.warn('shimmed function VisualElementsRequestDeferral.complete'); - } - - } - export class VisualElementsRequestedEventArgs implements IVisualElementsRequestedEventArgs { - request: VisualElementsRequest; - - } - } - export namespace Text { - export enum CaretType { - normal, - null, - } - export class ContentLinkInfo implements IContentLinkInfo { - // constructor(); - uri: Foundation.Uri; - secondaryText: string = ''; - linkContentKind: string = ''; - id: number = 0; - displayText: string = ''; - - } - export namespace Core { - export class CoreTextCompositionCompletedEventArgs implements ICoreTextCompositionCompletedEventArgs { - compositionSegments: CoreTextCompositionSegment[]; - isCanceled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextCompositionCompletedEventArgs.getDeferral'); - } - - } - export class CoreTextCompositionSegment implements ICoreTextCompositionSegment { - preconversionString: string; - range: CoreTextRange; - - } - export class CoreTextCompositionStartedEventArgs implements ICoreTextCompositionStartedEventArgs { - isCanceled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextCompositionStartedEventArgs.getDeferral'); - } - - } - export class CoreTextEditContext implements ICoreTextEditContext, ICoreTextEditContext2 { - name: string; - isReadOnly: Boolean; - inputScope: CoreTextInputScope; - inputPaneDisplayPolicy: CoreTextInputPaneDisplayPolicy; - - notifyFocusEnter(): void { - console.warn('shimmed function CoreTextEditContext.notifyFocusEnter'); - } - - notifyFocusLeave(): void { - console.warn('shimmed function CoreTextEditContext.notifyFocusLeave'); - } - - notifyTextChanged(modifiedRange: CoreTextRange, newLength: number, newSelection: CoreTextRange): void { - console.warn('shimmed function CoreTextEditContext.notifyTextChanged'); - } - - notifySelectionChanged(selection: CoreTextRange): void { - console.warn('shimmed function CoreTextEditContext.notifySelectionChanged'); - } - - notifyLayoutChanged(): void { - console.warn('shimmed function CoreTextEditContext.notifyLayoutChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreTextEditContext::addEventListener: ${name}`); - switch (name) { - case "compositioncompleted": // Foundation.TypedEventHandler - case "compositionstarted": // Foundation.TypedEventHandler - case "focusremoved": // Foundation.TypedEventHandler - case "formatupdating": // Foundation.TypedEventHandler - case "layoutrequested": // Foundation.TypedEventHandler - case "selectionrequested": // Foundation.TypedEventHandler - case "selectionupdating": // Foundation.TypedEventHandler - case "textrequested": // Foundation.TypedEventHandler - case "textupdating": // Foundation.TypedEventHandler - case "notifyfocusleavecompleted": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreTextFormatUpdatingEventArgs implements ICoreTextFormatUpdatingEventArgs { - result: CoreTextFormatUpdatingResult; - backgroundColor: ViewManagement.UIElementType | null; - isCanceled: Boolean; - range: CoreTextRange; - reason: CoreTextFormatUpdatingReason; - textColor: ViewManagement.UIElementType | null; - underlineColor: ViewManagement.UIElementType | null; - underlineType: UnderlineType | null; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextFormatUpdatingEventArgs.getDeferral'); - } - - } - export enum CoreTextFormatUpdatingReason { - none, - compositionUnconverted, - compositionConverted, - compositionTargetUnconverted, - compositionTargetConverted, - } - export enum CoreTextFormatUpdatingResult { - succeeded, - failed, - } - export enum CoreTextInputPaneDisplayPolicy { - automatic, - manual, - } - export enum CoreTextInputScope { - default, - url, - filePath, - fileName, - emailUserName, - emailAddress, - userName, - personalFullName, - personalNamePrefix, - personalGivenName, - personalMiddleName, - personalSurname, - personalNameSuffix, - address, - addressPostalCode, - addressStreet, - addressStateOrProvince, - addressCity, - addressCountryName, - addressCountryShortName, - currencyAmountAndSymbol, - currencyAmount, - date, - dateMonth, - dateDay, - dateYear, - dateMonthName, - dateDayName, - number = 29, - singleCharacter, - password, - telephoneNumber, - telephoneCountryCode, - telephoneAreaCode, - telephoneLocalNumber, - time, - timeHour, - timeMinuteOrSecond, - numberFullWidth, - alphanumericHalfWidth, - alphanumericFullWidth, - currencyChinese, - bopomofo, - hiragana, - katakanaHalfWidth, - katakanaFullWidth, - hanja, - hangulHalfWidth, - hangulFullWidth, - search, - formula, - searchIncremental, - chineseHalfWidth, - chineseFullWidth, - nativeScript, - text = 57, - chat, - nameOrPhoneNumber, - emailUserNameOrAddress, - private, - maps, - passwordNumeric, - formulaNumber = 67, - chatWithoutEmoji, - digits = 28, - pinNumeric = 64, - pinAlphanumeric, - } - export class CoreTextLayoutBounds implements ICoreTextLayoutBounds { - textBounds: Foundation.Rect; - controlBounds: Foundation.Rect; - - } - export class CoreTextLayoutRequest implements ICoreTextLayoutRequest, ICoreTextLayoutRequest2 { - isCanceled: Boolean; - layoutBounds: CoreTextLayoutBounds; - range: CoreTextRange; - layoutBoundsVisualPixels: CoreTextLayoutBounds; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextLayoutRequest.getDeferral'); - } - - } - export class CoreTextLayoutRequestedEventArgs implements ICoreTextLayoutRequestedEventArgs { - request: CoreTextLayoutRequest; - - } - export interface CoreTextRange { - startCaretPosition: number; - endCaretPosition: number; - } - export class CoreTextSelectionRequest implements ICoreTextSelectionRequest { - selection: CoreTextRange; - isCanceled: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextSelectionRequest.getDeferral'); - } - - } - export class CoreTextSelectionRequestedEventArgs implements ICoreTextSelectionRequestedEventArgs { - request: CoreTextSelectionRequest; - - } - export class CoreTextSelectionUpdatingEventArgs implements ICoreTextSelectionUpdatingEventArgs { - result: CoreTextSelectionUpdatingResult; - isCanceled: Boolean; - selection: CoreTextRange; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextSelectionUpdatingEventArgs.getDeferral'); - } - - } - export enum CoreTextSelectionUpdatingResult { - succeeded, - failed, - } - export class CoreTextServicesConstants { - static hiddenCharacter: string = ''; - - } - export class CoreTextServicesManager implements ICoreTextServicesManager { - inputLanguage: Globalization.Language; - - createEditContext(): CoreTextEditContext { - throw new Error('shimmed function CoreTextServicesManager.createEditContext'); - } - - static getForCurrentView(): CoreTextServicesManager { - throw new Error('shimmed function CoreTextServicesManager.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreTextServicesManager::addEventListener: ${name}`); - switch (name) { - case "inputlanguagechanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class CoreTextTextRequest implements ICoreTextTextRequest { - text: string; - isCanceled: Boolean; - range: CoreTextRange; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextTextRequest.getDeferral'); - } - - } - export class CoreTextTextRequestedEventArgs implements ICoreTextTextRequestedEventArgs { - request: CoreTextTextRequest; - - } - export class CoreTextTextUpdatingEventArgs implements ICoreTextTextUpdatingEventArgs { - result: CoreTextTextUpdatingResult; - inputLanguage: Globalization.Language; - isCanceled: Boolean; - newSelection: CoreTextRange; - range: CoreTextRange; - text: string; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function CoreTextTextUpdatingEventArgs.getDeferral'); - } - - } - export enum CoreTextTextUpdatingResult { - succeeded, - failed, - } - } - export enum FindOptions { - none, - word = 2, - case = 4, - } - export enum FontStretch { - undefined, - ultraCondensed, - extraCondensed, - condensed, - semiCondensed, - normal, - semiExpanded, - expanded, - extraExpanded, - ultraExpanded, - } - export enum FontStyle { - normal, - oblique, - italic, - } - export interface FontWeight { - weight: number; - } - export class FontWeights implements IFontWeights { - static black: FontWeight = null; - static bold: FontWeight = null; - static extraBlack: FontWeight = null; - static extraBold: FontWeight = null; - static extraLight: FontWeight = null; - static light: FontWeight = null; - static medium: FontWeight = null; - static normal: FontWeight = null; - static semiBold: FontWeight = null; - static semiLight: FontWeight = null; - static thin: FontWeight = null; - - } - export enum FormatEffect { - off, - on, - toggle, - undefined, - } - export enum HorizontalCharacterAlignment { - left, - right, - center, - } - export interface ITextCharacterFormat { - allCaps: FormatEffect; - backgroundColor: Color; - bold: FormatEffect; - fontStretch: FontStretch; - fontStyle: FontStyle; - foregroundColor: Color; - hidden: FormatEffect; - italic: FormatEffect; - kerning: number; - languageTag: string; - linkType: LinkType; - name: string; - outline: FormatEffect; - position: number; - protectedText: FormatEffect; - size: number; - smallCaps: FormatEffect; - spacing: number; - strikethrough: FormatEffect; - subscript: FormatEffect; - superscript: FormatEffect; - textScript: TextScript; - underline: UnderlineType; - weight: number; - setClone(value: ITextCharacterFormat): void; - getClone(): ITextCharacterFormat; - isEqual(format: ITextCharacterFormat): Boolean; - } - export interface ITextDocument { - caretType: CaretType; - defaultTabStop: number; - selection: ITextSelection; - undoLimit: number; - canCopy(): Boolean; - canPaste(): Boolean; - canRedo(): Boolean; - canUndo(): Boolean; - applyDisplayUpdates(): number; - batchDisplayUpdates(): number; - beginUndoGroup(): void; - endUndoGroup(): void; - getDefaultCharacterFormat(): ITextCharacterFormat; - getDefaultParagraphFormat(): ITextParagraphFormat; - getRange(startPosition: number, endPosition: number): ITextRange; - getRangeFromPoint(point: Foundation.Point, options: PointOptions): ITextRange; - getText(options: TextGetOptions): string; - loadFromStream(options: TextSetOptions, value: Storage.Streams.IRandomAccessStream): void; - redo(): void; - saveToStream(options: TextGetOptions, value: Storage.Streams.IRandomAccessStream): void; - setDefaultCharacterFormat(value: ITextCharacterFormat): void; - setDefaultParagraphFormat(value: ITextParagraphFormat): void; - setText(options: TextSetOptions, value: string): void; - undo(): void; - } - export interface ITextParagraphFormat { - alignment: ParagraphAlignment; - firstLineIndent: number; - keepTogether: FormatEffect; - keepWithNext: FormatEffect; - leftIndent: number; - lineSpacing: number; - lineSpacingRule: LineSpacingRule; - listAlignment: MarkerAlignment; - listLevelIndex: number; - listStart: number; - listStyle: MarkerStyle; - listTab: number; - listType: MarkerType; - noLineNumber: FormatEffect; - pageBreakBefore: FormatEffect; - rightIndent: number; - rightToLeft: FormatEffect; - spaceAfter: number; - spaceBefore: number; - style: ParagraphStyle; - tabCount: number; - widowControl: FormatEffect; - addTab(position: number, align: TabAlignment, leader: TabLeader): void; - clearAllTabs(): void; - deleteTab(position: number): void; - getClone(): ITextParagraphFormat; - getTab(index: number): { position: number, align: TabAlignment, leader: TabLeader }; - isEqual(format: ITextParagraphFormat): Boolean; - setClone(format: ITextParagraphFormat): void; - setIndents(start: number, left: number, right: number): void; - setLineSpacing(rule: LineSpacingRule, spacing: number): void; - } - export interface ITextRange { - character: string; - characterFormat: ITextCharacterFormat; - endPosition: number; - formattedText: ITextRange; - gravity: RangeGravity; - length: number; - link: string; - paragraphFormat: ITextParagraphFormat; - startPosition: number; - storyLength: number; - text: string; - canPaste(format: number): Boolean; - changeCase(value: LetterCase): void; - collapse(value: Boolean): void; - copy(): void; - cut(): void; - delete(unit: TextRangeUnit, count: number): number; - endOf(unit: TextRangeUnit, extend: Boolean): number; - expand(unit: TextRangeUnit): number; - findText(value: string, scanLength: number, options: FindOptions): number; - getCharacterUtf32(offset: number): number; - getClone(): ITextRange; - getIndex(unit: TextRangeUnit): number; - getPoint(horizontalAlign: HorizontalCharacterAlignment, verticalAlign: VerticalCharacterAlignment, options: PointOptions): Foundation.Point; - getRect(options: PointOptions): { rect: Foundation.Rect, hit: number }; - getText(options: TextGetOptions): string; - getTextViaStream(options: TextGetOptions, value: Storage.Streams.IRandomAccessStream): void; - inRange(range: ITextRange): Boolean; - insertImage(width: number, height: number, ascent: number, verticalAlign: VerticalCharacterAlignment, alternateText: string, value: Storage.Streams.IRandomAccessStream): void; - inStory(range: ITextRange): Boolean; - isEqual(range: ITextRange): Boolean; - move(unit: TextRangeUnit, count: number): number; - moveEnd(unit: TextRangeUnit, count: number): number; - moveStart(unit: TextRangeUnit, count: number): number; - paste(format: number): void; - scrollIntoView(value: PointOptions): void; - matchSelection(): void; - setIndex(unit: TextRangeUnit, index: number, extend: Boolean): void; - setPoint(point: Foundation.Point, options: PointOptions, extend: Boolean): void; - setRange(startPosition: number, endPosition: number): void; - setText(options: TextSetOptions, value: string): void; - setTextViaStream(options: TextSetOptions, value: Storage.Streams.IRandomAccessStream): void; - startOf(unit: TextRangeUnit, extend: Boolean): number; - } - export interface ITextSelection extends ITextRange { - options: SelectionOptions; - type: SelectionType; - endKey(unit: TextRangeUnit, extend: Boolean): number; - homeKey(unit: TextRangeUnit, extend: Boolean): number; - moveDown(unit: TextRangeUnit, count: number, extend: Boolean): number; - moveLeft(unit: TextRangeUnit, count: number, extend: Boolean): number; - moveRight(unit: TextRangeUnit, count: number, extend: Boolean): number; - moveUp(unit: TextRangeUnit, count: number, extend: Boolean): number; - typeText(value: string): void; - } - export enum LetterCase { - lower, - upper, - } - export enum LineSpacingRule { - undefined, - single, - oneAndHalf, - double, - atLeast, - exactly, - multiple, - percent, - } - export enum LinkType { - undefined, - notALink, - clientLink, - friendlyLinkName, - friendlyLinkAddress, - autoLink, - autoLinkEmail, - autoLinkPhone, - autoLinkPath, - } - export enum MarkerAlignment { - undefined, - left, - center, - right, - } - export enum MarkerStyle { - undefined, - parenthesis, - parentheses, - period, - plain, - minus, - noNumber, - } - export enum MarkerType { - undefined, - none, - bullet, - arabic, - lowercaseEnglishLetter, - uppercaseEnglishLetter, - lowercaseRoman, - uppercaseRoman, - unicodeSequence, - circledNumber, - blackCircleWingding, - whiteCircleWingding, - arabicWide, - simplifiedChinese, - traditionalChinese, - japanSimplifiedChinese, - japanKorea, - arabicDictionary, - arabicAbjad, - hebrew, - thaiAlphabetic, - thaiNumeric, - devanagariVowel, - devanagariConsonant, - devanagariNumeric, - } - export enum ParagraphAlignment { - undefined, - left, - center, - right, - justify, - } - export enum ParagraphStyle { - undefined, - none, - normal, - heading1, - heading2, - heading3, - heading4, - heading5, - heading6, - heading7, - heading8, - heading9, - } - export enum PointOptions { - none, - includeInset, - start = 32, - clientCoordinates = 256, - allowOffClient = 512, - transform = 1024, - noHorizontalScroll = 65536, - noVerticalScroll = 262144, - } - export enum RangeGravity { - uibehavior, - backward, - forward, - inward, - outward, - } - export class RichEditTextDocument implements ITextDocument2, ITextDocument3, ITextDocument { - undoLimit: number; - defaultTabStop: number; - caretType: CaretType; - selection: ITextSelection; - ignoreTrailingCharacterSpacing: Boolean; - alignmentIncludesTrailingWhitespace: Boolean; - - clearUndoRedoHistory(): void { - console.warn('shimmed function RichEditTextDocument.clearUndoRedoHistory'); - } - - canCopy(): Boolean { - throw new Error('shimmed function RichEditTextDocument.canCopy'); - } - - canPaste(): Boolean { - throw new Error('shimmed function RichEditTextDocument.canPaste'); - } - - canRedo(): Boolean { - throw new Error('shimmed function RichEditTextDocument.canRedo'); - } - - canUndo(): Boolean { - throw new Error('shimmed function RichEditTextDocument.canUndo'); - } - - applyDisplayUpdates(): number { - throw new Error('shimmed function RichEditTextDocument.applyDisplayUpdates'); - } - - batchDisplayUpdates(): number { - throw new Error('shimmed function RichEditTextDocument.batchDisplayUpdates'); - } - - beginUndoGroup(): void { - console.warn('shimmed function RichEditTextDocument.beginUndoGroup'); - } - - endUndoGroup(): void { - console.warn('shimmed function RichEditTextDocument.endUndoGroup'); - } - - getDefaultCharacterFormat(): ITextCharacterFormat { - throw new Error('shimmed function RichEditTextDocument.getDefaultCharacterFormat'); - } - - getDefaultParagraphFormat(): ITextParagraphFormat { - throw new Error('shimmed function RichEditTextDocument.getDefaultParagraphFormat'); - } - - getRange(startPosition: number, endPosition: number): ITextRange { - throw new Error('shimmed function RichEditTextDocument.getRange'); - } - - getRangeFromPoint(point: Foundation.Point, options: PointOptions): ITextRange { - throw new Error('shimmed function RichEditTextDocument.getRangeFromPoint'); - } - - getText(options: TextGetOptions): string { - throw new Error('shimmed function RichEditTextDocument.getText'); - } - - loadFromStream(options: TextSetOptions, value: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function RichEditTextDocument.loadFromStream'); - } - - redo(): void { - console.warn('shimmed function RichEditTextDocument.redo'); - } - - saveToStream(options: TextGetOptions, value: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function RichEditTextDocument.saveToStream'); - } - - setDefaultCharacterFormat(value: ITextCharacterFormat): void { - console.warn('shimmed function RichEditTextDocument.setDefaultCharacterFormat'); - } - - setDefaultParagraphFormat(value: ITextParagraphFormat): void { - console.warn('shimmed function RichEditTextDocument.setDefaultParagraphFormat'); - } - - setText(options: TextSetOptions, value: string): void { - console.warn('shimmed function RichEditTextDocument.setText'); - } - - undo(): void { - console.warn('shimmed function RichEditTextDocument.undo'); - } - - } - export class RichEditTextRange implements IRichEditTextRange, ITextRange { - contentLinkInfo: ContentLinkInfo; - text: string; - startPosition: number; - paragraphFormat: ITextParagraphFormat; - link: string; - gravity: RangeGravity; - formattedText: ITextRange; - endPosition: number; - characterFormat: ITextCharacterFormat; - character: string; - length: number; - storyLength: number; - - canPaste(format: number): Boolean { - throw new Error('shimmed function RichEditTextRange.canPaste'); - } - - changeCase(value: LetterCase): void { - console.warn('shimmed function RichEditTextRange.changeCase'); - } - - collapse(value: Boolean): void { - console.warn('shimmed function RichEditTextRange.collapse'); - } - - copy(): void { - console.warn('shimmed function RichEditTextRange.copy'); - } - - cut(): void { - console.warn('shimmed function RichEditTextRange.cut'); - } - - delete(unit: TextRangeUnit, count: number): number { - throw new Error('shimmed function RichEditTextRange.delete'); - } - - endOf(unit: TextRangeUnit, extend: Boolean): number { - throw new Error('shimmed function RichEditTextRange.endOf'); - } - - expand(unit: TextRangeUnit): number { - throw new Error('shimmed function RichEditTextRange.expand'); - } - - findText(value: string, scanLength: number, options: FindOptions): number { - throw new Error('shimmed function RichEditTextRange.findText'); - } - - getCharacterUtf32(offset: number): number { - throw new Error('shimmed function RichEditTextRange.getCharacterUtf32'); - } - - getClone(): ITextRange { - throw new Error('shimmed function RichEditTextRange.getClone'); - } - - getIndex(unit: TextRangeUnit): number { - throw new Error('shimmed function RichEditTextRange.getIndex'); - } - - getPoint(horizontalAlign: HorizontalCharacterAlignment, verticalAlign: VerticalCharacterAlignment, options: PointOptions): Foundation.Point { - throw new Error('shimmed function RichEditTextRange.getPoint'); - } - - getRect(options: PointOptions): { rect: Foundation.Rect, hit: number } { - throw new Error('shimmed function RichEditTextRange.getRect'); - } - - getText(options: TextGetOptions): string { - throw new Error('shimmed function RichEditTextRange.getText'); - } - - getTextViaStream(options: TextGetOptions, value: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function RichEditTextRange.getTextViaStream'); - } - - inRange(range: ITextRange): Boolean { - throw new Error('shimmed function RichEditTextRange.inRange'); - } - - insertImage(width: number, height: number, ascent: number, verticalAlign: VerticalCharacterAlignment, alternateText: string, value: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function RichEditTextRange.insertImage'); - } - - inStory(range: ITextRange): Boolean { - throw new Error('shimmed function RichEditTextRange.inStory'); - } - - isEqual(range: ITextRange): Boolean { - throw new Error('shimmed function RichEditTextRange.isEqual'); - } - - move(unit: TextRangeUnit, count: number): number { - throw new Error('shimmed function RichEditTextRange.move'); - } - - moveEnd(unit: TextRangeUnit, count: number): number { - throw new Error('shimmed function RichEditTextRange.moveEnd'); - } - - moveStart(unit: TextRangeUnit, count: number): number { - throw new Error('shimmed function RichEditTextRange.moveStart'); - } - - paste(format: number): void { - console.warn('shimmed function RichEditTextRange.paste'); - } - - scrollIntoView(value: PointOptions): void { - console.warn('shimmed function RichEditTextRange.scrollIntoView'); - } - - matchSelection(): void { - console.warn('shimmed function RichEditTextRange.matchSelection'); - } - - setIndex(unit: TextRangeUnit, index: number, extend: Boolean): void { - console.warn('shimmed function RichEditTextRange.setIndex'); - } - - setPoint(point: Foundation.Point, options: PointOptions, extend: Boolean): void { - console.warn('shimmed function RichEditTextRange.setPoint'); - } - - setRange(startPosition: number, endPosition: number): void { - console.warn('shimmed function RichEditTextRange.setRange'); - } - - setText(options: TextSetOptions, value: string): void { - console.warn('shimmed function RichEditTextRange.setText'); - } - - setTextViaStream(options: TextSetOptions, value: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function RichEditTextRange.setTextViaStream'); - } - - startOf(unit: TextRangeUnit, extend: Boolean): number { - throw new Error('shimmed function RichEditTextRange.startOf'); - } - - } - export enum SelectionOptions { - startActive = 1, - atEndOfLine, - overtype = 4, - active = 8, - replace = 16, - } - export enum SelectionType { - none, - insertionPoint, - normal, - inlineShape = 7, - shape, - } - export enum TabAlignment { - left, - center, - right, - decimal, - bar, - } - export enum TabLeader { - spaces, - dots, - dashes, - lines, - thickLines, - equals, - } - export class TextConstants { - static autoColor: Color = { a: 0, r: 0, g: 0, b: 1 }; - static maxUnitCount: number = 1073741823; - static minUnitCount: number = -1073741823; - static undefinedColor: Color = { a: 0, r: 0, g: 0, b: 2 }; - static undefinedFloatValue: number = -9999999; - static undefinedFontStretch: FontStretch = -9999999; - static undefinedFontStyle: FontStyle = -9999999; - static undefinedInt32Value: number = -9999999; - - } - export enum TextDecorations { - none, - underline, - strikethrough, - } - export enum TextGetOptions { - none, - adjustCrlf, - useCrlf, - useObjectText = 4, - allowFinalEop = 8, - noHidden = 32, - includeNumbering = 64, - formatRtf = 8192, - useLf = 16777216, - } - export enum TextRangeUnit { - character, - word, - sentence, - paragraph, - line, - story, - screen, - section, - window, - characterFormat, - paragraphFormat, - object, - hardParagraph, - cluster, - bold, - italic, - underline, - strikethrough, - protectedText, - link, - smallCaps, - allCaps, - hidden, - outline, - shadow, - imprint, - disabled, - revised, - subscript, - superscript, - fontBound, - linkProtected, - contentLink, - } - export enum TextScript { - undefined, - ansi, - eastEurope, - cyrillic, - greek, - turkish, - hebrew, - arabic, - baltic, - vietnamese, - default, - symbol, - thai, - shiftJis, - gb2312, - hangul, - big5, - pc437, - oem, - mac, - armenian, - syriac, - thaana, - devanagari, - bengali, - gurmukhi, - gujarati, - oriya, - tamil, - telugu, - kannada, - malayalam, - sinhala, - lao, - tibetan, - myanmar, - georgian, - jamo, - ethiopic, - cherokee, - aboriginal, - ogham, - runic, - khmer, - mongolian, - braille, - yi, - limbu, - taiLe, - newTaiLue, - sylotiNagri, - kharoshthi, - kayahli, - unicodeSymbol, - emoji, - glagolitic, - lisu, - vai, - nko, - osmanya, - phagsPa, - gothic, - deseret, - tifinagh, - } - export enum TextSetOptions { - none, - unicodeBidi, - unlink = 8, - unhide = 16, - checkTextLimit = 32, - formatRtf = 8192, - applyRtfDocumentDefaults = 16384, - } - export enum UnderlineType { - undefined, - none, - single, - words, - double, - dotted, - dash, - dashDot, - dashDotDot, - wave, - thick, - thin, - doubleWave, - heavyWave, - longDash, - thickDash, - thickDashDot, - thickDashDotDot, - thickDotted, - thickLongDash, - } - export enum VerticalCharacterAlignment { - top, - baseline, - bottom, - } - } - export class UIContentRoot implements IUIContentRoot { - uicontext: UIContext; - - } - export class UIContext implements IUIContext { - } - export namespace ViewManagement { - export class AccessibilitySettings implements IAccessibilitySettings { - // constructor(); - highContrast: Boolean = false; - highContrastScheme: string = ''; - - addEventListener(name: string, handler: Function) { - console.warn(`AccessibilitySettings::addEventListener: ${name}`); - switch (name) { - case "highcontrastchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class ActivationViewSwitcher implements IActivationViewSwitcher { - showAsStandaloneAsync(viewId: number): Foundation.IAsyncAction { - throw new Error('shimmed function ActivationViewSwitcher.showAsStandaloneAsync'); - } - - showAsStandaloneAsync_1(viewId: number, sizePreference: ViewSizePreference): Foundation.IAsyncAction { - throw new Error('shimmed function ActivationViewSwitcher.showAsStandaloneAsync_1'); - } - - isViewPresentedOnActivationVirtualDesktop(viewId: number): Boolean { - throw new Error('shimmed function ActivationViewSwitcher.isViewPresentedOnActivationVirtualDesktop'); - } - - } - export class ApplicationView implements IApplicationView, IApplicationView2, IApplicationView3, IApplicationView4, IApplicationView7, IApplicationView9, IApplicationViewWithContext { - title: string; - isScreenCaptureEnabled: Boolean; - adjacentToLeftDisplayEdge: Boolean; - adjacentToRightDisplayEdge: Boolean; - id: number; - isFullScreen: Boolean; - isOnLockScreen: Boolean; - orientation: ApplicationViewOrientation; - suppressSystemOverlays: Boolean; - desiredBoundsMode: ApplicationViewBoundsMode; - visibleBounds: Foundation.Rect; - fullScreenSystemOverlayMode: FullScreenSystemOverlayMode; - isFullScreenMode: Boolean; - titleBar: ApplicationViewTitleBar; - viewMode: ApplicationViewMode; - persistedStateId: string; - windowingEnvironment: WindowManagement.WindowingEnvironment; - uicontext: UIContext; - static value: ApplicationViewState = ApplicationViewState.fullScreenLandscape; - static terminateAppOnFinalViewClose: Boolean = false; - static preferredLaunchWindowingMode: ApplicationViewWindowingMode = ApplicationViewWindowingMode.auto; - static preferredLaunchViewSize: Foundation.Size = { 0, height: 0 }; - - setDesiredBoundsMode(boundsMode: ApplicationViewBoundsMode): Boolean { - throw new Error('shimmed function ApplicationView.setDesiredBoundsMode'); - } - - tryEnterFullScreenMode(): Boolean { - throw new Error('shimmed function ApplicationView.tryEnterFullScreenMode'); - } - - exitFullScreenMode(): void { - console.warn('shimmed function ApplicationView.exitFullScreenMode'); - } - - showStandardSystemOverlays(): void { - console.warn('shimmed function ApplicationView.showStandardSystemOverlays'); - } - - tryResizeView(value: Foundation.Size): Boolean { - throw new Error('shimmed function ApplicationView.tryResizeView'); - } - - setPreferredMinSize(minSize: Foundation.Size): void { - console.warn('shimmed function ApplicationView.setPreferredMinSize'); - } - - isViewModeSupported(viewMode: ApplicationViewMode): Boolean { - throw new Error('shimmed function ApplicationView.isViewModeSupported'); - } - - tryEnterViewModeAsync(viewMode: ApplicationViewMode): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationView.tryEnterViewModeAsync'); - } - - tryEnterViewModeAsync_1(viewMode: ApplicationViewMode, viewModePreferences: ViewModePreferences): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationView.tryEnterViewModeAsync_1'); - } - - tryConsolidateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationView.tryConsolidateAsync'); - } - - getDisplayRegions(): WindowManagement.DisplayRegion[] { - throw new Error('shimmed function ApplicationView.getDisplayRegions'); - } - - static clearAllPersistedState(): void { - console.warn('shimmed function ApplicationView.clearAllPersistedState'); - } - - static clearPersistedState(key: string): void { - console.warn('shimmed function ApplicationView.clearPersistedState'); - } - - static tryUnsnapToFullscreen(): Boolean { - throw new Error('shimmed function ApplicationView.tryUnsnapToFullscreen'); - } - - static getApplicationViewIdForWindow(window: Core.ICoreWindow): number { - throw new Error('shimmed function ApplicationView.getApplicationViewIdForWindow'); - } - - static getForCurrentView(): ApplicationView { - throw new Error('shimmed function ApplicationView.getForCurrentView'); - } - - static tryUnsnap(): Boolean { - throw new Error('shimmed function ApplicationView.tryUnsnap'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ApplicationView::addEventListener: ${name}`); - switch (name) { - case "consolidated": // Foundation.TypedEventHandler - case "visibleboundschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ApplicationViewBoundsMode { - useVisible, - useCoreWindow, - } - export class ApplicationViewConsolidatedEventArgs implements IApplicationViewConsolidatedEventArgs, IApplicationViewConsolidatedEventArgs2 { - isUserInitiated: Boolean; - isAppInitiated: Boolean; - - } - export enum ApplicationViewMode { - default, - compactOverlay, - } - export enum ApplicationViewOrientation { - landscape, - portrait, - } - export class ApplicationViewScaling implements IApplicationViewScaling { - static disableLayoutScaling: Boolean = false; - - static trySetDisableLayoutScaling(disableLayoutScaling: Boolean): Boolean { - throw new Error('shimmed function ApplicationViewScaling.trySetDisableLayoutScaling'); - } - - } - export enum ApplicationViewState { - fullScreenLandscape, - filled, - snapped, - fullScreenPortrait, - } - export class ApplicationViewSwitcher { - static tryShowAsViewModeAsync(viewId: number, viewMode: ApplicationViewMode): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationViewSwitcher.tryShowAsViewModeAsync'); - } - - static tryShowAsViewModeAsync_1(viewId: number, viewMode: ApplicationViewMode, viewModePreferences: ViewModePreferences): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationViewSwitcher.tryShowAsViewModeAsync_1'); - } - - static disableSystemViewActivationPolicy(): void { - console.warn('shimmed function ApplicationViewSwitcher.disableSystemViewActivationPolicy'); - } - - static disableShowingMainViewOnActivation(): void { - console.warn('shimmed function ApplicationViewSwitcher.disableShowingMainViewOnActivation'); - } - - static tryShowAsStandaloneAsync(viewId: number): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationViewSwitcher.tryShowAsStandaloneAsync'); - } - - static tryShowAsStandaloneAsync_1(viewId: number, sizePreference: ViewSizePreference): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationViewSwitcher.tryShowAsStandaloneAsync_1'); - } - - static tryShowAsStandaloneAsync_2(viewId: number, sizePreference: ViewSizePreference, anchorViewId: number, anchorSizePreference: ViewSizePreference): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationViewSwitcher.tryShowAsStandaloneAsync_2'); - } - - static switchAsync(viewId: number): Foundation.IAsyncAction { - throw new Error('shimmed function ApplicationViewSwitcher.switchAsync'); - } - - static switchAsync_1(toViewId: number, fromViewId: number): Foundation.IAsyncAction { - throw new Error('shimmed function ApplicationViewSwitcher.switchAsync_1'); - } - - static switchAsync_2(toViewId: number, fromViewId: number, options: ApplicationViewSwitchingOptions): Foundation.IAsyncAction { - throw new Error('shimmed function ApplicationViewSwitcher.switchAsync_2'); - } - - static prepareForCustomAnimatedSwitchAsync(toViewId: number, fromViewId: number, options: ApplicationViewSwitchingOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function ApplicationViewSwitcher.prepareForCustomAnimatedSwitchAsync'); - } - - } - export enum ApplicationViewSwitchingOptions { - default, - skipAnimation, - consolidateViews, - } - export class ApplicationViewTitleBar implements IApplicationViewTitleBar { - inactiveForegroundColor: Color | null; - inactiveBackgroundColor: Color | null; - foregroundColor: Color | null; - buttonPressedForegroundColor: Color | null; - buttonPressedBackgroundColor: Color | null; - buttonInactiveForegroundColor: Color | null; - buttonInactiveBackgroundColor: Color | null; - buttonHoverForegroundColor: Color | null; - buttonHoverBackgroundColor: Color | null; - buttonForegroundColor: Color | null; - buttonBackgroundColor: Color | null; - backgroundColor: Color | null; - - } - export class ApplicationViewTransferContext implements IApplicationViewTransferContext { - // constructor(); - viewId: number = 0; - static dataPackageFormatId: string = 'ApplicationViewTransferContext'; - - } - export enum ApplicationViewWindowingMode { - auto, - preferredLaunchViewSize, - fullScreen, - compactOverlay, - maximized, - } - export namespace Core { - export class CoreInputView implements ICoreInputView, ICoreInputView2, ICoreInputView3 { - getCoreInputViewOcclusions(): CoreInputViewOcclusion[] { - throw new Error('shimmed function CoreInputView.getCoreInputViewOcclusions'); - } - - tryShowPrimaryView(): Boolean { - throw new Error('shimmed function CoreInputView.tryShowPrimaryView'); - } - - tryHidePrimaryView(): Boolean { - throw new Error('shimmed function CoreInputView.tryHidePrimaryView'); - } - - tryTransferXYFocusToPrimaryView(origin: Foundation.Rect, direction: CoreInputViewXYFocusTransferDirection): Boolean { - throw new Error('shimmed function CoreInputView.tryTransferXYFocusToPrimaryView'); - } - - tryShow(): Boolean { - throw new Error('shimmed function CoreInputView.tryShow'); - } - - tryShow_1(type: CoreInputViewKind): Boolean { - throw new Error('shimmed function CoreInputView.tryShow_1'); - } - - tryHide(): Boolean { - throw new Error('shimmed function CoreInputView.tryHide'); - } - - static getForUIContext(context: UIContext): CoreInputView { - throw new Error('shimmed function CoreInputView.getForUIContext'); - } - - static getForCurrentView(): CoreInputView { - throw new Error('shimmed function CoreInputView.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CoreInputView::addEventListener: ${name}`); - switch (name) { - case "occlusionschanged": // Foundation.TypedEventHandler - case "xyfocustransferredtoprimaryview": // Foundation.TypedEventHandler - case "xyfocustransferringfromprimaryview": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CoreInputViewKind { - default, - keyboard, - handwriting, - emoji, - } - export class CoreInputViewOcclusion implements ICoreInputViewOcclusion { - occludingRect: Foundation.Rect; - occlusionKind: CoreInputViewOcclusionKind; - - } - export enum CoreInputViewOcclusionKind { - docked, - floating, - overlay, - } - export class CoreInputViewOcclusionsChangedEventArgs implements ICoreInputViewOcclusionsChangedEventArgs { - handled: Boolean; - occlusions: CoreInputViewOcclusion[]; - - } - export class CoreInputViewTransferringXYFocusEventArgs implements ICoreInputViewTransferringXYFocusEventArgs { - transferHandled: Boolean; - keepPrimaryViewVisible: Boolean; - direction: CoreInputViewXYFocusTransferDirection; - origin: Foundation.Rect; - - } - export enum CoreInputViewXYFocusTransferDirection { - up, - right, - down, - left, - } - } - export enum FullScreenSystemOverlayMode { - standard, - minimal, - } - export enum HandPreference { - leftHanded, - rightHanded, - } - export class InputPane implements IInputPane, IInputPane2, IInputPaneControl { - occludedRect: Foundation.Rect; - visible: Boolean; - - tryShow(): Boolean { - throw new Error('shimmed function InputPane.tryShow'); - } - - tryHide(): Boolean { - throw new Error('shimmed function InputPane.tryHide'); - } - - static getForUIContext(context: UIContext): InputPane { - throw new Error('shimmed function InputPane.getForUIContext'); - } - - static getForCurrentView(): InputPane { - throw new Error('shimmed function InputPane.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InputPane::addEventListener: ${name}`); - switch (name) { - case "hiding": // Foundation.TypedEventHandler - case "showing": // Foundation.TypedEventHandler - break; - } - - } - } - export class InputPaneVisibilityEventArgs implements IInputPaneVisibilityEventArgs { - ensuredFocusedElementInView: Boolean; - occludedRect: Foundation.Rect; - - } - export class ProjectionManager { - static projectionDisplayAvailable: Boolean = true; - - static startProjectingAsync(projectionViewId: number, anchorViewId: number, displayDeviceInfo: Devices.Enumeration.DeviceInformation): Foundation.IAsyncAction { - throw new Error('shimmed function ProjectionManager.startProjectingAsync'); - } - - static requestStartProjectingAsync(projectionViewId: number, anchorViewId: number, selection: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function ProjectionManager.requestStartProjectingAsync'); - } - - static requestStartProjectingAsync_1(projectionViewId: number, anchorViewId: number, selection: Foundation.Rect, prefferedPlacement: Popups.Placement): Foundation.IAsyncOperation { - throw new Error('shimmed function ProjectionManager.requestStartProjectingAsync_1'); - } - - static getDeviceSelector(): string { - throw new Error('shimmed function ProjectionManager.getDeviceSelector'); - } - - static startProjectingAsync_1(projectionViewId: number, anchorViewId: number): Foundation.IAsyncAction { - throw new Error('shimmed function ProjectionManager.startProjectingAsync_1'); - } - - static swapDisplaysForViewsAsync(projectionViewId: number, anchorViewId: number): Foundation.IAsyncAction { - throw new Error('shimmed function ProjectionManager.swapDisplaysForViewsAsync'); - } - - static stopProjectingAsync(projectionViewId: number, anchorViewId: number): Foundation.IAsyncAction { - throw new Error('shimmed function ProjectionManager.stopProjectingAsync'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`ProjectionManager::addEventListener: ${name}`); - switch (name) { - case "projectiondisplayavailablechanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class StatusBar implements IStatusBar { - foregroundColor: Color | null; - backgroundOpacity: number; - backgroundColor: Color | null; - occludedRect: Foundation.Rect; - progressIndicator: StatusBarProgressIndicator; - - showAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StatusBar.showAsync'); - } - - hideAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StatusBar.hideAsync'); - } - - static getForCurrentView(): StatusBar { - throw new Error('shimmed function StatusBar.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StatusBar::addEventListener: ${name}`); - switch (name) { - case "hiding": // Foundation.TypedEventHandler - case "showing": // Foundation.TypedEventHandler - break; - } - - } - } - export class StatusBarProgressIndicator implements IStatusBarProgressIndicator { - text: string; - progressValue: number | null; - - showAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StatusBarProgressIndicator.showAsync'); - } - - hideAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function StatusBarProgressIndicator.hideAsync'); - } - - } - export enum UIColorType { - background, - foreground, - accentDark3, - accentDark2, - accentDark1, - accent, - accentLight1, - accentLight2, - accentLight3, - complement, - } - export enum UIElementType { - activeCaption, - background, - buttonFace, - buttonText, - captionText, - grayText, - highlight, - highlightText, - hotlight, - inactiveCaption, - inactiveCaptionText, - window, - windowText, - accentColor = 1000, - textHigh, - textMedium, - textLow, - textContrastWithHigh, - nonTextHigh, - nonTextMediumHigh, - nonTextMedium, - nonTextMediumLow, - nonTextLow, - pageBackground, - popupBackground, - overlayOutsidePopup, - } - export class UISettings implements IUISettings, IUISettings2, IUISettings3, IUISettings4, IUISettings5 { - // constructor(); - animationsEnabled: Boolean = true; - caretBlinkRate: number = 530; - caretBrowsingEnabled: Boolean = false; - caretWidth: number = 1; - cursorSize: Foundation.Size = { 32, height: 32 }; - doubleClickTime: number = 500; - handPreference: HandPreference = HandPreference.leftHanded; - messageDuration: number = 5; - mouseHoverTime: number = 400; - scrollBarArrowSize: Foundation.Size = { 17, height: 17 }; - scrollBarSize: Foundation.Size = { 17, height: 17 }; - scrollBarThumbBoxSize: Foundation.Size = { 17, height: 17 }; - textScaleFactor: number = 1; - advancedEffectsEnabled: Boolean = true; - autoHideScrollBars: Boolean = true; - - uielementColor(desiredElement: UIElementType): Color { - throw new Error('shimmed function UISettings.uielementColor'); - } - - getColorValue(desiredColor: UIColorType): Color { - throw new Error('shimmed function UISettings.getColorValue'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UISettings::addEventListener: ${name}`); - switch (name) { - case "textscalefactorchanged": // Foundation.TypedEventHandler - case "colorvalueschanged": // Foundation.TypedEventHandler - case "advancedeffectsenabledchanged": // Foundation.TypedEventHandler - case "autohidescrollbarschanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class UISettingsAutoHideScrollBarsChangedEventArgs implements IUISettingsAutoHideScrollBarsChangedEventArgs { - } - export class UIViewSettings implements IUIViewSettings { - userInteractionMode: UserInteractionMode; - - static getForCurrentView(): UIViewSettings { - throw new Error('shimmed function UIViewSettings.getForCurrentView'); - } - - } - export enum UserInteractionMode { - mouse, - touch, - } - export interface ViewManagementViewScalingContract { - } - export class ViewModePreferences implements IViewModePreferences { - viewSizePreference: ViewSizePreference; - customSize: Foundation.Size; - - static createDefault(mode: ApplicationViewMode): ViewModePreferences { - throw new Error('shimmed function ViewModePreferences.createDefault'); - } - - } - export enum ViewSizePreference { - default, - useLess, - useHalf, - useMore, - useMinimum, - useNone, - custom, - } - } - export namespace WebUI { - export class ActivatedDeferral implements IActivatedDeferral { - complete(): void { - console.warn('shimmed function ActivatedDeferral.complete'); - } - - } - export type ActivatedEventHandler = (eventArgs: ApplicationModel.Activation.IActivatedEventArgs) => void; - export class ActivatedOperation implements IActivatedOperation { - getDeferral(): ActivatedDeferral { - throw new Error('shimmed function ActivatedOperation.getDeferral'); - } - - } - export class BackgroundActivatedEventArgs implements ApplicationModel.Activation.IBackgroundActivatedEventArgs { - taskInstance: ApplicationModel.Background.IBackgroundTaskInstance; - - } - export type BackgroundActivatedEventHandler = (eventArgs: ApplicationModel.Activation.IBackgroundActivatedEventArgs) => void; - export namespace Core { - export interface IWebUICommandBarElement { - } - export interface IWebUICommandBarIcon { - } - export type MenuClosedEventHandler = () => void; - export type MenuOpenedEventHandler = () => void; - export type SizeChangedEventHandler = () => void; - export class WebUICommandBar implements IWebUICommandBar { - visible: Boolean; - opacity: number; - isOpen: Boolean; - foregroundColor: Color; - closedDisplayMode: WebUICommandBarClosedDisplayMode; - backgroundColor: Color; - primaryCommands: IWebUICommandBarElement[]; - secondaryCommands: IWebUICommandBarElement[]; - size: Foundation.Size; - - static getForCurrentView(): WebUICommandBar { - throw new Error('shimmed function WebUICommandBar.getForCurrentView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WebUICommandBar::addEventListener: ${name}`); - switch (name) { - case "menuclosed": // MenuClosedEventHandler - case "menuopened": // MenuOpenedEventHandler - case "sizechanged": // SizeChangedEventHandler - break; - } - - } - } - export class WebUICommandBarBitmapIcon implements IWebUICommandBarBitmapIcon, IWebUICommandBarIcon { - // constructor(uri: Foundation.Uri); - // constructor(); - constructor(uri: Foundation.Uri) {} - - uri: Foundation.Uri; - - } - export enum WebUICommandBarClosedDisplayMode { - default, - minimal, - compact, - } - export class WebUICommandBarConfirmationButton implements IWebUICommandBarConfirmationButton, IWebUICommandBarElement { - // constructor(); - text: string; - - addEventListener(name: string, handler: Function) { - console.warn(`WebUICommandBarConfirmationButton::addEventListener: ${name}`); - switch (name) { - case "iteminvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export interface WebUICommandBarContract { - } - export class WebUICommandBarIconButton implements IWebUICommandBarIconButton, IWebUICommandBarElement { - // constructor(); - label: string; - isToggleButton: Boolean; - isChecked: Boolean; - icon: IWebUICommandBarIcon; - enabled: Boolean; - - addEventListener(name: string, handler: Function) { - console.warn(`WebUICommandBarIconButton::addEventListener: ${name}`); - switch (name) { - case "iteminvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class WebUICommandBarItemInvokedEventArgs implements IWebUICommandBarItemInvokedEventArgs { - isPrimaryCommand: Boolean; - - } - export class WebUICommandBarSizeChangedEventArgs implements IWebUICommandBarSizeChangedEventArgs { - size: Foundation.Size; - - } - export class WebUICommandBarSymbolIcon implements IWebUICommandBarSymbolIcon, IWebUICommandBarIcon { - // constructor(symbol: string); - // constructor(); - constructor(symbol: string) {} - - symbol: string; - - } - } - export class EnteredBackgroundEventArgs implements ApplicationModel.IEnteredBackgroundEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function EnteredBackgroundEventArgs.getDeferral'); - } - - } - export type EnteredBackgroundEventHandler = (e: ApplicationModel.IEnteredBackgroundEventArgs) => void; - export class HtmlPrintDocumentSource implements IHtmlPrintDocumentSource, Graphics.Printing.IPrintDocumentSource, Foundation.IClosable { - topMargin: number; - shrinkToFit: Boolean; - rightMargin: number; - percentScale: number; - leftMargin: number; - enableHeaderFooter: Boolean; - content: PrintContent; - bottomMargin: number; - pageRange: string; - - trySetPageRange(strPageRange: string): Boolean { - throw new Error('shimmed function HtmlPrintDocumentSource.trySetPageRange'); - } - - close(): void { - console.warn('shimmed function HtmlPrintDocumentSource.close'); - } - - } - export interface IActivatedEventArgsDeferral { - activatedOperation: ActivatedOperation; - } - export interface IWebUIBackgroundTaskInstance { - succeeded: Boolean; - } - export interface IWebUINavigatedEventArgs { - navigatedOperation: WebUINavigatedOperation; - } - export class LeavingBackgroundEventArgs implements ApplicationModel.ILeavingBackgroundEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function LeavingBackgroundEventArgs.getDeferral'); - } - - } - export type LeavingBackgroundEventHandler = (e: ApplicationModel.ILeavingBackgroundEventArgs) => void; - export type NavigatedEventHandler = (e: IWebUINavigatedEventArgs) => void; - export class NewWebUIViewCreatedEventArgs implements INewWebUIViewCreatedEventArgs { - activatedEventArgs: ApplicationModel.Activation.IActivatedEventArgs; - hasPendingNavigate: Boolean; - webUIView: WebUIView; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function NewWebUIViewCreatedEventArgs.getDeferral'); - } - - } - export enum PrintContent { - allPages, - currentPage, - customPageRange, - currentSelection, - } - export type ResumingEventHandler = () => void; - export class SuspendingDeferral implements ApplicationModel.ISuspendingDeferral { - complete(): void { - console.warn('shimmed function SuspendingDeferral.complete'); - } - - } - export class SuspendingEventArgs implements ApplicationModel.ISuspendingEventArgs { - suspendingOperation: ApplicationModel.SuspendingOperation; - - } - export type SuspendingEventHandler = (e: ApplicationModel.ISuspendingEventArgs) => void; - export class SuspendingOperation implements ApplicationModel.ISuspendingOperation { - deadline: Date; - - getDeferral(): ApplicationModel.SuspendingDeferral { - throw new Error('shimmed function SuspendingOperation.getDeferral'); - } - - } - export class WebUIApplication { - static requestRestartAsync(launchArguments: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebUIApplication.requestRestartAsync'); - } - - static requestRestartForUserAsync(user: System.User, launchArguments: string): Foundation.IAsyncOperation { - throw new Error('shimmed function WebUIApplication.requestRestartForUserAsync'); - } - - static enablePrelaunch(value: Boolean): void { - console.warn('shimmed function WebUIApplication.enablePrelaunch'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`WebUIApplication::addEventListener: ${name}`); - switch (name) { - case "backgroundactivated": // BackgroundActivatedEventHandler - case "newwebuiviewcreated": // /* System.EventHandler`1[[Windows.UI.WebUI.NewWebUIViewCreatedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "enteredbackground": // EnteredBackgroundEventHandler - case "leavingbackground": // LeavingBackgroundEventHandler - case "activated": // ActivatedEventHandler - case "navigated": // NavigatedEventHandler - case "resuming": // ResumingEventHandler - case "suspending": // SuspendingEventHandler - break; - } - - } - } - export class WebUIAppointmentsProviderAddAppointmentActivatedEventArgs implements ApplicationModel.Activation.IAppointmentsProviderAddAppointmentActivatedEventArgs, ApplicationModel.Activation.IAppointmentsProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - verb: string; - addAppointmentOperation: ApplicationModel.Appointments.AppointmentsProvider.AddAppointmentOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIAppointmentsProviderRemoveAppointmentActivatedEventArgs implements ApplicationModel.Activation.IAppointmentsProviderRemoveAppointmentActivatedEventArgs, ApplicationModel.Activation.IAppointmentsProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - verb: string; - removeAppointmentOperation: ApplicationModel.Appointments.AppointmentsProvider.RemoveAppointmentOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIAppointmentsProviderReplaceAppointmentActivatedEventArgs implements ApplicationModel.Activation.IAppointmentsProviderReplaceAppointmentActivatedEventArgs, ApplicationModel.Activation.IAppointmentsProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - verb: string; - replaceAppointmentOperation: ApplicationModel.Appointments.AppointmentsProvider.ReplaceAppointmentOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIAppointmentsProviderShowAppointmentDetailsActivatedEventArgs implements ApplicationModel.Activation.IAppointmentsProviderShowAppointmentDetailsActivatedEventArgs, ApplicationModel.Activation.IAppointmentsProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - verb: string; - instanceStartDate: Date | null; - localId: string; - roamingId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIAppointmentsProviderShowTimeFrameActivatedEventArgs implements ApplicationModel.Activation.IAppointmentsProviderShowTimeFrameActivatedEventArgs, ApplicationModel.Activation.IAppointmentsProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - verb: string; - duration: number; - timeToShow: Date; - activatedOperation: ActivatedOperation; - - } - export class WebUIBackgroundTaskInstance { - static current: IWebUIBackgroundTaskInstance; - - } - export class WebUIBackgroundTaskInstanceRuntimeClass implements IWebUIBackgroundTaskInstance, ApplicationModel.Background.IBackgroundTaskInstance { - progress: number; - instanceId: string; - suspendedCount: number; - task: ApplicationModel.Background.BackgroundTaskRegistration; - triggerDetails: any; - succeeded: Boolean; - - getDeferral(): ApplicationModel.Background.BackgroundTaskDeferral { - throw new Error('shimmed function WebUIBackgroundTaskInstanceRuntimeClass.getDeferral'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WebUIBackgroundTaskInstanceRuntimeClass::addEventListener: ${name}`); - switch (name) { - case "canceled": // ApplicationModel.Background.BackgroundTaskCanceledEventHandler - break; - } - - } - } - export class WebUIBarcodeScannerPreviewActivatedEventArgs implements ApplicationModel.Activation.IBarcodeScannerPreviewActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgsWithUser, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - connectionId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUICachedFileUpdaterActivatedEventArgs implements ApplicationModel.Activation.ICachedFileUpdaterActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - cachedFileUpdaterUI: Storage.Provider.CachedFileUpdaterUI; - activatedOperation: ActivatedOperation; - - } - export class WebUICameraSettingsActivatedEventArgs implements ApplicationModel.Activation.ICameraSettingsActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - videoDeviceController: any; - videoDeviceExtension: any; - activatedOperation: ActivatedOperation; - - } - export class WebUICommandLineActivatedEventArgs implements ApplicationModel.Activation.ICommandLineActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgsWithUser, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - operation: ApplicationModel.Activation.CommandLineActivationOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIContactCallActivatedEventArgs implements ApplicationModel.Activation.IContactCallActivatedEventArgs, ApplicationModel.Activation.IContactActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - verb: string; - contact: ApplicationModel.Contacts.Contact; - serviceId: string; - serviceUserId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIContactMapActivatedEventArgs implements ApplicationModel.Activation.IContactMapActivatedEventArgs, ApplicationModel.Activation.IContactActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - verb: string; - address: ApplicationModel.Contacts.ContactAddress; - contact: ApplicationModel.Contacts.Contact; - activatedOperation: ActivatedOperation; - - } - export class WebUIContactMessageActivatedEventArgs implements ApplicationModel.Activation.IContactMessageActivatedEventArgs, ApplicationModel.Activation.IContactActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - verb: string; - contact: ApplicationModel.Contacts.Contact; - serviceId: string; - serviceUserId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIContactPanelActivatedEventArgs implements ApplicationModel.Activation.IContactPanelActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - contact: ApplicationModel.Contacts.Contact; - contactPanel: ApplicationModel.Contacts.ContactPanel; - activatedOperation: ActivatedOperation; - - } - export class WebUIContactPickerActivatedEventArgs implements ApplicationModel.Activation.IContactPickerActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - contactPickerUI: ApplicationModel.Contacts.Provider.ContactPickerUI; - activatedOperation: ActivatedOperation; - - } - export class WebUIContactPostActivatedEventArgs implements ApplicationModel.Activation.IContactPostActivatedEventArgs, ApplicationModel.Activation.IContactActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - verb: string; - contact: ApplicationModel.Contacts.Contact; - serviceId: string; - serviceUserId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIContactVideoCallActivatedEventArgs implements ApplicationModel.Activation.IContactVideoCallActivatedEventArgs, ApplicationModel.Activation.IContactActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - verb: string; - contact: ApplicationModel.Contacts.Contact; - serviceId: string; - serviceUserId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIDeviceActivatedEventArgs implements ApplicationModel.Activation.IDeviceActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - deviceInformationId: string; - verb: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIDevicePairingActivatedEventArgs implements ApplicationModel.Activation.IDevicePairingActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - deviceInformation: Devices.Enumeration.DeviceInformation; - activatedOperation: ActivatedOperation; - - } - export class WebUIDialReceiverActivatedEventArgs implements ApplicationModel.Activation.IDialReceiverActivatedEventArgs, ApplicationModel.Activation.ILaunchActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - appName: string; - __arguments: string; - tileId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIFileActivatedEventArgs implements ApplicationModel.Activation.IFileActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IFileActivatedEventArgsWithNeighboringFiles, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - files: Storage.IStorageItem[]; - verb: string; - neighboringFilesQuery: Storage.Search.StorageFileQueryResult; - activatedOperation: ActivatedOperation; - - } - export class WebUIFileOpenPickerActivatedEventArgs implements ApplicationModel.Activation.IFileOpenPickerActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IFileOpenPickerActivatedEventArgs2, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - fileOpenPickerUI: Storage.Pickers.Provider.FileOpenPickerUI; - callerPackageFamilyName: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIFileOpenPickerContinuationEventArgs implements ApplicationModel.Activation.IFileOpenPickerContinuationEventArgs, ApplicationModel.Activation.IContinuationActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - continuationData: Foundation.Collections.ValueSet; - files: Storage.StorageFile[]; - activatedOperation: ActivatedOperation; - - } - export class WebUIFileSavePickerActivatedEventArgs implements ApplicationModel.Activation.IFileSavePickerActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IFileSavePickerActivatedEventArgs2, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - fileSavePickerUI: Storage.Pickers.Provider.FileSavePickerUI; - callerPackageFamilyName: string; - enterpriseId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIFileSavePickerContinuationEventArgs implements ApplicationModel.Activation.IFileSavePickerContinuationEventArgs, ApplicationModel.Activation.IContinuationActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - continuationData: Foundation.Collections.ValueSet; - file: Storage.StorageFile; - activatedOperation: ActivatedOperation; - - } - export class WebUIFolderPickerContinuationEventArgs implements ApplicationModel.Activation.IFolderPickerContinuationEventArgs, ApplicationModel.Activation.IContinuationActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - continuationData: Foundation.Collections.ValueSet; - folder: Storage.StorageFolder; - activatedOperation: ActivatedOperation; - - } - export class WebUILaunchActivatedEventArgs implements ApplicationModel.Activation.ILaunchActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IPrelaunchActivatedEventArgs, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser, ApplicationModel.Activation.ILaunchActivatedEventArgs2 { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - __arguments: string; - tileId: string; - tileActivatedInfo: ApplicationModel.Activation.TileActivatedInfo; - prelaunchActivated: Boolean; - activatedOperation: ActivatedOperation; - - } - export class WebUILockScreenActivatedEventArgs implements ApplicationModel.Activation.ILockScreenActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - info: any; - activatedOperation: ActivatedOperation; - - } - export class WebUILockScreenCallActivatedEventArgs implements ApplicationModel.Activation.ILockScreenCallActivatedEventArgs, ApplicationModel.Activation.ILaunchActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - currentlyShownApplicationViewId: number; - __arguments: string; - tileId: string; - callUI: ApplicationModel.Calls.LockScreenCallUI; - activatedOperation: ActivatedOperation; - - } - export class WebUILockScreenComponentActivatedEventArgs implements ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - activatedOperation: ActivatedOperation; - - } - export class WebUINavigatedDeferral implements IWebUINavigatedDeferral { - complete(): void { - console.warn('shimmed function WebUINavigatedDeferral.complete'); - } - - } - export class WebUINavigatedEventArgs implements IWebUINavigatedEventArgs { - navigatedOperation: WebUINavigatedOperation; - - } - export class WebUINavigatedOperation implements IWebUINavigatedOperation { - getDeferral(): WebUINavigatedDeferral { - throw new Error('shimmed function WebUINavigatedOperation.getDeferral'); - } - - } - export class WebUIPrint3DWorkflowActivatedEventArgs implements ApplicationModel.Activation.IPrint3DWorkflowActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - workflow: Devices.Printers.Extensions.Print3DWorkflow; - activatedOperation: ActivatedOperation; - - } - export class WebUIPrintTaskSettingsActivatedEventArgs implements ApplicationModel.Activation.IPrintTaskSettingsActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - configuration: Devices.Printers.Extensions.PrintTaskConfiguration; - activatedOperation: ActivatedOperation; - - } - export class WebUIPrintWorkflowForegroundTaskActivatedEventArgs implements ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - activatedOperation: ActivatedOperation; - - } - export class WebUIProtocolActivatedEventArgs implements ApplicationModel.Activation.IProtocolActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - uri: Foundation.Uri; - callerPackageFamilyName: string; - data: Foundation.Collections.ValueSet; - activatedOperation: ActivatedOperation; - - } - export class WebUIProtocolForResultsActivatedEventArgs implements ApplicationModel.Activation.IProtocolForResultsActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IProtocolActivatedEventArgs, ApplicationModel.Activation.IProtocolActivatedEventArgsWithCallerPackageFamilyNameAndData, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - currentlyShownApplicationViewId: number; - uri: Foundation.Uri; - callerPackageFamilyName: string; - data: Foundation.Collections.ValueSet; - protocolForResultsOperation: System.ProtocolForResultsOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIRestrictedLaunchActivatedEventArgs implements ApplicationModel.Activation.IRestrictedLaunchActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - sharedContext: any; - activatedOperation: ActivatedOperation; - - } - export class WebUISearchActivatedEventArgs implements ApplicationModel.Activation.ISearchActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.ISearchActivatedEventArgsWithLinguisticDetails, ApplicationModel.Activation.IApplicationViewActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - currentlyShownApplicationViewId: number; - language: string; - queryText: string; - linguisticDetails: ApplicationModel.Search.SearchPaneQueryLinguisticDetails; - activatedOperation: ActivatedOperation; - - } - export class WebUIShareTargetActivatedEventArgs implements ApplicationModel.Activation.IShareTargetActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - shareOperation: ApplicationModel.DataTransfer.ShareTarget.ShareOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIStartupTaskActivatedEventArgs implements ApplicationModel.Activation.IStartupTaskActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgsWithUser, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - taskId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIToastNotificationActivatedEventArgs implements ApplicationModel.Activation.IToastNotificationActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - argument: string; - userInput: Foundation.Collections.ValueSet; - activatedOperation: ActivatedOperation; - - } - export class WebUIUserDataAccountProviderActivatedEventArgs implements ApplicationModel.Activation.IUserDataAccountProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - operation: ApplicationModel.UserDataAccounts.Provider.IUserDataAccountProviderOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIView implements IWebUIView, Web.UI.IWebViewControl, Web.UI.IWebViewControl2 { - ignoreApplicationContentUriRulesNavigationRestrictions: Boolean; - applicationViewId: number; - source: Foundation.Uri; - defaultBackgroundColor: Color; - canGoBack: Boolean; - canGoForward: Boolean; - containsFullScreenElement: Boolean; - deferredPermissionRequests: Web.UI.WebViewControlDeferredPermissionRequest[]; - documentTitle: string; - settings: Web.UI.WebViewControlSettings; - - goForward(): void { - console.warn('shimmed function WebUIView.goForward'); - } - - goBack(): void { - console.warn('shimmed function WebUIView.goBack'); - } - - refresh(): void { - console.warn('shimmed function WebUIView.refresh'); - } - - stop(): void { - console.warn('shimmed function WebUIView.stop'); - } - - navigate(source: Foundation.Uri): void { - console.warn('shimmed function WebUIView.navigate'); - } - - navigateToString(text: string): void { - console.warn('shimmed function WebUIView.navigateToString'); - } - - navigateToLocalStreamUri(source: Foundation.Uri, streamResolver: Web.IUriToStreamResolver): void { - console.warn('shimmed function WebUIView.navigateToLocalStreamUri'); - } - - navigateWithHttpRequestMessage(requestMessage: Web.Http.HttpRequestMessage): void { - console.warn('shimmed function WebUIView.navigateWithHttpRequestMessage'); - } - - invokeScriptAsync(scriptName: string, __arguments: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function WebUIView.invokeScriptAsync'); - } - - capturePreviewToStreamAsync(stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function WebUIView.capturePreviewToStreamAsync'); - } - - captureSelectedContentToDataPackageAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WebUIView.captureSelectedContentToDataPackageAsync'); - } - - buildLocalStreamUri(contentIdentifier: string, relativePath: string): Foundation.Uri { - throw new Error('shimmed function WebUIView.buildLocalStreamUri'); - } - - getDeferredPermissionRequestById(id: number): Web.UI.WebViewControlDeferredPermissionRequest { - throw new Error('shimmed function WebUIView.getDeferredPermissionRequestById'); - } - - addInitializeScript(script: string): void { - console.warn('shimmed function WebUIView.addInitializeScript'); - } - - static createAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WebUIView.createAsync'); - } - - static createAsync_1(uri: Foundation.Uri): Foundation.IAsyncOperation { - throw new Error('shimmed function WebUIView.createAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WebUIView::addEventListener: ${name}`); - switch (name) { - case "activated": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - case "containsfullscreenelementchanged": // Foundation.TypedEventHandler - case "contentloading": // Foundation.TypedEventHandler - case "domcontentloaded": // Foundation.TypedEventHandler - case "framecontentloading": // Foundation.TypedEventHandler - case "framedomcontentloaded": // Foundation.TypedEventHandler - case "framenavigationcompleted": // Foundation.TypedEventHandler - case "framenavigationstarting": // Foundation.TypedEventHandler - case "longrunningscriptdetected": // Foundation.TypedEventHandler - case "navigationcompleted": // Foundation.TypedEventHandler - case "navigationstarting": // Foundation.TypedEventHandler - case "newwindowrequested": // Foundation.TypedEventHandler - case "permissionrequested": // Foundation.TypedEventHandler - case "scriptnotify": // Foundation.TypedEventHandler - case "unsafecontentwarningdisplaying": // Foundation.TypedEventHandler - case "unsupportedurischemeidentified": // Foundation.TypedEventHandler - case "unviewablecontentidentified": // Foundation.TypedEventHandler - case "webresourcerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class WebUIVoiceCommandActivatedEventArgs implements ApplicationModel.Activation.IVoiceCommandActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - result: Media.SpeechRecognition.SpeechRecognitionResult; - activatedOperation: ActivatedOperation; - - } - export class WebUIWalletActionActivatedEventArgs implements ApplicationModel.Activation.IWalletActionActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - actionId: string; - actionKind: ApplicationModel.Wallet.WalletActionKind; - itemId: string; - activatedOperation: ActivatedOperation; - - } - export class WebUIWebAccountProviderActivatedEventArgs implements ApplicationModel.Activation.IWebAccountProviderActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral, ApplicationModel.Activation.IActivatedEventArgsWithUser { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - user: System.User; - operation: Security.Authentication.Web.Provider.IWebAccountProviderOperation; - activatedOperation: ActivatedOperation; - - } - export class WebUIWebAuthenticationBrokerContinuationEventArgs implements ApplicationModel.Activation.IWebAuthenticationBrokerContinuationEventArgs, ApplicationModel.Activation.IContinuationActivatedEventArgs, ApplicationModel.Activation.IActivatedEventArgs, IActivatedEventArgsDeferral { - kind: ApplicationModel.Activation.ActivationKind; - previousExecutionState: ApplicationModel.Activation.ApplicationExecutionState; - splashScreen: ApplicationModel.Activation.SplashScreen; - continuationData: Foundation.Collections.ValueSet; - webAuthenticationResult: Security.Authentication.Web.WebAuthenticationResult; - activatedOperation: ActivatedOperation; - - } - } - export namespace WindowManagement { - export class AppWindow implements IAppWindow { - title: string; - persistedStateId: string; - content: UIContentRoot; - dispatcherQueue: System.DispatcherQueue; - frame: AppWindowFrame; - isVisible: Boolean; - presenter: AppWindowPresenter; - titleBar: AppWindowTitleBar; - uicontext: UIContext; - windowingEnvironment: WindowingEnvironment; - - closeAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function AppWindow.closeAsync'); - } - - getPlacement(): AppWindowPlacement { - throw new Error('shimmed function AppWindow.getPlacement'); - } - - getDisplayRegions(): DisplayRegion[] { - throw new Error('shimmed function AppWindow.getDisplayRegions'); - } - - requestMoveToDisplayRegion(displayRegion: DisplayRegion): void { - console.warn('shimmed function AppWindow.requestMoveToDisplayRegion'); - } - - requestMoveAdjacentToCurrentView(): void { - console.warn('shimmed function AppWindow.requestMoveAdjacentToCurrentView'); - } - - requestMoveAdjacentToWindow(anchorWindow: AppWindow): void { - console.warn('shimmed function AppWindow.requestMoveAdjacentToWindow'); - } - - requestMoveRelativeToWindowContent(anchorWindow: AppWindow, contentOffset: Foundation.Point): void { - console.warn('shimmed function AppWindow.requestMoveRelativeToWindowContent'); - } - - requestMoveRelativeToCurrentViewContent(contentOffset: Foundation.Point): void { - console.warn('shimmed function AppWindow.requestMoveRelativeToCurrentViewContent'); - } - - requestMoveRelativeToDisplayRegion(displayRegion: DisplayRegion, displayRegionOffset: Foundation.Point): void { - console.warn('shimmed function AppWindow.requestMoveRelativeToDisplayRegion'); - } - - requestSize(frameSize: Foundation.Size): void { - console.warn('shimmed function AppWindow.requestSize'); - } - - tryShowAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppWindow.tryShowAsync'); - } - - static tryCreateAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function AppWindow.tryCreateAsync'); - } - - static clearAllPersistedState(): void { - console.warn('shimmed function AppWindow.clearAllPersistedState'); - } - - static clearPersistedState(key: string): void { - console.warn('shimmed function AppWindow.clearPersistedState'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppWindow::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - case "closerequested": // Foundation.TypedEventHandler - case "closed": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppWindowChangedEventArgs implements IAppWindowChangedEventArgs { - didAvailableWindowPresentationsChange: Boolean; - didDisplayRegionsChange: Boolean; - didFrameChange: Boolean; - didSizeChange: Boolean; - didTitleBarChange: Boolean; - didVisibilityChange: Boolean; - didWindowPresentationChange: Boolean; - didWindowingEnvironmentChange: Boolean; - - } - export class AppWindowClosedEventArgs implements IAppWindowClosedEventArgs { - reason: AppWindowClosedReason; - - } - export enum AppWindowClosedReason { - other, - appInitiated, - userInitiated, - } - export class AppWindowCloseRequestedEventArgs implements IAppWindowCloseRequestedEventArgs { - cancel: Boolean; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function AppWindowCloseRequestedEventArgs.getDeferral'); - } - - } - export class AppWindowFrame implements IAppWindowFrameStyle, IAppWindowFrame { - dragRegionVisuals: Composition.IVisualElement[]; - - getFrameStyle(): AppWindowFrameStyle { - throw new Error('shimmed function AppWindowFrame.getFrameStyle'); - } - - setFrameStyle(frameStyle: AppWindowFrameStyle): void { - console.warn('shimmed function AppWindowFrame.setFrameStyle'); - } - - } - export enum AppWindowFrameStyle { - default, - noFrame, - } - export class AppWindowPlacement implements IAppWindowPlacement { - displayRegion: DisplayRegion; - offset: Foundation.Point; - size: Foundation.Size; - - } - export class AppWindowPresentationConfiguration implements IAppWindowPresentationConfiguration { - kind: AppWindowPresentationKind; - - } - export enum AppWindowPresentationKind { - default, - compactOverlay, - fullScreen, - } - export class AppWindowPresenter implements IAppWindowPresenter { - getConfiguration(): AppWindowPresentationConfiguration { - throw new Error('shimmed function AppWindowPresenter.getConfiguration'); - } - - isPresentationSupported(presentationKind: AppWindowPresentationKind): Boolean { - throw new Error('shimmed function AppWindowPresenter.isPresentationSupported'); - } - - requestPresentation(configuration: AppWindowPresentationConfiguration): Boolean { - throw new Error('shimmed function AppWindowPresenter.requestPresentation'); - } - - requestPresentation_1(presentationKind: AppWindowPresentationKind): Boolean { - throw new Error('shimmed function AppWindowPresenter.requestPresentation_1'); - } - - } - export class AppWindowTitleBar implements IAppWindowTitleBarVisibility, IAppWindowTitleBar { - inactiveForegroundColor: Color | null; - inactiveBackgroundColor: Color | null; - foregroundColor: Color | null; - extendsContentIntoTitleBar: Boolean; - buttonPressedForegroundColor: Color | null; - buttonPressedBackgroundColor: Color | null; - buttonInactiveForegroundColor: Color | null; - buttonInactiveBackgroundColor: Color | null; - buttonHoverForegroundColor: Color | null; - buttonHoverBackgroundColor: Color | null; - buttonForegroundColor: Color | null; - buttonBackgroundColor: Color | null; - backgroundColor: Color | null; - isVisible: Boolean; - - getPreferredVisibility(): AppWindowTitleBarVisibility { - throw new Error('shimmed function AppWindowTitleBar.getPreferredVisibility'); - } - - setPreferredVisibility(visibilityMode: AppWindowTitleBarVisibility): void { - console.warn('shimmed function AppWindowTitleBar.setPreferredVisibility'); - } - - getTitleBarOcclusions(): AppWindowTitleBarOcclusion[] { - throw new Error('shimmed function AppWindowTitleBar.getTitleBarOcclusions'); - } - - } - export class AppWindowTitleBarOcclusion implements IAppWindowTitleBarOcclusion { - occludingRect: Foundation.Rect; - - } - export enum AppWindowTitleBarVisibility { - default, - alwaysHidden, - } - export class CompactOverlayPresentationConfiguration implements IAppWindowPresentationConfiguration, ICompactOverlayPresentationConfiguration { - // constructor(); - kind: AppWindowPresentationKind = AppWindowPresentationKind.compactOverlay; - - } - export class DefaultPresentationConfiguration implements IAppWindowPresentationConfiguration, IDefaultPresentationConfiguration { - // constructor(); - kind: AppWindowPresentationKind = AppWindowPresentationKind.default; - - } - export class DisplayRegion implements IDisplayRegion { - displayMonitorDeviceId: string; - isVisible: Boolean; - windowingEnvironment: WindowingEnvironment; - workAreaOffset: Foundation.Point; - workAreaSize: Foundation.Size; - - addEventListener(name: string, handler: Function) { - console.warn(`DisplayRegion::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - break; - } - - } - } - export class FullScreenPresentationConfiguration implements IAppWindowPresentationConfiguration, IFullScreenPresentationConfiguration { - // constructor(); - isExclusive: Boolean = false; - kind: AppWindowPresentationKind = AppWindowPresentationKind.fullScreen; - - } - export namespace Preview { - export class WindowManagementPreview implements IWindowManagementPreview { - static setPreferredMinSize(window: AppWindow, preferredFrameMinSize: Foundation.Size): void { - console.warn('shimmed function WindowManagementPreview.setPreferredMinSize'); - } - - } - } - export class WindowingEnvironment implements IWindowingEnvironment { - isEnabled: Boolean; - kind: WindowingEnvironmentKind; - - getDisplayRegions(): DisplayRegion[] { - throw new Error('shimmed function WindowingEnvironment.getDisplayRegions'); - } - - static findAll(): WindowingEnvironment[] { - throw new Error('shimmed function WindowingEnvironment.findAll'); - } - - static findAll_1(kind: WindowingEnvironmentKind): WindowingEnvironment[] { - throw new Error('shimmed function WindowingEnvironment.findAll_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WindowingEnvironment::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - break; - } - - } - } - export class WindowingEnvironmentAddedEventArgs implements IWindowingEnvironmentAddedEventArgs { - windowingEnvironment: WindowingEnvironment; - - } - export class WindowingEnvironmentChangedEventArgs implements IWindowingEnvironmentChangedEventArgs { - } - export enum WindowingEnvironmentKind { - unknown, - overlapped, - tiled, - } - export class WindowingEnvironmentRemovedEventArgs implements IWindowingEnvironmentRemovedEventArgs { - windowingEnvironment: WindowingEnvironment; - - } - } - export namespace Xaml { - export class AdaptiveTrigger implements IDependencyObject, IDependencyObject2, IStateTriggerBase, IStateTriggerBaseProtected, IAdaptiveTrigger { - // constructor(); - minWindowWidth: number = -1; - minWindowHeight: number = -1; - static minWindowHeightProperty: DependencyProperty = null; - static minWindowWidthProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AdaptiveTrigger.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AdaptiveTrigger.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AdaptiveTrigger.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AdaptiveTrigger.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AdaptiveTrigger.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AdaptiveTrigger.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AdaptiveTrigger.unregisterPropertyChangedCallback'); - } - - setActive(isActive: Boolean): void { - console.warn('shimmed function AdaptiveTrigger.setActive'); - } - - } - export class Application implements IApplication, IApplication2, IApplication3, IApplicationOverrides, IApplicationOverrides2 { - // constructor(); - resources: ResourceDictionary; - requestedTheme: ApplicationTheme; - debugSettings: DebugSettings; - requiresPointerMode: ApplicationRequiresPointerMode; - focusVisualKind: FocusVisualKind; - highContrastAdjustment: ApplicationHighContrastAdjustment; - static current: Application = null; - - exit(): void { - console.warn('shimmed function Application.exit'); - } - - onActivated(args: ApplicationModel.Activation.IActivatedEventArgs): void { - console.warn('shimmed function Application.onActivated'); - } - - onLaunched(args: ApplicationModel.Activation.LaunchActivatedEventArgs): void { - console.warn('shimmed function Application.onLaunched'); - } - - onFileActivated(args: ApplicationModel.Activation.FileActivatedEventArgs): void { - console.warn('shimmed function Application.onFileActivated'); - } - - onSearchActivated(args: ApplicationModel.Activation.SearchActivatedEventArgs): void { - console.warn('shimmed function Application.onSearchActivated'); - } - - onShareTargetActivated(args: ApplicationModel.Activation.ShareTargetActivatedEventArgs): void { - console.warn('shimmed function Application.onShareTargetActivated'); - } - - onFileOpenPickerActivated(args: ApplicationModel.Activation.FileOpenPickerActivatedEventArgs): void { - console.warn('shimmed function Application.onFileOpenPickerActivated'); - } - - onFileSavePickerActivated(args: ApplicationModel.Activation.FileSavePickerActivatedEventArgs): void { - console.warn('shimmed function Application.onFileSavePickerActivated'); - } - - onCachedFileUpdaterActivated(args: ApplicationModel.Activation.CachedFileUpdaterActivatedEventArgs): void { - console.warn('shimmed function Application.onCachedFileUpdaterActivated'); - } - - onWindowCreated(args: WindowCreatedEventArgs): void { - console.warn('shimmed function Application.onWindowCreated'); - } - - onBackgroundActivated(args: ApplicationModel.Activation.BackgroundActivatedEventArgs): void { - console.warn('shimmed function Application.onBackgroundActivated'); - } - - static start(callback: ApplicationInitializationCallback): void { - console.warn('shimmed function Application.start'); - } - - static loadComponent(component: any, resourceLocator: Foundation.Uri): void { - console.warn('shimmed function Application.loadComponent'); - } - - static loadComponent_1(component: any, resourceLocator: Foundation.Uri, componentResourceLocation: Controls.Primitives.ComponentResourceLocation): void { - console.warn('shimmed function Application.loadComponent_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Application::addEventListener: ${name}`); - switch (name) { - case "resuming": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "suspending": // SuspendingEventHandler - case "unhandledexception": // UnhandledExceptionEventHandler - case "enteredbackground": // EnteredBackgroundEventHandler - case "leavingbackground": // LeavingBackgroundEventHandler - break; - } - - } - } - export enum ApplicationHighContrastAdjustment { - none, - auto = 4294967295, - } - export type ApplicationInitializationCallback = () => void; - export class ApplicationInitializationCallbackParams implements IApplicationInitializationCallbackParams { - } - export enum ApplicationRequiresPointerMode { - auto, - whenRequested, - } - export enum ApplicationTheme { - light, - dark, - } - export namespace Automation { - export class AnnotationPatternIdentifiers implements IAnnotationPatternIdentifiers { - static annotationTypeIdProperty: AutomationProperty = null; - static annotationTypeNameProperty: AutomationProperty = null; - static authorProperty: AutomationProperty = null; - static dateTimeProperty: AutomationProperty = null; - static targetProperty: AutomationProperty = null; - - } - export enum AnnotationType { - unknown = 60000, - spellingError, - grammarError, - comment, - formulaError, - trackChanges, - header, - footer, - highlighted, - endnote, - footnote, - insertionChange, - deletionChange, - moveChange, - formatChange, - unsyncedChange, - editingLockedChange, - externalChange, - conflictingChange, - author, - advancedProofingIssue, - dataValidationError, - circularReferenceError, - } - export enum AutomationActiveEnd { - none, - start, - end, - } - export enum AutomationAnimationStyle { - none, - lasVegasLights, - blinkingBackground, - sparkleText, - marchingBlackAnts, - marchingRedAnts, - shimmer, - other, - } - export class AutomationAnnotation implements IDependencyObject, IDependencyObject2, IAutomationAnnotation { - // constructor(type: AnnotationType); - // constructor(type: AnnotationType, element: UIElement); - // constructor(); - constructor(type: AnnotationType, element: UIElement) {} - - type: AnnotationType = 0; - element: UIElement; - static elementProperty: DependencyProperty = null; - static typeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationAnnotation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutomationAnnotation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutomationAnnotation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationAnnotation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationAnnotation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutomationAnnotation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutomationAnnotation.unregisterPropertyChangedCallback'); - } - - } - export enum AutomationBulletStyle { - none, - hollowRoundBullet, - filledRoundBullet, - hollowSquareBullet, - filledSquareBullet, - dashBullet, - other, - } - export enum AutomationCaretBidiMode { - ltr, - rtl, - } - export enum AutomationCaretPosition { - unknown, - endOfLine, - beginningOfLine, - } - export class AutomationElementIdentifiers implements IAutomationElementIdentifiers { - static boundingRectangleProperty: AutomationProperty = null; - static hasKeyboardFocusProperty: AutomationProperty = null; - static helpTextProperty: AutomationProperty = null; - static isContentElementProperty: AutomationProperty = null; - static isControlElementProperty: AutomationProperty = null; - static isEnabledProperty: AutomationProperty = null; - static isKeyboardFocusableProperty: AutomationProperty = null; - static isOffscreenProperty: AutomationProperty = null; - static isPasswordProperty: AutomationProperty = null; - static isRequiredForFormProperty: AutomationProperty = null; - static itemStatusProperty: AutomationProperty = null; - static itemTypeProperty: AutomationProperty = null; - static labeledByProperty: AutomationProperty = null; - static liveSettingProperty: AutomationProperty = null; - static localizedControlTypeProperty: AutomationProperty = null; - static nameProperty: AutomationProperty = null; - static acceleratorKeyProperty: AutomationProperty = null; - static accessKeyProperty: AutomationProperty = null; - static automationIdProperty: AutomationProperty = null; - static orientationProperty: AutomationProperty = null; - static classNameProperty: AutomationProperty = null; - static clickablePointProperty: AutomationProperty = null; - static controlTypeProperty: AutomationProperty = null; - static controlledPeersProperty: AutomationProperty = null; - static annotationsProperty: AutomationProperty = null; - static levelProperty: AutomationProperty = null; - static positionInSetProperty: AutomationProperty = null; - static sizeOfSetProperty: AutomationProperty = null; - static landmarkTypeProperty: AutomationProperty = null; - static localizedLandmarkTypeProperty: AutomationProperty = null; - static describedByProperty: AutomationProperty = null; - static flowsFromProperty: AutomationProperty = null; - static flowsToProperty: AutomationProperty = null; - static fullDescriptionProperty: AutomationProperty = null; - static isDataValidForFormProperty: AutomationProperty = null; - static isPeripheralProperty: AutomationProperty = null; - static cultureProperty: AutomationProperty; - static headingLevelProperty: AutomationProperty = null; - static isDialogProperty: AutomationProperty = null; - - } - export enum AutomationFlowDirections { - default, - rightToLeft, - bottomToTop, - vertical, - } - export enum AutomationOutlineStyles { - none, - outline, - shadow, - engraved, - embossed, - } - export class AutomationProperties implements IAutomationProperties { - static acceleratorKeyProperty: DependencyProperty = null; - static accessKeyProperty: DependencyProperty = null; - static automationIdProperty: DependencyProperty = null; - static helpTextProperty: DependencyProperty = null; - static isRequiredForFormProperty: DependencyProperty = null; - static itemStatusProperty: DependencyProperty = null; - static itemTypeProperty: DependencyProperty = null; - static labeledByProperty: DependencyProperty = null; - static liveSettingProperty: DependencyProperty = null; - static nameProperty: DependencyProperty = null; - static accessibilityViewProperty: DependencyProperty = null; - static controlledPeersProperty: DependencyProperty = null; - static annotationsProperty: DependencyProperty = null; - static levelProperty: DependencyProperty = null; - static positionInSetProperty: DependencyProperty = null; - static sizeOfSetProperty: DependencyProperty = null; - static landmarkTypeProperty: DependencyProperty = null; - static localizedLandmarkTypeProperty: DependencyProperty = null; - static describedByProperty: DependencyProperty = null; - static flowsFromProperty: DependencyProperty = null; - static flowsToProperty: DependencyProperty = null; - static fullDescriptionProperty: DependencyProperty = null; - static isDataValidForFormProperty: DependencyProperty = null; - static isPeripheralProperty: DependencyProperty = null; - static localizedControlTypeProperty: DependencyProperty = null; - static cultureProperty: DependencyProperty = null; - static headingLevelProperty: DependencyProperty = null; - static isDialogProperty: DependencyProperty = null; - - static getIsDialog(element: DependencyObject): Boolean { - throw new Error('shimmed function AutomationProperties.getIsDialog'); - } - - static setIsDialog(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function AutomationProperties.setIsDialog'); - } - - static getHeadingLevel(element: DependencyObject): Peers.AutomationHeadingLevel { - throw new Error('shimmed function AutomationProperties.getHeadingLevel'); - } - - static setHeadingLevel(element: DependencyObject, value: Peers.AutomationHeadingLevel): void { - console.warn('shimmed function AutomationProperties.setHeadingLevel'); - } - - static getCulture(element: DependencyObject): number { - throw new Error('shimmed function AutomationProperties.getCulture'); - } - - static setCulture(element: DependencyObject, value: number): void { - console.warn('shimmed function AutomationProperties.setCulture'); - } - - static getIsPeripheral(element: DependencyObject): Boolean { - throw new Error('shimmed function AutomationProperties.getIsPeripheral'); - } - - static setIsPeripheral(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function AutomationProperties.setIsPeripheral'); - } - - static getIsDataValidForForm(element: DependencyObject): Boolean { - throw new Error('shimmed function AutomationProperties.getIsDataValidForForm'); - } - - static setIsDataValidForForm(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function AutomationProperties.setIsDataValidForForm'); - } - - static getFullDescription(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getFullDescription'); - } - - static setFullDescription(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setFullDescription'); - } - - static getLocalizedControlType(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getLocalizedControlType'); - } - - static setLocalizedControlType(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setLocalizedControlType'); - } - - static getDescribedBy(element: DependencyObject): DependencyObject[] { - throw new Error('shimmed function AutomationProperties.getDescribedBy'); - } - - static getFlowsTo(element: DependencyObject): DependencyObject[] { - throw new Error('shimmed function AutomationProperties.getFlowsTo'); - } - - static getFlowsFrom(element: DependencyObject): DependencyObject[] { - throw new Error('shimmed function AutomationProperties.getFlowsFrom'); - } - - static getLandmarkType(element: DependencyObject): Peers.AutomationLandmarkType { - throw new Error('shimmed function AutomationProperties.getLandmarkType'); - } - - static setLandmarkType(element: DependencyObject, value: Peers.AutomationLandmarkType): void { - console.warn('shimmed function AutomationProperties.setLandmarkType'); - } - - static getLocalizedLandmarkType(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getLocalizedLandmarkType'); - } - - static setLocalizedLandmarkType(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setLocalizedLandmarkType'); - } - - static getPositionInSet(element: DependencyObject): number { - throw new Error('shimmed function AutomationProperties.getPositionInSet'); - } - - static setPositionInSet(element: DependencyObject, value: number): void { - console.warn('shimmed function AutomationProperties.setPositionInSet'); - } - - static getSizeOfSet(element: DependencyObject): number { - throw new Error('shimmed function AutomationProperties.getSizeOfSet'); - } - - static setSizeOfSet(element: DependencyObject, value: number): void { - console.warn('shimmed function AutomationProperties.setSizeOfSet'); - } - - static getLevel(element: DependencyObject): number { - throw new Error('shimmed function AutomationProperties.getLevel'); - } - - static setLevel(element: DependencyObject, value: number): void { - console.warn('shimmed function AutomationProperties.setLevel'); - } - - static getAnnotations(element: DependencyObject): AutomationAnnotation[] { - throw new Error('shimmed function AutomationProperties.getAnnotations'); - } - - static getAccessibilityView(element: DependencyObject): Peers.AccessibilityView { - throw new Error('shimmed function AutomationProperties.getAccessibilityView'); - } - - static setAccessibilityView(element: DependencyObject, value: Peers.AccessibilityView): void { - console.warn('shimmed function AutomationProperties.setAccessibilityView'); - } - - static getControlledPeers(element: DependencyObject): UIElement[] { - throw new Error('shimmed function AutomationProperties.getControlledPeers'); - } - - static getAcceleratorKey(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getAcceleratorKey'); - } - - static setAcceleratorKey(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setAcceleratorKey'); - } - - static getAccessKey(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getAccessKey'); - } - - static setAccessKey(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setAccessKey'); - } - - static getAutomationId(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getAutomationId'); - } - - static setAutomationId(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setAutomationId'); - } - - static getHelpText(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getHelpText'); - } - - static setHelpText(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setHelpText'); - } - - static getIsRequiredForForm(element: DependencyObject): Boolean { - throw new Error('shimmed function AutomationProperties.getIsRequiredForForm'); - } - - static setIsRequiredForForm(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function AutomationProperties.setIsRequiredForForm'); - } - - static getItemStatus(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getItemStatus'); - } - - static setItemStatus(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setItemStatus'); - } - - static getItemType(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getItemType'); - } - - static setItemType(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setItemType'); - } - - static getLabeledBy(element: DependencyObject): UIElement { - throw new Error('shimmed function AutomationProperties.getLabeledBy'); - } - - static setLabeledBy(element: DependencyObject, value: UIElement): void { - console.warn('shimmed function AutomationProperties.setLabeledBy'); - } - - static getName(element: DependencyObject): string { - throw new Error('shimmed function AutomationProperties.getName'); - } - - static setName(element: DependencyObject, value: string): void { - console.warn('shimmed function AutomationProperties.setName'); - } - - static getLiveSetting(element: DependencyObject): Peers.AutomationLiveSetting { - throw new Error('shimmed function AutomationProperties.getLiveSetting'); - } - - static setLiveSetting(element: DependencyObject, value: Peers.AutomationLiveSetting): void { - console.warn('shimmed function AutomationProperties.setLiveSetting'); - } - - } - export class AutomationProperty implements IAutomationProperty { - } - export enum AutomationStyleId { - heading1 = 70001, - heading2, - heading3, - heading4, - heading5, - heading6, - heading7, - heading8, - heading9, - title, - subtitle, - normal, - emphasis, - quote, - bulletedList, - } - export enum AutomationTextDecorationLineStyle { - none, - single, - wordsOnly, - double, - dot, - dash, - dashDot, - dashDotDot, - wavy, - thickSingle, - doubleWavy, - thickWavy, - longDash, - thickDash, - thickDashDot, - thickDashDotDot, - thickDot, - thickLongDash, - other, - } - export enum AutomationTextEditChangeType { - none, - autoCorrect, - composition, - compositionFinalized, - } - export class DockPatternIdentifiers implements IDockPatternIdentifiers { - static dockPositionProperty: AutomationProperty = null; - - } - export enum DockPosition { - top, - left, - bottom, - right, - fill, - none, - } - export class DragPatternIdentifiers implements IDragPatternIdentifiers { - static dropEffectProperty: AutomationProperty = null; - static dropEffectsProperty: AutomationProperty = null; - static grabbedItemsProperty: AutomationProperty = null; - static isGrabbedProperty: AutomationProperty = null; - - } - export class DropTargetPatternIdentifiers implements IDropTargetPatternIdentifiers { - static dropTargetEffectProperty: AutomationProperty = null; - static dropTargetEffectsProperty: AutomationProperty = null; - - } - export class ExpandCollapsePatternIdentifiers implements IExpandCollapsePatternIdentifiers { - static expandCollapseStateProperty: AutomationProperty = null; - - } - export enum ExpandCollapseState { - collapsed, - expanded, - partiallyExpanded, - leafNode, - } - export class GridItemPatternIdentifiers implements IGridItemPatternIdentifiers { - static columnProperty: AutomationProperty = null; - static columnSpanProperty: AutomationProperty = null; - static containingGridProperty: AutomationProperty = null; - static rowProperty: AutomationProperty = null; - static rowSpanProperty: AutomationProperty = null; - - } - export class GridPatternIdentifiers implements IGridPatternIdentifiers { - static columnCountProperty: AutomationProperty = null; - static rowCountProperty: AutomationProperty = null; - - } - export class MultipleViewPatternIdentifiers implements IMultipleViewPatternIdentifiers { - static currentViewProperty: AutomationProperty = null; - static supportedViewsProperty: AutomationProperty = null; - - } - export namespace Peers { - export enum AccessibilityView { - raw, - control, - content, - } - export class AppBarAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IAppBarAutomationPeer, Provider.IToggleProvider, Provider.IExpandCollapseProvider, Provider.IWindowProvider { - // constructor(owner: Controls.AppBar); - constructor(owner: Controls.AppBar) {} - - expandCollapseState: ExpandCollapseState; - toggleState: ToggleState; - interactionState: WindowInteractionState; - isModal: Boolean; - isTopmost: Boolean; - maximizable: Boolean; - minimizable: Boolean; - visualState: WindowVisualState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function AppBarAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function AppBarAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function AppBarAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function AppBarAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function AppBarAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function AppBarAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function AppBarAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function AppBarAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function AppBarAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function AppBarAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function AppBarAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function AppBarAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function AppBarAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function AppBarAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function AppBarAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function AppBarAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function AppBarAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function AppBarAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function AppBarAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function AppBarAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function AppBarAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AppBarAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function AppBarAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AppBarAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AppBarAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function AppBarAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function AppBarAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function AppBarAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AppBarAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function AppBarAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function AppBarAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function AppBarAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function AppBarAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function AppBarAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function AppBarAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function AppBarAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function AppBarAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function AppBarAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function AppBarAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function AppBarAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function AppBarAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function AppBarAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function AppBarAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function AppBarAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function AppBarAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function AppBarAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function AppBarAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function AppBarAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function AppBarAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function AppBarAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function AppBarAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AppBarAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function AppBarAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function AppBarAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function AppBarAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AppBarAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AppBarAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function AppBarAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AppBarAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function AppBarAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function AppBarAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function AppBarAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function AppBarAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function AppBarAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function AppBarAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function AppBarAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function AppBarAutomationPeer.toggle'); - } - - collapse(): void { - console.warn('shimmed function AppBarAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function AppBarAutomationPeer.expand'); - } - - close(): void { - console.warn('shimmed function AppBarAutomationPeer.close'); - } - - setVisualState(state: WindowVisualState): void { - console.warn('shimmed function AppBarAutomationPeer.setVisualState'); - } - - waitForInputIdle(milliseconds: number): Boolean { - throw new Error('shimmed function AppBarAutomationPeer.waitForInputIdle'); - } - - } - export class AppBarButtonAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IButtonAutomationPeer, Provider.IInvokeProvider, IAppBarButtonAutomationPeer, Provider.IExpandCollapseProvider { - // constructor(owner: Controls.AppBarButton); - constructor(owner: Controls.AppBarButton) {} - - expandCollapseState: ExpandCollapseState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function AppBarButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function AppBarButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function AppBarButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function AppBarButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function AppBarButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function AppBarButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function AppBarButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AppBarButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function AppBarButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function AppBarButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function AppBarButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function AppBarButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function AppBarButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function AppBarButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function AppBarButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function AppBarButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function AppBarButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function AppBarButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function AppBarButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function AppBarButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AppBarButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function AppBarButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function AppBarButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AppBarButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function AppBarButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function AppBarButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function AppBarButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function AppBarButtonAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.invoke'); - } - - collapse(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function AppBarButtonAutomationPeer.expand'); - } - - } - export class AppBarToggleButtonAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IToggleButtonAutomationPeer, Provider.IToggleProvider, IAppBarToggleButtonAutomationPeer { - // constructor(owner: Controls.AppBarToggleButton); - constructor(owner: Controls.AppBarToggleButton) {} - - toggleState: ToggleState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function AppBarToggleButtonAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function AppBarToggleButtonAutomationPeer.toggle'); - } - - } - export enum AutomationControlType { - button, - calendar, - checkBox, - comboBox, - edit, - hyperlink, - image, - listItem, - list, - menu, - menuBar, - menuItem, - progressBar, - radioButton, - scrollBar, - slider, - spinner, - statusBar, - tab, - tabItem, - text, - toolBar, - toolTip, - tree, - treeItem, - custom, - group, - thumb, - dataGrid, - dataItem, - document, - splitButton, - window, - pane, - header, - headerItem, - table, - titleBar, - separator, - semanticZoom, - appBar, - } - export enum AutomationEvents { - toolTipOpened, - toolTipClosed, - menuOpened, - menuClosed, - automationFocusChanged, - invokePatternOnInvoked, - selectionItemPatternOnElementAddedToSelection, - selectionItemPatternOnElementRemovedFromSelection, - selectionItemPatternOnElementSelected, - selectionPatternOnInvalidated, - textPatternOnTextSelectionChanged, - textPatternOnTextChanged, - asyncContentLoaded, - propertyChanged, - structureChanged, - dragStart, - dragCancel, - dragComplete, - dragEnter, - dragLeave, - dropped, - liveRegionChanged, - inputReachedTarget, - inputReachedOtherElement, - inputDiscarded, - windowClosed, - windowOpened, - conversionTargetChanged, - textEditTextChanged, - layoutInvalidated, - } - export enum AutomationHeadingLevel { - none, - level1, - level2, - level3, - level4, - level5, - level6, - level7, - level8, - level9, - } - export enum AutomationLandmarkType { - none, - custom, - form, - main, - navigation, - search, - } - export enum AutomationLiveSetting { - off, - polite, - assertive, - } - export enum AutomationNavigationDirection { - parent, - nextSibling, - previousSibling, - firstChild, - lastChild, - } - export enum AutomationNotificationKind { - itemAdded, - itemRemoved, - actionCompleted, - actionAborted, - other, - } - export enum AutomationNotificationProcessing { - importantAll, - importantMostRecent, - all, - mostRecent, - currentThenMostRecent, - } - export enum AutomationOrientation { - none, - horizontal, - vertical, - } - export class AutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9 { - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function AutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function AutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function AutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function AutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function AutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function AutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function AutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function AutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function AutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function AutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function AutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function AutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function AutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function AutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function AutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function AutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function AutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function AutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function AutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function AutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function AutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function AutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function AutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function AutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function AutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function AutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function AutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function AutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function AutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function AutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function AutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function AutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function AutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function AutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function AutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function AutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function AutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function AutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function AutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function AutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function AutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function AutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function AutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function AutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function AutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function AutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function AutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function AutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function AutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function AutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function AutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function AutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function AutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function AutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function AutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function AutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function AutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function AutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function AutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function AutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function AutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function AutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function AutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function AutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function AutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function AutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function AutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function AutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function AutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function AutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function AutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function AutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function AutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function AutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function AutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function AutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function AutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function AutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function AutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function AutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function AutomationPeer.isDialogCore'); - } - - static generateRawElementProviderRuntimeId(): RawElementProviderRuntimeId { - throw new Error('shimmed function AutomationPeer.generateRawElementProviderRuntimeId'); - } - - static listenerExists(eventId: AutomationEvents): Boolean { - throw new Error('shimmed function AutomationPeer.listenerExists'); - } - - } - export class AutomationPeerAnnotation implements IDependencyObject, IDependencyObject2, IAutomationPeerAnnotation { - // constructor(type: AnnotationType); - // constructor(type: AnnotationType, peer: AutomationPeer); - // constructor(); - constructor(type: AnnotationType, peer: AutomationPeer) {} - - type: AnnotationType = 0; - peer: AutomationPeer; - static peerProperty: DependencyProperty = null; - static typeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationPeerAnnotation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutomationPeerAnnotation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutomationPeerAnnotation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationPeerAnnotation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutomationPeerAnnotation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutomationPeerAnnotation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutomationPeerAnnotation.unregisterPropertyChangedCallback'); - } - - } - export enum AutomationStructureChangeType { - childAdded, - childRemoved, - childrenInvalidated, - childrenBulkAdded, - childrenBulkRemoved, - childrenReordered, - } - export class AutoSuggestBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IAutoSuggestBoxAutomationPeer, Provider.IInvokeProvider { - // constructor(owner: Controls.AutoSuggestBox); - constructor(owner: Controls.AutoSuggestBox) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function AutoSuggestBoxAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function AutoSuggestBoxAutomationPeer.invoke'); - } - - } - export class ButtonAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IButtonAutomationPeer, Provider.IInvokeProvider { - // constructor(owner: Controls.Button); - constructor(owner: Controls.Button) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ButtonAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ButtonAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ButtonAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function ButtonAutomationPeer.invoke'); - } - - } - export class ButtonBaseAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer { - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ButtonBaseAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ButtonBaseAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ButtonBaseAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ButtonBaseAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ButtonBaseAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ButtonBaseAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ButtonBaseAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ButtonBaseAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ButtonBaseAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ButtonBaseAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ButtonBaseAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ButtonBaseAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ButtonBaseAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ButtonBaseAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ButtonBaseAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ButtonBaseAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ButtonBaseAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ButtonBaseAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ButtonBaseAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ButtonBaseAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ButtonBaseAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ButtonBaseAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ButtonBaseAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ButtonBaseAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ButtonBaseAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ButtonBaseAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ButtonBaseAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ButtonBaseAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ButtonBaseAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ButtonBaseAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ButtonBaseAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ButtonBaseAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ButtonBaseAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ButtonBaseAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ButtonBaseAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ButtonBaseAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ButtonBaseAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ButtonBaseAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ButtonBaseAutomationPeer.isDialogCore'); - } - - } - export class CalendarDatePickerAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ICalendarDatePickerAutomationPeer, Provider.IInvokeProvider, Provider.IValueProvider { - // constructor(owner: Controls.CalendarDatePicker); - constructor(owner: Controls.CalendarDatePicker) {} - - isReadOnly: Boolean; - value: string; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function CalendarDatePickerAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.invoke'); - } - - setValue_1(value: string): void { - console.warn('shimmed function CalendarDatePickerAutomationPeer.setValue_1'); - } - - } - export class CaptureElementAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ICaptureElementAutomationPeer { - // constructor(owner: Controls.CaptureElement); - constructor(owner: Controls.CaptureElement) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CaptureElementAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CaptureElementAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CaptureElementAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CaptureElementAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CaptureElementAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function CaptureElementAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function CaptureElementAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function CaptureElementAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function CaptureElementAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function CaptureElementAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function CaptureElementAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function CaptureElementAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function CaptureElementAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function CaptureElementAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function CaptureElementAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function CaptureElementAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function CaptureElementAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function CaptureElementAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function CaptureElementAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function CaptureElementAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function CaptureElementAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function CaptureElementAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function CaptureElementAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function CaptureElementAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function CaptureElementAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function CaptureElementAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function CaptureElementAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function CaptureElementAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function CaptureElementAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function CaptureElementAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function CaptureElementAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function CaptureElementAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function CaptureElementAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function CaptureElementAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function CaptureElementAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function CaptureElementAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function CaptureElementAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function CaptureElementAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function CaptureElementAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function CaptureElementAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function CaptureElementAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function CaptureElementAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function CaptureElementAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function CaptureElementAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function CaptureElementAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function CaptureElementAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CaptureElementAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CaptureElementAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CaptureElementAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function CaptureElementAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function CaptureElementAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function CaptureElementAutomationPeer.isDialogCore'); - } - - } - export class CheckBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IToggleButtonAutomationPeer, Provider.IToggleProvider, ICheckBoxAutomationPeer { - // constructor(owner: Controls.CheckBox); - constructor(owner: Controls.CheckBox) {} - - toggleState: ToggleState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CheckBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CheckBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CheckBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CheckBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CheckBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function CheckBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function CheckBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function CheckBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function CheckBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function CheckBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function CheckBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function CheckBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function CheckBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function CheckBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function CheckBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function CheckBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function CheckBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function CheckBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function CheckBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function CheckBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function CheckBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function CheckBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function CheckBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function CheckBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function CheckBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function CheckBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function CheckBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function CheckBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function CheckBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function CheckBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function CheckBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function CheckBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function CheckBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function CheckBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function CheckBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function CheckBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function CheckBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function CheckBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function CheckBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function CheckBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function CheckBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function CheckBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function CheckBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function CheckBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function CheckBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function CheckBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CheckBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CheckBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function CheckBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function CheckBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function CheckBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function CheckBoxAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function CheckBoxAutomationPeer.toggle'); - } - - } - export class ColorPickerSliderAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRangeBaseAutomationPeer, Provider.IRangeValueProvider, ISliderAutomationPeer, IColorPickerSliderAutomationPeer { - // constructor(owner: Controls.Primitives.ColorPickerSlider); - constructor(owner: Controls.Primitives.ColorPickerSlider) {} - - isReadOnly: Boolean; - largeChange: number; - maximum: number; - minimum: number; - smallChange: number; - value: number; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ColorPickerSliderAutomationPeer.isDialogCore'); - } - - setValue_1(value: number): void { - console.warn('shimmed function ColorPickerSliderAutomationPeer.setValue_1'); - } - - } - export class ColorSpectrumAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IColorSpectrumAutomationPeer { - // constructor(owner: Controls.Primitives.ColorSpectrum); - constructor(owner: Controls.Primitives.ColorSpectrum) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ColorSpectrumAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ColorSpectrumAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ColorSpectrumAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ColorSpectrumAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ColorSpectrumAutomationPeer.isDialogCore'); - } - - } - export class ComboBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider, IComboBoxAutomationPeer, Provider.IValueProvider, Provider.IExpandCollapseProvider, Provider.IWindowProvider { - // constructor(owner: Controls.ComboBox); - constructor(owner: Controls.ComboBox) {} - - expandCollapseState: ExpandCollapseState; - isReadOnly: Boolean; - value: string; - interactionState: WindowInteractionState; - isModal: Boolean; - isTopmost: Boolean; - maximizable: Boolean; - minimizable: Boolean; - visualState: WindowVisualState; - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ComboBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ComboBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ComboBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ComboBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ComboBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ComboBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ComboBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ComboBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ComboBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ComboBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ComboBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ComboBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ComboBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ComboBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ComboBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ComboBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ComboBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ComboBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ComboBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ComboBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ComboBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ComboBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ComboBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ComboBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ComboBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ComboBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ComboBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ComboBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ComboBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ComboBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ComboBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ComboBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ComboBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ComboBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ComboBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ComboBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ComboBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ComboBoxAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ComboBoxAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function ComboBoxAutomationPeer.getSelection'); - } - - setValue_1(value: string): void { - console.warn('shimmed function ComboBoxAutomationPeer.setValue_1'); - } - - collapse(): void { - console.warn('shimmed function ComboBoxAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function ComboBoxAutomationPeer.expand'); - } - - close(): void { - console.warn('shimmed function ComboBoxAutomationPeer.close'); - } - - setVisualState(state: WindowVisualState): void { - console.warn('shimmed function ComboBoxAutomationPeer.setVisualState'); - } - - waitForInputIdle(milliseconds: number): Boolean { - throw new Error('shimmed function ComboBoxAutomationPeer.waitForInputIdle'); - } - - } - export class ComboBoxItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IComboBoxItemAutomationPeer { - // constructor(owner: Controls.ComboBoxItem); - constructor(owner: Controls.ComboBoxItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ComboBoxItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ComboBoxItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ComboBoxItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ComboBoxItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ComboBoxItemAutomationPeer.isDialogCore'); - } - - } - export class ComboBoxItemDataAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider, ISelectorItemAutomationPeer, Provider.ISelectionItemProvider, IComboBoxItemDataAutomationPeer, Provider.IScrollItemProvider { - // constructor(item: any, parent: ComboBoxAutomationPeer); - constructor(item: any, parent: ComboBoxAutomationPeer) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ComboBoxItemDataAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.realize'); - } - - addToSelection(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.select'); - } - - scrollIntoView(): void { - console.warn('shimmed function ComboBoxItemDataAutomationPeer.scrollIntoView'); - } - - } - export class DatePickerAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IDatePickerAutomationPeer { - // constructor(owner: Controls.DatePicker); - constructor(owner: Controls.DatePicker) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DatePickerAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DatePickerAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DatePickerAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DatePickerAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function DatePickerAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function DatePickerAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function DatePickerAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function DatePickerAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function DatePickerAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function DatePickerAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function DatePickerAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function DatePickerAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function DatePickerAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function DatePickerAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function DatePickerAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function DatePickerAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function DatePickerAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function DatePickerAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function DatePickerAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function DatePickerAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function DatePickerAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function DatePickerAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function DatePickerAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function DatePickerAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function DatePickerAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function DatePickerAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function DatePickerAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function DatePickerAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function DatePickerAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function DatePickerAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function DatePickerAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function DatePickerAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function DatePickerAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function DatePickerAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function DatePickerAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function DatePickerAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function DatePickerAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function DatePickerAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function DatePickerAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function DatePickerAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function DatePickerAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function DatePickerAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function DatePickerAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function DatePickerAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function DatePickerAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function DatePickerAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function DatePickerAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function DatePickerAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function DatePickerAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function DatePickerAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePickerAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePickerAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePickerAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function DatePickerAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function DatePickerAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function DatePickerAutomationPeer.isDialogCore'); - } - - } - export class DatePickerFlyoutPresenterAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IDatePickerFlyoutPresenterAutomationPeer { - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function DatePickerFlyoutPresenterAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenterAutomationPeer.isDialogCore'); - } - - } - export class FlipViewAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider, IFlipViewAutomationPeer { - // constructor(owner: Controls.FlipView); - constructor(owner: Controls.FlipView) {} - - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlipViewAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlipViewAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlipViewAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlipViewAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlipViewAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function FlipViewAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function FlipViewAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function FlipViewAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function FlipViewAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function FlipViewAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function FlipViewAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function FlipViewAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function FlipViewAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function FlipViewAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function FlipViewAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlipViewAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlipViewAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function FlipViewAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function FlipViewAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function FlipViewAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlipViewAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function FlipViewAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function FlipViewAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function FlipViewAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function FlipViewAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function FlipViewAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function FlipViewAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function FlipViewAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlipViewAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function FlipViewAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function FlipViewAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function FlipViewAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function FlipViewAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function FlipViewAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function FlipViewAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function FlipViewAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function FlipViewAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function FlipViewAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlipViewAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlipViewAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function FlipViewAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlipViewAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function FlipViewAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function FlipViewAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function FlipViewAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function FlipViewAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function FlipViewAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function FlipViewAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function FlipViewAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function FlipViewAutomationPeer.getSelection'); - } - - } - export class FlipViewItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IFlipViewItemAutomationPeer { - // constructor(owner: Controls.FlipViewItem); - constructor(owner: Controls.FlipViewItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlipViewItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlipViewItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlipViewItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function FlipViewItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function FlipViewItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function FlipViewItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function FlipViewItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function FlipViewItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function FlipViewItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function FlipViewItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function FlipViewItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlipViewItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function FlipViewItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function FlipViewItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function FlipViewItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function FlipViewItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function FlipViewItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function FlipViewItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function FlipViewItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function FlipViewItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function FlipViewItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function FlipViewItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function FlipViewItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function FlipViewItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlipViewItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function FlipViewItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function FlipViewItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlipViewItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function FlipViewItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function FlipViewItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function FlipViewItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function FlipViewItemAutomationPeer.isDialogCore'); - } - - } - export class FlipViewItemDataAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider, ISelectorItemAutomationPeer, Provider.ISelectionItemProvider, IFlipViewItemDataAutomationPeer, Provider.IScrollItemProvider { - // constructor(item: any, parent: FlipViewAutomationPeer); - constructor(item: any, parent: FlipViewAutomationPeer) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function FlipViewItemDataAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.realize'); - } - - addToSelection(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.select'); - } - - scrollIntoView(): void { - console.warn('shimmed function FlipViewItemDataAutomationPeer.scrollIntoView'); - } - - } - export class FlyoutPresenterAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IFlyoutPresenterAutomationPeer { - // constructor(owner: Controls.FlyoutPresenter); - constructor(owner: Controls.FlyoutPresenter) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function FlyoutPresenterAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function FlyoutPresenterAutomationPeer.isDialogCore'); - } - - } - export class FrameworkElementAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer { - // constructor(owner: FrameworkElement); - constructor(owner: FrameworkElement) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FrameworkElementAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FrameworkElementAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FrameworkElementAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function FrameworkElementAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function FrameworkElementAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function FrameworkElementAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function FrameworkElementAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function FrameworkElementAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function FrameworkElementAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function FrameworkElementAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function FrameworkElementAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function FrameworkElementAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function FrameworkElementAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function FrameworkElementAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function FrameworkElementAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function FrameworkElementAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function FrameworkElementAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function FrameworkElementAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function FrameworkElementAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function FrameworkElementAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function FrameworkElementAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function FrameworkElementAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function FrameworkElementAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function FrameworkElementAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function FrameworkElementAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function FrameworkElementAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function FrameworkElementAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function FrameworkElementAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function FrameworkElementAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FrameworkElementAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FrameworkElementAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function FrameworkElementAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function FrameworkElementAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function FrameworkElementAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function FrameworkElementAutomationPeer.isDialogCore'); - } - - static fromElement(element: UIElement): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.fromElement'); - } - - static createPeerForElement(element: UIElement): AutomationPeer { - throw new Error('shimmed function FrameworkElementAutomationPeer.createPeerForElement'); - } - - } - export class GridViewAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider, IListViewBaseAutomationPeer, Provider.IDropTargetProvider, IGridViewAutomationPeer { - // constructor(owner: Controls.GridView); - constructor(owner: Controls.GridView) {} - - dropEffect: string; - dropEffects: string[]; - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function GridViewAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function GridViewAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function GridViewAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function GridViewAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function GridViewAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function GridViewAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function GridViewAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function GridViewAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function GridViewAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function GridViewAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function GridViewAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function GridViewAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function GridViewAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function GridViewAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function GridViewAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function GridViewAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function GridViewAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function GridViewAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function GridViewAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function GridViewAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function GridViewAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function GridViewAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function GridViewAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function GridViewAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function GridViewAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function GridViewAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function GridViewAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function GridViewAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function GridViewAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function GridViewAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function GridViewAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function GridViewAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function GridViewAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function GridViewAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function GridViewAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function GridViewAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function GridViewAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function GridViewAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function GridViewAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function GridViewAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function GridViewAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function GridViewAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function GridViewAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function GridViewAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function GridViewAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function GridViewAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function GridViewAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function GridViewAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function GridViewAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function GridViewAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function GridViewAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function GridViewAutomationPeer.getSelection'); - } - - } - export class GridViewHeaderItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListViewBaseHeaderItemAutomationPeer, IGridViewHeaderItemAutomationPeer { - // constructor(owner: Controls.GridViewHeaderItem); - constructor(owner: Controls.GridViewHeaderItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function GridViewHeaderItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function GridViewHeaderItemAutomationPeer.isDialogCore'); - } - - } - export class GridViewItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IGridViewItemAutomationPeer { - // constructor(owner: Controls.GridViewItem); - constructor(owner: Controls.GridViewItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function GridViewItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function GridViewItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function GridViewItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function GridViewItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function GridViewItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function GridViewItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function GridViewItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function GridViewItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function GridViewItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function GridViewItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function GridViewItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function GridViewItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function GridViewItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function GridViewItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function GridViewItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function GridViewItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function GridViewItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function GridViewItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function GridViewItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function GridViewItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function GridViewItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function GridViewItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function GridViewItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function GridViewItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function GridViewItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function GridViewItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function GridViewItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function GridViewItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function GridViewItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function GridViewItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function GridViewItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function GridViewItemAutomationPeer.isDialogCore'); - } - - } - export class GridViewItemDataAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider, ISelectorItemAutomationPeer, Provider.ISelectionItemProvider, IGridViewItemDataAutomationPeer, Provider.IScrollItemProvider { - // constructor(item: any, parent: GridViewAutomationPeer); - constructor(item: any, parent: GridViewAutomationPeer) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function GridViewItemDataAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function GridViewItemDataAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function GridViewItemDataAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function GridViewItemDataAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.realize'); - } - - addToSelection(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.select'); - } - - scrollIntoView(): void { - console.warn('shimmed function GridViewItemDataAutomationPeer.scrollIntoView'); - } - - } - export class GroupItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IGroupItemAutomationPeer { - // constructor(owner: Controls.GroupItem); - constructor(owner: Controls.GroupItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GroupItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GroupItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GroupItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GroupItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GroupItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GroupItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GroupItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function GroupItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function GroupItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function GroupItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function GroupItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function GroupItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function GroupItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function GroupItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function GroupItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function GroupItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function GroupItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function GroupItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function GroupItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GroupItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function GroupItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GroupItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GroupItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function GroupItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function GroupItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function GroupItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GroupItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function GroupItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function GroupItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function GroupItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function GroupItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function GroupItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function GroupItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function GroupItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function GroupItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function GroupItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function GroupItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function GroupItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function GroupItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function GroupItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function GroupItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function GroupItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function GroupItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function GroupItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function GroupItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function GroupItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function GroupItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function GroupItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function GroupItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function GroupItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function GroupItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function GroupItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function GroupItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GroupItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GroupItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function GroupItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function GroupItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function GroupItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function GroupItemAutomationPeer.isDialogCore'); - } - - } - export class HubAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IHubAutomationPeer { - // constructor(owner: Controls.Hub); - constructor(owner: Controls.Hub) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function HubAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function HubAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function HubAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function HubAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function HubAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function HubAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function HubAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function HubAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function HubAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function HubAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function HubAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function HubAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function HubAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function HubAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function HubAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function HubAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function HubAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function HubAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function HubAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function HubAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function HubAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function HubAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function HubAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function HubAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function HubAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function HubAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function HubAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function HubAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function HubAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function HubAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function HubAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function HubAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function HubAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function HubAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function HubAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function HubAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function HubAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function HubAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function HubAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function HubAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function HubAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function HubAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function HubAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function HubAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function HubAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function HubAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function HubAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function HubAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function HubAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function HubAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function HubAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function HubAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function HubAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function HubAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function HubAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function HubAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function HubAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function HubAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function HubAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function HubAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function HubAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function HubAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function HubAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function HubAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function HubAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function HubAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function HubAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function HubAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function HubAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function HubAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function HubAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function HubAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function HubAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function HubAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function HubAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function HubAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function HubAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function HubAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function HubAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HubAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HubAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HubAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function HubAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function HubAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function HubAutomationPeer.isDialogCore'); - } - - } - export class HubSectionAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IHubSectionAutomationPeer, Provider.IScrollItemProvider { - // constructor(owner: Controls.HubSection); - constructor(owner: Controls.HubSection) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubSectionAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function HubSectionAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function HubSectionAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubSectionAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubSectionAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function HubSectionAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function HubSectionAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function HubSectionAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function HubSectionAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function HubSectionAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function HubSectionAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function HubSectionAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function HubSectionAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function HubSectionAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function HubSectionAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function HubSectionAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function HubSectionAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function HubSectionAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function HubSectionAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function HubSectionAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function HubSectionAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function HubSectionAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function HubSectionAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function HubSectionAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function HubSectionAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function HubSectionAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function HubSectionAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function HubSectionAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function HubSectionAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function HubSectionAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function HubSectionAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function HubSectionAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function HubSectionAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function HubSectionAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function HubSectionAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function HubSectionAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function HubSectionAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function HubSectionAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function HubSectionAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function HubSectionAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function HubSectionAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function HubSectionAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function HubSectionAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function HubSectionAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function HubSectionAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function HubSectionAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function HubSectionAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function HubSectionAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function HubSectionAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function HubSectionAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function HubSectionAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function HubSectionAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function HubSectionAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HubSectionAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HubSectionAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HubSectionAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function HubSectionAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function HubSectionAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function HubSectionAutomationPeer.isDialogCore'); - } - - scrollIntoView(): void { - console.warn('shimmed function HubSectionAutomationPeer.scrollIntoView'); - } - - } - export class HyperlinkButtonAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IHyperlinkButtonAutomationPeer, Provider.IInvokeProvider { - // constructor(owner: Controls.HyperlinkButton); - constructor(owner: Controls.HyperlinkButton) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function HyperlinkButtonAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function HyperlinkButtonAutomationPeer.invoke'); - } - - } - export class ImageAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IImageAutomationPeer { - // constructor(owner: Controls.Image); - constructor(owner: Controls.Image) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ImageAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ImageAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ImageAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ImageAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ImageAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ImageAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ImageAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ImageAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ImageAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ImageAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ImageAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ImageAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ImageAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ImageAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ImageAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ImageAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ImageAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ImageAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ImageAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ImageAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ImageAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ImageAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ImageAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ImageAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ImageAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ImageAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ImageAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ImageAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ImageAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ImageAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ImageAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ImageAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ImageAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ImageAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ImageAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ImageAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ImageAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ImageAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ImageAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ImageAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ImageAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ImageAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ImageAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ImageAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ImageAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ImageAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ImageAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ImageAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ImageAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ImageAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ImageAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ImageAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ImageAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ImageAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ImageAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ImageAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ImageAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ImageAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ImageAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ImageAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ImageAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ImageAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ImageAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ImageAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ImageAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ImageAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ImageAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ImageAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ImageAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ImageAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ImageAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ImageAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ImageAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ImageAutomationPeer.isDialogCore'); - } - - } - export class InkToolbarAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IInkToolbarAutomationPeer { - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function InkToolbarAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function InkToolbarAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function InkToolbarAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function InkToolbarAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function InkToolbarAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function InkToolbarAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function InkToolbarAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function InkToolbarAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function InkToolbarAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function InkToolbarAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function InkToolbarAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function InkToolbarAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function InkToolbarAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function InkToolbarAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function InkToolbarAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function InkToolbarAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function InkToolbarAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function InkToolbarAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function InkToolbarAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function InkToolbarAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function InkToolbarAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function InkToolbarAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function InkToolbarAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function InkToolbarAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function InkToolbarAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function InkToolbarAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function InkToolbarAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function InkToolbarAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function InkToolbarAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function InkToolbarAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function InkToolbarAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function InkToolbarAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function InkToolbarAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function InkToolbarAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function InkToolbarAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function InkToolbarAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function InkToolbarAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function InkToolbarAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function InkToolbarAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function InkToolbarAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function InkToolbarAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function InkToolbarAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function InkToolbarAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function InkToolbarAutomationPeer.isDialogCore'); - } - - } - export class ItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider { - // constructor(item: any, parent: ItemsControlAutomationPeer); - constructor(item: any, parent: ItemsControlAutomationPeer) {} - - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ItemAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function ItemAutomationPeer.realize'); - } - - } - export class ItemsControlAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider { - // constructor(owner: Controls.ItemsControl); - constructor(owner: Controls.ItemsControl) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemsControlAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemsControlAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsControlAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemsControlAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemsControlAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ItemsControlAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ItemsControlAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ItemsControlAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ItemsControlAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ItemsControlAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ItemsControlAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ItemsControlAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ItemsControlAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ItemsControlAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ItemsControlAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ItemsControlAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ItemsControlAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ItemsControlAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ItemsControlAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ItemsControlAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ItemsControlAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ItemsControlAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ItemsControlAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ItemsControlAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ItemsControlAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ItemsControlAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ItemsControlAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ItemsControlAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ItemsControlAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ItemsControlAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ItemsControlAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ItemsControlAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ItemsControlAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ItemsControlAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ItemsControlAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ItemsControlAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ItemsControlAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ItemsControlAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ItemsControlAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ItemsControlAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemsControlAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemsControlAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemsControlAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ItemsControlAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ItemsControlAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ItemsControlAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ItemsControlAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ItemsControlAutomationPeer.findItemByProperty'); - } - - } - export class ListBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider, IListBoxAutomationPeer { - // constructor(owner: Controls.ListBox); - constructor(owner: Controls.ListBox) {} - - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListBoxAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ListBoxAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListBoxAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function ListBoxAutomationPeer.getSelection'); - } - - } - export class ListBoxItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListBoxItemAutomationPeer { - // constructor(owner: Controls.ListBoxItem); - constructor(owner: Controls.ListBoxItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListBoxItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListBoxItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListBoxItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListBoxItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListBoxItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListBoxItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListBoxItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListBoxItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListBoxItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListBoxItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListBoxItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListBoxItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListBoxItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListBoxItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListBoxItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListBoxItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListBoxItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListBoxItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListBoxItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListBoxItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListBoxItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListBoxItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListBoxItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListBoxItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListBoxItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListBoxItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListBoxItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListBoxItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListBoxItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListBoxItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListBoxItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListBoxItemAutomationPeer.isDialogCore'); - } - - } - export class ListBoxItemDataAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider, ISelectorItemAutomationPeer, Provider.ISelectionItemProvider, IListBoxItemDataAutomationPeer, Provider.IScrollItemProvider { - // constructor(item: any, parent: ListBoxAutomationPeer); - constructor(item: any, parent: ListBoxAutomationPeer) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListBoxItemDataAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.realize'); - } - - addToSelection(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.select'); - } - - scrollIntoView(): void { - console.warn('shimmed function ListBoxItemDataAutomationPeer.scrollIntoView'); - } - - } - export class ListPickerFlyoutPresenterAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListPickerFlyoutPresenterAutomationPeer { - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListPickerFlyoutPresenterAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenterAutomationPeer.isDialogCore'); - } - - } - export class ListViewAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider, IListViewBaseAutomationPeer, Provider.IDropTargetProvider, IListViewAutomationPeer { - // constructor(owner: Controls.ListView); - constructor(owner: Controls.ListView) {} - - dropEffect: string; - dropEffects: string[]; - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListViewAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListViewAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListViewAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListViewAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListViewAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListViewAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListViewAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListViewAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListViewAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListViewAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListViewAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListViewAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListViewAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListViewAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListViewAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListViewAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListViewAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListViewAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListViewAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListViewAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListViewAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListViewAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListViewAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListViewAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListViewAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListViewAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListViewAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListViewAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListViewAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListViewAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListViewAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListViewAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListViewAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListViewAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListViewAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListViewAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListViewAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListViewAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListViewAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListViewAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListViewAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListViewAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListViewAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListViewAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListViewAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListViewAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListViewAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListViewAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ListViewAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function ListViewAutomationPeer.getSelection'); - } - - } - export class ListViewBaseAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider, IListViewBaseAutomationPeer, Provider.IDropTargetProvider { - // constructor(owner: Controls.ListViewBase); - constructor(owner: Controls.ListViewBase) {} - - dropEffect: string; - dropEffects: string[]; - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewBaseAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewBaseAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewBaseAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListViewBaseAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListViewBaseAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListViewBaseAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListViewBaseAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListViewBaseAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListViewBaseAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListViewBaseAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListViewBaseAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListViewBaseAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListViewBaseAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListViewBaseAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListViewBaseAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewBaseAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewBaseAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListViewBaseAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListViewBaseAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListViewBaseAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListViewBaseAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListViewBaseAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListViewBaseAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewBaseAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListViewBaseAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBaseAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBaseAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBaseAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListViewBaseAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewBaseAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListViewBaseAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function ListViewBaseAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewBaseAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function ListViewBaseAutomationPeer.getSelection'); - } - - } - export class ListViewBaseHeaderItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListViewBaseHeaderItemAutomationPeer { - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListViewBaseHeaderItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItemAutomationPeer.isDialogCore'); - } - - } - export class ListViewHeaderItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListViewBaseHeaderItemAutomationPeer, IListViewHeaderItemAutomationPeer { - // constructor(owner: Controls.ListViewHeaderItem); - constructor(owner: Controls.ListViewHeaderItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListViewHeaderItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListViewHeaderItemAutomationPeer.isDialogCore'); - } - - } - export class ListViewItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListViewItemAutomationPeer { - // constructor(owner: Controls.ListViewItem); - constructor(owner: Controls.ListViewItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListViewItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListViewItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListViewItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListViewItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListViewItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListViewItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListViewItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListViewItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListViewItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListViewItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListViewItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListViewItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListViewItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListViewItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListViewItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListViewItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListViewItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListViewItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListViewItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListViewItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListViewItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListViewItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListViewItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListViewItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListViewItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListViewItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListViewItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListViewItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListViewItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListViewItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListViewItemAutomationPeer.isDialogCore'); - } - - } - export class ListViewItemDataAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider, ISelectorItemAutomationPeer, Provider.ISelectionItemProvider, IListViewItemDataAutomationPeer, Provider.IScrollItemProvider { - // constructor(item: any, parent: ListViewBaseAutomationPeer); - constructor(item: any, parent: ListViewBaseAutomationPeer) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ListViewItemDataAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ListViewItemDataAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ListViewItemDataAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ListViewItemDataAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.realize'); - } - - addToSelection(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.select'); - } - - scrollIntoView(): void { - console.warn('shimmed function ListViewItemDataAutomationPeer.scrollIntoView'); - } - - } - export class LoopingSelectorAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ILoopingSelectorAutomationPeer, Provider.ISelectionProvider, Provider.IItemContainerProvider, Provider.IExpandCollapseProvider, Provider.IScrollProvider { - expandCollapseState: ExpandCollapseState; - horizontalScrollPercent: number; - horizontalViewSize: number; - horizontallyScrollable: Boolean; - verticalScrollPercent: number; - verticalViewSize: number; - verticallyScrollable: Boolean; - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function LoopingSelectorAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function LoopingSelectorAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function LoopingSelectorAutomationPeer.isDialogCore'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function LoopingSelectorAutomationPeer.getSelection'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function LoopingSelectorAutomationPeer.findItemByProperty'); - } - - collapse(): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.expand'); - } - - scroll(horizontalAmount: ScrollAmount, verticalAmount: ScrollAmount): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.scroll'); - } - - setScrollPercent(horizontalPercent: number, verticalPercent: number): void { - console.warn('shimmed function LoopingSelectorAutomationPeer.setScrollPercent'); - } - - } - export class LoopingSelectorItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ILoopingSelectorItemAutomationPeer, Provider.IScrollItemProvider, Provider.ISelectionItemProvider { - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemAutomationPeer.isDialogCore'); - } - - scrollIntoView(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.scrollIntoView'); - } - - addToSelection(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function LoopingSelectorItemAutomationPeer.select'); - } - - } - export class LoopingSelectorItemDataAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, ILoopingSelectorItemDataAutomationPeer, Provider.IVirtualizedItemProvider { - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function LoopingSelectorItemDataAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function LoopingSelectorItemDataAutomationPeer.realize'); - } - - } - export class MapControlAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IMapControlAutomationPeer, Provider.IScrollProvider, Provider.ITransformProvider2, Provider.ITransformProvider { - horizontalScrollPercent: number; - horizontalViewSize: number; - horizontallyScrollable: Boolean; - verticalScrollPercent: number; - verticalViewSize: number; - verticallyScrollable: Boolean; - canMove: Boolean; - canResize: Boolean; - canRotate: Boolean; - canZoom: Boolean; - maxZoom: number; - minZoom: number; - zoomLevel: number; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControlAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapControlAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapControlAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControlAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControlAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapControlAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapControlAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MapControlAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MapControlAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MapControlAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MapControlAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MapControlAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MapControlAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MapControlAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MapControlAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MapControlAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MapControlAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MapControlAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MapControlAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MapControlAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MapControlAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MapControlAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MapControlAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MapControlAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MapControlAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MapControlAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MapControlAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MapControlAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MapControlAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MapControlAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MapControlAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MapControlAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MapControlAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MapControlAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MapControlAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MapControlAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MapControlAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MapControlAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MapControlAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MapControlAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MapControlAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MapControlAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MapControlAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MapControlAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MapControlAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MapControlAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MapControlAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MapControlAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MapControlAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MapControlAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MapControlAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MapControlAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MapControlAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MapControlAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MapControlAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MapControlAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MapControlAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MapControlAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MapControlAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MapControlAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MapControlAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MapControlAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MapControlAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MapControlAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MapControlAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MapControlAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MapControlAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MapControlAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MapControlAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MapControlAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MapControlAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MapControlAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MapControlAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MapControlAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MapControlAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MapControlAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MapControlAutomationPeer.isDialogCore'); - } - - scroll(horizontalAmount: ScrollAmount, verticalAmount: ScrollAmount): void { - console.warn('shimmed function MapControlAutomationPeer.scroll'); - } - - setScrollPercent(horizontalPercent: number, verticalPercent: number): void { - console.warn('shimmed function MapControlAutomationPeer.setScrollPercent'); - } - - zoom(zoom: number): void { - console.warn('shimmed function MapControlAutomationPeer.zoom'); - } - - zoomByUnit(zoomUnit: ZoomUnit): void { - console.warn('shimmed function MapControlAutomationPeer.zoomByUnit'); - } - - move(x: number, y: number): void { - console.warn('shimmed function MapControlAutomationPeer.move'); - } - - resize(width: number, height: number): void { - console.warn('shimmed function MapControlAutomationPeer.resize'); - } - - rotate(degrees: number): void { - console.warn('shimmed function MapControlAutomationPeer.rotate'); - } - - } - export class MediaElementAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IMediaElementAutomationPeer { - // constructor(owner: Controls.MediaElement); - constructor(owner: Controls.MediaElement) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaElementAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MediaElementAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MediaElementAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaElementAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaElementAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MediaElementAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MediaElementAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MediaElementAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MediaElementAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MediaElementAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MediaElementAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MediaElementAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MediaElementAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MediaElementAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MediaElementAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MediaElementAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MediaElementAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MediaElementAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MediaElementAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MediaElementAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MediaElementAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MediaElementAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MediaElementAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MediaElementAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MediaElementAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MediaElementAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MediaElementAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MediaElementAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MediaElementAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MediaElementAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MediaElementAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MediaElementAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MediaElementAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MediaElementAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MediaElementAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MediaElementAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MediaElementAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MediaElementAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MediaElementAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MediaElementAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MediaElementAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MediaElementAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MediaElementAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MediaElementAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MediaElementAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MediaElementAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MediaElementAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MediaElementAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MediaElementAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MediaElementAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MediaElementAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MediaElementAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MediaElementAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaElementAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaElementAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaElementAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MediaElementAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MediaElementAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MediaElementAutomationPeer.isDialogCore'); - } - - } - export class MediaPlayerElementAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IMediaPlayerElementAutomationPeer { - // constructor(owner: Controls.MediaPlayerElement); - constructor(owner: Controls.MediaPlayerElement) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MediaPlayerElementAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MediaPlayerElementAutomationPeer.isDialogCore'); - } - - } - export class MediaTransportControlsAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IMediaTransportControlsAutomationPeer { - // constructor(owner: Controls.MediaTransportControls); - constructor(owner: Controls.MediaTransportControls) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MediaTransportControlsAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MediaTransportControlsAutomationPeer.isDialogCore'); - } - - } - export class MenuBarAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IMenuBarAutomationPeer { - // constructor(owner: Controls.MenuBar); - constructor(owner: Controls.MenuBar) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuBarAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuBarAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuBarAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuBarAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuBarAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MenuBarAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MenuBarAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MenuBarAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MenuBarAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MenuBarAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MenuBarAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MenuBarAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MenuBarAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MenuBarAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MenuBarAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MenuBarAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuBarAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MenuBarAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuBarAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuBarAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MenuBarAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MenuBarAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MenuBarAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuBarAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MenuBarAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MenuBarAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MenuBarAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MenuBarAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MenuBarAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MenuBarAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MenuBarAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MenuBarAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuBarAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MenuBarAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MenuBarAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MenuBarAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MenuBarAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MenuBarAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MenuBarAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MenuBarAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuBarAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MenuBarAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MenuBarAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MenuBarAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuBarAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuBarAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MenuBarAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuBarAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MenuBarAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MenuBarAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBarAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBarAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBarAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MenuBarAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MenuBarAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MenuBarAutomationPeer.isDialogCore'); - } - - } - export class MenuBarItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IMenuBarItemAutomationPeer, Provider.IExpandCollapseProvider, Provider.IInvokeProvider { - // constructor(owner: Controls.MenuBarItem); - constructor(owner: Controls.MenuBarItem) {} - - expandCollapseState: ExpandCollapseState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuBarItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuBarItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuBarItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MenuBarItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MenuBarItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MenuBarItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MenuBarItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MenuBarItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MenuBarItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MenuBarItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuBarItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MenuBarItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MenuBarItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MenuBarItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MenuBarItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MenuBarItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MenuBarItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MenuBarItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MenuBarItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MenuBarItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MenuBarItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MenuBarItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MenuBarItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuBarItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MenuBarItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MenuBarItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuBarItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MenuBarItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBarItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBarItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBarItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MenuBarItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MenuBarItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MenuBarItemAutomationPeer.isDialogCore'); - } - - collapse(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.expand'); - } - - invoke(): void { - console.warn('shimmed function MenuBarItemAutomationPeer.invoke'); - } - - } - export class MenuFlyoutItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IMenuFlyoutItemAutomationPeer, Provider.IInvokeProvider { - // constructor(owner: Controls.MenuFlyoutItem); - constructor(owner: Controls.MenuFlyoutItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MenuFlyoutItemAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function MenuFlyoutItemAutomationPeer.invoke'); - } - - } - export class MenuFlyoutPresenterAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, IMenuFlyoutPresenterAutomationPeer { - // constructor(owner: Controls.MenuFlyoutPresenter); - constructor(owner: Controls.MenuFlyoutPresenter) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function MenuFlyoutPresenterAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function MenuFlyoutPresenterAutomationPeer.findItemByProperty'); - } - - } - export class NavigationViewItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListViewItemAutomationPeer, INavigationViewItemAutomationPeer { - // constructor(owner: Controls.NavigationViewItem); - constructor(owner: Controls.NavigationViewItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function NavigationViewItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function NavigationViewItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function NavigationViewItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function NavigationViewItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function NavigationViewItemAutomationPeer.isDialogCore'); - } - - } - export class PasswordBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IPasswordBoxAutomationPeer { - // constructor(owner: Controls.PasswordBox); - constructor(owner: Controls.PasswordBox) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PasswordBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PasswordBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PasswordBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function PasswordBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function PasswordBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function PasswordBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function PasswordBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function PasswordBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function PasswordBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function PasswordBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function PasswordBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function PasswordBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PasswordBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function PasswordBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function PasswordBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function PasswordBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function PasswordBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function PasswordBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function PasswordBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function PasswordBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function PasswordBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function PasswordBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function PasswordBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function PasswordBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function PasswordBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function PasswordBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function PasswordBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PasswordBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function PasswordBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function PasswordBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function PasswordBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PasswordBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function PasswordBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PasswordBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PasswordBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PasswordBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function PasswordBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function PasswordBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function PasswordBoxAutomationPeer.isDialogCore'); - } - - } - export enum PatternInterface { - invoke, - selection, - value, - rangeValue, - scroll, - scrollItem, - expandCollapse, - grid, - gridItem, - multipleView, - window, - selectionItem, - dock, - table, - tableItem, - toggle, - transform, - text, - itemContainer, - virtualizedItem, - text2, - textChild, - textRange, - annotation, - drag, - dropTarget, - objectModel, - spreadsheet, - spreadsheetItem, - styles, - transform2, - synchronizedInput, - textEdit, - customNavigation, - } - export class PersonPictureAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IPersonPictureAutomationPeer { - // constructor(owner: Controls.PersonPicture); - constructor(owner: Controls.PersonPicture) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PersonPictureAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PersonPictureAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PersonPictureAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PersonPictureAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PersonPictureAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function PersonPictureAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function PersonPictureAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function PersonPictureAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function PersonPictureAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function PersonPictureAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function PersonPictureAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function PersonPictureAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function PersonPictureAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function PersonPictureAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function PersonPictureAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function PersonPictureAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PersonPictureAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function PersonPictureAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PersonPictureAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function PersonPictureAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function PersonPictureAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PersonPictureAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function PersonPictureAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function PersonPictureAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function PersonPictureAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function PersonPictureAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function PersonPictureAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function PersonPictureAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function PersonPictureAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function PersonPictureAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function PersonPictureAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function PersonPictureAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function PersonPictureAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function PersonPictureAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function PersonPictureAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function PersonPictureAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function PersonPictureAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PersonPictureAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function PersonPictureAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function PersonPictureAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function PersonPictureAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PersonPictureAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function PersonPictureAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PersonPictureAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function PersonPictureAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function PersonPictureAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PersonPictureAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PersonPictureAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PersonPictureAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function PersonPictureAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function PersonPictureAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function PersonPictureAutomationPeer.isDialogCore'); - } - - } - export class PickerFlyoutPresenterAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IPickerFlyoutPresenterAutomationPeer { - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function PickerFlyoutPresenterAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenterAutomationPeer.isDialogCore'); - } - - } - export class PivotAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, IPivotAutomationPeer, Provider.ISelectionProvider, Provider.IScrollProvider { - // constructor(owner: Controls.Pivot); - constructor(owner: Controls.Pivot) {} - - horizontalScrollPercent: number; - horizontalViewSize: number; - horizontallyScrollable: Boolean; - verticalScrollPercent: number; - verticalViewSize: number; - verticallyScrollable: Boolean; - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PivotAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PivotAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PivotAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PivotAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function PivotAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function PivotAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function PivotAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function PivotAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function PivotAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function PivotAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function PivotAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function PivotAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function PivotAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function PivotAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function PivotAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function PivotAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function PivotAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function PivotAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function PivotAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function PivotAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function PivotAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function PivotAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function PivotAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function PivotAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PivotAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PivotAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function PivotAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function PivotAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function PivotAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PivotAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function PivotAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function PivotAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function PivotAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function PivotAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function PivotAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function PivotAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function PivotAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function PivotAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function PivotAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function PivotAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function PivotAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function PivotAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function PivotAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function PivotAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function PivotAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function PivotAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function PivotAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function PivotAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function PivotAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function PivotAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function PivotAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function PivotAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function PivotAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PivotAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PivotAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function PivotAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PivotAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function PivotAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function PivotAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function PivotAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function PivotAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function PivotAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function PivotAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function PivotAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function PivotAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function PivotAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function PivotAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function PivotAutomationPeer.getSelection'); - } - - scroll(horizontalAmount: ScrollAmount, verticalAmount: ScrollAmount): void { - console.warn('shimmed function PivotAutomationPeer.scroll'); - } - - setScrollPercent(horizontalPercent: number, verticalPercent: number): void { - console.warn('shimmed function PivotAutomationPeer.setScrollPercent'); - } - - } - export class PivotItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IPivotItemAutomationPeer { - // constructor(owner: Controls.PivotItem); - constructor(owner: Controls.PivotItem) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PivotItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PivotItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PivotItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PivotItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function PivotItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function PivotItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function PivotItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function PivotItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function PivotItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function PivotItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function PivotItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function PivotItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function PivotItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function PivotItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function PivotItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function PivotItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PivotItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function PivotItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PivotItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PivotItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function PivotItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function PivotItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function PivotItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PivotItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function PivotItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function PivotItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function PivotItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function PivotItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function PivotItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function PivotItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function PivotItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function PivotItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function PivotItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function PivotItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function PivotItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function PivotItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function PivotItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function PivotItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function PivotItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function PivotItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PivotItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function PivotItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function PivotItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function PivotItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PivotItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PivotItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function PivotItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PivotItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function PivotItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function PivotItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function PivotItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function PivotItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function PivotItemAutomationPeer.isDialogCore'); - } - - } - export class PivotItemDataAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider, IPivotItemDataAutomationPeer, Provider.IScrollItemProvider, Provider.ISelectionItemProvider { - // constructor(item: any, parent: PivotAutomationPeer); - constructor(item: any, parent: PivotAutomationPeer) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PivotItemDataAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PivotItemDataAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PivotItemDataAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function PivotItemDataAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function PivotItemDataAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function PivotItemDataAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function PivotItemDataAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function PivotItemDataAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function PivotItemDataAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function PivotItemDataAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PivotItemDataAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function PivotItemDataAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function PivotItemDataAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function PivotItemDataAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function PivotItemDataAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function PivotItemDataAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function PivotItemDataAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function PivotItemDataAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function PivotItemDataAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function PivotItemDataAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function PivotItemDataAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function PivotItemDataAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function PivotItemDataAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function PivotItemDataAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function PivotItemDataAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function PivotItemDataAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function PivotItemDataAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function PivotItemDataAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotItemDataAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotItemDataAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotItemDataAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function PivotItemDataAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function PivotItemDataAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function PivotItemDataAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.realize'); - } - - scrollIntoView(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.scrollIntoView'); - } - - addToSelection(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.select'); - } - - realize_1(): void { - console.warn('shimmed function PivotItemDataAutomationPeer.realize_1'); - } - - } - export class ProgressBarAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRangeBaseAutomationPeer, Provider.IRangeValueProvider, IProgressBarAutomationPeer { - // constructor(owner: Controls.ProgressBar); - constructor(owner: Controls.ProgressBar) {} - - isReadOnly: Boolean; - largeChange: number; - maximum: number; - minimum: number; - smallChange: number; - value: number; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ProgressBarAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ProgressBarAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBarAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ProgressBarAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ProgressBarAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ProgressBarAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ProgressBarAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ProgressBarAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ProgressBarAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ProgressBarAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ProgressBarAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ProgressBarAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ProgressBarAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ProgressBarAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ProgressBarAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ProgressBarAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ProgressBarAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ProgressBarAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ProgressBarAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ProgressBarAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ProgressBarAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ProgressBarAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ProgressBarAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ProgressBarAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ProgressBarAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ProgressBarAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ProgressBarAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ProgressBarAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ProgressBarAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ProgressBarAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ProgressBarAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ProgressBarAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ProgressBarAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ProgressBarAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ProgressBarAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ProgressBarAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ProgressBarAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ProgressBarAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ProgressBarAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ProgressBarAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ProgressBarAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ProgressBarAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ProgressBarAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ProgressBarAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ProgressBarAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ProgressBarAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressBarAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressBarAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressBarAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ProgressBarAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ProgressBarAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ProgressBarAutomationPeer.isDialogCore'); - } - - setValue_1(value: number): void { - console.warn('shimmed function ProgressBarAutomationPeer.setValue_1'); - } - - } - export class ProgressRingAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IProgressRingAutomationPeer { - // constructor(owner: Controls.ProgressRing); - constructor(owner: Controls.ProgressRing) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ProgressRingAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ProgressRingAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRingAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ProgressRingAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ProgressRingAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ProgressRingAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ProgressRingAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ProgressRingAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ProgressRingAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ProgressRingAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ProgressRingAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ProgressRingAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ProgressRingAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ProgressRingAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ProgressRingAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ProgressRingAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ProgressRingAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ProgressRingAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ProgressRingAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ProgressRingAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ProgressRingAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ProgressRingAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ProgressRingAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ProgressRingAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ProgressRingAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ProgressRingAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ProgressRingAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ProgressRingAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ProgressRingAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ProgressRingAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ProgressRingAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ProgressRingAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ProgressRingAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ProgressRingAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ProgressRingAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ProgressRingAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ProgressRingAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ProgressRingAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ProgressRingAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ProgressRingAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ProgressRingAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ProgressRingAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ProgressRingAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ProgressRingAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ProgressRingAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ProgressRingAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressRingAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressRingAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressRingAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ProgressRingAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ProgressRingAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ProgressRingAutomationPeer.isDialogCore'); - } - - } - export class RadioButtonAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IToggleButtonAutomationPeer, Provider.IToggleProvider, IRadioButtonAutomationPeer, Provider.ISelectionItemProvider { - // constructor(owner: Controls.RadioButton); - constructor(owner: Controls.RadioButton) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - toggleState: ToggleState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RadioButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RadioButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RadioButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RadioButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RadioButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function RadioButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function RadioButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function RadioButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function RadioButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function RadioButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function RadioButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function RadioButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function RadioButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function RadioButtonAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function RadioButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function RadioButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RadioButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function RadioButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RadioButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function RadioButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function RadioButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RadioButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function RadioButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function RadioButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function RadioButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function RadioButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function RadioButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function RadioButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function RadioButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function RadioButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function RadioButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function RadioButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function RadioButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function RadioButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function RadioButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function RadioButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function RadioButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RadioButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function RadioButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function RadioButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function RadioButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RadioButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function RadioButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RadioButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function RadioButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function RadioButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RadioButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RadioButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RadioButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function RadioButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function RadioButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function RadioButtonAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function RadioButtonAutomationPeer.toggle'); - } - - addToSelection(): void { - console.warn('shimmed function RadioButtonAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function RadioButtonAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function RadioButtonAutomationPeer.select'); - } - - } - export class RangeBaseAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRangeBaseAutomationPeer, Provider.IRangeValueProvider { - // constructor(owner: Controls.Primitives.RangeBase); - constructor(owner: Controls.Primitives.RangeBase) {} - - isReadOnly: Boolean; - largeChange: number; - maximum: number; - minimum: number; - smallChange: number; - value: number; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RangeBaseAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RangeBaseAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RangeBaseAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RangeBaseAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RangeBaseAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function RangeBaseAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function RangeBaseAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function RangeBaseAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function RangeBaseAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function RangeBaseAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function RangeBaseAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function RangeBaseAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function RangeBaseAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function RangeBaseAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function RangeBaseAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function RangeBaseAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RangeBaseAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function RangeBaseAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RangeBaseAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function RangeBaseAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function RangeBaseAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RangeBaseAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function RangeBaseAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function RangeBaseAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function RangeBaseAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function RangeBaseAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function RangeBaseAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function RangeBaseAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function RangeBaseAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function RangeBaseAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function RangeBaseAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function RangeBaseAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function RangeBaseAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function RangeBaseAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function RangeBaseAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function RangeBaseAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function RangeBaseAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RangeBaseAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function RangeBaseAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function RangeBaseAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function RangeBaseAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RangeBaseAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function RangeBaseAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RangeBaseAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function RangeBaseAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function RangeBaseAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RangeBaseAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RangeBaseAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RangeBaseAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function RangeBaseAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function RangeBaseAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function RangeBaseAutomationPeer.isDialogCore'); - } - - setValue_1(value: number): void { - console.warn('shimmed function RangeBaseAutomationPeer.setValue_1'); - } - - } - export class RatingControlAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRatingControlAutomationPeer { - // constructor(owner: Controls.RatingControl); - constructor(owner: Controls.RatingControl) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingControlAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RatingControlAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RatingControlAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingControlAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingControlAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RatingControlAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RatingControlAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function RatingControlAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function RatingControlAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function RatingControlAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function RatingControlAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function RatingControlAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function RatingControlAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function RatingControlAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function RatingControlAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function RatingControlAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function RatingControlAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function RatingControlAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function RatingControlAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RatingControlAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function RatingControlAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RatingControlAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RatingControlAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function RatingControlAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function RatingControlAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function RatingControlAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RatingControlAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function RatingControlAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function RatingControlAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function RatingControlAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function RatingControlAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function RatingControlAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function RatingControlAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function RatingControlAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function RatingControlAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function RatingControlAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function RatingControlAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function RatingControlAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function RatingControlAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function RatingControlAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function RatingControlAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function RatingControlAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function RatingControlAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RatingControlAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function RatingControlAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function RatingControlAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function RatingControlAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RatingControlAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RatingControlAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function RatingControlAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RatingControlAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function RatingControlAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function RatingControlAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RatingControlAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RatingControlAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RatingControlAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function RatingControlAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function RatingControlAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function RatingControlAutomationPeer.isDialogCore'); - } - - } - export interface RawElementProviderRuntimeId { - part1: number; - part2: number; - } - export class RepeatButtonAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IRepeatButtonAutomationPeer, Provider.IInvokeProvider { - // constructor(owner: Controls.Primitives.RepeatButton); - constructor(owner: Controls.Primitives.RepeatButton) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RepeatButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RepeatButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RepeatButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function RepeatButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function RepeatButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function RepeatButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function RepeatButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function RepeatButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function RepeatButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function RepeatButtonAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function RepeatButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function RepeatButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RepeatButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function RepeatButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function RepeatButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function RepeatButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function RepeatButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function RepeatButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function RepeatButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function RepeatButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function RepeatButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function RepeatButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function RepeatButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function RepeatButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function RepeatButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function RepeatButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function RepeatButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RepeatButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function RepeatButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function RepeatButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function RepeatButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RepeatButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function RepeatButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RepeatButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RepeatButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RepeatButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function RepeatButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function RepeatButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function RepeatButtonAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function RepeatButtonAutomationPeer.invoke'); - } - - } - export class RichEditBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRichEditBoxAutomationPeer { - // constructor(owner: Controls.RichEditBox); - constructor(owner: Controls.RichEditBox) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RichEditBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RichEditBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RichEditBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function RichEditBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function RichEditBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function RichEditBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function RichEditBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function RichEditBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function RichEditBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function RichEditBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function RichEditBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function RichEditBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RichEditBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function RichEditBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function RichEditBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function RichEditBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function RichEditBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function RichEditBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function RichEditBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function RichEditBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function RichEditBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function RichEditBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function RichEditBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function RichEditBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function RichEditBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function RichEditBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function RichEditBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RichEditBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function RichEditBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function RichEditBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function RichEditBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RichEditBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function RichEditBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichEditBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichEditBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichEditBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function RichEditBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function RichEditBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function RichEditBoxAutomationPeer.isDialogCore'); - } - - } - export class RichTextBlockAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRichTextBlockAutomationPeer { - // constructor(owner: Controls.RichTextBlock); - constructor(owner: Controls.RichTextBlock) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RichTextBlockAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RichTextBlockAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RichTextBlockAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function RichTextBlockAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function RichTextBlockAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function RichTextBlockAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function RichTextBlockAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function RichTextBlockAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function RichTextBlockAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function RichTextBlockAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function RichTextBlockAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RichTextBlockAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function RichTextBlockAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function RichTextBlockAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function RichTextBlockAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function RichTextBlockAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function RichTextBlockAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function RichTextBlockAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function RichTextBlockAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function RichTextBlockAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function RichTextBlockAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function RichTextBlockAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function RichTextBlockAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function RichTextBlockAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RichTextBlockAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function RichTextBlockAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function RichTextBlockAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RichTextBlockAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function RichTextBlockAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlockAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlockAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlockAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function RichTextBlockAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function RichTextBlockAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function RichTextBlockAutomationPeer.isDialogCore'); - } - - } - export class RichTextBlockOverflowAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRichTextBlockOverflowAutomationPeer { - // constructor(owner: Controls.RichTextBlockOverflow); - constructor(owner: Controls.RichTextBlockOverflow) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function RichTextBlockOverflowAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function RichTextBlockOverflowAutomationPeer.isDialogCore'); - } - - } - export class ScrollBarAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRangeBaseAutomationPeer, Provider.IRangeValueProvider, IScrollBarAutomationPeer { - // constructor(owner: Controls.Primitives.ScrollBar); - constructor(owner: Controls.Primitives.ScrollBar) {} - - isReadOnly: Boolean; - largeChange: number; - maximum: number; - minimum: number; - smallChange: number; - value: number; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ScrollBarAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ScrollBarAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollBarAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ScrollBarAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ScrollBarAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ScrollBarAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ScrollBarAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ScrollBarAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ScrollBarAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ScrollBarAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ScrollBarAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ScrollBarAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ScrollBarAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ScrollBarAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ScrollBarAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ScrollBarAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ScrollBarAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ScrollBarAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ScrollBarAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ScrollBarAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ScrollBarAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ScrollBarAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ScrollBarAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ScrollBarAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ScrollBarAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ScrollBarAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ScrollBarAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ScrollBarAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ScrollBarAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ScrollBarAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ScrollBarAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ScrollBarAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ScrollBarAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ScrollBarAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ScrollBarAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ScrollBarAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ScrollBarAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ScrollBarAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ScrollBarAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ScrollBarAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ScrollBarAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ScrollBarAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ScrollBarAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ScrollBarAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ScrollBarAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ScrollBarAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollBarAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollBarAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollBarAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ScrollBarAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ScrollBarAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ScrollBarAutomationPeer.isDialogCore'); - } - - setValue_1(value: number): void { - console.warn('shimmed function ScrollBarAutomationPeer.setValue_1'); - } - - } - export class ScrollViewerAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IScrollViewerAutomationPeer, Provider.IScrollProvider { - // constructor(owner: Controls.ScrollViewer); - constructor(owner: Controls.ScrollViewer) {} - - horizontalScrollPercent: number; - horizontalViewSize: number; - horizontallyScrollable: Boolean; - verticalScrollPercent: number; - verticalViewSize: number; - verticallyScrollable: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ScrollViewerAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ScrollViewerAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ScrollViewerAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ScrollViewerAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ScrollViewerAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ScrollViewerAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ScrollViewerAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ScrollViewerAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ScrollViewerAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ScrollViewerAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ScrollViewerAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ScrollViewerAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ScrollViewerAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ScrollViewerAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ScrollViewerAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ScrollViewerAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ScrollViewerAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ScrollViewerAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ScrollViewerAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ScrollViewerAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ScrollViewerAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ScrollViewerAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ScrollViewerAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ScrollViewerAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ScrollViewerAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ScrollViewerAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ScrollViewerAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ScrollViewerAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ScrollViewerAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ScrollViewerAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ScrollViewerAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ScrollViewerAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ScrollViewerAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollViewerAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollViewerAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollViewerAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ScrollViewerAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ScrollViewerAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ScrollViewerAutomationPeer.isDialogCore'); - } - - scroll(horizontalAmount: ScrollAmount, verticalAmount: ScrollAmount): void { - console.warn('shimmed function ScrollViewerAutomationPeer.scroll'); - } - - setScrollPercent(horizontalPercent: number, verticalPercent: number): void { - console.warn('shimmed function ScrollViewerAutomationPeer.setScrollPercent'); - } - - } - export class SearchBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ISearchBoxAutomationPeer { - // constructor(owner: Controls.SearchBox); - constructor(owner: Controls.SearchBox) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SearchBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SearchBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SearchBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SearchBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SearchBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function SearchBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function SearchBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function SearchBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function SearchBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function SearchBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function SearchBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function SearchBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function SearchBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function SearchBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function SearchBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function SearchBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SearchBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function SearchBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SearchBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function SearchBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function SearchBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SearchBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function SearchBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function SearchBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function SearchBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function SearchBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function SearchBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function SearchBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function SearchBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function SearchBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function SearchBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function SearchBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function SearchBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function SearchBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function SearchBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function SearchBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function SearchBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SearchBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function SearchBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function SearchBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function SearchBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SearchBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function SearchBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SearchBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function SearchBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function SearchBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SearchBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SearchBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SearchBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function SearchBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function SearchBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function SearchBoxAutomationPeer.isDialogCore'); - } - - } - export class SelectorAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider { - // constructor(owner: Controls.Primitives.Selector); - constructor(owner: Controls.Primitives.Selector) {} - - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SelectorAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SelectorAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SelectorAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SelectorAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function SelectorAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function SelectorAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function SelectorAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function SelectorAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function SelectorAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function SelectorAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function SelectorAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function SelectorAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function SelectorAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function SelectorAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function SelectorAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function SelectorAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function SelectorAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function SelectorAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function SelectorAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function SelectorAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function SelectorAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function SelectorAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function SelectorAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function SelectorAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SelectorAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SelectorAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function SelectorAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function SelectorAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function SelectorAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SelectorAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function SelectorAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function SelectorAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function SelectorAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function SelectorAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function SelectorAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function SelectorAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function SelectorAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function SelectorAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function SelectorAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function SelectorAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function SelectorAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function SelectorAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function SelectorAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function SelectorAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function SelectorAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function SelectorAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function SelectorAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function SelectorAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function SelectorAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function SelectorAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function SelectorAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function SelectorAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function SelectorAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SelectorAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SelectorAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function SelectorAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SelectorAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function SelectorAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function SelectorAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function SelectorAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function SelectorAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function SelectorAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SelectorAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SelectorAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SelectorAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function SelectorAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function SelectorAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function SelectorAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function SelectorAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function SelectorAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function SelectorAutomationPeer.getSelection'); - } - - } - export class SelectorItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IItemAutomationPeer, Provider.IVirtualizedItemProvider, ISelectorItemAutomationPeer, Provider.ISelectionItemProvider { - // constructor(item: any, parent: SelectorAutomationPeer); - constructor(item: any, parent: SelectorAutomationPeer) {} - - isSelected: Boolean; - selectionContainer: Provider.IRawElementProviderSimple; - item: any; - itemsControlAutomationPeer: ItemsControlAutomationPeer; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SelectorItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SelectorItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SelectorItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SelectorItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function SelectorItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function SelectorItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function SelectorItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function SelectorItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function SelectorItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function SelectorItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function SelectorItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function SelectorItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function SelectorItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function SelectorItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function SelectorItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SelectorItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function SelectorItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SelectorItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function SelectorItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function SelectorItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SelectorItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function SelectorItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function SelectorItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function SelectorItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function SelectorItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function SelectorItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function SelectorItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function SelectorItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function SelectorItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function SelectorItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function SelectorItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function SelectorItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function SelectorItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function SelectorItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function SelectorItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function SelectorItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SelectorItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function SelectorItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function SelectorItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function SelectorItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SelectorItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function SelectorItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SelectorItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function SelectorItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function SelectorItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SelectorItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SelectorItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SelectorItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function SelectorItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function SelectorItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function SelectorItemAutomationPeer.isDialogCore'); - } - - realize(): void { - console.warn('shimmed function SelectorItemAutomationPeer.realize'); - } - - addToSelection(): void { - console.warn('shimmed function SelectorItemAutomationPeer.addToSelection'); - } - - removeFromSelection(): void { - console.warn('shimmed function SelectorItemAutomationPeer.removeFromSelection'); - } - - select(): void { - console.warn('shimmed function SelectorItemAutomationPeer.select'); - } - - } - export class SemanticZoomAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ISemanticZoomAutomationPeer, Provider.IToggleProvider { - // constructor(owner: Controls.SemanticZoom); - constructor(owner: Controls.SemanticZoom) {} - - toggleState: ToggleState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SemanticZoomAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SemanticZoomAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SemanticZoomAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function SemanticZoomAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function SemanticZoomAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function SemanticZoomAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function SemanticZoomAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function SemanticZoomAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function SemanticZoomAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function SemanticZoomAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function SemanticZoomAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function SemanticZoomAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SemanticZoomAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function SemanticZoomAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function SemanticZoomAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function SemanticZoomAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function SemanticZoomAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function SemanticZoomAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function SemanticZoomAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function SemanticZoomAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function SemanticZoomAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function SemanticZoomAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function SemanticZoomAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function SemanticZoomAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function SemanticZoomAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function SemanticZoomAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function SemanticZoomAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SemanticZoomAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function SemanticZoomAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function SemanticZoomAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function SemanticZoomAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SemanticZoomAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function SemanticZoomAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SemanticZoomAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SemanticZoomAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SemanticZoomAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function SemanticZoomAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function SemanticZoomAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function SemanticZoomAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function SemanticZoomAutomationPeer.toggle'); - } - - } - export class SettingsFlyoutAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ISettingsFlyoutAutomationPeer { - // constructor(owner: Controls.SettingsFlyout); - constructor(owner: Controls.SettingsFlyout) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function SettingsFlyoutAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function SettingsFlyoutAutomationPeer.isDialogCore'); - } - - } - export class SliderAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IRangeBaseAutomationPeer, Provider.IRangeValueProvider, ISliderAutomationPeer { - // constructor(owner: Controls.Slider); - constructor(owner: Controls.Slider) {} - - isReadOnly: Boolean; - largeChange: number; - maximum: number; - minimum: number; - smallChange: number; - value: number; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SliderAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SliderAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SliderAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SliderAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SliderAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SliderAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SliderAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function SliderAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function SliderAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function SliderAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function SliderAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function SliderAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function SliderAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function SliderAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function SliderAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function SliderAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function SliderAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function SliderAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function SliderAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function SliderAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function SliderAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function SliderAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function SliderAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function SliderAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function SliderAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function SliderAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function SliderAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function SliderAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SliderAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function SliderAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SliderAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SliderAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function SliderAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function SliderAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function SliderAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SliderAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function SliderAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function SliderAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function SliderAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function SliderAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function SliderAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function SliderAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function SliderAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function SliderAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function SliderAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function SliderAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function SliderAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function SliderAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function SliderAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function SliderAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function SliderAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function SliderAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function SliderAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function SliderAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function SliderAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function SliderAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function SliderAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function SliderAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function SliderAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function SliderAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function SliderAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function SliderAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function SliderAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SliderAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function SliderAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function SliderAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function SliderAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function SliderAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function SliderAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function SliderAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function SliderAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SliderAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SliderAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SliderAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function SliderAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function SliderAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function SliderAutomationPeer.isDialogCore'); - } - - setValue_1(value: number): void { - console.warn('shimmed function SliderAutomationPeer.setValue_1'); - } - - } - export class TextBlockAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ITextBlockAutomationPeer { - // constructor(owner: Controls.TextBlock); - constructor(owner: Controls.TextBlock) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBlockAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TextBlockAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TextBlockAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBlockAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBlockAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TextBlockAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TextBlockAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function TextBlockAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function TextBlockAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function TextBlockAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function TextBlockAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function TextBlockAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function TextBlockAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function TextBlockAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function TextBlockAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function TextBlockAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function TextBlockAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function TextBlockAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function TextBlockAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TextBlockAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function TextBlockAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TextBlockAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TextBlockAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function TextBlockAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function TextBlockAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function TextBlockAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TextBlockAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function TextBlockAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function TextBlockAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function TextBlockAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function TextBlockAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function TextBlockAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function TextBlockAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function TextBlockAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function TextBlockAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function TextBlockAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function TextBlockAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function TextBlockAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function TextBlockAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function TextBlockAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function TextBlockAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function TextBlockAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function TextBlockAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TextBlockAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function TextBlockAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function TextBlockAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function TextBlockAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TextBlockAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TextBlockAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function TextBlockAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TextBlockAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function TextBlockAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function TextBlockAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBlockAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBlockAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBlockAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function TextBlockAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function TextBlockAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function TextBlockAutomationPeer.isDialogCore'); - } - - } - export class TextBoxAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ITextBoxAutomationPeer { - // constructor(owner: Controls.TextBox); - constructor(owner: Controls.TextBox) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBoxAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TextBoxAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TextBoxAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBoxAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBoxAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TextBoxAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TextBoxAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function TextBoxAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function TextBoxAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function TextBoxAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function TextBoxAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function TextBoxAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function TextBoxAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function TextBoxAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function TextBoxAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function TextBoxAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function TextBoxAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function TextBoxAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function TextBoxAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TextBoxAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function TextBoxAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TextBoxAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TextBoxAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function TextBoxAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function TextBoxAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function TextBoxAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TextBoxAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function TextBoxAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function TextBoxAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function TextBoxAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function TextBoxAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function TextBoxAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function TextBoxAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function TextBoxAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function TextBoxAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function TextBoxAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function TextBoxAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function TextBoxAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function TextBoxAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function TextBoxAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function TextBoxAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function TextBoxAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function TextBoxAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TextBoxAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function TextBoxAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function TextBoxAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function TextBoxAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TextBoxAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TextBoxAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function TextBoxAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TextBoxAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function TextBoxAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function TextBoxAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBoxAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBoxAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBoxAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function TextBoxAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function TextBoxAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function TextBoxAutomationPeer.isDialogCore'); - } - - } - export class ThumbAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IThumbAutomationPeer { - // constructor(owner: Controls.Primitives.Thumb); - constructor(owner: Controls.Primitives.Thumb) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ThumbAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ThumbAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ThumbAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ThumbAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ThumbAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ThumbAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ThumbAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ThumbAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ThumbAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ThumbAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ThumbAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ThumbAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ThumbAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ThumbAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ThumbAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ThumbAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ThumbAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ThumbAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ThumbAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ThumbAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ThumbAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ThumbAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ThumbAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ThumbAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ThumbAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ThumbAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ThumbAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ThumbAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ThumbAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ThumbAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ThumbAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ThumbAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ThumbAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ThumbAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ThumbAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ThumbAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ThumbAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ThumbAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ThumbAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ThumbAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ThumbAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ThumbAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ThumbAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ThumbAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ThumbAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ThumbAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ThumbAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ThumbAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ThumbAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ThumbAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ThumbAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ThumbAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ThumbAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ThumbAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ThumbAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ThumbAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ThumbAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ThumbAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ThumbAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ThumbAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ThumbAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ThumbAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ThumbAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ThumbAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ThumbAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ThumbAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ThumbAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ThumbAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ThumbAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ThumbAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ThumbAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ThumbAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ThumbAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ThumbAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ThumbAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ThumbAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ThumbAutomationPeer.isDialogCore'); - } - - } - export class TimePickerAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ITimePickerAutomationPeer { - // constructor(owner: Controls.TimePicker); - constructor(owner: Controls.TimePicker) {} - - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TimePickerAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TimePickerAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TimePickerAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TimePickerAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function TimePickerAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function TimePickerAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function TimePickerAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function TimePickerAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function TimePickerAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function TimePickerAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function TimePickerAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function TimePickerAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function TimePickerAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function TimePickerAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function TimePickerAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function TimePickerAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TimePickerAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function TimePickerAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TimePickerAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TimePickerAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function TimePickerAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function TimePickerAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function TimePickerAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TimePickerAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function TimePickerAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function TimePickerAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function TimePickerAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function TimePickerAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function TimePickerAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function TimePickerAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function TimePickerAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function TimePickerAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function TimePickerAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function TimePickerAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function TimePickerAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function TimePickerAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function TimePickerAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function TimePickerAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function TimePickerAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function TimePickerAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TimePickerAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function TimePickerAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function TimePickerAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function TimePickerAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TimePickerAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TimePickerAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function TimePickerAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TimePickerAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function TimePickerAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function TimePickerAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePickerAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePickerAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePickerAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function TimePickerAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function TimePickerAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function TimePickerAutomationPeer.isDialogCore'); - } - - } - export class TimePickerFlyoutPresenterAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, ITimePickerFlyoutPresenterAutomationPeer { - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function TimePickerFlyoutPresenterAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenterAutomationPeer.isDialogCore'); - } - - } - export class ToggleButtonAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IButtonBaseAutomationPeer, IToggleButtonAutomationPeer, Provider.IToggleProvider { - // constructor(owner: Controls.Primitives.ToggleButton); - constructor(owner: Controls.Primitives.ToggleButton) {} - - toggleState: ToggleState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ToggleButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ToggleButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ToggleButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ToggleButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ToggleButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ToggleButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ToggleButtonAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ToggleButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ToggleButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ToggleButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ToggleButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ToggleButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ToggleButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ToggleButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ToggleButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ToggleButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ToggleButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ToggleButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ToggleButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ToggleButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ToggleButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ToggleButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ToggleButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ToggleButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ToggleButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ToggleButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ToggleButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ToggleButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ToggleButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ToggleButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ToggleButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ToggleButtonAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function ToggleButtonAutomationPeer.toggle'); - } - - } - export class ToggleMenuFlyoutItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IToggleMenuFlyoutItemAutomationPeer, Provider.IToggleProvider { - // constructor(owner: Controls.ToggleMenuFlyoutItem); - constructor(owner: Controls.ToggleMenuFlyoutItem) {} - - toggleState: ToggleState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItemAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function ToggleMenuFlyoutItemAutomationPeer.toggle'); - } - - } - export class ToggleSwitchAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IToggleSwitchAutomationPeer, Provider.IToggleProvider { - // constructor(owner: Controls.ToggleSwitch); - constructor(owner: Controls.ToggleSwitch) {} - - toggleState: ToggleState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function ToggleSwitchAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function ToggleSwitchAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function ToggleSwitchAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ToggleSwitchAutomationPeer.isDialogCore'); - } - - toggle(): void { - console.warn('shimmed function ToggleSwitchAutomationPeer.toggle'); - } - - } - export class TreeViewItemAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IListViewItemAutomationPeer, ITreeViewItemAutomationPeer, Provider.IExpandCollapseProvider { - // constructor(owner: Controls.TreeViewItem); - constructor(owner: Controls.TreeViewItem) {} - - expandCollapseState: ExpandCollapseState; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TreeViewItemAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TreeViewItemAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TreeViewItemAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function TreeViewItemAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function TreeViewItemAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function TreeViewItemAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function TreeViewItemAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function TreeViewItemAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function TreeViewItemAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function TreeViewItemAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function TreeViewItemAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function TreeViewItemAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TreeViewItemAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function TreeViewItemAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function TreeViewItemAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function TreeViewItemAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function TreeViewItemAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function TreeViewItemAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function TreeViewItemAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function TreeViewItemAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function TreeViewItemAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function TreeViewItemAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function TreeViewItemAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function TreeViewItemAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function TreeViewItemAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function TreeViewItemAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function TreeViewItemAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TreeViewItemAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function TreeViewItemAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function TreeViewItemAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function TreeViewItemAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TreeViewItemAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function TreeViewItemAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewItemAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewItemAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewItemAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function TreeViewItemAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function TreeViewItemAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function TreeViewItemAutomationPeer.isDialogCore'); - } - - collapse(): void { - console.warn('shimmed function TreeViewItemAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function TreeViewItemAutomationPeer.expand'); - } - - } - export class TreeViewListAutomationPeer implements IDependencyObject, IDependencyObject2, IAutomationPeer, IAutomationPeer2, IAutomationPeer3, IAutomationPeer4, IAutomationPeer5, IAutomationPeer6, IAutomationPeer7, IAutomationPeer8, IAutomationPeer9, IAutomationPeerProtected, IAutomationPeerOverrides, IAutomationPeerOverrides2, IAutomationPeerOverrides3, IAutomationPeerOverrides4, IAutomationPeerOverrides5, IAutomationPeerOverrides6, IAutomationPeerOverrides8, IAutomationPeerOverrides9, IFrameworkElementAutomationPeer, IItemsControlAutomationPeer, IItemsControlAutomationPeer2, IItemsControlAutomationPeerOverrides2, Provider.IItemContainerProvider, ISelectorAutomationPeer, Provider.ISelectionProvider, ITreeViewListAutomationPeer { - // constructor(owner: Controls.TreeViewList); - constructor(owner: Controls.TreeViewList) {} - - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - owner: UIElement; - eventsSource: AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TreeViewListAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TreeViewListAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewListAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TreeViewListAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TreeViewListAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: PatternInterface): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: AutomationEvents): void { - console.warn('shimmed function TreeViewListAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function TreeViewListAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): AutomationControlType { - throw new Error('shimmed function TreeViewListAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function TreeViewListAutomationPeer.getBoundingRectangle'); - } - - getChildren(): AutomationPeer[] { - throw new Error('shimmed function TreeViewListAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function TreeViewListAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getItemType'); - } - - getLabeledBy(): AutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getName'); - } - - getOrientation(): AutomationOrientation { - throw new Error('shimmed function TreeViewListAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function TreeViewListAutomationPeer.setFocus'); - } - - getParent(): AutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function TreeViewListAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): AutomationLiveSetting { - throw new Error('shimmed function TreeViewListAutomationPeer.getLiveSetting'); - } - - navigate(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TreeViewListAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function TreeViewListAutomationPeer.showContextMenu'); - } - - getControlledPeers(): AutomationPeer[] { - throw new Error('shimmed function TreeViewListAutomationPeer.getControlledPeers'); - } - - getAnnotations(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TreeViewListAutomationPeer.getAnnotations'); - } - - setParent(peer: AutomationPeer): void { - console.warn('shimmed function TreeViewListAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function TreeViewListAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: AutomationStructureChangeType, child: AutomationPeer): void { - console.warn('shimmed function TreeViewListAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): AutomationLandmarkType { - throw new Error('shimmed function TreeViewListAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: AutomationNotificationKind, notificationProcessing: AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function TreeViewListAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): AutomationHeadingLevel { - throw new Error('shimmed function TreeViewListAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Provider.IRawElementProviderSimple): AutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: AutomationPeer): Provider.IRawElementProviderSimple { - throw new Error('shimmed function TreeViewListAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: PatternInterface): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): AutomationControlType { - throw new Error('shimmed function TreeViewListAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function TreeViewListAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): AutomationPeer[] { - throw new Error('shimmed function TreeViewListAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function TreeViewListAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): AutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getNameCore'); - } - - getOrientationCore(): AutomationOrientation { - throw new Error('shimmed function TreeViewListAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function TreeViewListAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): AutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): AutomationLiveSetting { - throw new Error('shimmed function TreeViewListAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function TreeViewListAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): AutomationPeer[] { - throw new Error('shimmed function TreeViewListAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: AutomationNavigationDirection): any { - throw new Error('shimmed function TreeViewListAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function TreeViewListAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): AutomationPeerAnnotation[] { - throw new Error('shimmed function TreeViewListAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): AutomationLandmarkType { - throw new Error('shimmed function TreeViewListAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function TreeViewListAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewListAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewListAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewListAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function TreeViewListAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): AutomationHeadingLevel { - throw new Error('shimmed function TreeViewListAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function TreeViewListAutomationPeer.isDialogCore'); - } - - createItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.createItemAutomationPeer'); - } - - onCreateItemAutomationPeer(item: any): ItemAutomationPeer { - throw new Error('shimmed function TreeViewListAutomationPeer.onCreateItemAutomationPeer'); - } - - findItemByProperty(startAfter: Provider.IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): Provider.IRawElementProviderSimple { - throw new Error('shimmed function TreeViewListAutomationPeer.findItemByProperty'); - } - - getSelection(): Provider.IRawElementProviderSimple[] { - throw new Error('shimmed function TreeViewListAutomationPeer.getSelection'); - } - - } - } - export namespace Provider { - export interface IAnnotationProvider { - annotationTypeId: number; - annotationTypeName: string; - author: string; - dateTime: string; - target: IRawElementProviderSimple; - } - export interface ICustomNavigationProvider { - navigateCustom(direction: Peers.AutomationNavigationDirection): any; - } - export interface IDockProvider { - dockPosition: DockPosition; - setDockPosition(dockPosition: DockPosition): void; - } - export interface IDragProvider { - dropEffect: string; - dropEffects: string[]; - isGrabbed: Boolean; - getGrabbedItems(): IRawElementProviderSimple[]; - } - export interface IDropTargetProvider { - dropEffect: string; - dropEffects: string[]; - } - export interface IExpandCollapseProvider { - expandCollapseState: ExpandCollapseState; - collapse(): void; - expand(): void; - } - export interface IGridItemProvider { - column: number; - columnSpan: number; - containingGrid: IRawElementProviderSimple; - row: number; - rowSpan: number; - } - export interface IGridProvider { - columnCount: number; - rowCount: number; - getItem(row: number, column: number): IRawElementProviderSimple; - } - export interface IInvokeProvider { - invoke(): void; - } - export interface IItemContainerProvider { - findItemByProperty(startAfter: IRawElementProviderSimple, automationProperty: AutomationProperty, value: any): IRawElementProviderSimple; - } - export interface IMultipleViewProvider { - currentView: number; - getSupportedViews(): number[]; - getViewName(viewId: number): string; - setCurrentView(viewId: number): void; - } - export interface IObjectModelProvider { - getUnderlyingObjectModel(): any; - } - export interface IRangeValueProvider { - isReadOnly: Boolean; - largeChange: number; - maximum: number; - minimum: number; - smallChange: number; - value: number; - setValue(value: number): void; - } - export class IRawElementProviderSimple implements IDependencyObject, IDependencyObject2, IIRawElementProviderSimple { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function IRawElementProviderSimple.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function IRawElementProviderSimple.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function IRawElementProviderSimple.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function IRawElementProviderSimple.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function IRawElementProviderSimple.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function IRawElementProviderSimple.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function IRawElementProviderSimple.unregisterPropertyChangedCallback'); - } - - } - export interface IScrollItemProvider { - scrollIntoView(): void; - } - export interface IScrollProvider { - horizontalScrollPercent: number; - horizontalViewSize: number; - horizontallyScrollable: Boolean; - verticalScrollPercent: number; - verticalViewSize: number; - verticallyScrollable: Boolean; - scroll(horizontalAmount: ScrollAmount, verticalAmount: ScrollAmount): void; - setScrollPercent(horizontalPercent: number, verticalPercent: number): void; - } - export interface ISelectionItemProvider { - isSelected: Boolean; - selectionContainer: IRawElementProviderSimple; - addToSelection(): void; - removeFromSelection(): void; - select(): void; - } - export interface ISelectionProvider { - canSelectMultiple: Boolean; - isSelectionRequired: Boolean; - getSelection(): IRawElementProviderSimple[]; - } - export interface ISpreadsheetItemProvider { - formula: string; - getAnnotationObjects(): IRawElementProviderSimple[]; - getAnnotationTypes(): AnnotationType[]; - } - export interface ISpreadsheetProvider { - getItemByName(name: string): IRawElementProviderSimple; - } - export interface IStylesProvider { - extendedProperties: string; - fillColor: Color; - fillPatternColor: Color; - fillPatternStyle: string; - shape: string; - styleId: number; - styleName: string; - } - export interface ISynchronizedInputProvider { - cancel(): void; - startListening(inputType: SynchronizedInputType): void; - } - export interface ITableItemProvider { - getColumnHeaderItems(): IRawElementProviderSimple[]; - getRowHeaderItems(): IRawElementProviderSimple[]; - } - export interface ITableProvider { - rowOrColumnMajor: RowOrColumnMajor; - getColumnHeaders(): IRawElementProviderSimple[]; - getRowHeaders(): IRawElementProviderSimple[]; - } - export interface ITextChildProvider { - textContainer: IRawElementProviderSimple; - textRange: ITextRangeProvider; - } - export interface ITextEditProvider extends ITextProvider { - getActiveComposition(): ITextRangeProvider; - getConversionTarget(): ITextRangeProvider; - } - export interface ITextProvider { - documentRange: ITextRangeProvider; - supportedTextSelection: SupportedTextSelection; - getSelection(): ITextRangeProvider[]; - getVisibleRanges(): ITextRangeProvider[]; - rangeFromChild(childElement: IRawElementProviderSimple): ITextRangeProvider; - rangeFromPoint(screenLocation: Foundation.Point): ITextRangeProvider; - } - export interface ITextProvider2 extends ITextProvider { - rangeFromAnnotation(annotationElement: IRawElementProviderSimple): ITextRangeProvider; - getCaretRange(): { returnValue: ITextRangeProvider, isActive: Boolean }; - } - export interface ITextRangeProvider { - compare(textRangeProvider: ITextRangeProvider): Boolean; - compareEndpoints(endpoint: Text.TextPatternRangeEndpoint, textRangeProvider: ITextRangeProvider, targetEndpoint: Text.TextPatternRangeEndpoint): number; - expandToEnclosingUnit(unit: Text.TextUnit): void; - findAttribute(attributeId: number, value: any, backward: Boolean): ITextRangeProvider; - findText(text: string, backward: Boolean, ignoreCase: Boolean): ITextRangeProvider; - getAttributeValue(attributeId: number): any; - getBoundingRectangles(): number[]; - getEnclosingElement(): IRawElementProviderSimple; - getText(maxLength: number): string; - move(unit: Text.TextUnit, count: number): number; - moveEndpointByUnit(endpoint: Text.TextPatternRangeEndpoint, unit: Text.TextUnit, count: number): number; - moveEndpointByRange(endpoint: Text.TextPatternRangeEndpoint, textRangeProvider: ITextRangeProvider, targetEndpoint: Text.TextPatternRangeEndpoint): void; - select(): void; - addToSelection(): void; - removeFromSelection(): void; - scrollIntoView(alignToTop: Boolean): void; - getChildren(): IRawElementProviderSimple[]; - } - export interface ITextRangeProvider2 extends ITextRangeProvider { - showContextMenu(): void; - } - export interface IToggleProvider { - toggleState: ToggleState; - toggle(): void; - } - export interface ITransformProvider { - canMove: Boolean; - canResize: Boolean; - canRotate: Boolean; - move(x: number, y: number): void; - resize(width: number, height: number): void; - rotate(degrees: number): void; - } - export interface ITransformProvider2 extends ITransformProvider { - canZoom: Boolean; - maxZoom: number; - minZoom: number; - zoomLevel: number; - zoom(zoom: number): void; - zoomByUnit(zoomUnit: ZoomUnit): void; - } - export interface IValueProvider { - isReadOnly: Boolean; - value: string; - setValue(value: string): void; - } - export interface IVirtualizedItemProvider { - realize(): void; - } - export interface IWindowProvider { - interactionState: WindowInteractionState; - isModal: Boolean; - isTopmost: Boolean; - maximizable: Boolean; - minimizable: Boolean; - visualState: WindowVisualState; - close(): void; - setVisualState(state: WindowVisualState): void; - waitForInputIdle(milliseconds: number): Boolean; - } - } - export class RangeValuePatternIdentifiers implements IRangeValuePatternIdentifiers { - static isReadOnlyProperty: AutomationProperty = null; - static largeChangeProperty: AutomationProperty = null; - static maximumProperty: AutomationProperty = null; - static minimumProperty: AutomationProperty = null; - static smallChangeProperty: AutomationProperty = null; - static valueProperty: AutomationProperty = null; - - } - export enum RowOrColumnMajor { - rowMajor, - columnMajor, - indeterminate, - } - export enum ScrollAmount { - largeDecrement, - smallDecrement, - noAmount, - largeIncrement, - smallIncrement, - } - export class ScrollPatternIdentifiers implements IScrollPatternIdentifiers { - static horizontalScrollPercentProperty: AutomationProperty = null; - static horizontalViewSizeProperty: AutomationProperty = null; - static horizontallyScrollableProperty: AutomationProperty = null; - static noScroll: number = -1; - static verticalScrollPercentProperty: AutomationProperty = null; - static verticalViewSizeProperty: AutomationProperty = null; - static verticallyScrollableProperty: AutomationProperty = null; - - } - export class SelectionItemPatternIdentifiers implements ISelectionItemPatternIdentifiers { - static isSelectedProperty: AutomationProperty = null; - static selectionContainerProperty: AutomationProperty = null; - - } - export class SelectionPatternIdentifiers implements ISelectionPatternIdentifiers { - static canSelectMultipleProperty: AutomationProperty = null; - static isSelectionRequiredProperty: AutomationProperty = null; - static selectionProperty: AutomationProperty = null; - - } - export class SpreadsheetItemPatternIdentifiers implements ISpreadsheetItemPatternIdentifiers { - static formulaProperty: AutomationProperty = null; - - } - export class StylesPatternIdentifiers implements IStylesPatternIdentifiers { - static extendedPropertiesProperty: AutomationProperty = null; - static fillColorProperty: AutomationProperty = null; - static fillPatternColorProperty: AutomationProperty = null; - static fillPatternStyleProperty: AutomationProperty = null; - static shapeProperty: AutomationProperty = null; - static styleIdProperty: AutomationProperty = null; - static styleNameProperty: AutomationProperty = null; - - } - export enum SupportedTextSelection { - none, - single, - multiple, - } - export enum SynchronizedInputType { - keyUp = 1, - keyDown, - leftMouseUp = 4, - leftMouseDown = 8, - rightMouseUp = 16, - rightMouseDown = 32, - } - export class TableItemPatternIdentifiers implements ITableItemPatternIdentifiers { - static columnHeaderItemsProperty: AutomationProperty = null; - static rowHeaderItemsProperty: AutomationProperty = null; - - } - export class TablePatternIdentifiers implements ITablePatternIdentifiers { - static columnHeadersProperty: AutomationProperty = null; - static rowHeadersProperty: AutomationProperty = null; - static rowOrColumnMajorProperty: AutomationProperty = null; - - } - export namespace Text { - export enum TextPatternRangeEndpoint { - start, - end, - } - export enum TextUnit { - character, - format, - word, - line, - paragraph, - page, - document, - } - } - export class TogglePatternIdentifiers implements ITogglePatternIdentifiers { - static toggleStateProperty: AutomationProperty = null; - - } - export enum ToggleState { - off, - on, - indeterminate, - } - export class TransformPattern2Identifiers implements ITransformPattern2Identifiers { - static canZoomProperty: AutomationProperty = null; - static maxZoomProperty: AutomationProperty = null; - static minZoomProperty: AutomationProperty = null; - static zoomLevelProperty: AutomationProperty = null; - - } - export class TransformPatternIdentifiers implements ITransformPatternIdentifiers { - static canMoveProperty: AutomationProperty = null; - static canResizeProperty: AutomationProperty = null; - static canRotateProperty: AutomationProperty = null; - - } - export class ValuePatternIdentifiers implements IValuePatternIdentifiers { - static isReadOnlyProperty: AutomationProperty = null; - static valueProperty: AutomationProperty = null; - - } - export enum WindowInteractionState { - running, - closing, - readyForUserInteraction, - blockedByModalWindow, - notResponding, - } - export class WindowPatternIdentifiers implements IWindowPatternIdentifiers { - static canMaximizeProperty: AutomationProperty = null; - static canMinimizeProperty: AutomationProperty = null; - static isModalProperty: AutomationProperty = null; - static isTopmostProperty: AutomationProperty = null; - static windowInteractionStateProperty: AutomationProperty = null; - static windowVisualStateProperty: AutomationProperty = null; - - } - export enum WindowVisualState { - normal, - maximized, - minimized, - } - export enum ZoomUnit { - noAmount, - largeDecrement, - smallDecrement, - largeIncrement, - smallIncrement, - } - } - export enum AutomationTextAttributesEnum { - animationStyleAttribute = 40000, - backgroundColorAttribute, - bulletStyleAttribute, - capStyleAttribute, - cultureAttribute, - fontNameAttribute, - fontSizeAttribute, - fontWeightAttribute, - foregroundColorAttribute, - horizontalTextAlignmentAttribute, - indentationFirstLineAttribute, - indentationLeadingAttribute, - indentationTrailingAttribute, - isHiddenAttribute, - isItalicAttribute, - isReadOnlyAttribute, - isSubscriptAttribute, - isSuperscriptAttribute, - marginBottomAttribute, - marginLeadingAttribute, - marginTopAttribute, - marginTrailingAttribute, - outlineStylesAttribute, - overlineColorAttribute, - overlineStyleAttribute, - strikethroughColorAttribute, - strikethroughStyleAttribute, - tabsAttribute, - textFlowDirectionsAttribute, - underlineColorAttribute, - underlineStyleAttribute, - annotationTypesAttribute, - annotationObjectsAttribute, - styleNameAttribute, - styleIdAttribute, - linkAttribute, - isActiveAttribute, - selectionActiveEndAttribute, - caretPositionAttribute, - caretBidiModeAttribute, - } - export class BindingFailedEventArgs implements IBindingFailedEventArgs { - message: string; - - } - export type BindingFailedEventHandler = (e: BindingFailedEventArgs) => void; - export class BringIntoViewOptions implements IBringIntoViewOptions, IBringIntoViewOptions2 { - // constructor(); - targetRect: Foundation.Rect | null; - animationDesired: Boolean = false; - verticalOffset: number = 0; - verticalAlignmentRatio: number = NaN; - horizontalOffset: number = 0; - horizontalAlignmentRatio: number = NaN; - - } - export class BringIntoViewRequestedEventArgs implements IRoutedEventArgs, IBringIntoViewRequestedEventArgs { - verticalOffset: number; - targetRect: Foundation.Rect; - targetElement: UIElement; - horizontalOffset: number; - handled: Boolean; - animationDesired: Boolean; - horizontalAlignmentRatio: number; - verticalAlignmentRatio: number; - originalSource: any; - - } - export class BrushTransition implements IBrushTransition { - // constructor(); - duration: number = 150; - - } - export class ColorPaletteResources implements IDependencyObject, IDependencyObject2, IResourceDictionary, Foundation.Collections.IMap, Foundation.Collections.IIterable>, IColorPaletteResources { - // constructor(); - listMedium: Color | null; - listLow: Color | null; - errorText: Color | null; - chromeWhite: Color | null; - chromeMediumLow: Color | null; - chromeMedium: Color | null; - chromeLow: Color | null; - chromeHigh: Color | null; - chromeGray: Color | null; - chromeDisabledLow: Color | null; - chromeDisabledHigh: Color | null; - chromeBlackMediumLow: Color | null; - chromeBlackMedium: Color | null; - chromeBlackLow: Color | null; - chromeBlackHigh: Color | null; - chromeAltLow: Color | null; - baseMediumLow: Color | null; - baseMediumHigh: Color | null; - baseMedium: Color | null; - baseLow: Color | null; - baseHigh: Color | null; - altMediumLow: Color | null; - altMediumHigh: Color | null; - altMedium: Color | null; - altLow: Color | null; - altHigh: Color | null; - accent: Color | null; - source: Foundation.Uri; - mergedDictionaries: ResourceDictionary[] = [ ]; - themeDictionaries: any[] = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPaletteResources.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorPaletteResources.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorPaletteResources.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPaletteResources.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPaletteResources.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorPaletteResources.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorPaletteResources.unregisterPropertyChangedCallback'); - } - - lookup(key: any): any { - throw new Error('shimmed function ColorPaletteResources.lookup'); - } - - hasKey(key: any): Boolean { - throw new Error('shimmed function ColorPaletteResources.hasKey'); - } - - getView(): any[] { - throw new Error('shimmed function ColorPaletteResources.getView'); - } - - insert(key: any, value: any): Boolean { - throw new Error('shimmed function ColorPaletteResources.insert'); - } - - clear(): void { - console.warn('shimmed function ColorPaletteResources.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ColorPaletteResources.first'); - } - - } - export namespace Controls { - export class AnchorRequestedEventArgs implements IAnchorRequestedEventArgs { - anchor: UIElement; - anchorCandidates: UIElement[]; - - } - export class AppBar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IAppBar, IAppBar2, IAppBar3, IAppBar4, IAppBarOverrides, IAppBarOverrides3 { - // constructor(); - isSticky: Boolean = false; - isOpen: Boolean = false; - closedDisplayMode: AppBarClosedDisplayMode = AppBarClosedDisplayMode.compact; - templateSettings: Primitives.AppBarTemplateSettings = null; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - static isOpenProperty: DependencyProperty = null; - static isStickyProperty: DependencyProperty = null; - static closedDisplayModeProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function AppBar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function AppBar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function AppBar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function AppBar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function AppBar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function AppBar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function AppBar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function AppBar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function AppBar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function AppBar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function AppBar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function AppBar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function AppBar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function AppBar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function AppBar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function AppBar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function AppBar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function AppBar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function AppBar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function AppBar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function AppBar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function AppBar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function AppBar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function AppBar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function AppBar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function AppBar.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function AppBar.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function AppBar.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function AppBar.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function AppBar.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function AppBar.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function AppBar.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function AppBar.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function AppBar.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function AppBar.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function AppBar.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function AppBar.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function AppBar.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function AppBar.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBar.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBar.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBar.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBar.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function AppBar.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function AppBar.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function AppBar.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function AppBar.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBar.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function AppBar.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function AppBar.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function AppBar.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function AppBar.onContentTemplateSelectorChanged'); - } - - onClosed(e: any): void { - console.warn('shimmed function AppBar.onClosed'); - } - - onOpened(e: any): void { - console.warn('shimmed function AppBar.onOpened'); - } - - onClosing(e: any): void { - console.warn('shimmed function AppBar.onClosing'); - } - - onOpening(e: any): void { - console.warn('shimmed function AppBar.onOpening'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBar::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBarButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, IButton, IButtonWithFlyout, IAppBarButton, IAppBarButton3, IAppBarButton4, IAppBarButton5, ICommandBarElement, ICommandBarElement2 { - // constructor(); - label: string = ''; - icon: IconElement; - labelPosition: CommandBarLabelPosition = CommandBarLabelPosition.default; - keyboardAcceleratorTextOverride: string = ''; - templateSettings: Primitives.AppBarButtonTemplateSettings; - isCompact: Boolean = false; - dynamicOverflowOrder: number = 0; - isInOverflow: Boolean = false; - static iconProperty: DependencyProperty = null; - static isCompactProperty: DependencyProperty = null; - static labelProperty: DependencyProperty = null; - static dynamicOverflowOrderProperty: DependencyProperty = null; - static isInOverflowProperty: DependencyProperty = null; - static labelPositionProperty: DependencyProperty = null; - static keyboardAcceleratorTextOverrideProperty: DependencyProperty = null; - flyout: Primitives.FlyoutBase; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function AppBarButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function AppBarButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function AppBarButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function AppBarButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function AppBarButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function AppBarButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function AppBarButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function AppBarButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function AppBarButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function AppBarButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function AppBarButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function AppBarButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function AppBarButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function AppBarButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function AppBarButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function AppBarButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function AppBarButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function AppBarButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function AppBarButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function AppBarButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function AppBarButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function AppBarButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function AppBarButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function AppBarButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function AppBarButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function AppBarButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function AppBarButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function AppBarButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function AppBarButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function AppBarButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function AppBarButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function AppBarButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function AppBarButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function AppBarButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function AppBarButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function AppBarButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function AppBarButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function AppBarButton.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBarButton::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum AppBarClosedDisplayMode { - compact, - minimal, - hidden, - } - export class AppBarElementContainer implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IAppBarElementContainer, ICommandBarElement, ICommandBarElement2 { - // constructor(); - isCompact: Boolean = false; - dynamicOverflowOrder: number = 0; - isInOverflow: Boolean = false; - static dynamicOverflowOrderProperty: DependencyProperty = null; - static isCompactProperty: DependencyProperty = null; - static isInOverflowProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarElementContainer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarElementContainer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarElementContainer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarElementContainer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarElementContainer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarElementContainer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarElementContainer.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function AppBarElementContainer.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function AppBarElementContainer.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function AppBarElementContainer.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function AppBarElementContainer.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function AppBarElementContainer.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function AppBarElementContainer.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function AppBarElementContainer.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function AppBarElementContainer.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function AppBarElementContainer.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function AppBarElementContainer.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function AppBarElementContainer.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function AppBarElementContainer.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function AppBarElementContainer.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function AppBarElementContainer.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function AppBarElementContainer.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarElementContainer.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarElementContainer.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarElementContainer.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function AppBarElementContainer.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function AppBarElementContainer.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function AppBarElementContainer.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarElementContainer.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarElementContainer.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarElementContainer.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function AppBarElementContainer.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function AppBarElementContainer.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function AppBarElementContainer.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function AppBarElementContainer.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarElementContainer.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarElementContainer.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function AppBarElementContainer.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function AppBarElementContainer.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function AppBarElementContainer.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function AppBarElementContainer.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function AppBarElementContainer.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function AppBarElementContainer.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function AppBarElementContainer.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function AppBarElementContainer.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function AppBarElementContainer.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function AppBarElementContainer.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBarElementContainer::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBarSeparator implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IAppBarSeparator, ICommandBarElement, ICommandBarElement2 { - // constructor(); - isCompact: Boolean = false; - dynamicOverflowOrder: number = 0; - isInOverflow: Boolean = false; - static isCompactProperty: DependencyProperty = null; - static dynamicOverflowOrderProperty: DependencyProperty = null; - static isInOverflowProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarSeparator.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarSeparator.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarSeparator.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarSeparator.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarSeparator.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarSeparator.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarSeparator.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function AppBarSeparator.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function AppBarSeparator.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function AppBarSeparator.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function AppBarSeparator.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function AppBarSeparator.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function AppBarSeparator.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function AppBarSeparator.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function AppBarSeparator.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function AppBarSeparator.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function AppBarSeparator.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function AppBarSeparator.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function AppBarSeparator.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function AppBarSeparator.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function AppBarSeparator.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function AppBarSeparator.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarSeparator.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarSeparator.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarSeparator.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function AppBarSeparator.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function AppBarSeparator.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function AppBarSeparator.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarSeparator.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarSeparator.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarSeparator.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarSeparator.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function AppBarSeparator.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function AppBarSeparator.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function AppBarSeparator.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function AppBarSeparator.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarSeparator.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarSeparator.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function AppBarSeparator.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function AppBarSeparator.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function AppBarSeparator.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function AppBarSeparator.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function AppBarSeparator.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function AppBarSeparator.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function AppBarSeparator.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function AppBarSeparator.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function AppBarSeparator.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function AppBarSeparator.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function AppBarSeparator.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBarSeparator::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class AppBarToggleButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IAppBarToggleButton, IAppBarToggleButton3, IAppBarToggleButton4, IAppBarToggleButton5, ICommandBarElement, ICommandBarElement2 { - // constructor(); - label: string = ''; - icon: IconElement; - labelPosition: CommandBarLabelPosition = CommandBarLabelPosition.default; - keyboardAcceleratorTextOverride: string = ''; - templateSettings: Primitives.AppBarToggleButtonTemplateSettings; - isCompact: Boolean = false; - dynamicOverflowOrder: number = 0; - isInOverflow: Boolean = false; - static iconProperty: DependencyProperty = null; - static isCompactProperty: DependencyProperty = null; - static labelProperty: DependencyProperty = null; - static dynamicOverflowOrderProperty: DependencyProperty = null; - static isInOverflowProperty: DependencyProperty = null; - static labelPositionProperty: DependencyProperty = null; - static keyboardAcceleratorTextOverrideProperty: DependencyProperty = null; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarToggleButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarToggleButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarToggleButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarToggleButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function AppBarToggleButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function AppBarToggleButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function AppBarToggleButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function AppBarToggleButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function AppBarToggleButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function AppBarToggleButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function AppBarToggleButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function AppBarToggleButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function AppBarToggleButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function AppBarToggleButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function AppBarToggleButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function AppBarToggleButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function AppBarToggleButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function AppBarToggleButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function AppBarToggleButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarToggleButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarToggleButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AppBarToggleButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function AppBarToggleButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function AppBarToggleButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function AppBarToggleButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function AppBarToggleButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarToggleButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AppBarToggleButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function AppBarToggleButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function AppBarToggleButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function AppBarToggleButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function AppBarToggleButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarToggleButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AppBarToggleButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function AppBarToggleButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function AppBarToggleButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function AppBarToggleButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function AppBarToggleButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function AppBarToggleButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function AppBarToggleButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function AppBarToggleButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function AppBarToggleButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function AppBarToggleButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function AppBarToggleButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function AppBarToggleButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AppBarToggleButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class AutoSuggestBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, IAutoSuggestBox, IAutoSuggestBox2, IAutoSuggestBox3, IAutoSuggestBox4 { - // constructor(); - updateTextOnSelect: Boolean = true; - textMemberPath: string = ''; - textBoxStyle: Style; - text: string = ''; - placeholderText: string = ''; - maxSuggestionListHeight: number = ∞; - isSuggestionListOpen: Boolean = false; - header: any; - autoMaximizeSuggestionArea: Boolean = true; - queryIcon: IconElement; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - description: any; - static autoMaximizeSuggestionAreaProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static isSuggestionListOpenProperty: DependencyProperty = null; - static maxSuggestionListHeightProperty: DependencyProperty = null; - static placeholderTextProperty: DependencyProperty = null; - static textBoxStyleProperty: DependencyProperty = null; - static textMemberPathProperty: DependencyProperty = null; - static textProperty: DependencyProperty = null; - static updateTextOnSelectProperty: DependencyProperty = null; - static queryIconProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - static descriptionProperty: DependencyProperty = null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutoSuggestBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutoSuggestBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutoSuggestBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutoSuggestBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function AutoSuggestBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function AutoSuggestBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function AutoSuggestBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function AutoSuggestBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function AutoSuggestBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function AutoSuggestBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function AutoSuggestBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function AutoSuggestBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function AutoSuggestBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function AutoSuggestBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function AutoSuggestBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function AutoSuggestBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function AutoSuggestBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function AutoSuggestBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function AutoSuggestBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AutoSuggestBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AutoSuggestBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function AutoSuggestBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function AutoSuggestBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function AutoSuggestBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function AutoSuggestBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function AutoSuggestBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AutoSuggestBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AutoSuggestBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function AutoSuggestBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function AutoSuggestBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function AutoSuggestBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function AutoSuggestBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AutoSuggestBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function AutoSuggestBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function AutoSuggestBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function AutoSuggestBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function AutoSuggestBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function AutoSuggestBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function AutoSuggestBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function AutoSuggestBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function AutoSuggestBox.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function AutoSuggestBox.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function AutoSuggestBox.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function AutoSuggestBox.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function AutoSuggestBox.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function AutoSuggestBox.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function AutoSuggestBox.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function AutoSuggestBox.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function AutoSuggestBox.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function AutoSuggestBox.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function AutoSuggestBox.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function AutoSuggestBox.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function AutoSuggestBox.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function AutoSuggestBox.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function AutoSuggestBox.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function AutoSuggestBox.containerFromIndex'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`AutoSuggestBox::addEventListener: ${name}`); - switch (name) { - case "suggestionchosen": // Foundation.TypedEventHandler - case "textchanged": // Foundation.TypedEventHandler - case "querysubmitted": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class AutoSuggestBoxQuerySubmittedEventArgs implements IDependencyObject, IDependencyObject2, IAutoSuggestBoxQuerySubmittedEventArgs { - // constructor(); - chosenSuggestion: any; - queryText: string = ''; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxQuerySubmittedEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutoSuggestBoxQuerySubmittedEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutoSuggestBoxQuerySubmittedEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxQuerySubmittedEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxQuerySubmittedEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutoSuggestBoxQuerySubmittedEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutoSuggestBoxQuerySubmittedEventArgs.unregisterPropertyChangedCallback'); - } - - } - export class AutoSuggestBoxSuggestionChosenEventArgs implements IDependencyObject, IDependencyObject2, IAutoSuggestBoxSuggestionChosenEventArgs { - // constructor(); - selectedItem: any; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxSuggestionChosenEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutoSuggestBoxSuggestionChosenEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutoSuggestBoxSuggestionChosenEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxSuggestionChosenEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxSuggestionChosenEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutoSuggestBoxSuggestionChosenEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutoSuggestBoxSuggestionChosenEventArgs.unregisterPropertyChangedCallback'); - } - - } - export class AutoSuggestBoxTextChangedEventArgs implements IDependencyObject, IDependencyObject2, IAutoSuggestBoxTextChangedEventArgs { - // constructor(); - reason: AutoSuggestionBoxTextChangeReason = AutoSuggestionBoxTextChangeReason.programmaticChange; - static reasonProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxTextChangedEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AutoSuggestBoxTextChangedEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AutoSuggestBoxTextChangedEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxTextChangedEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AutoSuggestBoxTextChangedEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AutoSuggestBoxTextChangedEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AutoSuggestBoxTextChangedEventArgs.unregisterPropertyChangedCallback'); - } - - checkCurrent(): Boolean { - throw new Error('shimmed function AutoSuggestBoxTextChangedEventArgs.checkCurrent'); - } - - } - export enum AutoSuggestionBoxTextChangeReason { - userInput, - programmaticChange, - suggestionChosen, - } - export class BackClickEventArgs implements IBackClickEventArgs { - // constructor(); - handled: Boolean = false; - - } - export type BackClickEventHandler = (e: BackClickEventArgs) => void; - export enum BackgroundSizing { - innerBorderEdge, - outerBorderEdge, - } - export class BitmapIcon implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IIconElement, IBitmapIcon, IBitmapIcon2 { - // constructor(); - uriSource: Foundation.Uri; - showAsMonochrome: Boolean = true; - static uriSourceProperty: DependencyProperty = null; - static showAsMonochromeProperty: DependencyProperty = null; - foreground: Media.Brush = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapIcon.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BitmapIcon.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BitmapIcon.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapIcon.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapIcon.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BitmapIcon.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BitmapIcon.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function BitmapIcon.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function BitmapIcon.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function BitmapIcon.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function BitmapIcon.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function BitmapIcon.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function BitmapIcon.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function BitmapIcon.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function BitmapIcon.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function BitmapIcon.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function BitmapIcon.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function BitmapIcon.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function BitmapIcon.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function BitmapIcon.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function BitmapIcon.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function BitmapIcon.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function BitmapIcon.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function BitmapIcon.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function BitmapIcon.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function BitmapIcon.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function BitmapIcon.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function BitmapIcon.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function BitmapIcon.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function BitmapIcon.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function BitmapIcon.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function BitmapIcon.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function BitmapIcon.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function BitmapIcon.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function BitmapIcon.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function BitmapIcon.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function BitmapIcon.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function BitmapIcon.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function BitmapIcon.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function BitmapIcon.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function BitmapIcon.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function BitmapIcon.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BitmapIcon::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class BitmapIconSource implements IDependencyObject, IDependencyObject2, IIconSource, IBitmapIconSource { - // constructor(); - uriSource: Foundation.Uri; - showAsMonochrome: Boolean = true; - static showAsMonochromeProperty: DependencyProperty = null; - static uriSourceProperty: DependencyProperty = null; - foreground: Media.Brush; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapIconSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BitmapIconSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BitmapIconSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapIconSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapIconSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BitmapIconSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BitmapIconSource.unregisterPropertyChangedCallback'); - } - - } - export class Border implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IBorder, IBorder2 { - // constructor(); - padding: Thickness = null; - cornerRadius: CornerRadius = null; - childTransitions: Media.Animation.TransitionCollection = [ ]; - child: UIElement; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - background: Media.Brush; - backgroundTransition: BrushTransition; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - static backgroundProperty: DependencyProperty = null; - static borderBrushProperty: DependencyProperty = null; - static borderThicknessProperty: DependencyProperty = null; - static childTransitionsProperty: DependencyProperty = null; - static cornerRadiusProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static backgroundSizingProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Border.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Border.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Border.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Border.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Border.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Border.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Border.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Border.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Border.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Border.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Border.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Border.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Border.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Border.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Border.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Border.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Border.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Border.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Border.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Border.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Border.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Border.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Border.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Border.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Border.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Border.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Border.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Border.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Border.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Border.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Border.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Border.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Border.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Border.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Border.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Border.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Border.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Border.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Border.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Border.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Border.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Border.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Border::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Button implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, IButton, IButtonWithFlyout { - // constructor(); - flyout: Primitives.FlyoutBase; - static flyoutProperty: DependencyProperty = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Button.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Button.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Button.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Button.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Button.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Button.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Button.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Button.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Button.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Button.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Button.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Button.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Button.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Button.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Button.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Button.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Button.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Button.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Button.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Button.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Button.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Button.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Button.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Button.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Button.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Button.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Button.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Button.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Button.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Button.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Button.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Button.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Button.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Button.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Button.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Button.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Button.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Button.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Button.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Button.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Button.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Button.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Button.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Button.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Button.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Button.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Button.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Button.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Button.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Button.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Button.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Button.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Button.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Button.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Button.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Button.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Button.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Button.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Button.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Button.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Button.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Button.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Button.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Button.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Button.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Button.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Button.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function Button.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function Button.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function Button.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Button::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CalendarDatePicker implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ICalendarDatePicker, ICalendarDatePicker2, ICalendarDatePicker3 { - // constructor(); - placeholderText: string = 'select a date'; - minDate: Date = new Date(-1546232127361.22); - maxDate: Date = new Date(4796651072638.78); - isTodayHighlighted: Boolean = true; - isOutOfScopeEnabled: Boolean = true; - isGroupLabelVisible: Boolean = false; - isCalendarOpen: Boolean = false; - headerTemplate: DataTemplate; - header: any; - firstDayOfWeek: Globalization.DayOfWeek = DayOfWeek.sunday; - displayMode: CalendarViewDisplayMode = CalendarViewDisplayMode.month; - dayOfWeekFormat: string = ''; - dateFormat: string = ''; - date: Date | null; - calendarViewStyle: Style; - calendarIdentifier: string = 'GregorianCalendar'; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - description: any; - static calendarIdentifierProperty: DependencyProperty = null; - static calendarViewStyleProperty: DependencyProperty = null; - static dateFormatProperty: DependencyProperty = null; - static dateProperty: DependencyProperty = null; - static dayOfWeekFormatProperty: DependencyProperty = null; - static displayModeProperty: DependencyProperty = null; - static firstDayOfWeekProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static isCalendarOpenProperty: DependencyProperty = null; - static isGroupLabelVisibleProperty: DependencyProperty = null; - static isOutOfScopeEnabledProperty: DependencyProperty = null; - static isTodayHighlightedProperty: DependencyProperty = null; - static maxDateProperty: DependencyProperty = null; - static minDateProperty: DependencyProperty = null; - static placeholderTextProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - static descriptionProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarDatePicker.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CalendarDatePicker.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CalendarDatePicker.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarDatePicker.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarDatePicker.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CalendarDatePicker.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CalendarDatePicker.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CalendarDatePicker.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CalendarDatePicker.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CalendarDatePicker.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CalendarDatePicker.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CalendarDatePicker.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CalendarDatePicker.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CalendarDatePicker.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CalendarDatePicker.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CalendarDatePicker.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CalendarDatePicker.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CalendarDatePicker.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CalendarDatePicker.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CalendarDatePicker.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CalendarDatePicker.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CalendarDatePicker.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarDatePicker.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarDatePicker.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarDatePicker.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CalendarDatePicker.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CalendarDatePicker.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CalendarDatePicker.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CalendarDatePicker.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarDatePicker.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarDatePicker.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CalendarDatePicker.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CalendarDatePicker.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CalendarDatePicker.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CalendarDatePicker.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarDatePicker.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarDatePicker.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CalendarDatePicker.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CalendarDatePicker.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function CalendarDatePicker.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function CalendarDatePicker.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function CalendarDatePicker.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function CalendarDatePicker.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function CalendarDatePicker.onCharacterReceived'); - } - - setDisplayDate(date: Date): void { - console.warn('shimmed function CalendarDatePicker.setDisplayDate'); - } - - setYearDecadeDisplayDimensions(columns: number, rows: number): void { - console.warn('shimmed function CalendarDatePicker.setYearDecadeDisplayDimensions'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CalendarDatePicker::addEventListener: ${name}`); - switch (name) { - case "calendarviewdayitemchanging": // CalendarViewDayItemChangingEventHandler - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "datechanged": // Foundation.TypedEventHandler - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CalendarDatePickerDateChangedEventArgs implements ICalendarDatePickerDateChangedEventArgs { - newDate: Date | null; - oldDate: Date | null; - - } - export class CalendarView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ICalendarView { - // constructor(); - horizontalFirstOfMonthLabelAlignment: HorizontalAlignment = HorizontalAlignment.center; - horizontalDayItemAlignment: HorizontalAlignment = HorizontalAlignment.center; - focusBorderBrush: Media.Brush; - firstOfYearDecadeLabelFontWeight: Text.FontWeight = null; - firstOfYearDecadeLabelFontStyle: Text.FontStyle = FontStyle.normal; - monthYearItemFontFamily: Media.FontFamily; - firstOfYearDecadeLabelFontFamily: Media.FontFamily; - firstOfMonthLabelFontWeight: Text.FontWeight = null; - firstOfMonthLabelFontStyle: Text.FontStyle = FontStyle.normal; - firstOfMonthLabelFontSize: number = 12; - firstOfMonthLabelFontFamily: Media.FontFamily; - firstDayOfWeek: Globalization.DayOfWeek = DayOfWeek.sunday; - blackoutForeground: Media.Brush; - dayOfWeekFormat: string = ''; - dayItemFontWeight: Text.FontWeight = null; - dayItemFontStyle: Text.FontStyle = FontStyle.normal; - dayItemFontSize: number = 20; - dayItemFontFamily: Media.FontFamily; - selectedPressedBorderBrush: Media.Brush; - calendarItemForeground: Media.Brush; - calendarItemBorderThickness: Thickness = null; - calendarItemBorderBrush: Media.Brush; - calendarItemBackground: Media.Brush; - calendarIdentifier: string = 'GregorianCalendar'; - displayMode: CalendarViewDisplayMode = CalendarViewDisplayMode.month; - hoverBorderBrush: Media.Brush; - pressedBorderBrush: Media.Brush; - verticalDayItemAlignment: VerticalAlignment = VerticalAlignment.center; - todayForeground: Media.Brush; - todayFontWeight: Text.FontWeight = null; - selectionMode: CalendarViewSelectionMode = CalendarViewSelectionMode.single; - calendarViewDayItemStyle: Style; - selectedHoverBorderBrush: Media.Brush; - selectedForeground: Media.Brush; - selectedBorderBrush: Media.Brush; - pressedForeground: Media.Brush; - verticalFirstOfMonthLabelAlignment: VerticalAlignment = VerticalAlignment.top; - outOfScopeForeground: Media.Brush; - outOfScopeBackground: Media.Brush; - numberOfWeeksInView: number = 6; - monthYearItemFontWeight: Text.FontWeight = null; - monthYearItemFontStyle: Text.FontStyle = FontStyle.normal; - monthYearItemFontSize: number = 20; - firstOfYearDecadeLabelFontSize: number = 12; - minDate: Date = new Date(-1546232127361.22); - maxDate: Date = new Date(4796651072638.78); - isTodayHighlighted: Boolean = true; - isOutOfScopeEnabled: Boolean = true; - isGroupLabelVisible: Boolean = false; - selectedDates: Date[] = [ ]; - templateSettings: Primitives.CalendarViewTemplateSettings = null; - static blackoutForegroundProperty: DependencyProperty = null; - static calendarIdentifierProperty: DependencyProperty = null; - static calendarItemBackgroundProperty: DependencyProperty = null; - static calendarItemBorderBrushProperty: DependencyProperty = null; - static calendarItemBorderThicknessProperty: DependencyProperty = null; - static calendarItemForegroundProperty: DependencyProperty = null; - static calendarViewDayItemStyleProperty: DependencyProperty = null; - static dayItemFontFamilyProperty: DependencyProperty = null; - static dayItemFontSizeProperty: DependencyProperty = null; - static dayItemFontStyleProperty: DependencyProperty = null; - static dayItemFontWeightProperty: DependencyProperty = null; - static dayOfWeekFormatProperty: DependencyProperty = null; - static displayModeProperty: DependencyProperty = null; - static firstDayOfWeekProperty: DependencyProperty = null; - static firstOfMonthLabelFontFamilyProperty: DependencyProperty = null; - static firstOfMonthLabelFontSizeProperty: DependencyProperty = null; - static firstOfMonthLabelFontStyleProperty: DependencyProperty = null; - static firstOfMonthLabelFontWeightProperty: DependencyProperty = null; - static firstOfYearDecadeLabelFontFamilyProperty: DependencyProperty = null; - static firstOfYearDecadeLabelFontSizeProperty: DependencyProperty = null; - static firstOfYearDecadeLabelFontStyleProperty: DependencyProperty = null; - static firstOfYearDecadeLabelFontWeightProperty: DependencyProperty = null; - static focusBorderBrushProperty: DependencyProperty = null; - static horizontalDayItemAlignmentProperty: DependencyProperty = null; - static horizontalFirstOfMonthLabelAlignmentProperty: DependencyProperty = null; - static hoverBorderBrushProperty: DependencyProperty = null; - static isGroupLabelVisibleProperty: DependencyProperty = null; - static isOutOfScopeEnabledProperty: DependencyProperty = null; - static isTodayHighlightedProperty: DependencyProperty = null; - static maxDateProperty: DependencyProperty = null; - static minDateProperty: DependencyProperty = null; - static monthYearItemFontFamilyProperty: DependencyProperty = null; - static monthYearItemFontSizeProperty: DependencyProperty = null; - static monthYearItemFontStyleProperty: DependencyProperty = null; - static monthYearItemFontWeightProperty: DependencyProperty = null; - static numberOfWeeksInViewProperty: DependencyProperty = null; - static outOfScopeBackgroundProperty: DependencyProperty = null; - static outOfScopeForegroundProperty: DependencyProperty = null; - static pressedBorderBrushProperty: DependencyProperty = null; - static pressedForegroundProperty: DependencyProperty = null; - static selectedBorderBrushProperty: DependencyProperty = null; - static selectedDatesProperty: DependencyProperty = null; - static selectedForegroundProperty: DependencyProperty = null; - static selectedHoverBorderBrushProperty: DependencyProperty = null; - static selectedPressedBorderBrushProperty: DependencyProperty = null; - static selectionModeProperty: DependencyProperty = null; - static templateSettingsProperty: DependencyProperty = null; - static todayFontWeightProperty: DependencyProperty = null; - static todayForegroundProperty: DependencyProperty = null; - static verticalDayItemAlignmentProperty: DependencyProperty = null; - static verticalFirstOfMonthLabelAlignmentProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CalendarView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CalendarView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CalendarView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CalendarView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CalendarView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CalendarView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CalendarView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CalendarView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CalendarView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CalendarView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CalendarView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CalendarView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CalendarView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CalendarView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CalendarView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CalendarView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CalendarView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CalendarView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CalendarView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CalendarView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CalendarView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CalendarView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CalendarView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CalendarView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CalendarView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CalendarView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CalendarView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CalendarView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CalendarView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CalendarView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CalendarView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function CalendarView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function CalendarView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function CalendarView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function CalendarView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CalendarView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CalendarView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function CalendarView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function CalendarView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function CalendarView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function CalendarView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function CalendarView.onCharacterReceived'); - } - - setDisplayDate(date: Date): void { - console.warn('shimmed function CalendarView.setDisplayDate'); - } - - setYearDecadeDisplayDimensions(columns: number, rows: number): void { - console.warn('shimmed function CalendarView.setYearDecadeDisplayDimensions'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CalendarView::addEventListener: ${name}`); - switch (name) { - case "calendarviewdayitemchanging": // Foundation.TypedEventHandler - case "selecteddateschanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CalendarViewDayItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ICalendarViewDayItem { - // constructor(); - isBlackout: Boolean = false; - date: Date = new Date(-11644473600000); - static dateProperty: DependencyProperty = null; - static isBlackoutProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarViewDayItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CalendarViewDayItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CalendarViewDayItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarViewDayItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarViewDayItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CalendarViewDayItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CalendarViewDayItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CalendarViewDayItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CalendarViewDayItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CalendarViewDayItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CalendarViewDayItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CalendarViewDayItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CalendarViewDayItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CalendarViewDayItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CalendarViewDayItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CalendarViewDayItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CalendarViewDayItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CalendarViewDayItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CalendarViewDayItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CalendarViewDayItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CalendarViewDayItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CalendarViewDayItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarViewDayItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarViewDayItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CalendarViewDayItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CalendarViewDayItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CalendarViewDayItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CalendarViewDayItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarViewDayItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarViewDayItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CalendarViewDayItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CalendarViewDayItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CalendarViewDayItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CalendarViewDayItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarViewDayItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarViewDayItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CalendarViewDayItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CalendarViewDayItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function CalendarViewDayItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function CalendarViewDayItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function CalendarViewDayItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function CalendarViewDayItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function CalendarViewDayItem.onCharacterReceived'); - } - - setDensityColors(colors: Foundation.Collections.IIterable): void { - console.warn('shimmed function CalendarViewDayItem.setDensityColors'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CalendarViewDayItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CalendarViewDayItemChangingEventArgs implements ICalendarViewDayItemChangingEventArgs { - inRecycleQueue: Boolean; - item: CalendarViewDayItem; - phase: number; - - registerUpdateCallback(callback: Foundation.TypedEventHandler): void { - console.warn('shimmed function CalendarViewDayItemChangingEventArgs.registerUpdateCallback'); - } - - registerUpdateCallback_1(callbackPhase: number, callback: Foundation.TypedEventHandler): void { - console.warn('shimmed function CalendarViewDayItemChangingEventArgs.registerUpdateCallback_1'); - } - - } - export type CalendarViewDayItemChangingEventHandler = (e: CalendarViewDayItemChangingEventArgs) => void; - export enum CalendarViewDisplayMode { - month, - year, - decade, - } - export class CalendarViewSelectedDatesChangedEventArgs implements ICalendarViewSelectedDatesChangedEventArgs { - addedDates: Date[]; - removedDates: Date[]; - - } - export enum CalendarViewSelectionMode { - none, - single, - multiple, - } - export enum CandidateWindowAlignment { - default, - bottomEdge, - } - export class CandidateWindowBoundsChangedEventArgs implements ICandidateWindowBoundsChangedEventArgs { - bounds: Foundation.Rect; - - } - export class Canvas implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, ICanvas { - // constructor(); - static leftProperty: DependencyProperty = null; - static topProperty: DependencyProperty = null; - static zindexProperty: DependencyProperty = null; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Canvas.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Canvas.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Canvas.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Canvas.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Canvas.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Canvas.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Canvas.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Canvas.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Canvas.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Canvas.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Canvas.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Canvas.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Canvas.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Canvas.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Canvas.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Canvas.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Canvas.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Canvas.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Canvas.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Canvas.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Canvas.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Canvas.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Canvas.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Canvas.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Canvas.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Canvas.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Canvas.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Canvas.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Canvas.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Canvas.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Canvas.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Canvas.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Canvas.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Canvas.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Canvas.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Canvas.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Canvas.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Canvas.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Canvas.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Canvas.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Canvas.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Canvas.goToElementStateCore'); - } - - static getLeft(element: UIElement): number { - throw new Error('shimmed function Canvas.getLeft'); - } - - static setLeft(element: UIElement, length: number): void { - console.warn('shimmed function Canvas.setLeft'); - } - - static getTop(element: UIElement): number { - throw new Error('shimmed function Canvas.getTop'); - } - - static setTop(element: UIElement, length: number): void { - console.warn('shimmed function Canvas.setTop'); - } - - static getZIndex(element: UIElement): number { - throw new Error('shimmed function Canvas.getZIndex'); - } - - static setZIndex(element: UIElement, value: number): void { - console.warn('shimmed function Canvas.setZIndex'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Canvas::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CaptureElement implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, ICaptureElement { - // constructor(); - stretch: Media.Stretch = Stretch.uniform; - source: Media.Capture.MediaCapture; - static sourceProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CaptureElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CaptureElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CaptureElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CaptureElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CaptureElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CaptureElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CaptureElement.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CaptureElement.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CaptureElement.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CaptureElement.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CaptureElement.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CaptureElement.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CaptureElement.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CaptureElement.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CaptureElement.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CaptureElement.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CaptureElement.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CaptureElement.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CaptureElement.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CaptureElement.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CaptureElement.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CaptureElement.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CaptureElement.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CaptureElement.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CaptureElement.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CaptureElement.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CaptureElement.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CaptureElement.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CaptureElement.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CaptureElement.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CaptureElement.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CaptureElement.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CaptureElement.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CaptureElement.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CaptureElement.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CaptureElement.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CaptureElement.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CaptureElement.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CaptureElement.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CaptureElement.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CaptureElement.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CaptureElement.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CaptureElement::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CharacterCasing { - normal, - lower, - upper, - } - export class CheckBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, ICheckBox { - // constructor(); - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CheckBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CheckBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CheckBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CheckBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CheckBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CheckBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CheckBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CheckBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CheckBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CheckBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CheckBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CheckBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CheckBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CheckBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CheckBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CheckBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CheckBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CheckBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CheckBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CheckBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CheckBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CheckBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CheckBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CheckBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CheckBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CheckBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CheckBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CheckBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CheckBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CheckBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CheckBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CheckBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CheckBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CheckBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CheckBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CheckBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CheckBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CheckBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CheckBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CheckBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CheckBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CheckBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function CheckBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function CheckBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function CheckBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function CheckBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CheckBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CheckBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function CheckBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function CheckBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function CheckBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function CheckBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function CheckBox.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function CheckBox.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function CheckBox.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function CheckBox.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function CheckBox.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CheckBox::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ChoosingGroupHeaderContainerEventArgs implements IChoosingGroupHeaderContainerEventArgs { - // constructor(); - groupHeaderContainer: ListViewBaseHeaderItem; - group: any; - groupIndex: number = 0; - - } - export class ChoosingItemContainerEventArgs implements IChoosingItemContainerEventArgs { - // constructor(); - itemContainer: Primitives.SelectorItem; - isContainerPrepared: Boolean = false; - item: any; - itemIndex: number = 0; - - } - export class CleanUpVirtualizedItemEventArgs implements IRoutedEventArgs, ICleanUpVirtualizedItemEventArgs { - cancel: Boolean; - uielement: UIElement; - value: any; - originalSource: any; - - } - export type CleanUpVirtualizedItemEventHandler = (e: CleanUpVirtualizedItemEventArgs) => void; - export enum ClickMode { - release, - press, - hover, - } - export class ColorChangedEventArgs implements IColorChangedEventArgs { - newColor: Color; - oldColor: Color; - - } - export class ColorPicker implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IColorPicker { - // constructor(); - previousColor: Color | null; - minValue: number = 0; - minSaturation: number = 0; - minHue: number = 0; - maxValue: number = 100; - maxSaturation: number = 100; - maxHue: number = 359; - isMoreButtonVisible: Boolean = false; - isHexInputVisible: Boolean = true; - isColorSpectrumVisible: Boolean = true; - isColorSliderVisible: Boolean = true; - isColorPreviewVisible: Boolean = true; - isColorChannelTextInputVisible: Boolean = true; - isAlphaTextInputVisible: Boolean = true; - isAlphaSliderVisible: Boolean = true; - isAlphaEnabled: Boolean = false; - colorSpectrumShape: ColorSpectrumShape = ColorSpectrumShape.box; - colorSpectrumComponents: ColorSpectrumComponents = ColorSpectrumComponents.hueSaturation; - color: Color = { a: 255, r: 255, g: 255, b: 255 }; - static colorProperty: DependencyProperty = null; - static colorSpectrumComponentsProperty: DependencyProperty = null; - static colorSpectrumShapeProperty: DependencyProperty = null; - static isAlphaEnabledProperty: DependencyProperty = null; - static isAlphaSliderVisibleProperty: DependencyProperty = null; - static isAlphaTextInputVisibleProperty: DependencyProperty = null; - static isColorChannelTextInputVisibleProperty: DependencyProperty = null; - static isColorPreviewVisibleProperty: DependencyProperty = null; - static isColorSliderVisibleProperty: DependencyProperty = null; - static isColorSpectrumVisibleProperty: DependencyProperty = null; - static isHexInputVisibleProperty: DependencyProperty = null; - static isMoreButtonVisibleProperty: DependencyProperty = null; - static maxHueProperty: DependencyProperty = null; - static maxSaturationProperty: DependencyProperty = null; - static maxValueProperty: DependencyProperty = null; - static minHueProperty: DependencyProperty = null; - static minSaturationProperty: DependencyProperty = null; - static minValueProperty: DependencyProperty = null; - static previousColorProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'C', 'o', 'l', 'o', 'r', 'P', 'i', 'c', 'k', 'e', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPicker.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorPicker.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorPicker.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPicker.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPicker.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorPicker.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorPicker.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ColorPicker.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ColorPicker.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ColorPicker.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ColorPicker.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ColorPicker.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ColorPicker.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ColorPicker.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ColorPicker.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ColorPicker.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ColorPicker.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ColorPicker.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ColorPicker.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ColorPicker.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ColorPicker.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ColorPicker.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ColorPicker.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ColorPicker.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ColorPicker.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ColorPicker.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ColorPicker.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ColorPicker.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorPicker.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ColorPicker.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ColorPicker.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ColorPicker.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ColorPicker.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ColorPicker.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ColorPicker.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ColorPicker.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ColorPicker.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ColorPicker.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ColorPicker.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ColorPicker.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ColorPicker.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ColorPicker.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ColorPicker.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ColorPicker.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ColorPicker.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ColorPicker.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ColorPicker.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ColorPicker.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ColorPicker.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ColorPicker.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ColorPicker.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ColorPicker::addEventListener: ${name}`); - switch (name) { - case "colorchanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ColorPickerHsvChannel { - hue, - saturation, - value, - alpha, - } - export enum ColorSpectrumComponents { - hueValue, - valueHue, - hueSaturation, - saturationHue, - saturationValue, - valueSaturation, - } - export enum ColorSpectrumShape { - box, - ring, - } - export class ColumnDefinition implements IDependencyObject, IDependencyObject2, IColumnDefinition { - // constructor(); - width: /* Windows.UI.Xaml.GridLength */ any = null; - minWidth: number = 0; - maxWidth: number = ∞; - actualWidth: number = 0; - static maxWidthProperty: DependencyProperty = null; - static minWidthProperty: DependencyProperty = null; - static widthProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColumnDefinition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColumnDefinition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColumnDefinition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColumnDefinition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColumnDefinition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColumnDefinition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColumnDefinition.unregisterPropertyChangedCallback'); - } - - } - export class ColumnDefinitionCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): ColumnDefinition { - throw new Error('shimmed function ColumnDefinitionCollection.getAt'); - } - - getView(): ColumnDefinition[] { - throw new Error('shimmed function ColumnDefinitionCollection.getView'); - } - - indexOf(value: ColumnDefinition): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ColumnDefinitionCollection.indexOf'); - } - - setAt(index: number, value: ColumnDefinition): void { - console.warn('shimmed function ColumnDefinitionCollection.setAt'); - } - - insertAt(index: number, value: ColumnDefinition): void { - console.warn('shimmed function ColumnDefinitionCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function ColumnDefinitionCollection.removeAt'); - } - - append(value: ColumnDefinition): void { - console.warn('shimmed function ColumnDefinitionCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function ColumnDefinitionCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function ColumnDefinitionCollection.clear'); - } - - getMany(startIndex: number, items: ColumnDefinition[]): number { - throw new Error('shimmed function ColumnDefinitionCollection.getMany'); - } - - replaceAll(items: ColumnDefinition[]): void { - console.warn('shimmed function ColumnDefinitionCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ColumnDefinitionCollection.first'); - } - - } - export class ComboBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IComboBox, IComboBox2, IComboBox3, IComboBox4, IComboBox5, IComboBox6, IComboBoxOverrides { - // constructor(); - maxDropDownHeight: number = ∞; - isEditable: Boolean = false; - isDropDownOpen: Boolean = false; - isSelectionBoxHighlighted: Boolean = false; - selectionBoxItem: any; - selectionBoxItemTemplate: DataTemplate; - templateSettings: Primitives.ComboBoxTemplateSettings = null; - placeholderText: string = ''; - headerTemplate: DataTemplate; - header: any; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - isTextSearchEnabled: Boolean = true; - selectionChangedTrigger: ComboBoxSelectionChangedTrigger = ComboBoxSelectionChangedTrigger.committed; - placeholderForeground: Media.Brush; - textBoxStyle: Style; - text: string = ''; - description: any; - static isDropDownOpenProperty: DependencyProperty = null; - static maxDropDownHeightProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static placeholderTextProperty: DependencyProperty = null; - static isTextSearchEnabledProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - static selectionChangedTriggerProperty: DependencyProperty = null; - static placeholderForegroundProperty: DependencyProperty = null; - static descriptionProperty: DependencyProperty = null; - static isEditableProperty: DependencyProperty = null; - static textBoxStyleProperty: DependencyProperty = null; - static textProperty: DependencyProperty = null; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ComboBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ComboBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ComboBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ComboBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ComboBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ComboBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ComboBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ComboBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ComboBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ComboBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ComboBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ComboBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ComboBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ComboBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ComboBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ComboBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ComboBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ComboBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ComboBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ComboBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ComboBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ComboBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ComboBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ComboBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ComboBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ComboBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ComboBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ComboBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ComboBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ComboBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ComboBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ComboBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ComboBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ComboBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ComboBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ComboBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ComboBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ComboBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ComboBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ComboBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ComboBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ComboBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ComboBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ComboBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ComboBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ComboBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ComboBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ComboBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ComboBox.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function ComboBox.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function ComboBox.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function ComboBox.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ComboBox.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ComboBox.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function ComboBox.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function ComboBox.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function ComboBox.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function ComboBox.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ComboBox.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function ComboBox.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function ComboBox.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function ComboBox.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function ComboBox.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function ComboBox.containerFromIndex'); - } - - onDropDownClosed(e: any): void { - console.warn('shimmed function ComboBox.onDropDownClosed'); - } - - onDropDownOpened(e: any): void { - console.warn('shimmed function ComboBox.onDropDownOpened'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ComboBox::addEventListener: ${name}`); - switch (name) { - case "dropdownclosed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "dropdownopened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "textsubmitted": // Foundation.TypedEventHandler - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ComboBoxItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IComboBoxItem { - // constructor(); - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ComboBoxItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ComboBoxItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ComboBoxItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ComboBoxItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ComboBoxItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ComboBoxItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ComboBoxItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ComboBoxItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ComboBoxItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ComboBoxItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ComboBoxItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ComboBoxItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ComboBoxItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ComboBoxItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ComboBoxItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ComboBoxItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ComboBoxItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ComboBoxItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ComboBoxItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ComboBoxItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ComboBoxItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ComboBoxItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ComboBoxItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ComboBoxItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ComboBoxItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ComboBoxItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ComboBoxItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ComboBoxItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ComboBoxItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ComboBoxItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ComboBoxItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ComboBoxItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ComboBoxItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ComboBoxItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ComboBoxItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ComboBoxItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ComboBoxItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ComboBoxItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ComboBoxItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ComboBoxItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ComboBoxItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ComboBoxItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ComboBoxItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ComboBoxItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ComboBoxItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ComboBoxItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ComboBoxItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ComboBoxItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ComboBoxItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ComboBoxItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ComboBoxSelectionChangedTrigger { - committed, - always, - } - export class ComboBoxTextSubmittedEventArgs implements IComboBoxTextSubmittedEventArgs { - handled: Boolean; - text: string; - - } - export class CommandBar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IAppBar, IAppBar2, IAppBar3, IAppBar4, IAppBarOverrides, IAppBarOverrides3, ICommandBar, ICommandBar2, ICommandBar3 { - // constructor(); - primaryCommands: ICommandBarElement[] = [ ]; - secondaryCommands: ICommandBarElement[] = [ ]; - commandBarOverflowPresenterStyle: Style; - commandBarTemplateSettings: Primitives.CommandBarTemplateSettings = null; - overflowButtonVisibility: CommandBarOverflowButtonVisibility = CommandBarOverflowButtonVisibility.auto; - isDynamicOverflowEnabled: Boolean = true; - defaultLabelPosition: CommandBarDefaultLabelPosition = CommandBarDefaultLabelPosition.bottom; - static primaryCommandsProperty: DependencyProperty = null; - static secondaryCommandsProperty: DependencyProperty = null; - static commandBarOverflowPresenterStyleProperty: DependencyProperty = null; - static defaultLabelPositionProperty: DependencyProperty = null; - static isDynamicOverflowEnabledProperty: DependencyProperty = null; - static overflowButtonVisibilityProperty: DependencyProperty = null; - isSticky: Boolean = false; - isOpen: Boolean = false; - closedDisplayMode: AppBarClosedDisplayMode = AppBarClosedDisplayMode.compact; - templateSettings: Primitives.AppBarTemplateSettings = null; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CommandBar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CommandBar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CommandBar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CommandBar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CommandBar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CommandBar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CommandBar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CommandBar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CommandBar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CommandBar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CommandBar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CommandBar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CommandBar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CommandBar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CommandBar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CommandBar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CommandBar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CommandBar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CommandBar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CommandBar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CommandBar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CommandBar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CommandBar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CommandBar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CommandBar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CommandBar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CommandBar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CommandBar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CommandBar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CommandBar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CommandBar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CommandBar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CommandBar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CommandBar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CommandBar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CommandBar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CommandBar.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function CommandBar.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function CommandBar.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function CommandBar.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function CommandBar.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CommandBar.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CommandBar.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function CommandBar.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function CommandBar.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function CommandBar.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function CommandBar.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function CommandBar.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function CommandBar.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function CommandBar.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function CommandBar.onContentTemplateSelectorChanged'); - } - - onClosed(e: any): void { - console.warn('shimmed function CommandBar.onClosed'); - } - - onOpened(e: any): void { - console.warn('shimmed function CommandBar.onOpened'); - } - - onClosing(e: any): void { - console.warn('shimmed function CommandBar.onClosing'); - } - - onOpening(e: any): void { - console.warn('shimmed function CommandBar.onOpening'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CommandBar::addEventListener: ${name}`); - switch (name) { - case "dynamicoverflowitemschanging": // Foundation.TypedEventHandler - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CommandBarDefaultLabelPosition { - bottom, - right, - collapsed, - } - export enum CommandBarDynamicOverflowAction { - addingToOverflow, - removingFromOverflow, - } - export class CommandBarFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, ICommandBarFlyout { - // constructor(); - primaryCommands: ICommandBarElement[] = [ ]; - secondaryCommands: ICommandBarElement[] = [ ]; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.top; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = false; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = false; - isConstrainedToRootBounds: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CommandBarFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CommandBarFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CommandBarFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CommandBarFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function CommandBarFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function CommandBarFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBarFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function CommandBarFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function CommandBarFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBarFlyout.onProcessKeyboardAccelerators'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CommandBarFlyout::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export enum CommandBarLabelPosition { - default, - collapsed, - } - export enum CommandBarOverflowButtonVisibility { - auto, - visible, - collapsed, - } - export class CommandBarOverflowPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, ICommandBarOverflowPresenter { - // constructor(); - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarOverflowPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CommandBarOverflowPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CommandBarOverflowPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarOverflowPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarOverflowPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CommandBarOverflowPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CommandBarOverflowPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CommandBarOverflowPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CommandBarOverflowPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CommandBarOverflowPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CommandBarOverflowPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CommandBarOverflowPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CommandBarOverflowPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CommandBarOverflowPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CommandBarOverflowPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CommandBarOverflowPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CommandBarOverflowPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CommandBarOverflowPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CommandBarOverflowPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CommandBarOverflowPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CommandBarOverflowPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CommandBarOverflowPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CommandBarOverflowPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CommandBarOverflowPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CommandBarOverflowPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CommandBarOverflowPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CommandBarOverflowPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CommandBarOverflowPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CommandBarOverflowPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CommandBarOverflowPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CommandBarOverflowPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CommandBarOverflowPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CommandBarOverflowPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CommandBarOverflowPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CommandBarOverflowPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CommandBarOverflowPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CommandBarOverflowPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CommandBarOverflowPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function CommandBarOverflowPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function CommandBarOverflowPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function CommandBarOverflowPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function CommandBarOverflowPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function CommandBarOverflowPresenter.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function CommandBarOverflowPresenter.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function CommandBarOverflowPresenter.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function CommandBarOverflowPresenter.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function CommandBarOverflowPresenter.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function CommandBarOverflowPresenter.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function CommandBarOverflowPresenter.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function CommandBarOverflowPresenter.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function CommandBarOverflowPresenter.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function CommandBarOverflowPresenter.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function CommandBarOverflowPresenter.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function CommandBarOverflowPresenter.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function CommandBarOverflowPresenter.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function CommandBarOverflowPresenter.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function CommandBarOverflowPresenter.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function CommandBarOverflowPresenter.containerFromIndex'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CommandBarOverflowPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContainerContentChangingEventArgs implements IContainerContentChangingEventArgs { - // constructor(); - handled: Boolean = false; - inRecycleQueue: Boolean = false; - item: any; - itemContainer: Primitives.SelectorItem; - itemIndex: number = 0; - phase: number = 0; - - registerUpdateCallback(callback: Foundation.TypedEventHandler): void { - console.warn('shimmed function ContainerContentChangingEventArgs.registerUpdateCallback'); - } - - registerUpdateCallback_1(callbackPhase: number, callback: Foundation.TypedEventHandler): void { - console.warn('shimmed function ContainerContentChangingEventArgs.registerUpdateCallback_1'); - } - - } - export class ContentControl implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides { - // constructor(); - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - static contentProperty: DependencyProperty = null; - static contentTemplateProperty: DependencyProperty = null; - static contentTemplateSelectorProperty: DependencyProperty = null; - static contentTransitionsProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContentControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContentControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContentControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContentControl.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ContentControl.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ContentControl.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ContentControl.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ContentControl.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ContentControl.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ContentControl.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ContentControl.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ContentControl.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ContentControl.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ContentControl.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ContentControl.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ContentControl.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentControl.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ContentControl.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ContentControl.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ContentControl.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ContentControl.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ContentControl.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ContentControl.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ContentControl.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ContentControl.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ContentControl.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ContentControl.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ContentControl.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ContentControl.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ContentControl.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ContentControl.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ContentControl.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ContentControl.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ContentControl.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ContentControl.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ContentControl.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ContentControl.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ContentControl.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ContentControl.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ContentControl.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ContentControl.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ContentControl.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ContentControl.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ContentControl.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ContentControl.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ContentControl.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ContentControl.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ContentControl.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ContentControl.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ContentControl.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ContentControl.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ContentControl.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ContentControl.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContentControl::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContentDialog implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IContentDialog, IContentDialog2, IContentDialog3 { - // constructor(); - titleTemplate: DataTemplate; - title: any; - secondaryButtonText: string = ''; - secondaryButtonCommandParameter: any; - secondaryButtonCommand: /* System.Windows.Input.ICommand */ any; - primaryButtonText: string = ''; - primaryButtonCommandParameter: any; - primaryButtonCommand: /* System.Windows.Input.ICommand */ any; - isSecondaryButtonEnabled: Boolean = true; - isPrimaryButtonEnabled: Boolean = true; - fullSizeDesired: Boolean = false; - secondaryButtonStyle: Style; - primaryButtonStyle: Style; - defaultButton: ContentDialogButton = ContentDialogButton.none; - closeButtonText: string = ''; - closeButtonStyle: Style; - closeButtonCommandParameter: any; - closeButtonCommand: /* System.Windows.Input.ICommand */ any; - static fullSizeDesiredProperty: DependencyProperty = null; - static isPrimaryButtonEnabledProperty: DependencyProperty = null; - static isSecondaryButtonEnabledProperty: DependencyProperty = null; - static primaryButtonCommandParameterProperty: DependencyProperty = null; - static primaryButtonCommandProperty: DependencyProperty = null; - static primaryButtonTextProperty: DependencyProperty = null; - static secondaryButtonCommandParameterProperty: DependencyProperty = null; - static secondaryButtonCommandProperty: DependencyProperty = null; - static secondaryButtonTextProperty: DependencyProperty = null; - static titleProperty: DependencyProperty = null; - static titleTemplateProperty: DependencyProperty = null; - static closeButtonCommandParameterProperty: DependencyProperty = null; - static closeButtonCommandProperty: DependencyProperty = null; - static closeButtonStyleProperty: DependencyProperty = null; - static closeButtonTextProperty: DependencyProperty = null; - static defaultButtonProperty: DependencyProperty = null; - static primaryButtonStyleProperty: DependencyProperty = null; - static secondaryButtonStyleProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentDialog.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContentDialog.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContentDialog.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentDialog.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentDialog.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContentDialog.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContentDialog.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ContentDialog.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ContentDialog.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ContentDialog.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ContentDialog.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ContentDialog.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ContentDialog.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ContentDialog.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ContentDialog.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ContentDialog.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ContentDialog.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ContentDialog.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ContentDialog.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentDialog.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ContentDialog.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ContentDialog.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ContentDialog.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ContentDialog.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ContentDialog.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ContentDialog.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ContentDialog.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ContentDialog.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ContentDialog.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ContentDialog.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ContentDialog.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ContentDialog.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ContentDialog.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ContentDialog.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ContentDialog.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ContentDialog.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ContentDialog.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ContentDialog.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ContentDialog.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ContentDialog.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ContentDialog.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ContentDialog.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ContentDialog.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ContentDialog.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ContentDialog.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ContentDialog.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ContentDialog.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ContentDialog.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ContentDialog.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ContentDialog.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ContentDialog.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ContentDialog.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ContentDialog.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ContentDialog.onContentTemplateSelectorChanged'); - } - - hide(): void { - console.warn('shimmed function ContentDialog.hide'); - } - - showAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentDialog.showAsync'); - } - - showAsync_1(placement: ContentDialogPlacement): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentDialog.showAsync_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContentDialog::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "closing": // Foundation.TypedEventHandler - case "opened": // Foundation.TypedEventHandler - case "primarybuttonclick": // Foundation.TypedEventHandler - case "secondarybuttonclick": // Foundation.TypedEventHandler - case "closebuttonclick": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ContentDialogButton { - none, - primary, - secondary, - close, - } - export class ContentDialogButtonClickDeferral implements IContentDialogButtonClickDeferral { - complete(): void { - console.warn('shimmed function ContentDialogButtonClickDeferral.complete'); - } - - } - export class ContentDialogButtonClickEventArgs implements IContentDialogButtonClickEventArgs { - cancel: Boolean; - - getDeferral(): ContentDialogButtonClickDeferral { - throw new Error('shimmed function ContentDialogButtonClickEventArgs.getDeferral'); - } - - } - export class ContentDialogClosedEventArgs implements IContentDialogClosedEventArgs { - result: ContentDialogResult; - - } - export class ContentDialogClosingDeferral implements IContentDialogClosingDeferral { - complete(): void { - console.warn('shimmed function ContentDialogClosingDeferral.complete'); - } - - } - export class ContentDialogClosingEventArgs implements IContentDialogClosingEventArgs { - cancel: Boolean; - result: ContentDialogResult; - - getDeferral(): ContentDialogClosingDeferral { - throw new Error('shimmed function ContentDialogClosingEventArgs.getDeferral'); - } - - } - export class ContentDialogOpenedEventArgs implements IContentDialogOpenedEventArgs { - } - export enum ContentDialogPlacement { - popup, - inPlace, - } - export enum ContentDialogResult { - none, - primary, - secondary, - } - export class ContentLinkChangedEventArgs implements IContentLinkChangedEventArgs { - changeKind: ContentLinkChangeKind; - contentLinkInfo: Text.ContentLinkInfo; - textRange: Documents.TextRange; - - } - export enum ContentLinkChangeKind { - inserted, - removed, - edited, - } - export class ContentPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IContentPresenter, IContentPresenter2, IContentPresenter3, IContentPresenter4, IContentPresenter5, IContentPresenterOverrides { - // constructor(); - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - characterSpacing: number = 0; - textLineBounds: TextLineBounds = TextLineBounds.full; - opticalMarginAlignment: OpticalMarginAlignment = OpticalMarginAlignment.none; - isTextScaleFactorEnabled: Boolean = true; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.stretch; - textWrapping: TextWrapping = TextWrapping.noWrap; - padding: Thickness = null; - maxLines: number = 0; - lineStackingStrategy: LineStackingStrategy = LineStackingStrategy.maxHeight; - lineHeight: number = 0; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - background: Media.Brush; - backgroundTransition: BrushTransition; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - static characterSpacingProperty: DependencyProperty = null; - static contentProperty: DependencyProperty = null; - static contentTemplateProperty: DependencyProperty = null; - static contentTemplateSelectorProperty: DependencyProperty = null; - static contentTransitionsProperty: DependencyProperty = null; - static fontFamilyProperty: DependencyProperty = null; - static fontSizeProperty: DependencyProperty = null; - static fontStretchProperty: DependencyProperty = null; - static fontStyleProperty: DependencyProperty = null; - static fontWeightProperty: DependencyProperty = null; - static foregroundProperty: DependencyProperty = null; - static opticalMarginAlignmentProperty: DependencyProperty = null; - static textLineBoundsProperty: DependencyProperty = null; - static isTextScaleFactorEnabledProperty: DependencyProperty = null; - static backgroundProperty: DependencyProperty = null; - static borderBrushProperty: DependencyProperty = null; - static borderThicknessProperty: DependencyProperty = null; - static cornerRadiusProperty: DependencyProperty = null; - static horizontalContentAlignmentProperty: DependencyProperty = null; - static lineHeightProperty: DependencyProperty = null; - static lineStackingStrategyProperty: DependencyProperty = null; - static maxLinesProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static textWrappingProperty: DependencyProperty = null; - static verticalContentAlignmentProperty: DependencyProperty = null; - static backgroundSizingProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContentPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContentPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContentPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContentPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ContentPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ContentPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ContentPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ContentPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ContentPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ContentPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ContentPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ContentPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ContentPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ContentPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ContentPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ContentPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ContentPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ContentPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ContentPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ContentPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ContentPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ContentPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ContentPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ContentPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ContentPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ContentPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ContentPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ContentPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ContentPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ContentPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ContentPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ContentPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ContentPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ContentPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ContentPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ContentPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ContentPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ContentPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ContentPresenter.goToElementStateCore'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ContentPresenter.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ContentPresenter.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContentPresenter::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContextMenuEventArgs implements IRoutedEventArgs, IContextMenuEventArgs { - handled: Boolean; - cursorLeft: number; - cursorTop: number; - originalSource: any; - - } - export type ContextMenuOpeningEventHandler = (e: ContextMenuEventArgs) => void; - export class Control implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6 { - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - static borderThicknessProperty: DependencyProperty = null; - static focusStateProperty: DependencyProperty = null; - static fontFamilyProperty: DependencyProperty = null; - static fontSizeProperty: DependencyProperty = null; - static fontStretchProperty: DependencyProperty = null; - static fontStyleProperty: DependencyProperty = null; - static fontWeightProperty: DependencyProperty = null; - static foregroundProperty: DependencyProperty = null; - static horizontalContentAlignmentProperty: DependencyProperty = null; - static isEnabledProperty: DependencyProperty = null; - static isTabStopProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static tabIndexProperty: DependencyProperty = null; - static tabNavigationProperty: DependencyProperty = null; - static templateProperty: DependencyProperty = null; - static backgroundProperty: DependencyProperty = null; - static borderBrushProperty: DependencyProperty = null; - static verticalContentAlignmentProperty: DependencyProperty = null; - static characterSpacingProperty: DependencyProperty = null; - static defaultStyleKeyProperty: DependencyProperty = null; - static isTextScaleFactorEnabledProperty: DependencyProperty = null; - static isTemplateFocusTargetProperty: DependencyProperty = null; - static useSystemFocusVisualsProperty: DependencyProperty = null; - static elementSoundModeProperty: DependencyProperty = null; - static isFocusEngagedProperty: DependencyProperty = null; - static isFocusEngagementEnabledProperty: DependencyProperty = null; - static requiresPointerProperty: DependencyProperty = null; - static xyfocusDownProperty: DependencyProperty = null; - static xyfocusLeftProperty: DependencyProperty = null; - static xyfocusRightProperty: DependencyProperty = null; - static xyfocusUpProperty: DependencyProperty = null; - static defaultStyleResourceUriProperty: DependencyProperty = null; - static isTemplateKeyTipTargetProperty: DependencyProperty = null; - static cornerRadiusProperty: DependencyProperty = null; - static backgroundSizingProperty: DependencyProperty = null; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Control.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Control.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Control.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Control.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Control.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Control.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Control.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Control.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Control.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Control.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Control.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Control.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Control.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Control.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Control.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Control.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Control.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Control.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Control.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Control.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Control.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Control.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Control.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Control.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Control.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Control.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Control.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Control.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Control.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Control.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Control.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Control.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Control.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Control.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Control.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Control.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Control.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Control.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Control.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Control.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Control.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Control.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Control.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Control.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Control.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Control.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Control.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Control.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Control.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Control.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Control.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Control.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Control.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Control.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Control.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Control.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Control.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Control.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Control.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Control.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Control.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Control.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Control.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Control.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Control.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Control.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Control.onCharacterReceived'); - } - - static getIsTemplateKeyTipTarget(element: DependencyObject): Boolean { - throw new Error('shimmed function Control.getIsTemplateKeyTipTarget'); - } - - static setIsTemplateKeyTipTarget(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Control.setIsTemplateKeyTipTarget'); - } - - static getIsTemplateFocusTarget(element: FrameworkElement): Boolean { - throw new Error('shimmed function Control.getIsTemplateFocusTarget'); - } - - static setIsTemplateFocusTarget(element: FrameworkElement, value: Boolean): void { - console.warn('shimmed function Control.setIsTemplateFocusTarget'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Control::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ControlTemplate implements IDependencyObject, IDependencyObject2, IFrameworkTemplate, IControlTemplate { - // constructor(); - targetType: /* System.Type */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ControlTemplate.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ControlTemplate.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ControlTemplate.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ControlTemplate.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ControlTemplate.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ControlTemplate.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ControlTemplate.unregisterPropertyChangedCallback'); - } - - } - export class DataTemplateSelector implements IDataTemplateSelector, IDataTemplateSelector2, IDataTemplateSelectorOverrides, IDataTemplateSelectorOverrides2, IElementFactory { - // constructor(); - selectTemplate(item: any, container: DependencyObject): DataTemplate { - throw new Error('shimmed function DataTemplateSelector.selectTemplate'); - } - - selectTemplate_1(item: any): DataTemplate { - throw new Error('shimmed function DataTemplateSelector.selectTemplate_1'); - } - - selectTemplateCore(item: any, container: DependencyObject): DataTemplate { - throw new Error('shimmed function DataTemplateSelector.selectTemplateCore'); - } - - selectTemplateCore_1(item: any): DataTemplate { - throw new Error('shimmed function DataTemplateSelector.selectTemplateCore_1'); - } - - getElement(args: ElementFactoryGetArgs): UIElement { - throw new Error('shimmed function DataTemplateSelector.getElement'); - } - - recycleElement(args: ElementFactoryRecycleArgs): void { - console.warn('shimmed function DataTemplateSelector.recycleElement'); - } - - } - export class DatePickedEventArgs implements IDependencyObject, IDependencyObject2, IDatePickedEventArgs { - // constructor(); - newDate: Date = new Date(-11644473600000); - oldDate: Date = new Date(-11644473600000); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickedEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DatePickedEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DatePickedEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickedEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickedEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DatePickedEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DatePickedEventArgs.unregisterPropertyChangedCallback'); - } - - } - export class DatePicker implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IDatePicker, IDatePicker2, IDatePicker3 { - // constructor(); - yearVisible: Boolean = true; - yearFormat: string = 'year.full'; - orientation: Orientation = Orientation.horizontal; - monthVisible: Boolean = true; - monthFormat: string = '{month.full}'; - minYear: Date = new Date(-1538974526087.24); - maxYear: Date = new Date(4772459073912.8); - headerTemplate: DataTemplate; - header: any; - dayVisible: Boolean = true; - dayFormat: string = 'day'; - date: Date = new Date(-11644473600000); - calendarIdentifier: string = 'GregorianCalendar'; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - selectedDate: Date | null; - static calendarIdentifierProperty: DependencyProperty = null; - static dateProperty: DependencyProperty = null; - static dayFormatProperty: DependencyProperty = null; - static dayVisibleProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static maxYearProperty: DependencyProperty = null; - static minYearProperty: DependencyProperty = null; - static monthFormatProperty: DependencyProperty = null; - static monthVisibleProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static yearFormatProperty: DependencyProperty = null; - static yearVisibleProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - static selectedDateProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePicker.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DatePicker.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DatePicker.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePicker.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePicker.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DatePicker.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DatePicker.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function DatePicker.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function DatePicker.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function DatePicker.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function DatePicker.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function DatePicker.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function DatePicker.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function DatePicker.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function DatePicker.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function DatePicker.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function DatePicker.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function DatePicker.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function DatePicker.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function DatePicker.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function DatePicker.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function DatePicker.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DatePicker.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function DatePicker.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function DatePicker.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DatePicker.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function DatePicker.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function DatePicker.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePicker.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DatePicker.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function DatePicker.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function DatePicker.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function DatePicker.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function DatePicker.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function DatePicker.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function DatePicker.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function DatePicker.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function DatePicker.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function DatePicker.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function DatePicker.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function DatePicker.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function DatePicker.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function DatePicker.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function DatePicker.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function DatePicker.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function DatePicker.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function DatePicker.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function DatePicker.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function DatePicker.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function DatePicker.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function DatePicker.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function DatePicker.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function DatePicker.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DatePicker::addEventListener: ${name}`); - switch (name) { - case "datechanged": // /* System.EventHandler`1[[Windows.UI.Xaml.Controls.DatePickerValueChangedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "selecteddatechanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class DatePickerFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, Primitives.IPickerFlyoutBase, Primitives.IPickerFlyoutBaseOverrides, IDatePickerFlyout, IDatePickerFlyout2 { - // constructor(); - yearVisible: Boolean = true; - monthVisible: Boolean = true; - minYear: Date = new Date(38862273992.1329); - maxYear: Date = new Date(3194622273992.14); - dayVisible: Boolean = true; - date: Date = new Date(1616785473992.1); - calendarIdentifier: string = 'GregorianCalendar'; - yearFormat: string = 'year.full'; - monthFormat: string = '{month.full}'; - dayFormat: string = 'day'; - static calendarIdentifierProperty: DependencyProperty = null; - static dateProperty: DependencyProperty = null; - static dayVisibleProperty: DependencyProperty = null; - static maxYearProperty: DependencyProperty = null; - static minYearProperty: DependencyProperty = null; - static monthVisibleProperty: DependencyProperty = null; - static yearVisibleProperty: DependencyProperty = null; - static dayFormatProperty: DependencyProperty = null; - static monthFormatProperty: DependencyProperty = null; - static yearFormatProperty: DependencyProperty = null; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.right; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = true; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = false; - isConstrainedToRootBounds: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DatePickerFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DatePickerFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DatePickerFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DatePickerFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function DatePickerFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function DatePickerFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DatePickerFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function DatePickerFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function DatePickerFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DatePickerFlyout.onProcessKeyboardAccelerators'); - } - - onConfirmed(): void { - console.warn('shimmed function DatePickerFlyout.onConfirmed'); - } - - shouldShowConfirmationButtons(): Boolean { - throw new Error('shimmed function DatePickerFlyout.shouldShowConfirmationButtons'); - } - - showAtAsync(target: FrameworkElement): Foundation.IAsyncOperation { - throw new Error('shimmed function DatePickerFlyout.showAtAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DatePickerFlyout::addEventListener: ${name}`); - switch (name) { - case "datepicked": // Foundation.TypedEventHandler - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class DatePickerFlyoutItem implements IDependencyObject, IDependencyObject2, IDatePickerFlyoutItem, Data.ICustomPropertyProvider { - secondaryText: string; - primaryText: string; - type: /* System.Type */ any; - static primaryTextProperty: DependencyProperty = null; - static secondaryTextProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DatePickerFlyoutItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DatePickerFlyoutItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DatePickerFlyoutItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DatePickerFlyoutItem.unregisterPropertyChangedCallback'); - } - - getCustomProperty(name: string): Data.ICustomProperty { - throw new Error('shimmed function DatePickerFlyoutItem.getCustomProperty'); - } - - getIndexedProperty(name: string, type: /* System.Type */ any): Data.ICustomProperty { - throw new Error('shimmed function DatePickerFlyoutItem.getIndexedProperty'); - } - - getStringRepresentation(): string { - throw new Error('shimmed function DatePickerFlyoutItem.getStringRepresentation'); - } - - } - export class DatePickerFlyoutPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IDatePickerFlyoutPresenter, IDatePickerFlyoutPresenter2 { - isDefaultShadowEnabled: Boolean; - static isDefaultShadowEnabledProperty: DependencyProperty; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DatePickerFlyoutPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DatePickerFlyoutPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DatePickerFlyoutPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DatePickerFlyoutPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DatePickerFlyoutPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function DatePickerFlyoutPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function DatePickerFlyoutPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function DatePickerFlyoutPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function DatePickerFlyoutPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function DatePickerFlyoutPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function DatePickerFlyoutPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function DatePickerFlyoutPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function DatePickerFlyoutPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function DatePickerFlyoutPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function DatePickerFlyoutPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DatePickerFlyoutPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function DatePickerFlyoutPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function DatePickerFlyoutPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function DatePickerFlyoutPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function DatePickerFlyoutPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function DatePickerFlyoutPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function DatePickerFlyoutPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function DatePickerFlyoutPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function DatePickerFlyoutPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function DatePickerFlyoutPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function DatePickerFlyoutPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function DatePickerFlyoutPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function DatePickerFlyoutPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function DatePickerFlyoutPresenter.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DatePickerFlyoutPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class DatePickerSelectedValueChangedEventArgs implements IDatePickerSelectedValueChangedEventArgs { - newDate: Date | null; - oldDate: Date | null; - - } - export class DatePickerValueChangedEventArgs implements IDatePickerValueChangedEventArgs { - newDate: Date; - oldDate: Date; - - } - export enum DisabledFormattingAccelerators { - none, - bold, - italic, - underline = 4, - all = 4294967295, - } - export class DragItemsCompletedEventArgs implements IDragItemsCompletedEventArgs { - dropResult: ApplicationModel.DataTransfer.DataPackageOperation; - items: any[]; - - } - export class DragItemsStartingEventArgs implements IDragItemsStartingEventArgs { - // constructor(); - cancel: Boolean = false; - data: ApplicationModel.DataTransfer.DataPackage; - items: any[]; - - } - export type DragItemsStartingEventHandler = (e: DragItemsStartingEventArgs) => void; - export class DropDownButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, IButton, IButtonWithFlyout, IDropDownButton { - // constructor(); - flyout: Primitives.FlyoutBase; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'D', 'r', 'o', 'p', 'D', 'o', 'w', 'n', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropDownButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DropDownButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DropDownButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropDownButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropDownButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DropDownButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DropDownButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function DropDownButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function DropDownButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function DropDownButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function DropDownButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function DropDownButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function DropDownButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function DropDownButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function DropDownButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function DropDownButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function DropDownButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function DropDownButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function DropDownButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function DropDownButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function DropDownButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function DropDownButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DropDownButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function DropDownButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function DropDownButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DropDownButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function DropDownButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function DropDownButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function DropDownButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function DropDownButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function DropDownButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function DropDownButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function DropDownButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function DropDownButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function DropDownButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function DropDownButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function DropDownButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function DropDownButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function DropDownButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function DropDownButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function DropDownButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function DropDownButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function DropDownButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function DropDownButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function DropDownButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function DropDownButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function DropDownButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function DropDownButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function DropDownButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function DropDownButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function DropDownButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function DropDownButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function DropDownButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function DropDownButton.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DropDownButton::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class DropDownButtonAutomationPeer implements IDependencyObject, IDependencyObject2, Automation.Peers.IAutomationPeer, Automation.Peers.IAutomationPeer2, Automation.Peers.IAutomationPeer3, Automation.Peers.IAutomationPeer4, Automation.Peers.IAutomationPeer5, Automation.Peers.IAutomationPeer6, Automation.Peers.IAutomationPeer7, Automation.Peers.IAutomationPeer8, Automation.Peers.IAutomationPeer9, Automation.Peers.IAutomationPeerProtected, Automation.Peers.IAutomationPeerOverrides, Automation.Peers.IAutomationPeerOverrides2, Automation.Peers.IAutomationPeerOverrides3, Automation.Peers.IAutomationPeerOverrides4, Automation.Peers.IAutomationPeerOverrides5, Automation.Peers.IAutomationPeerOverrides6, Automation.Peers.IAutomationPeerOverrides8, Automation.Peers.IAutomationPeerOverrides9, Automation.Peers.IFrameworkElementAutomationPeer, Automation.Peers.IButtonBaseAutomationPeer, Automation.Peers.IButtonAutomationPeer, Automation.Provider.IInvokeProvider, IDropDownButtonAutomationPeer, Automation.Provider.IExpandCollapseProvider { - // constructor(owner: DropDownButton); - constructor(owner: DropDownButton) {} - - expandCollapseState: Automation.ExpandCollapseState; - owner: UIElement; - eventsSource: Automation.Peers.AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DropDownButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DropDownButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DropDownButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: Automation.Peers.PatternInterface): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: Automation.Peers.AutomationEvents): void { - console.warn('shimmed function DropDownButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: Automation.AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function DropDownButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): Automation.Peers.AutomationControlType { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function DropDownButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function DropDownButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function DropDownButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getName'); - } - - getOrientation(): Automation.Peers.AutomationOrientation { - throw new Error('shimmed function DropDownButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.setFocus'); - } - - getParent(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DropDownButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DropDownButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): Automation.Peers.AutomationLiveSetting { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: Automation.Peers.AutomationNavigationDirection): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function DropDownButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): Automation.Peers.AutomationPeerAnnotation[] { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: Automation.Peers.AutomationPeer): void { - console.warn('shimmed function DropDownButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: Automation.AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function DropDownButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: Automation.Peers.AutomationStructureChangeType, child: Automation.Peers.AutomationPeer): void { - console.warn('shimmed function DropDownButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): Automation.Peers.AutomationLandmarkType { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: Automation.Peers.AutomationNotificationKind, notificationProcessing: Automation.Peers.AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function DropDownButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): Automation.Peers.AutomationHeadingLevel { - throw new Error('shimmed function DropDownButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Automation.Provider.IRawElementProviderSimple): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DropDownButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: Automation.Peers.AutomationPeer): Automation.Provider.IRawElementProviderSimple { - throw new Error('shimmed function DropDownButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: Automation.Peers.PatternInterface): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): Automation.Peers.AutomationControlType { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function DropDownButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function DropDownButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function DropDownButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): Automation.Peers.AutomationOrientation { - throw new Error('shimmed function DropDownButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): Automation.Peers.AutomationPeer { - throw new Error('shimmed function DropDownButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): Automation.Peers.AutomationLiveSetting { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function DropDownButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: Automation.Peers.AutomationNavigationDirection): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function DropDownButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): Automation.Peers.AutomationPeerAnnotation[] { - throw new Error('shimmed function DropDownButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): Automation.Peers.AutomationLandmarkType { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function DropDownButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DropDownButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DropDownButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function DropDownButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function DropDownButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): Automation.Peers.AutomationHeadingLevel { - throw new Error('shimmed function DropDownButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function DropDownButtonAutomationPeer.isDialogCore'); - } - - invoke(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.invoke'); - } - - collapse(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function DropDownButtonAutomationPeer.expand'); - } - - } - export class DynamicOverflowItemsChangingEventArgs implements IDynamicOverflowItemsChangingEventArgs { - // constructor(); - action: CommandBarDynamicOverflowAction = CommandBarDynamicOverflowAction.addingToOverflow; - - } - export class FlipView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IFlipView, IFlipView2 { - // constructor(); - useTouchAnimationsForAllNavigation: Boolean = true; - static useTouchAnimationsForAllNavigationProperty: DependencyProperty = null; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlipView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlipView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlipView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlipView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function FlipView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function FlipView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function FlipView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function FlipView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function FlipView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function FlipView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function FlipView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function FlipView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function FlipView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function FlipView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function FlipView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function FlipView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function FlipView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function FlipView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function FlipView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlipView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FlipView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FlipView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function FlipView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function FlipView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function FlipView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlipView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function FlipView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function FlipView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FlipView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FlipView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function FlipView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function FlipView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function FlipView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function FlipView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FlipView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FlipView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function FlipView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function FlipView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function FlipView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function FlipView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function FlipView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function FlipView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function FlipView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function FlipView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function FlipView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function FlipView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function FlipView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function FlipView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function FlipView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function FlipView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function FlipView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function FlipView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function FlipView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function FlipView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function FlipView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function FlipView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function FlipView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function FlipView.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function FlipView.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function FlipView.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function FlipView.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function FlipView.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function FlipView.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function FlipView.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function FlipView.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function FlipView.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function FlipView.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function FlipView.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function FlipView.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function FlipView.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function FlipView.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function FlipView.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function FlipView.containerFromIndex'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FlipView::addEventListener: ${name}`); - switch (name) { - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class FlipViewItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IFlipViewItem { - // constructor(); - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlipViewItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlipViewItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlipViewItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlipViewItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlipViewItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function FlipViewItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function FlipViewItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function FlipViewItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function FlipViewItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function FlipViewItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function FlipViewItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function FlipViewItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function FlipViewItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function FlipViewItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function FlipViewItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function FlipViewItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function FlipViewItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function FlipViewItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function FlipViewItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function FlipViewItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlipViewItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FlipViewItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FlipViewItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function FlipViewItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function FlipViewItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function FlipViewItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlipViewItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlipViewItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function FlipViewItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function FlipViewItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FlipViewItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FlipViewItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function FlipViewItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function FlipViewItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function FlipViewItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function FlipViewItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FlipViewItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FlipViewItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function FlipViewItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function FlipViewItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function FlipViewItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function FlipViewItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function FlipViewItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function FlipViewItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function FlipViewItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function FlipViewItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function FlipViewItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function FlipViewItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function FlipViewItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function FlipViewItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function FlipViewItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function FlipViewItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FlipViewItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Flyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, IFlyout { - // constructor(); - flyoutPresenterStyle: Style; - content: UIElement; - static contentProperty: DependencyProperty = null; - static flyoutPresenterStyleProperty: DependencyProperty = null; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.top; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = true; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = true; - isConstrainedToRootBounds: Boolean = true; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Flyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Flyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Flyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Flyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Flyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Flyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Flyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function Flyout.showAt'); - } - - hide(): void { - console.warn('shimmed function Flyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Flyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function Flyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function Flyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Flyout.onProcessKeyboardAccelerators'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Flyout::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class FlyoutPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IFlyoutPresenter, IFlyoutPresenter2 { - // constructor(); - isDefaultShadowEnabled: Boolean = true; - static isDefaultShadowEnabledProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlyoutPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlyoutPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlyoutPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlyoutPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function FlyoutPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function FlyoutPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function FlyoutPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function FlyoutPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function FlyoutPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function FlyoutPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function FlyoutPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function FlyoutPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function FlyoutPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function FlyoutPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function FlyoutPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function FlyoutPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function FlyoutPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function FlyoutPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function FlyoutPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlyoutPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FlyoutPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FlyoutPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function FlyoutPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function FlyoutPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function FlyoutPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function FlyoutPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FlyoutPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FlyoutPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function FlyoutPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function FlyoutPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function FlyoutPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function FlyoutPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FlyoutPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FlyoutPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function FlyoutPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function FlyoutPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function FlyoutPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function FlyoutPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function FlyoutPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function FlyoutPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function FlyoutPresenter.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function FlyoutPresenter.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function FlyoutPresenter.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function FlyoutPresenter.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FlyoutPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class FocusDisengagedEventArgs implements IRoutedEventArgs, IFocusDisengagedEventArgs { - originalSource: any; - - } - export class FocusEngagedEventArgs implements IRoutedEventArgs, IFocusEngagedEventArgs, IFocusEngagedEventArgs2 { - handled: Boolean; - originalSource: any; - - } - export class FontIcon implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IIconElement, IFontIcon, IFontIcon2, IFontIcon3 { - // constructor(); - glyph: string = ''; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontSize: number = 20; - fontFamily: Media.FontFamily = null; - isTextScaleFactorEnabled: Boolean = true; - mirroredWhenRightToLeft: Boolean = false; - static fontFamilyProperty: DependencyProperty = null; - static fontSizeProperty: DependencyProperty = null; - static fontStyleProperty: DependencyProperty = null; - static fontWeightProperty: DependencyProperty = null; - static glyphProperty: DependencyProperty = null; - static isTextScaleFactorEnabledProperty: DependencyProperty = null; - static mirroredWhenRightToLeftProperty: DependencyProperty = null; - foreground: Media.Brush = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FontIcon.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FontIcon.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FontIcon.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FontIcon.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FontIcon.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FontIcon.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FontIcon.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function FontIcon.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function FontIcon.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function FontIcon.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function FontIcon.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function FontIcon.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function FontIcon.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function FontIcon.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function FontIcon.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function FontIcon.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function FontIcon.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function FontIcon.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function FontIcon.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function FontIcon.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function FontIcon.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function FontIcon.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FontIcon.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FontIcon.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FontIcon.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function FontIcon.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function FontIcon.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function FontIcon.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function FontIcon.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FontIcon.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function FontIcon.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function FontIcon.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FontIcon.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FontIcon.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function FontIcon.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function FontIcon.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function FontIcon.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function FontIcon.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FontIcon.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FontIcon.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function FontIcon.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function FontIcon.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FontIcon::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class FontIconSource implements IDependencyObject, IDependencyObject2, IIconSource, IFontIconSource { - // constructor(); - mirroredWhenRightToLeft: Boolean = false; - isTextScaleFactorEnabled: Boolean = true; - glyph: string = ''; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontSize: number = 20; - fontFamily: Media.FontFamily = null; - static fontFamilyProperty: DependencyProperty = null; - static fontSizeProperty: DependencyProperty = null; - static fontStyleProperty: DependencyProperty = null; - static fontWeightProperty: DependencyProperty = null; - static glyphProperty: DependencyProperty = null; - static isTextScaleFactorEnabledProperty: DependencyProperty = null; - static mirroredWhenRightToLeftProperty: DependencyProperty = null; - foreground: Media.Brush; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FontIconSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FontIconSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FontIconSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FontIconSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FontIconSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FontIconSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FontIconSource.unregisterPropertyChangedCallback'); - } - - } - export class Frame implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IFrame, IFrame2, IFrame3, IFrame4, IFrame5, INavigate { - // constructor(); - sourcePageType: /* System.Type */ any; - cacheSize: number = 10; - backStackDepth: number = 0; - canGoBack: Boolean = false; - canGoForward: Boolean = false; - currentSourcePageType: /* System.Type */ any; - backStack: Navigation.PageStackEntry[] = [ ]; - forwardStack: Navigation.PageStackEntry[] = [ ]; - isNavigationStackEnabled: Boolean = true; - static backStackDepthProperty: DependencyProperty = null; - static cacheSizeProperty: DependencyProperty = null; - static canGoBackProperty: DependencyProperty = null; - static canGoForwardProperty: DependencyProperty = null; - static currentSourcePageTypeProperty: DependencyProperty = null; - static sourcePageTypeProperty: DependencyProperty = null; - static backStackProperty: DependencyProperty = null; - static forwardStackProperty: DependencyProperty = null; - static isNavigationStackEnabledProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Frame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Frame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Frame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Frame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Frame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Frame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Frame.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Frame.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Frame.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Frame.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Frame.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Frame.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Frame.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Frame.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Frame.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Frame.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Frame.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Frame.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Frame.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Frame.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Frame.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Frame.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Frame.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Frame.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Frame.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Frame.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Frame.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Frame.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Frame.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Frame.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Frame.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Frame.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Frame.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Frame.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Frame.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Frame.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Frame.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Frame.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Frame.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Frame.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Frame.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Frame.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Frame.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Frame.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Frame.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Frame.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Frame.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Frame.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Frame.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Frame.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Frame.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Frame.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Frame.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Frame.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Frame.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Frame.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Frame.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Frame.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Frame.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Frame.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Frame.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Frame.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Frame.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Frame.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Frame.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Frame.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Frame.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function Frame.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function Frame.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function Frame.onContentTemplateSelectorChanged'); - } - - goBack(): void { - console.warn('shimmed function Frame.goBack'); - } - - goForward(): void { - console.warn('shimmed function Frame.goForward'); - } - - navigate(sourcePageType: /* System.Type */ any, parameter: any): Boolean { - throw new Error('shimmed function Frame.navigate'); - } - - getNavigationState(): string { - throw new Error('shimmed function Frame.getNavigationState'); - } - - setNavigationState(navigationState: string): void { - console.warn('shimmed function Frame.setNavigationState'); - } - - navigate_1(sourcePageType: /* System.Type */ any, parameter: any, infoOverride: Media.Animation.NavigationTransitionInfo): Boolean { - throw new Error('shimmed function Frame.navigate_1'); - } - - goBack_1(transitionInfoOverride: Media.Animation.NavigationTransitionInfo): void { - console.warn('shimmed function Frame.goBack_1'); - } - - setNavigationState_1(navigationState: string, suppressNavigate: Boolean): void { - console.warn('shimmed function Frame.setNavigationState_1'); - } - - navigateToType(sourcePageType: /* System.Type */ any, parameter: any, navigationOptions: Navigation.FrameNavigationOptions): Boolean { - throw new Error('shimmed function Frame.navigateToType'); - } - - navigate_2(sourcePageType: /* System.Type */ any): Boolean { - throw new Error('shimmed function Frame.navigate_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Frame::addEventListener: ${name}`); - switch (name) { - case "navigated": // Navigation.NavigatedEventHandler - case "navigating": // Navigation.NavigatingCancelEventHandler - case "navigationfailed": // Navigation.NavigationFailedEventHandler - case "navigationstopped": // Navigation.NavigationStoppedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Grid implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IGrid, IGrid2, IGrid3, IGrid4 { - // constructor(); - columnDefinitions: ColumnDefinitionCollection = [ ]; - rowDefinitions: RowDefinitionCollection = [ ]; - padding: Thickness = null; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - rowSpacing: number = 0; - columnSpacing: number = 0; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - static columnProperty: DependencyProperty = null; - static columnSpanProperty: DependencyProperty = null; - static rowProperty: DependencyProperty = null; - static rowSpanProperty: DependencyProperty = null; - static borderBrushProperty: DependencyProperty = null; - static borderThicknessProperty: DependencyProperty = null; - static cornerRadiusProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static columnSpacingProperty: DependencyProperty = null; - static rowSpacingProperty: DependencyProperty = null; - static backgroundSizingProperty: DependencyProperty = null; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Grid.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Grid.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Grid.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Grid.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Grid.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Grid.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Grid.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Grid.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Grid.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Grid.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Grid.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Grid.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Grid.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Grid.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Grid.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Grid.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Grid.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Grid.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Grid.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Grid.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Grid.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Grid.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Grid.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Grid.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Grid.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Grid.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Grid.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Grid.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Grid.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Grid.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Grid.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Grid.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Grid.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Grid.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Grid.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Grid.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Grid.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Grid.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Grid.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Grid.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Grid.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Grid.goToElementStateCore'); - } - - static getRow(element: FrameworkElement): number { - throw new Error('shimmed function Grid.getRow'); - } - - static setRow(element: FrameworkElement, value: number): void { - console.warn('shimmed function Grid.setRow'); - } - - static getColumn(element: FrameworkElement): number { - throw new Error('shimmed function Grid.getColumn'); - } - - static setColumn(element: FrameworkElement, value: number): void { - console.warn('shimmed function Grid.setColumn'); - } - - static getRowSpan(element: FrameworkElement): number { - throw new Error('shimmed function Grid.getRowSpan'); - } - - static setRowSpan(element: FrameworkElement, value: number): void { - console.warn('shimmed function Grid.setRowSpan'); - } - - static getColumnSpan(element: FrameworkElement): number { - throw new Error('shimmed function Grid.getColumnSpan'); - } - - static setColumnSpan(element: FrameworkElement, value: number): void { - console.warn('shimmed function Grid.setColumnSpan'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Grid::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GridView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IListViewBase, IListViewBase2, IListViewBase3, IListViewBase4, IListViewBase5, IListViewBase6, ISemanticZoomInformation, IGridView { - // constructor(); - selectionMode: ListViewSelectionMode = ListViewSelectionMode.single; - isSwipeEnabled: Boolean = true; - isItemClickEnabled: Boolean = false; - incrementalLoadingTrigger: IncrementalLoadingTrigger = IncrementalLoadingTrigger.edge; - incrementalLoadingThreshold: number = 0; - headerTransitions: Media.Animation.TransitionCollection = [ ]; - headerTemplate: DataTemplate; - header: any; - dataFetchSize: number = 3; - canReorderItems: Boolean = false; - canDragItems: Boolean = false; - selectedItems: any[] = [ ]; - showsScrollingPlaceholders: Boolean = true; - footerTransitions: Media.Animation.TransitionCollection = [ ]; - footerTemplate: DataTemplate; - footer: any; - reorderMode: ListViewReorderMode = ListViewReorderMode.disabled; - isMultiSelectCheckBoxEnabled: Boolean = true; - selectedRanges: Data.ItemIndexRange[] = [ ]; - singleSelectionFollowsFocus: Boolean = true; - semanticZoomOwner: SemanticZoom; - isZoomedInView: Boolean = true; - isActiveView: Boolean = false; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function GridView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function GridView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function GridView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function GridView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function GridView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function GridView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function GridView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function GridView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function GridView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function GridView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function GridView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function GridView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function GridView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function GridView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function GridView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function GridView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function GridView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function GridView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function GridView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function GridView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function GridView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function GridView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function GridView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function GridView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function GridView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function GridView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function GridView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function GridView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function GridView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function GridView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function GridView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function GridView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function GridView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function GridView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function GridView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function GridView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function GridView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function GridView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function GridView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GridView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GridView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function GridView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function GridView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function GridView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function GridView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function GridView.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function GridView.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function GridView.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function GridView.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function GridView.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function GridView.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function GridView.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function GridView.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function GridView.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function GridView.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function GridView.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function GridView.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function GridView.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function GridView.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function GridView.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function GridView.containerFromIndex'); - } - - scrollIntoView(item: any): void { - console.warn('shimmed function GridView.scrollIntoView'); - } - - selectAll(): void { - console.warn('shimmed function GridView.selectAll'); - } - - loadMoreItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function GridView.loadMoreItemsAsync'); - } - - scrollIntoView_1(item: any, alignment: ScrollIntoViewAlignment): void { - console.warn('shimmed function GridView.scrollIntoView_1'); - } - - setDesiredContainerUpdateDuration(duration: number): void { - console.warn('shimmed function GridView.setDesiredContainerUpdateDuration'); - } - - selectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function GridView.selectRange'); - } - - deselectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function GridView.deselectRange'); - } - - isDragSource(): Boolean { - throw new Error('shimmed function GridView.isDragSource'); - } - - tryStartConnectedAnimationAsync(animation: Media.Animation.ConnectedAnimation, item: any, elementName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function GridView.tryStartConnectedAnimationAsync'); - } - - prepareConnectedAnimation(key: string, item: any, elementName: string): Media.Animation.ConnectedAnimation { - throw new Error('shimmed function GridView.prepareConnectedAnimation'); - } - - initializeViewChange(): void { - console.warn('shimmed function GridView.initializeViewChange'); - } - - completeViewChange(): void { - console.warn('shimmed function GridView.completeViewChange'); - } - - makeVisible(item: SemanticZoomLocation): void { - console.warn('shimmed function GridView.makeVisible'); - } - - startViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function GridView.startViewChangeFrom'); - } - - startViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function GridView.startViewChangeTo'); - } - - completeViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function GridView.completeViewChangeFrom'); - } - - completeViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function GridView.completeViewChangeTo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GridView::addEventListener: ${name}`); - switch (name) { - case "dragitemsstarting": // DragItemsStartingEventHandler - case "itemclick": // ItemClickEventHandler - case "containercontentchanging": // Foundation.TypedEventHandler - case "choosinggroupheadercontainer": // Foundation.TypedEventHandler - case "choosingitemcontainer": // Foundation.TypedEventHandler - case "dragitemscompleted": // Foundation.TypedEventHandler - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GridViewHeaderItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IListViewBaseHeaderItem, IGridViewHeaderItem { - // constructor(); - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewHeaderItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewHeaderItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewHeaderItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewHeaderItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewHeaderItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewHeaderItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewHeaderItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function GridViewHeaderItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function GridViewHeaderItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function GridViewHeaderItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function GridViewHeaderItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function GridViewHeaderItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function GridViewHeaderItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function GridViewHeaderItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function GridViewHeaderItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function GridViewHeaderItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function GridViewHeaderItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function GridViewHeaderItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function GridViewHeaderItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function GridViewHeaderItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function GridViewHeaderItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function GridViewHeaderItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridViewHeaderItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridViewHeaderItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function GridViewHeaderItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function GridViewHeaderItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function GridViewHeaderItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewHeaderItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridViewHeaderItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridViewHeaderItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function GridViewHeaderItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function GridViewHeaderItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function GridViewHeaderItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function GridViewHeaderItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridViewHeaderItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridViewHeaderItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function GridViewHeaderItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function GridViewHeaderItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function GridViewHeaderItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function GridViewHeaderItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function GridViewHeaderItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function GridViewHeaderItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function GridViewHeaderItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function GridViewHeaderItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function GridViewHeaderItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function GridViewHeaderItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GridViewHeaderItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GridViewItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IGridViewItem { - // constructor(); - templateSettings: Primitives.GridViewItemTemplateSettings = null; - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function GridViewItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function GridViewItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function GridViewItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function GridViewItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function GridViewItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function GridViewItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function GridViewItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function GridViewItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function GridViewItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function GridViewItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function GridViewItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function GridViewItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function GridViewItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function GridViewItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function GridViewItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridViewItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridViewItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridViewItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function GridViewItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function GridViewItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function GridViewItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridViewItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function GridViewItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function GridViewItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridViewItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridViewItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function GridViewItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function GridViewItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function GridViewItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function GridViewItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridViewItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridViewItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function GridViewItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function GridViewItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function GridViewItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function GridViewItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function GridViewItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function GridViewItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function GridViewItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function GridViewItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function GridViewItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function GridViewItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function GridViewItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function GridViewItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function GridViewItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function GridViewItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GridViewItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GroupItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IGroupItem { - // constructor(); - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GroupItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GroupItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GroupItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GroupItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GroupItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GroupItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GroupItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function GroupItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function GroupItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function GroupItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function GroupItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function GroupItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function GroupItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function GroupItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function GroupItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function GroupItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function GroupItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function GroupItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function GroupItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function GroupItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function GroupItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function GroupItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GroupItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GroupItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GroupItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function GroupItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function GroupItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function GroupItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function GroupItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GroupItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function GroupItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function GroupItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GroupItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GroupItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function GroupItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function GroupItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function GroupItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function GroupItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GroupItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GroupItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function GroupItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function GroupItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function GroupItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function GroupItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function GroupItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function GroupItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GroupItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function GroupItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function GroupItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function GroupItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function GroupItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function GroupItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function GroupItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function GroupItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function GroupItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function GroupItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GroupItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GroupStyle implements IGroupStyle, IGroupStyle2 { - // constructor(); - panel: ItemsPanelTemplate; - hidesIfEmpty: Boolean = false; - headerTemplateSelector: DataTemplateSelector; - headerTemplate: DataTemplate; - containerStyleSelector: StyleSelector; - containerStyle: Style; - headerContainerStyle: Style; - - } - export class GroupStyleSelector implements IGroupStyleSelector, IGroupStyleSelectorOverrides { - // constructor(); - selectGroupStyle(group: any, level: number): GroupStyle { - throw new Error('shimmed function GroupStyleSelector.selectGroupStyle'); - } - - selectGroupStyleCore(group: any, level: number): GroupStyle { - throw new Error('shimmed function GroupStyleSelector.selectGroupStyleCore'); - } - - } - export class HandwritingPanelClosedEventArgs implements IHandwritingPanelClosedEventArgs { - } - export class HandwritingPanelOpenedEventArgs implements IHandwritingPanelOpenedEventArgs { - } - export enum HandwritingPanelPlacementAlignment { - auto, - topLeft, - topRight, - bottomLeft, - bottomRight, - } - export class HandwritingView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IHandwritingView { - // constructor(); - placementTarget: UIElement; - placementAlignment: HandwritingPanelPlacementAlignment = HandwritingPanelPlacementAlignment.auto; - areCandidatesEnabled: Boolean = true; - isOpen: Boolean = false; - static areCandidatesEnabledProperty: DependencyProperty = null; - static isOpenProperty: DependencyProperty = null; - static placementAlignmentProperty: DependencyProperty = null; - static placementTargetProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function HandwritingView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function HandwritingView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function HandwritingView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function HandwritingView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function HandwritingView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function HandwritingView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function HandwritingView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function HandwritingView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function HandwritingView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function HandwritingView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function HandwritingView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function HandwritingView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function HandwritingView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function HandwritingView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function HandwritingView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function HandwritingView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function HandwritingView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function HandwritingView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function HandwritingView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function HandwritingView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function HandwritingView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function HandwritingView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function HandwritingView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function HandwritingView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function HandwritingView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function HandwritingView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function HandwritingView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function HandwritingView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function HandwritingView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function HandwritingView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function HandwritingView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function HandwritingView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function HandwritingView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function HandwritingView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function HandwritingView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function HandwritingView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function HandwritingView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function HandwritingView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function HandwritingView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function HandwritingView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function HandwritingView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function HandwritingView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function HandwritingView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function HandwritingView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function HandwritingView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function HandwritingView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function HandwritingView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function HandwritingView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function HandwritingView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function HandwritingView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function HandwritingView.onCharacterReceived'); - } - - tryClose(): Boolean { - throw new Error('shimmed function HandwritingView.tryClose'); - } - - tryOpen(): Boolean { - throw new Error('shimmed function HandwritingView.tryOpen'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HandwritingView::addEventListener: ${name}`); - switch (name) { - case "closed": // Foundation.TypedEventHandler - case "opened": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Hub implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IHub, ISemanticZoomInformation { - // constructor(); - orientation: Orientation = Orientation.horizontal; - headerTemplate: DataTemplate; - header: any; - defaultSectionIndex: number = -1; - sectionHeaders: any[] = [ ]; - sections: HubSection[] = [ ]; - sectionsInView: HubSection[] = [ ]; - semanticZoomOwner: SemanticZoom; - isZoomedInView: Boolean = false; - isActiveView: Boolean = false; - static defaultSectionIndexProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static isActiveViewProperty: DependencyProperty = null; - static isZoomedInViewProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static semanticZoomOwnerProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Hub.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Hub.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Hub.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Hub.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Hub.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Hub.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Hub.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Hub.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Hub.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Hub.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Hub.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Hub.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Hub.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Hub.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Hub.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Hub.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Hub.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Hub.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Hub.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Hub.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Hub.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Hub.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Hub.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Hub.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Hub.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Hub.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Hub.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Hub.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Hub.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Hub.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Hub.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Hub.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Hub.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Hub.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Hub.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Hub.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Hub.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Hub.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Hub.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Hub.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Hub.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Hub.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Hub.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Hub.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Hub.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Hub.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Hub.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Hub.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Hub.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Hub.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Hub.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Hub.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Hub.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Hub.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Hub.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Hub.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Hub.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Hub.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Hub.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Hub.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Hub.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Hub.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Hub.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Hub.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Hub.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Hub.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Hub.onCharacterReceived'); - } - - scrollToSection(section: HubSection): void { - console.warn('shimmed function Hub.scrollToSection'); - } - - initializeViewChange(): void { - console.warn('shimmed function Hub.initializeViewChange'); - } - - completeViewChange(): void { - console.warn('shimmed function Hub.completeViewChange'); - } - - makeVisible(item: SemanticZoomLocation): void { - console.warn('shimmed function Hub.makeVisible'); - } - - startViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function Hub.startViewChangeFrom'); - } - - startViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function Hub.startViewChangeTo'); - } - - completeViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function Hub.completeViewChangeFrom'); - } - - completeViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function Hub.completeViewChangeTo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Hub::addEventListener: ${name}`); - switch (name) { - case "sectionheaderclick": // HubSectionHeaderClickEventHandler - case "sectionsinviewchanged": // SectionsInViewChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class HubSection implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IHubSection { - // constructor(); - isHeaderInteractive: Boolean = false; - headerTemplate: DataTemplate; - header: any; - contentTemplate: DataTemplate; - static contentTemplateProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static isHeaderInteractiveProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubSection.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function HubSection.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function HubSection.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubSection.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function HubSection.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function HubSection.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function HubSection.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function HubSection.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function HubSection.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function HubSection.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function HubSection.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function HubSection.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function HubSection.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function HubSection.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function HubSection.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function HubSection.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function HubSection.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function HubSection.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function HubSection.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function HubSection.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function HubSection.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function HubSection.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function HubSection.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function HubSection.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function HubSection.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function HubSection.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function HubSection.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function HubSection.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function HubSection.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function HubSection.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function HubSection.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function HubSection.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function HubSection.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function HubSection.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function HubSection.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function HubSection.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function HubSection.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function HubSection.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function HubSection.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function HubSection.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function HubSection.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function HubSection.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function HubSection.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function HubSection.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function HubSection.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function HubSection.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function HubSection.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function HubSection.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function HubSection.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function HubSection.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function HubSection.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function HubSection.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function HubSection.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function HubSection.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function HubSection.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HubSection.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HubSection.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function HubSection.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function HubSection.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function HubSection.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function HubSection.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function HubSection.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function HubSection.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HubSection.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function HubSection.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HubSection::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class HubSectionCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): HubSection { - throw new Error('shimmed function HubSectionCollection.getAt'); - } - - getView(): HubSection[] { - throw new Error('shimmed function HubSectionCollection.getView'); - } - - indexOf(value: HubSection): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HubSectionCollection.indexOf'); - } - - setAt(index: number, value: HubSection): void { - console.warn('shimmed function HubSectionCollection.setAt'); - } - - insertAt(index: number, value: HubSection): void { - console.warn('shimmed function HubSectionCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HubSectionCollection.removeAt'); - } - - append(value: HubSection): void { - console.warn('shimmed function HubSectionCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HubSectionCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HubSectionCollection.clear'); - } - - getMany(startIndex: number, items: HubSection[]): number { - throw new Error('shimmed function HubSectionCollection.getMany'); - } - - replaceAll(items: HubSection[]): void { - console.warn('shimmed function HubSectionCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HubSectionCollection.first'); - } - - } - export class HubSectionHeaderClickEventArgs implements IHubSectionHeaderClickEventArgs { - // constructor(); - section: HubSection; - - } - export type HubSectionHeaderClickEventHandler = (e: HubSectionHeaderClickEventArgs) => void; - export class HyperlinkButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, IHyperlinkButton { - // constructor(); - navigateUri: Foundation.Uri; - static navigateUriProperty: DependencyProperty = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function HyperlinkButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function HyperlinkButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function HyperlinkButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function HyperlinkButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function HyperlinkButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function HyperlinkButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function HyperlinkButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function HyperlinkButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function HyperlinkButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function HyperlinkButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function HyperlinkButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function HyperlinkButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function HyperlinkButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function HyperlinkButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function HyperlinkButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function HyperlinkButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function HyperlinkButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function HyperlinkButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function HyperlinkButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function HyperlinkButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function HyperlinkButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function HyperlinkButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function HyperlinkButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function HyperlinkButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function HyperlinkButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function HyperlinkButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function HyperlinkButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function HyperlinkButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function HyperlinkButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function HyperlinkButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function HyperlinkButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function HyperlinkButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function HyperlinkButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function HyperlinkButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function HyperlinkButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function HyperlinkButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function HyperlinkButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function HyperlinkButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function HyperlinkButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function HyperlinkButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function HyperlinkButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function HyperlinkButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function HyperlinkButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function HyperlinkButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function HyperlinkButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function HyperlinkButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function HyperlinkButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function HyperlinkButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function HyperlinkButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function HyperlinkButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function HyperlinkButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function HyperlinkButton.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HyperlinkButton::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export interface ICommandBarElement { - isCompact: Boolean; - } - export interface ICommandBarElement2 { - dynamicOverflowOrder: number; - isInOverflow: Boolean; - } - export class IconElement implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IIconElement { - foreground: Media.Brush; - static foregroundProperty: DependencyProperty = null; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function IconElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function IconElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function IconElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function IconElement.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function IconElement.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function IconElement.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function IconElement.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function IconElement.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function IconElement.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function IconElement.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function IconElement.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function IconElement.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function IconElement.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function IconElement.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function IconElement.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function IconElement.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function IconElement.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function IconElement.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function IconElement.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function IconElement.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function IconElement.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function IconElement.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function IconElement.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function IconElement.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function IconElement.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function IconElement.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function IconElement.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function IconElement.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function IconElement.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function IconElement.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function IconElement.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function IconElement.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function IconElement.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function IconElement.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function IconElement.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function IconElement.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function IconElement.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function IconElement.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function IconElement.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`IconElement::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class IconSource implements IDependencyObject, IDependencyObject2, IIconSource { - foreground: Media.Brush; - static foregroundProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function IconSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function IconSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function IconSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function IconSource.unregisterPropertyChangedCallback'); - } - - } - export class IconSourceElement implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IIconElement, IIconSourceElement { - // constructor(); - iconSource: IconSource; - static iconSourceProperty: DependencyProperty = null; - foreground: Media.Brush = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconSourceElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function IconSourceElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function IconSourceElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconSourceElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function IconSourceElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function IconSourceElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function IconSourceElement.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function IconSourceElement.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function IconSourceElement.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function IconSourceElement.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function IconSourceElement.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function IconSourceElement.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function IconSourceElement.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function IconSourceElement.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function IconSourceElement.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function IconSourceElement.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function IconSourceElement.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function IconSourceElement.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function IconSourceElement.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function IconSourceElement.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function IconSourceElement.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function IconSourceElement.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function IconSourceElement.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function IconSourceElement.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function IconSourceElement.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function IconSourceElement.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function IconSourceElement.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function IconSourceElement.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function IconSourceElement.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function IconSourceElement.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function IconSourceElement.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function IconSourceElement.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function IconSourceElement.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function IconSourceElement.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function IconSourceElement.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function IconSourceElement.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function IconSourceElement.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function IconSourceElement.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function IconSourceElement.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function IconSourceElement.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function IconSourceElement.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function IconSourceElement.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`IconSourceElement::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export interface IInsertionPanel { - getInsertionIndexes(position: Foundation.Point): { first: number, second: number }; - } - export interface IItemContainerMapping { - itemFromContainer(container: DependencyObject): any; - containerFromItem(item: any): DependencyObject; - indexFromContainer(container: DependencyObject): number; - containerFromIndex(index: number): DependencyObject; - } - export class Image implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IImage, IImage2, IImage3 { - // constructor(); - stretch: Media.Stretch = Stretch.uniform; - source: Media.ImageSource; - nineGrid: Thickness = null; - playToSource: Media.PlayTo.PlayToSource = null; - static nineGridProperty: DependencyProperty = null; - static playToSourceProperty: DependencyProperty = null; - static sourceProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Image.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Image.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Image.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Image.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Image.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Image.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Image.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Image.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Image.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Image.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Image.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Image.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Image.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Image.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Image.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Image.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Image.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Image.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Image.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Image.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Image.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Image.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Image.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Image.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Image.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Image.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Image.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Image.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Image.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Image.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Image.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Image.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Image.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Image.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Image.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Image.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Image.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Image.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Image.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Image.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Image.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Image.goToElementStateCore'); - } - - getAsCastingSource(): Media.Casting.CastingSource { - throw new Error('shimmed function Image.getAsCastingSource'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Image.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Image::addEventListener: ${name}`); - switch (name) { - case "imagefailed": // ExceptionRoutedEventHandler - case "imageopened": // RoutedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export interface INavigate { - navigate(sourcePageType: /* System.Type */ any): Boolean; - } - export enum IncrementalLoadingTrigger { - none, - edge, - } - export class InkCanvas implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IInkCanvas { - // constructor(); - inkPresenter: Input.Inking.InkPresenter = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkCanvas.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkCanvas.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkCanvas.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkCanvas.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkCanvas.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkCanvas.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkCanvas.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkCanvas.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkCanvas.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkCanvas.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkCanvas.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkCanvas.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkCanvas.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkCanvas.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkCanvas.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkCanvas.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkCanvas.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkCanvas.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkCanvas.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkCanvas.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkCanvas.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkCanvas.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkCanvas.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkCanvas.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkCanvas.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkCanvas.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkCanvas.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkCanvas.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkCanvas.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkCanvas.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkCanvas.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkCanvas.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkCanvas.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkCanvas.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkCanvas.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkCanvas.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkCanvas.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkCanvas.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkCanvas.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkCanvas.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkCanvas.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkCanvas.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkCanvas::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IInkToolbar, IInkToolbar2, IInkToolbar3 { - // constructor(); - targetInkCanvas: InkCanvas; - isRulerButtonChecked: Boolean = false; - initialControls: InkToolbarInitialControls = InkToolbarInitialControls.all; - activeTool: InkToolbarToolButton; - children: DependencyObjectCollection = [ ]; - inkDrawingAttributes: Input.Inking.InkDrawingAttributes; - orientation: Orientation = Orientation.horizontal; - isStencilButtonChecked: Boolean = false; - buttonFlyoutPlacement: InkToolbarButtonFlyoutPlacement = InkToolbarButtonFlyoutPlacement.bottom; - targetInkPresenter: Input.Inking.InkPresenter; - static activeToolProperty: DependencyProperty = null; - static childrenProperty: DependencyProperty = null; - static initialControlsProperty: DependencyProperty = null; - static inkDrawingAttributesProperty: DependencyProperty = null; - static isRulerButtonCheckedProperty: DependencyProperty = null; - static targetInkCanvasProperty: DependencyProperty = null; - static buttonFlyoutPlacementProperty: DependencyProperty = null; - static isStencilButtonCheckedProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static targetInkPresenterProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbar.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbar.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbar.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbar.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbar.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbar.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbar.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbar.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbar.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbar.onCharacterReceived'); - } - - getToolButton(tool: InkToolbarTool): InkToolbarToolButton { - throw new Error('shimmed function InkToolbar.getToolButton'); - } - - getToggleButton(tool: InkToolbarToggle): InkToolbarToggleButton { - throw new Error('shimmed function InkToolbar.getToggleButton'); - } - - getMenuButton(menu: InkToolbarMenuKind): InkToolbarMenuButton { - throw new Error('shimmed function InkToolbar.getMenuButton'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbar::addEventListener: ${name}`); - switch (name) { - case "activetoolchanged": // Foundation.TypedEventHandler - case "eraseallclicked": // Foundation.TypedEventHandler - case "inkdrawingattributeschanged": // Foundation.TypedEventHandler - case "isrulerbuttoncheckedchanged": // Foundation.TypedEventHandler - case "isstencilbuttoncheckedchanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarBallpointPenButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton, IInkToolbarPenButton, IInkToolbarBallpointPenButton { - // constructor(); - selectedStrokeWidth: number = 0; - selectedBrushIndex: number = 0; - palette: Media.Brush[]; - minStrokeWidth: number = 0; - maxStrokeWidth: number = 0; - selectedBrush: Media.Brush; - isExtensionGlyphShown: Boolean = false; - toolKind: InkToolbarTool = InkToolbarTool.ballpointPen; - groupName: string = ''; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'B', 'a', 'l', 'l', 'p', 'o', 'i', 'n', 't', 'P', 'e', 'n', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarBallpointPenButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarBallpointPenButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarBallpointPenButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarBallpointPenButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarBallpointPenButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarBallpointPenButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarBallpointPenButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarBallpointPenButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarBallpointPenButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarBallpointPenButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarBallpointPenButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarBallpointPenButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarBallpointPenButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarBallpointPenButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarBallpointPenButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarBallpointPenButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarBallpointPenButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarBallpointPenButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarBallpointPenButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarBallpointPenButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarBallpointPenButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarBallpointPenButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarBallpointPenButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarBallpointPenButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarBallpointPenButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarBallpointPenButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarBallpointPenButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarBallpointPenButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarBallpointPenButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarBallpointPenButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarBallpointPenButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarBallpointPenButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarBallpointPenButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarBallpointPenButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarBallpointPenButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum InkToolbarButtonFlyoutPlacement { - auto, - top, - bottom, - left, - right, - } - export class InkToolbarCustomPen implements IDependencyObject, IDependencyObject2, IInkToolbarCustomPen, IInkToolbarCustomPenOverrides { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomPen.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarCustomPen.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarCustomPen.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomPen.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomPen.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarCustomPen.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarCustomPen.unregisterPropertyChangedCallback'); - } - - createInkDrawingAttributes(brush: Media.Brush, strokeWidth: number): Input.Inking.InkDrawingAttributes { - throw new Error('shimmed function InkToolbarCustomPen.createInkDrawingAttributes'); - } - - createInkDrawingAttributesCore(brush: Media.Brush, strokeWidth: number): Input.Inking.InkDrawingAttributes { - throw new Error('shimmed function InkToolbarCustomPen.createInkDrawingAttributesCore'); - } - - } - export class InkToolbarCustomPenButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton, IInkToolbarPenButton, IInkToolbarCustomPenButton { - // constructor(); - customPen: InkToolbarCustomPen; - configurationContent: UIElement; - static configurationContentProperty: DependencyProperty = null; - static customPenProperty: DependencyProperty = null; - selectedStrokeWidth: number = 0; - selectedBrushIndex: number = 0; - palette: Media.Brush[]; - minStrokeWidth: number = 0; - maxStrokeWidth: number = 0; - selectedBrush: Media.Brush; - isExtensionGlyphShown: Boolean = false; - toolKind: InkToolbarTool = InkToolbarTool.customPen; - groupName: string = ''; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'C', 'u', 's', 't', 'o', 'm', 'P', 'e', 'n', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomPenButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarCustomPenButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarCustomPenButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomPenButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomPenButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarCustomPenButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarCustomPenButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarCustomPenButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarCustomPenButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarCustomPenButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarCustomPenButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarCustomPenButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarCustomPenButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarCustomPenButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarCustomPenButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarCustomPenButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarCustomPenButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarCustomPenButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarCustomPenButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarCustomPenButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarCustomPenButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarCustomPenButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarCustomPenButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarCustomPenButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarCustomPenButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarCustomPenButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarCustomPenButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarCustomPenButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarCustomPenButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarCustomPenButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarCustomPenButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarCustomPenButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarCustomPenButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarCustomPenButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarCustomPenButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarCustomPenButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarCustomPenButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarCustomPenButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarCustomPenButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarCustomPenButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarCustomPenButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarCustomPenButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomPenButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarCustomPenButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarCustomPenButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarCustomPenButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarCustomPenButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarCustomPenButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarCustomToggleButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, ICheckBox, IInkToolbarToggleButton, IInkToolbarCustomToggleButton { - // constructor(); - toggleKind: InkToolbarToggle = InkToolbarToggle.custom; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'C', 'u', 's', 't', 'o', 'm', 'T', 'o', 'g', 'g', 'l', 'e', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomToggleButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarCustomToggleButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarCustomToggleButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomToggleButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomToggleButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarCustomToggleButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarCustomToggleButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarCustomToggleButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarCustomToggleButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarCustomToggleButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarCustomToggleButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarCustomToggleButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarCustomToggleButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarCustomToggleButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarCustomToggleButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarCustomToggleButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarCustomToggleButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarCustomToggleButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarCustomToggleButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarCustomToggleButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarCustomToggleButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarCustomToggleButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarCustomToggleButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarCustomToggleButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarCustomToggleButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarCustomToggleButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarCustomToggleButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarCustomToggleButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarCustomToggleButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarCustomToggleButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarCustomToggleButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarCustomToggleButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarCustomToggleButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarCustomToggleButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarCustomToggleButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarCustomToolButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton, IInkToolbarCustomToolButton { - // constructor(); - configurationContent: UIElement; - static configurationContentProperty: DependencyProperty = null; - isExtensionGlyphShown: Boolean = false; - toolKind: InkToolbarTool = InkToolbarTool.customTool; - groupName: string = ''; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'C', 'u', 's', 't', 'o', 'm', 'T', 'o', 'o', 'l', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomToolButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarCustomToolButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarCustomToolButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomToolButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarCustomToolButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarCustomToolButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarCustomToolButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarCustomToolButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarCustomToolButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarCustomToolButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarCustomToolButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarCustomToolButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarCustomToolButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarCustomToolButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarCustomToolButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarCustomToolButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarCustomToolButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarCustomToolButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarCustomToolButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarCustomToolButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarCustomToolButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarCustomToolButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarCustomToolButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarCustomToolButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarCustomToolButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarCustomToolButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarCustomToolButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarCustomToolButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarCustomToolButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarCustomToolButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarCustomToolButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarCustomToolButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarCustomToolButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarCustomToolButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarCustomToolButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarCustomToolButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarCustomToolButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarCustomToolButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarCustomToolButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarCustomToolButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarCustomToolButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarCustomToolButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarCustomToolButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarCustomToolButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarCustomToolButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarCustomToolButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarCustomToolButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarCustomToolButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarEraserButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton, IInkToolbarEraserButton, IInkToolbarEraserButton2 { - // constructor(); - isClearAllVisible: Boolean = true; - static isClearAllVisibleProperty: DependencyProperty = null; - isExtensionGlyphShown: Boolean = false; - toolKind: InkToolbarTool = InkToolbarTool.eraser; - groupName: string = ''; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'E', 'r', 'a', 's', 'e', 'r', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarEraserButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarEraserButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarEraserButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarEraserButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarEraserButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarEraserButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarEraserButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarEraserButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarEraserButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarEraserButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarEraserButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarEraserButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarEraserButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarEraserButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarEraserButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarEraserButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarEraserButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarEraserButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarEraserButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarEraserButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarEraserButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarEraserButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarEraserButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarEraserButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarEraserButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarEraserButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarEraserButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarEraserButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarEraserButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarEraserButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarEraserButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarEraserButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarEraserButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarEraserButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarEraserButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarEraserButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarEraserButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarEraserButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarEraserButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarEraserButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarEraserButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarEraserButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarEraserButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarEraserButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarEraserButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarEraserButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarEraserButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarEraserButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarFlyoutItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, IInkToolbarFlyoutItem { - // constructor(); - kind: InkToolbarFlyoutItemKind = InkToolbarFlyoutItemKind.simple; - isChecked: Boolean = false; - static isCheckedProperty: DependencyProperty = null; - static kindProperty: DependencyProperty = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'F', 'l', 'y', 'o', 'u', 't', 'I', 't', 'e', 'm' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarFlyoutItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarFlyoutItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarFlyoutItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarFlyoutItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarFlyoutItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarFlyoutItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarFlyoutItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarFlyoutItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarFlyoutItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarFlyoutItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarFlyoutItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarFlyoutItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarFlyoutItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarFlyoutItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarFlyoutItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarFlyoutItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarFlyoutItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarFlyoutItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarFlyoutItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarFlyoutItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarFlyoutItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarFlyoutItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarFlyoutItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarFlyoutItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarFlyoutItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarFlyoutItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarFlyoutItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarFlyoutItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarFlyoutItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarFlyoutItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarFlyoutItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarFlyoutItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarFlyoutItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarFlyoutItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarFlyoutItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarFlyoutItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarFlyoutItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarFlyoutItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarFlyoutItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarFlyoutItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarFlyoutItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarFlyoutItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarFlyoutItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarFlyoutItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarFlyoutItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarFlyoutItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarFlyoutItem::addEventListener: ${name}`); - switch (name) { - case "checked": // Foundation.TypedEventHandler - case "unchecked": // Foundation.TypedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum InkToolbarFlyoutItemKind { - simple, - radio, - check, - radioCheck, - } - export class InkToolbarHighlighterButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton, IInkToolbarPenButton, IInkToolbarHighlighterButton { - // constructor(); - selectedStrokeWidth: number = 0; - selectedBrushIndex: number = 0; - palette: Media.Brush[]; - minStrokeWidth: number = 0; - maxStrokeWidth: number = 0; - selectedBrush: Media.Brush; - isExtensionGlyphShown: Boolean = false; - toolKind: InkToolbarTool = InkToolbarTool.highlighter; - groupName: string = ''; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'H', 'i', 'g', 'h', 'l', 'i', 'g', 'h', 't', 'e', 'r', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarHighlighterButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarHighlighterButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarHighlighterButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarHighlighterButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarHighlighterButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarHighlighterButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarHighlighterButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarHighlighterButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarHighlighterButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarHighlighterButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarHighlighterButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarHighlighterButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarHighlighterButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarHighlighterButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarHighlighterButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarHighlighterButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarHighlighterButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarHighlighterButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarHighlighterButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarHighlighterButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarHighlighterButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarHighlighterButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarHighlighterButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarHighlighterButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarHighlighterButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarHighlighterButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarHighlighterButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarHighlighterButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarHighlighterButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarHighlighterButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarHighlighterButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarHighlighterButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarHighlighterButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarHighlighterButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarHighlighterButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarHighlighterButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarHighlighterButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarHighlighterButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarHighlighterButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarHighlighterButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarHighlighterButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarHighlighterButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarHighlighterButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarHighlighterButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarHighlighterButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarHighlighterButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarHighlighterButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarHighlighterButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum InkToolbarInitialControls { - all, - none, - pensOnly, - allExceptPens, - } - export class InkToolbarIsStencilButtonCheckedChangedEventArgs implements IInkToolbarIsStencilButtonCheckedChangedEventArgs { - // constructor(); - stencilButton: InkToolbarStencilButton; - stencilKind: InkToolbarStencilKind = InkToolbarStencilKind.ruler; - - } - export class InkToolbarMenuButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IInkToolbarMenuButton { - isExtensionGlyphShown: Boolean; - menuKind: InkToolbarMenuKind; - static isExtensionGlyphShownProperty: DependencyProperty = null; - isThreeState: Boolean; - isChecked: Boolean | null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode; - isPointerOver: Boolean; - isPressed: Boolean; - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarMenuButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarMenuButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarMenuButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarMenuButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarMenuButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarMenuButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarMenuButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarMenuButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarMenuButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarMenuButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarMenuButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarMenuButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarMenuButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarMenuButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarMenuButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarMenuButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarMenuButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarMenuButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarMenuButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarMenuButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarMenuButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarMenuButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarMenuButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarMenuButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarMenuButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarMenuButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarMenuButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarMenuButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarMenuButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarMenuButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarMenuButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarMenuButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarMenuButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarMenuButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarMenuButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarMenuButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarMenuButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarMenuButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarMenuButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarMenuButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarMenuButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarMenuButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarMenuButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarMenuButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarMenuButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarMenuButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarMenuButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarMenuButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum InkToolbarMenuKind { - stencil, - } - export class InkToolbarPenButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton, IInkToolbarPenButton { - selectedStrokeWidth: number; - selectedBrushIndex: number; - palette: Media.Brush[]; - minStrokeWidth: number; - maxStrokeWidth: number; - selectedBrush: Media.Brush; - static maxStrokeWidthProperty: DependencyProperty = null; - static minStrokeWidthProperty: DependencyProperty = null; - static paletteProperty: DependencyProperty = null; - static selectedBrushIndexProperty: DependencyProperty = null; - static selectedBrushProperty: DependencyProperty = null; - static selectedStrokeWidthProperty: DependencyProperty = null; - isExtensionGlyphShown: Boolean; - toolKind: InkToolbarTool; - groupName: string; - isThreeState: Boolean; - isChecked: Boolean | null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode; - isPointerOver: Boolean; - isPressed: Boolean; - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPenButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarPenButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarPenButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPenButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPenButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarPenButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarPenButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarPenButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarPenButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarPenButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarPenButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarPenButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarPenButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarPenButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarPenButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarPenButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarPenButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarPenButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarPenButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarPenButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarPenButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarPenButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarPenButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarPenButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarPenButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarPenButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarPenButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarPenButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarPenButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarPenButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarPenButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarPenButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarPenButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarPenButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarPenButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarPenButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarPenButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarPenButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarPenButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarPenButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarPenButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarPenButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarPenButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarPenButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarPenButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarPenButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarPenButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarPencilButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton, IInkToolbarPenButton, IInkToolbarPencilButton { - // constructor(); - selectedStrokeWidth: number = 0; - selectedBrushIndex: number = 0; - palette: Media.Brush[]; - minStrokeWidth: number = 0; - maxStrokeWidth: number = 0; - selectedBrush: Media.Brush; - isExtensionGlyphShown: Boolean = false; - toolKind: InkToolbarTool = InkToolbarTool.pencil; - groupName: string = ''; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'P', 'e', 'n', 'c', 'i', 'l', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPencilButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarPencilButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarPencilButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPencilButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPencilButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarPencilButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarPencilButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarPencilButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarPencilButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarPencilButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarPencilButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarPencilButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarPencilButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarPencilButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarPencilButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarPencilButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarPencilButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarPencilButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarPencilButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarPencilButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarPencilButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarPencilButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarPencilButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarPencilButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarPencilButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarPencilButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarPencilButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarPencilButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarPencilButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarPencilButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarPencilButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarPencilButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarPencilButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarPencilButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarPencilButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarPencilButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarPencilButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarPencilButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarPencilButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarPencilButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarPencilButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarPencilButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPencilButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarPencilButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarPencilButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarPencilButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarPencilButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarPencilButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarPenConfigurationControl implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IInkToolbarPenConfigurationControl { - // constructor(); - penButton: InkToolbarPenButton; - static penButtonProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'P', 'e', 'n', 'C', 'o', 'n', 'f', 'i', 'g', 'u', 'r', 'a', 't', 'i', 'o', 'n', 'C', 'o', 'n', 't', 'r', 'o', 'l' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPenConfigurationControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPenConfigurationControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarPenConfigurationControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarPenConfigurationControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarPenConfigurationControl.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarPenConfigurationControl.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarPenConfigurationControl.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarPenConfigurationControl.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarPenConfigurationControl.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarPenConfigurationControl.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarPenConfigurationControl.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarPenConfigurationControl.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarPenConfigurationControl.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarPenConfigurationControl.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarPenConfigurationControl.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarPenConfigurationControl.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarPenConfigurationControl.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarPenConfigurationControl.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarPenConfigurationControl.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarPenConfigurationControl.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarPenConfigurationControl::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarRulerButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, ICheckBox, IInkToolbarToggleButton, IInkToolbarRulerButton { - // constructor(); - ruler: Input.Inking.InkPresenterRuler; - static rulerProperty: DependencyProperty = null; - toggleKind: InkToolbarToggle = InkToolbarToggle.ruler; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'R', 'u', 'l', 'e', 'r', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarRulerButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarRulerButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarRulerButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarRulerButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarRulerButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarRulerButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarRulerButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarRulerButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarRulerButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarRulerButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarRulerButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarRulerButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarRulerButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarRulerButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarRulerButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarRulerButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarRulerButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarRulerButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarRulerButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarRulerButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarRulerButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarRulerButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarRulerButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarRulerButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarRulerButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarRulerButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarRulerButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarRulerButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarRulerButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarRulerButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarRulerButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarRulerButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarRulerButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarRulerButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarRulerButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarRulerButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarRulerButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarRulerButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarRulerButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarRulerButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarRulerButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarRulerButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarRulerButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarRulerButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarRulerButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarRulerButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarRulerButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarRulerButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class InkToolbarStencilButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IInkToolbarMenuButton, IInkToolbarStencilButton { - // constructor(); - selectedStencil: InkToolbarStencilKind = InkToolbarStencilKind.ruler; - isRulerItemVisible: Boolean = true; - isProtractorItemVisible: Boolean = true; - protractor: Input.Inking.InkPresenterProtractor; - ruler: Input.Inking.InkPresenterRuler; - static isProtractorItemVisibleProperty: DependencyProperty = null; - static isRulerItemVisibleProperty: DependencyProperty = null; - static protractorProperty: DependencyProperty = null; - static rulerProperty: DependencyProperty = null; - static selectedStencilProperty: DependencyProperty = null; - isExtensionGlyphShown: Boolean = false; - menuKind: InkToolbarMenuKind = InkToolbarMenuKind.stencil; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'I', 'n', 'k', 'T', 'o', 'o', 'l', 'b', 'a', 'r', 'S', 't', 'e', 'n', 'c', 'i', 'l', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarStencilButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarStencilButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarStencilButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarStencilButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarStencilButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarStencilButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarStencilButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarStencilButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarStencilButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarStencilButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarStencilButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarStencilButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarStencilButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarStencilButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarStencilButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarStencilButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarStencilButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarStencilButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarStencilButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarStencilButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarStencilButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarStencilButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarStencilButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarStencilButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarStencilButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarStencilButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarStencilButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarStencilButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarStencilButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarStencilButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarStencilButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarStencilButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarStencilButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarStencilButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarStencilButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarStencilButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarStencilButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarStencilButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarStencilButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarStencilButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarStencilButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarStencilButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarStencilButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarStencilButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarStencilButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarStencilButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarStencilButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarStencilButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum InkToolbarStencilKind { - ruler, - protractor, - } - export enum InkToolbarToggle { - ruler, - custom, - } - export class InkToolbarToggleButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, ICheckBox, IInkToolbarToggleButton { - toggleKind: InkToolbarToggle; - isThreeState: Boolean; - isChecked: Boolean | null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode; - isPointerOver: Boolean; - isPressed: Boolean; - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarToggleButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarToggleButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarToggleButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarToggleButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarToggleButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarToggleButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarToggleButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarToggleButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarToggleButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarToggleButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarToggleButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarToggleButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarToggleButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarToggleButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarToggleButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarToggleButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarToggleButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarToggleButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarToggleButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarToggleButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarToggleButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarToggleButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarToggleButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarToggleButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarToggleButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarToggleButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarToggleButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarToggleButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarToggleButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarToggleButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarToggleButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarToggleButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarToggleButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarToggleButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarToggleButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarToggleButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarToggleButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarToggleButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarToggleButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarToggleButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarToggleButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarToggleButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToggleButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarToggleButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarToggleButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarToggleButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarToggleButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarToggleButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum InkToolbarTool { - ballpointPen, - pencil, - highlighter, - eraser, - customPen, - customTool, - } - export class InkToolbarToolButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton, IInkToolbarToolButton { - isExtensionGlyphShown: Boolean; - toolKind: InkToolbarTool; - static isExtensionGlyphShownProperty: DependencyProperty = null; - groupName: string; - isThreeState: Boolean; - isChecked: Boolean | null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode; - isPointerOver: Boolean; - isPressed: Boolean; - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarToolButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InkToolbarToolButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InkToolbarToolButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarToolButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InkToolbarToolButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InkToolbarToolButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InkToolbarToolButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function InkToolbarToolButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function InkToolbarToolButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function InkToolbarToolButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function InkToolbarToolButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function InkToolbarToolButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function InkToolbarToolButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function InkToolbarToolButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function InkToolbarToolButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function InkToolbarToolButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function InkToolbarToolButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function InkToolbarToolButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function InkToolbarToolButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function InkToolbarToolButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function InkToolbarToolButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function InkToolbarToolButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarToolButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function InkToolbarToolButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function InkToolbarToolButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InkToolbarToolButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function InkToolbarToolButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function InkToolbarToolButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarToolButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function InkToolbarToolButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function InkToolbarToolButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function InkToolbarToolButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function InkToolbarToolButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function InkToolbarToolButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarToolButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function InkToolbarToolButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function InkToolbarToolButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function InkToolbarToolButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function InkToolbarToolButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function InkToolbarToolButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function InkToolbarToolButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function InkToolbarToolButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function InkToolbarToolButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function InkToolbarToolButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function InkToolbarToolButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function InkToolbarToolButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function InkToolbarToolButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InkToolbarToolButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export interface IScrollAnchorProvider { - currentAnchor: UIElement; - registerAnchorCandidate(element: UIElement): void; - unregisterAnchorCandidate(element: UIElement): void; - } - export interface ISemanticZoomInformation { - isActiveView: Boolean; - isZoomedInView: Boolean; - semanticZoomOwner: SemanticZoom; - initializeViewChange(): void; - completeViewChange(): void; - makeVisible(item: SemanticZoomLocation): void; - startViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void; - startViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void; - completeViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void; - completeViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void; - } - export class IsTextTrimmedChangedEventArgs implements IIsTextTrimmedChangedEventArgs { - } - export class ItemClickEventArgs implements IRoutedEventArgs, IItemClickEventArgs { - // constructor(); - clickedItem: any; - originalSource: any; - - } - export type ItemClickEventHandler = (e: ItemClickEventArgs) => void; - export class ItemCollection implements Foundation.Collections.IObservableVector, Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): any { - throw new Error('shimmed function ItemCollection.getAt'); - } - - getView(): any[] { - throw new Error('shimmed function ItemCollection.getView'); - } - - indexOf(value: any): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ItemCollection.indexOf'); - } - - setAt(index: number, value: any): void { - console.warn('shimmed function ItemCollection.setAt'); - } - - insertAt(index: number, value: any): void { - console.warn('shimmed function ItemCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function ItemCollection.removeAt'); - } - - append(value: any): void { - console.warn('shimmed function ItemCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function ItemCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function ItemCollection.clear'); - } - - getMany(startIndex: number, items: any[]): number { - throw new Error('shimmed function ItemCollection.getMany'); - } - - replaceAll(items: any[]): void { - console.warn('shimmed function ItemCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ItemCollection.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ItemCollection::addEventListener: ${name}`); - switch (name) { - case "vectorchanged": // Foundation.Collections.VectorChangedEventHandler - break; - } - - } - } - export class ItemContainerGenerator implements IItemContainerGenerator { - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function ItemContainerGenerator.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function ItemContainerGenerator.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function ItemContainerGenerator.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function ItemContainerGenerator.containerFromIndex'); - } - - getItemContainerGeneratorForPanel(panel: Panel): ItemContainerGenerator { - throw new Error('shimmed function ItemContainerGenerator.getItemContainerGeneratorForPanel'); - } - - startAt(position: /* Windows.UI.Xaml.Controls.Primitives.GeneratorPosition */ any, direction: Primitives.GeneratorDirection, allowStartAtRealizedItem: Boolean): void { - console.warn('shimmed function ItemContainerGenerator.startAt'); - } - - stop(): void { - console.warn('shimmed function ItemContainerGenerator.stop'); - } - - generateNext(): { returnValue: DependencyObject, isNewlyRealized: Boolean } { - throw new Error('shimmed function ItemContainerGenerator.generateNext'); - } - - prepareItemContainer(container: DependencyObject): void { - console.warn('shimmed function ItemContainerGenerator.prepareItemContainer'); - } - - generatorPositionFromIndex(itemIndex: number): /* Windows.UI.Xaml.Controls.Primitives.GeneratorPosition */ any { - throw new Error('shimmed function ItemContainerGenerator.generatorPositionFromIndex'); - } - - indexFromGeneratorPosition(position: /* Windows.UI.Xaml.Controls.Primitives.GeneratorPosition */ any): number { - throw new Error('shimmed function ItemContainerGenerator.indexFromGeneratorPosition'); - } - - recycle(position: /* Windows.UI.Xaml.Controls.Primitives.GeneratorPosition */ any, count: number): void { - console.warn('shimmed function ItemContainerGenerator.recycle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ItemContainerGenerator::addEventListener: ${name}`); - switch (name) { - case "itemschanged": // Primitives.ItemsChangedEventHandler - break; - } - - } - } - export class ItemsControl implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping { - // constructor(); - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - static displayMemberPathProperty: DependencyProperty = null; - static groupStyleSelectorProperty: DependencyProperty = null; - static isGroupingProperty: DependencyProperty = null; - static itemContainerStyleProperty: DependencyProperty = null; - static itemContainerStyleSelectorProperty: DependencyProperty = null; - static itemContainerTransitionsProperty: DependencyProperty = null; - static itemTemplateProperty: DependencyProperty = null; - static itemTemplateSelectorProperty: DependencyProperty = null; - static itemsPanelProperty: DependencyProperty = null; - static itemsSourceProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemsControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemsControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemsControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemsControl.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ItemsControl.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ItemsControl.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ItemsControl.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ItemsControl.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ItemsControl.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ItemsControl.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ItemsControl.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ItemsControl.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ItemsControl.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ItemsControl.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ItemsControl.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ItemsControl.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ItemsControl.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ItemsControl.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ItemsControl.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsControl.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsControl.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsControl.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ItemsControl.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ItemsControl.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ItemsControl.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemsControl.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsControl.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ItemsControl.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ItemsControl.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsControl.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsControl.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ItemsControl.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ItemsControl.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ItemsControl.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ItemsControl.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsControl.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsControl.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ItemsControl.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ItemsControl.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ItemsControl.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ItemsControl.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ItemsControl.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ItemsControl.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ItemsControl.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ItemsControl.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ItemsControl.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ItemsControl.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ItemsControl.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function ItemsControl.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function ItemsControl.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function ItemsControl.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ItemsControl.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ItemsControl.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function ItemsControl.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function ItemsControl.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function ItemsControl.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function ItemsControl.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ItemsControl.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function ItemsControl.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function ItemsControl.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function ItemsControl.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function ItemsControl.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function ItemsControl.containerFromIndex'); - } - - static getItemsOwner(element: DependencyObject): ItemsControl { - throw new Error('shimmed function ItemsControl.getItemsOwner'); - } - - static itemsControlFromItemContainer(container: DependencyObject): ItemsControl { - throw new Error('shimmed function ItemsControl.itemsControlFromItemContainer'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ItemsControl::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ItemsPanelTemplate implements IDependencyObject, IDependencyObject2, IFrameworkTemplate, IItemsPanelTemplate { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPanelTemplate.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemsPanelTemplate.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemsPanelTemplate.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPanelTemplate.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPanelTemplate.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemsPanelTemplate.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemsPanelTemplate.unregisterPropertyChangedCallback'); - } - - } - export class ItemsPickedEventArgs implements IDependencyObject, IDependencyObject2, IItemsPickedEventArgs { - // constructor(); - addedItems: any[]; - removedItems: any[]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPickedEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemsPickedEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemsPickedEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPickedEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPickedEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemsPickedEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemsPickedEventArgs.unregisterPropertyChangedCallback'); - } - - } - export class ItemsPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IItemsPresenter, IItemsPresenter2, Primitives.IScrollSnapPointsInfo { - // constructor(); - padding: Thickness = null; - headerTransitions: Media.Animation.TransitionCollection = [ ]; - headerTemplate: DataTemplate; - header: any; - footerTransitions: Media.Animation.TransitionCollection = [ ]; - footerTemplate: DataTemplate; - footer: any; - areHorizontalSnapPointsRegular: Boolean = false; - areVerticalSnapPointsRegular: Boolean = false; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static headerTransitionsProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static footerProperty: DependencyProperty = null; - static footerTemplateProperty: DependencyProperty = null; - static footerTransitionsProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemsPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemsPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemsPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemsPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ItemsPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ItemsPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ItemsPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ItemsPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ItemsPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ItemsPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ItemsPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ItemsPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ItemsPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ItemsPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ItemsPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ItemsPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ItemsPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ItemsPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ItemsPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ItemsPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ItemsPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ItemsPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemsPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ItemsPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ItemsPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ItemsPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ItemsPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ItemsPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ItemsPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ItemsPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ItemsPresenter.goToElementStateCore'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): number[] { - throw new Error('shimmed function ItemsPresenter.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function ItemsPresenter.getRegularSnapPoints'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ItemsPresenter::addEventListener: ${name}`); - switch (name) { - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ItemsStackPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IItemsStackPanel, IItemsStackPanel2 { - // constructor(); - orientation: Orientation = Orientation.vertical; - itemsUpdatingScrollMode: ItemsUpdatingScrollMode = ItemsUpdatingScrollMode.keepItemsInView; - groupPadding: Thickness = null; - groupHeaderPlacement: Primitives.GroupHeaderPlacement = GroupHeaderPlacement.top; - cacheLength: number = 4; - firstCacheIndex: number = -1; - firstVisibleIndex: number = -1; - lastCacheIndex: number = -1; - lastVisibleIndex: number = -1; - scrollingDirection: PanelScrollingDirection = PanelScrollingDirection.none; - areStickyGroupHeadersEnabled: Boolean = true; - static cacheLengthProperty: DependencyProperty = null; - static groupHeaderPlacementProperty: DependencyProperty = null; - static groupPaddingProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static areStickyGroupHeadersEnabledProperty: DependencyProperty = null; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsStackPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemsStackPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemsStackPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsStackPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsStackPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemsStackPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemsStackPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ItemsStackPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ItemsStackPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ItemsStackPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ItemsStackPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ItemsStackPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ItemsStackPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ItemsStackPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ItemsStackPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ItemsStackPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ItemsStackPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ItemsStackPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ItemsStackPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ItemsStackPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ItemsStackPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ItemsStackPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsStackPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsStackPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsStackPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ItemsStackPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ItemsStackPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ItemsStackPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemsStackPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsStackPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ItemsStackPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ItemsStackPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsStackPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsStackPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ItemsStackPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ItemsStackPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ItemsStackPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ItemsStackPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsStackPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsStackPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ItemsStackPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ItemsStackPanel.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ItemsStackPanel::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ItemsUpdatingScrollMode { - keepItemsInView, - keepScrollOffset, - keepLastItemInView, - } - export class ItemsWrapGrid implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IItemsWrapGrid, IItemsWrapGrid2 { - // constructor(); - orientation: Orientation = Orientation.vertical; - maximumRowsOrColumns: number = -1; - itemWidth: number = NaN; - itemHeight: number = NaN; - groupPadding: Thickness = null; - groupHeaderPlacement: Primitives.GroupHeaderPlacement = GroupHeaderPlacement.top; - cacheLength: number = 4; - firstCacheIndex: number = -1; - firstVisibleIndex: number = -1; - lastCacheIndex: number = -1; - lastVisibleIndex: number = -1; - scrollingDirection: PanelScrollingDirection = PanelScrollingDirection.none; - areStickyGroupHeadersEnabled: Boolean = true; - static cacheLengthProperty: DependencyProperty = null; - static groupHeaderPlacementProperty: DependencyProperty = null; - static groupPaddingProperty: DependencyProperty = null; - static itemHeightProperty: DependencyProperty = null; - static itemWidthProperty: DependencyProperty = null; - static maximumRowsOrColumnsProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static areStickyGroupHeadersEnabledProperty: DependencyProperty = null; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsWrapGrid.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ItemsWrapGrid.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ItemsWrapGrid.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsWrapGrid.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ItemsWrapGrid.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ItemsWrapGrid.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ItemsWrapGrid.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ItemsWrapGrid.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ItemsWrapGrid.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ItemsWrapGrid.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ItemsWrapGrid.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ItemsWrapGrid.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ItemsWrapGrid.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ItemsWrapGrid.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ItemsWrapGrid.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ItemsWrapGrid.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ItemsWrapGrid.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ItemsWrapGrid.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ItemsWrapGrid.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ItemsWrapGrid.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ItemsWrapGrid.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ItemsWrapGrid.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsWrapGrid.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsWrapGrid.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ItemsWrapGrid.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ItemsWrapGrid.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ItemsWrapGrid.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ItemsWrapGrid.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ItemsWrapGrid.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ItemsWrapGrid.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ItemsWrapGrid.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ItemsWrapGrid.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsWrapGrid.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ItemsWrapGrid.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ItemsWrapGrid.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ItemsWrapGrid.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ItemsWrapGrid.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ItemsWrapGrid.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsWrapGrid.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ItemsWrapGrid.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ItemsWrapGrid.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ItemsWrapGrid.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ItemsWrapGrid::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum LightDismissOverlayMode { - auto, - on, - off, - } - export class ListBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IListBox, IListBox2 { - // constructor(); - selectionMode: SelectionMode = SelectionMode.single; - selectedItems: any[] = [ ]; - singleSelectionFollowsFocus: Boolean = true; - static selectionModeProperty: DependencyProperty = null; - static singleSelectionFollowsFocusProperty: DependencyProperty = null; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListBox.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function ListBox.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function ListBox.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function ListBox.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ListBox.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ListBox.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function ListBox.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function ListBox.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function ListBox.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function ListBox.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListBox.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function ListBox.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function ListBox.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function ListBox.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function ListBox.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function ListBox.containerFromIndex'); - } - - scrollIntoView(item: any): void { - console.warn('shimmed function ListBox.scrollIntoView'); - } - - selectAll(): void { - console.warn('shimmed function ListBox.selectAll'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListBox::addEventListener: ${name}`); - switch (name) { - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ListBoxItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IListBoxItem { - // constructor(); - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListBoxItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListBoxItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListBoxItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListBoxItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListBoxItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListBoxItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListBoxItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListBoxItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListBoxItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListBoxItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListBoxItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListBoxItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListBoxItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListBoxItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListBoxItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListBoxItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListBoxItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListBoxItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListBoxItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListBoxItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListBoxItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListBoxItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListBoxItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListBoxItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListBoxItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListBoxItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListBoxItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListBoxItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListBoxItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListBoxItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListBoxItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListBoxItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListBoxItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListBoxItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListBoxItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListBoxItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListBoxItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListBoxItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListBoxItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListBoxItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListBoxItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListBoxItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListBoxItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListBoxItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListBoxItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListBoxItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListBoxItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListBoxItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListBoxItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ListBoxItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ListBoxItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListBoxItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListBoxItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ListPickerFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, Primitives.IPickerFlyoutBase, Primitives.IPickerFlyoutBaseOverrides, IListPickerFlyout { - // constructor(); - selectionMode: ListPickerFlyoutSelectionMode = ListPickerFlyoutSelectionMode.single; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - itemsSource: any; - itemTemplate: DataTemplate; - displayMemberPath: string = ''; - selectedItems: any[] = [ ]; - static displayMemberPathProperty: DependencyProperty = null; - static itemTemplateProperty: DependencyProperty = null; - static itemsSourceProperty: DependencyProperty = null; - static selectedIndexProperty: DependencyProperty = null; - static selectedItemProperty: DependencyProperty = null; - static selectedValuePathProperty: DependencyProperty = null; - static selectedValueProperty: DependencyProperty = null; - static selectionModeProperty: DependencyProperty = null; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.full; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = true; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = false; - isConstrainedToRootBounds: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListPickerFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListPickerFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListPickerFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListPickerFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function ListPickerFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function ListPickerFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListPickerFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function ListPickerFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function ListPickerFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListPickerFlyout.onProcessKeyboardAccelerators'); - } - - onConfirmed(): void { - console.warn('shimmed function ListPickerFlyout.onConfirmed'); - } - - shouldShowConfirmationButtons(): Boolean { - throw new Error('shimmed function ListPickerFlyout.shouldShowConfirmationButtons'); - } - - showAtAsync(target: FrameworkElement): Foundation.IAsyncOperation { - throw new Error('shimmed function ListPickerFlyout.showAtAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListPickerFlyout::addEventListener: ${name}`); - switch (name) { - case "itemspicked": // Foundation.TypedEventHandler - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class ListPickerFlyoutPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IListPickerFlyoutPresenter { - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyoutPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListPickerFlyoutPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListPickerFlyoutPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyoutPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListPickerFlyoutPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListPickerFlyoutPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListPickerFlyoutPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListPickerFlyoutPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListPickerFlyoutPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListPickerFlyoutPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListPickerFlyoutPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListPickerFlyoutPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListPickerFlyoutPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListPickerFlyoutPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListPickerFlyoutPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListPickerFlyoutPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListPickerFlyoutPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListPickerFlyoutPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListPickerFlyoutPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListPickerFlyoutPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListPickerFlyoutPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListPickerFlyoutPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListPickerFlyoutPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListPickerFlyoutPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListPickerFlyoutPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListPickerFlyoutPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListPickerFlyoutPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListPickerFlyoutPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListPickerFlyoutPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListPickerFlyoutPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListPickerFlyoutPresenter.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListPickerFlyoutPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ListPickerFlyoutSelectionMode { - single, - multiple, - } - export class ListView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IListViewBase, IListViewBase2, IListViewBase3, IListViewBase4, IListViewBase5, IListViewBase6, ISemanticZoomInformation, IListView { - // constructor(); - selectionMode: ListViewSelectionMode = ListViewSelectionMode.single; - isSwipeEnabled: Boolean = true; - isItemClickEnabled: Boolean = false; - incrementalLoadingTrigger: IncrementalLoadingTrigger = IncrementalLoadingTrigger.edge; - incrementalLoadingThreshold: number = 0; - headerTransitions: Media.Animation.TransitionCollection = [ ]; - headerTemplate: DataTemplate; - header: any; - dataFetchSize: number = 3; - canReorderItems: Boolean = false; - canDragItems: Boolean = false; - selectedItems: any[] = [ ]; - showsScrollingPlaceholders: Boolean = true; - footerTransitions: Media.Animation.TransitionCollection = [ ]; - footerTemplate: DataTemplate; - footer: any; - reorderMode: ListViewReorderMode = ListViewReorderMode.disabled; - isMultiSelectCheckBoxEnabled: Boolean = true; - selectedRanges: Data.ItemIndexRange[] = [ ]; - singleSelectionFollowsFocus: Boolean = true; - semanticZoomOwner: SemanticZoom; - isZoomedInView: Boolean = true; - isActiveView: Boolean = false; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListView.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function ListView.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function ListView.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function ListView.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ListView.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ListView.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function ListView.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function ListView.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function ListView.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function ListView.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListView.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function ListView.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function ListView.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function ListView.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function ListView.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function ListView.containerFromIndex'); - } - - scrollIntoView(item: any): void { - console.warn('shimmed function ListView.scrollIntoView'); - } - - selectAll(): void { - console.warn('shimmed function ListView.selectAll'); - } - - loadMoreItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ListView.loadMoreItemsAsync'); - } - - scrollIntoView_1(item: any, alignment: ScrollIntoViewAlignment): void { - console.warn('shimmed function ListView.scrollIntoView_1'); - } - - setDesiredContainerUpdateDuration(duration: number): void { - console.warn('shimmed function ListView.setDesiredContainerUpdateDuration'); - } - - selectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function ListView.selectRange'); - } - - deselectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function ListView.deselectRange'); - } - - isDragSource(): Boolean { - throw new Error('shimmed function ListView.isDragSource'); - } - - tryStartConnectedAnimationAsync(animation: Media.Animation.ConnectedAnimation, item: any, elementName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ListView.tryStartConnectedAnimationAsync'); - } - - prepareConnectedAnimation(key: string, item: any, elementName: string): Media.Animation.ConnectedAnimation { - throw new Error('shimmed function ListView.prepareConnectedAnimation'); - } - - initializeViewChange(): void { - console.warn('shimmed function ListView.initializeViewChange'); - } - - completeViewChange(): void { - console.warn('shimmed function ListView.completeViewChange'); - } - - makeVisible(item: SemanticZoomLocation): void { - console.warn('shimmed function ListView.makeVisible'); - } - - startViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListView.startViewChangeFrom'); - } - - startViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListView.startViewChangeTo'); - } - - completeViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListView.completeViewChangeFrom'); - } - - completeViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListView.completeViewChangeTo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListView::addEventListener: ${name}`); - switch (name) { - case "dragitemsstarting": // DragItemsStartingEventHandler - case "itemclick": // ItemClickEventHandler - case "containercontentchanging": // Foundation.TypedEventHandler - case "choosinggroupheadercontainer": // Foundation.TypedEventHandler - case "choosingitemcontainer": // Foundation.TypedEventHandler - case "dragitemscompleted": // Foundation.TypedEventHandler - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ListViewBase implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IListViewBase, IListViewBase2, IListViewBase3, IListViewBase4, IListViewBase5, IListViewBase6, ISemanticZoomInformation { - selectionMode: ListViewSelectionMode; - isSwipeEnabled: Boolean; - isItemClickEnabled: Boolean; - incrementalLoadingTrigger: IncrementalLoadingTrigger; - incrementalLoadingThreshold: number; - headerTransitions: Media.Animation.TransitionCollection; - headerTemplate: DataTemplate; - header: any; - dataFetchSize: number; - canReorderItems: Boolean; - canDragItems: Boolean; - selectedItems: any[]; - showsScrollingPlaceholders: Boolean; - footerTransitions: Media.Animation.TransitionCollection; - footerTemplate: DataTemplate; - footer: any; - reorderMode: ListViewReorderMode; - isMultiSelectCheckBoxEnabled: Boolean; - selectedRanges: Data.ItemIndexRange[]; - singleSelectionFollowsFocus: Boolean; - semanticZoomOwner: SemanticZoom; - isZoomedInView: Boolean; - isActiveView: Boolean; - static canDragItemsProperty: DependencyProperty = null; - static canReorderItemsProperty: DependencyProperty = null; - static dataFetchSizeProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static headerTransitionsProperty: DependencyProperty = null; - static incrementalLoadingThresholdProperty: DependencyProperty = null; - static incrementalLoadingTriggerProperty: DependencyProperty = null; - static isActiveViewProperty: DependencyProperty = null; - static isItemClickEnabledProperty: DependencyProperty = null; - static isSwipeEnabledProperty: DependencyProperty = null; - static isZoomedInViewProperty: DependencyProperty = null; - static selectionModeProperty: DependencyProperty = null; - static semanticZoomOwnerProperty: DependencyProperty = null; - static footerProperty: DependencyProperty = null; - static footerTemplateProperty: DependencyProperty = null; - static footerTransitionsProperty: DependencyProperty = null; - static showsScrollingPlaceholdersProperty: DependencyProperty = null; - static reorderModeProperty: DependencyProperty = null; - static isMultiSelectCheckBoxEnabledProperty: DependencyProperty = null; - static singleSelectionFollowsFocusProperty: DependencyProperty = null; - selectedValuePath: string; - selectedValue: any; - selectedItem: any; - selectedIndex: number; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string; - groupStyle: GroupStyle[]; - isGrouping: Boolean; - itemContainerGenerator: ItemContainerGenerator; - items: ItemCollection; - itemsPanelRoot: Panel; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewBase.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListViewBase.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListViewBase.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListViewBase.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListViewBase.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListViewBase.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListViewBase.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListViewBase.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListViewBase.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListViewBase.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListViewBase.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListViewBase.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListViewBase.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListViewBase.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListViewBase.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListViewBase.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewBase.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewBase.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewBase.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListViewBase.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListViewBase.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListViewBase.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBase.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewBase.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListViewBase.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListViewBase.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewBase.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewBase.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListViewBase.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListViewBase.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListViewBase.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListViewBase.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewBase.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewBase.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListViewBase.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListViewBase.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListViewBase.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListViewBase.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListViewBase.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListViewBase.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListViewBase.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListViewBase.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListViewBase.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListViewBase.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListViewBase.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function ListViewBase.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function ListViewBase.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function ListViewBase.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ListViewBase.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function ListViewBase.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function ListViewBase.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function ListViewBase.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function ListViewBase.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function ListViewBase.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListViewBase.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function ListViewBase.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function ListViewBase.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function ListViewBase.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function ListViewBase.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function ListViewBase.containerFromIndex'); - } - - scrollIntoView(item: any): void { - console.warn('shimmed function ListViewBase.scrollIntoView'); - } - - selectAll(): void { - console.warn('shimmed function ListViewBase.selectAll'); - } - - loadMoreItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function ListViewBase.loadMoreItemsAsync'); - } - - scrollIntoView_1(item: any, alignment: ScrollIntoViewAlignment): void { - console.warn('shimmed function ListViewBase.scrollIntoView_1'); - } - - setDesiredContainerUpdateDuration(duration: number): void { - console.warn('shimmed function ListViewBase.setDesiredContainerUpdateDuration'); - } - - selectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function ListViewBase.selectRange'); - } - - deselectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function ListViewBase.deselectRange'); - } - - isDragSource(): Boolean { - throw new Error('shimmed function ListViewBase.isDragSource'); - } - - tryStartConnectedAnimationAsync(animation: Media.Animation.ConnectedAnimation, item: any, elementName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function ListViewBase.tryStartConnectedAnimationAsync'); - } - - prepareConnectedAnimation(key: string, item: any, elementName: string): Media.Animation.ConnectedAnimation { - throw new Error('shimmed function ListViewBase.prepareConnectedAnimation'); - } - - initializeViewChange(): void { - console.warn('shimmed function ListViewBase.initializeViewChange'); - } - - completeViewChange(): void { - console.warn('shimmed function ListViewBase.completeViewChange'); - } - - makeVisible(item: SemanticZoomLocation): void { - console.warn('shimmed function ListViewBase.makeVisible'); - } - - startViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListViewBase.startViewChangeFrom'); - } - - startViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListViewBase.startViewChangeTo'); - } - - completeViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListViewBase.completeViewChangeFrom'); - } - - completeViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function ListViewBase.completeViewChangeTo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListViewBase::addEventListener: ${name}`); - switch (name) { - case "dragitemsstarting": // DragItemsStartingEventHandler - case "itemclick": // ItemClickEventHandler - case "containercontentchanging": // Foundation.TypedEventHandler - case "choosinggroupheadercontainer": // Foundation.TypedEventHandler - case "choosingitemcontainer": // Foundation.TypedEventHandler - case "dragitemscompleted": // Foundation.TypedEventHandler - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ListViewBaseHeaderItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IListViewBaseHeaderItem { - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseHeaderItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewBaseHeaderItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewBaseHeaderItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseHeaderItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewBaseHeaderItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewBaseHeaderItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewBaseHeaderItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListViewBaseHeaderItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListViewBaseHeaderItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListViewBaseHeaderItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListViewBaseHeaderItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListViewBaseHeaderItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListViewBaseHeaderItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListViewBaseHeaderItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListViewBaseHeaderItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListViewBaseHeaderItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListViewBaseHeaderItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListViewBaseHeaderItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListViewBaseHeaderItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListViewBaseHeaderItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewBaseHeaderItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewBaseHeaderItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListViewBaseHeaderItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListViewBaseHeaderItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListViewBaseHeaderItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewBaseHeaderItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewBaseHeaderItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewBaseHeaderItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListViewBaseHeaderItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListViewBaseHeaderItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListViewBaseHeaderItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListViewBaseHeaderItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewBaseHeaderItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewBaseHeaderItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListViewBaseHeaderItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListViewBaseHeaderItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListViewBaseHeaderItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListViewBaseHeaderItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListViewBaseHeaderItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ListViewBaseHeaderItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ListViewBaseHeaderItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListViewBaseHeaderItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListViewBaseHeaderItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ListViewHeaderItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IListViewBaseHeaderItem, IListViewHeaderItem { - // constructor(); - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewHeaderItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewHeaderItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewHeaderItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewHeaderItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewHeaderItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewHeaderItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewHeaderItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListViewHeaderItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListViewHeaderItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListViewHeaderItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListViewHeaderItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListViewHeaderItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListViewHeaderItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListViewHeaderItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListViewHeaderItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListViewHeaderItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListViewHeaderItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListViewHeaderItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListViewHeaderItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListViewHeaderItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListViewHeaderItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListViewHeaderItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewHeaderItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewHeaderItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListViewHeaderItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListViewHeaderItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListViewHeaderItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewHeaderItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewHeaderItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewHeaderItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListViewHeaderItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListViewHeaderItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListViewHeaderItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListViewHeaderItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewHeaderItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewHeaderItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListViewHeaderItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListViewHeaderItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListViewHeaderItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListViewHeaderItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListViewHeaderItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListViewHeaderItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListViewHeaderItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ListViewHeaderItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ListViewHeaderItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListViewHeaderItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListViewHeaderItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ListViewItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IListViewItem { - // constructor(); - templateSettings: Primitives.ListViewItemTemplateSettings = null; - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListViewItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListViewItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListViewItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListViewItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListViewItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListViewItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListViewItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListViewItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListViewItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListViewItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListViewItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListViewItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListViewItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListViewItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListViewItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListViewItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListViewItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListViewItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListViewItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListViewItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListViewItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListViewItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListViewItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListViewItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListViewItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListViewItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ListViewItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ListViewItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ListViewItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ListViewItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ListViewItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ListViewItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ListViewItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ListViewItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ListViewItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ListViewItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ListViewItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListViewItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListViewItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export type ListViewItemToKeyHandler = () => string; - export type ListViewKeyToItemHandler = () => Foundation.IAsyncOperation; - export class ListViewPersistenceHelper implements IListViewPersistenceHelper { - static getRelativeScrollPosition(listViewBase: ListViewBase, itemToKeyHandler: ListViewItemToKeyHandler): string { - throw new Error('shimmed function ListViewPersistenceHelper.getRelativeScrollPosition'); - } - - static setRelativeScrollPositionAsync(listViewBase: ListViewBase, relativeScrollPosition: string, keyToItemHandler: ListViewKeyToItemHandler): Foundation.IAsyncAction { - throw new Error('shimmed function ListViewPersistenceHelper.setRelativeScrollPositionAsync'); - } - - } - export enum ListViewReorderMode { - disabled, - enabled, - } - export enum ListViewSelectionMode { - none, - single, - multiple, - extended, - } - export namespace Maps { - export class CustomMapTileDataSource implements IDependencyObject, IDependencyObject2, IMapTileDataSource, ICustomMapTileDataSource { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CustomMapTileDataSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CustomMapTileDataSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CustomMapTileDataSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CustomMapTileDataSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CustomMapTileDataSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CustomMapTileDataSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CustomMapTileDataSource.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CustomMapTileDataSource::addEventListener: ${name}`); - switch (name) { - case "bitmaprequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class HttpMapTileDataSource implements IDependencyObject, IDependencyObject2, IMapTileDataSource, IHttpMapTileDataSource { - // constructor(); - // constructor(uriFormatString: string); - constructor(uriFormatString: string) {} - - uriFormatString: string = ''; - allowCaching: Boolean = true; - additionalRequestHeaders: string[] = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function HttpMapTileDataSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function HttpMapTileDataSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function HttpMapTileDataSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function HttpMapTileDataSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function HttpMapTileDataSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function HttpMapTileDataSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function HttpMapTileDataSource.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HttpMapTileDataSource::addEventListener: ${name}`); - switch (name) { - case "urirequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class LocalMapTileDataSource implements IDependencyObject, IDependencyObject2, IMapTileDataSource, ILocalMapTileDataSource { - // constructor(); - // constructor(uriFormatString: string); - constructor(uriFormatString: string) {} - - uriFormatString: string = ''; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LocalMapTileDataSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LocalMapTileDataSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LocalMapTileDataSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LocalMapTileDataSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LocalMapTileDataSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LocalMapTileDataSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LocalMapTileDataSource.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LocalMapTileDataSource::addEventListener: ${name}`); - switch (name) { - case "urirequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MapActualCameraChangedEventArgs implements IMapActualCameraChangedEventArgs, IMapActualCameraChangedEventArgs2 { - // constructor(); - camera: MapCamera; - changeReason: MapCameraChangeReason = MapCameraChangeReason.system; - - } - export class MapActualCameraChangingEventArgs implements IMapActualCameraChangingEventArgs, IMapActualCameraChangingEventArgs2 { - // constructor(); - camera: MapCamera; - changeReason: MapCameraChangeReason = MapCameraChangeReason.system; - - } - export enum MapAnimationKind { - default, - none, - linear, - bow, - } - export class MapBillboard implements IDependencyObject, IDependencyObject2, IMapElement, IMapElement2, IMapElement3, IMapElement4, IMapBillboard { - // constructor(camera: MapCamera); - constructor(camera: MapCamera) {} - - normalizedAnchorPoint: Foundation.Point; - location: Devices.Geolocation.Geopoint; - image: Storage.Streams.IRandomAccessStreamReference; - collisionBehaviorDesired: MapElementCollisionBehavior; - referenceCamera: MapCamera; - static collisionBehaviorDesiredProperty: DependencyProperty = null; - static locationProperty: DependencyProperty = null; - static normalizedAnchorPointProperty: DependencyProperty = null; - zindex: number; - visible: Boolean; - mapTabIndex: number; - tag: any; - mapStyleSheetEntryState: string; - mapStyleSheetEntry: string; - isEnabled: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapBillboard.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapBillboard.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapBillboard.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapBillboard.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapBillboard.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapBillboard.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapBillboard.unregisterPropertyChangedCallback'); - } - - } - export class MapCamera implements IDependencyObject, IDependencyObject2, IMapCamera { - // constructor(location: Devices.Geolocation.Geopoint); - // constructor(location: Devices.Geolocation.Geopoint, headingInDegrees: number); - // constructor(location: Devices.Geolocation.Geopoint, headingInDegrees: number, pitchInDegrees: number); - // constructor(location: Devices.Geolocation.Geopoint, headingInDegrees: number, pitchInDegrees: number, rollInDegrees: number, fieldOfViewInDegrees: number); - constructor(location: Devices.Geolocation.Geopoint, headingInDegrees: number, pitchInDegrees: number, rollInDegrees: number, fieldOfViewInDegrees: number) {} - - roll: number; - pitch: number; - location: Devices.Geolocation.Geopoint; - heading: number; - fieldOfView: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapCamera.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapCamera.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapCamera.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapCamera.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapCamera.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapCamera.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapCamera.unregisterPropertyChangedCallback'); - } - - } - export enum MapCameraChangeReason { - system, - userInteraction, - programmatic, - } - export enum MapColorScheme { - light, - dark, - } - export class MapContextRequestedEventArgs implements IMapContextRequestedEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElements: MapElement[]; - position: Foundation.Point = null; - - } - export class MapControl implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMapControl, IMapControl2, IMapControl3, IMapControl4, IMapControl5, IMapControl6, IMapControl7, IMapControl8 { - // constructor(); - zoomLevel: number = 2; - watermarkMode: MapWatermarkMode = MapWatermarkMode.automatic; - transformOrigin: Foundation.Point = null; - trafficFlowVisible: Boolean = false; - style: MapStyle = MapStyle.road; - pedestrianFeaturesVisible: Boolean = false; - mapServiceToken: string = ''; - center: Devices.Geolocation.Geopoint = null; - heading: number = 0; - desiredPitch: number = 0; - colorScheme: MapColorScheme = MapColorScheme.light; - landmarksVisible: Boolean = true; - children: DependencyObject[] = [ ]; - loadingStatus: MapLoadingStatus = MapLoadingStatus.loading; - mapElements: MapElement[] = [ ]; - maxZoomLevel: number = 20; - minZoomLevel: number = 1; - pitch: number = 0; - routes: MapRouteView[] = [ ]; - tileSources: MapTileSource[] = [ ]; - rotateInteractionMode: MapInteractionMode = MapInteractionMode.pointerAndKeyboard; - zoomInteractionMode: MapInteractionMode = MapInteractionMode.pointerAndKeyboard; - transitFeaturesVisible: Boolean = true; - tiltInteractionMode: MapInteractionMode = MapInteractionMode.pointerAndKeyboard; - scene: MapScene; - businessLandmarksVisible: Boolean = true; - panInteractionMode: MapPanInteractionMode = MapPanInteractionMode.auto; - customExperience: MapCustomExperience; - actualCamera: MapCamera = null; - is3DSupported: Boolean = true; - isStreetsideSupported: Boolean = true; - targetCamera: MapCamera = null; - transitFeaturesEnabled: Boolean = false; - businessLandmarksEnabled: Boolean = false; - viewPadding: Thickness = null; - styleSheet: MapStyleSheet = null; - mapProjection: MapProjection = MapProjection.webMercator; - layers: MapLayer[] = [ ]; - region: string = ''; - canTiltDown: Boolean = false; - canTiltUp: Boolean = false; - canZoomIn: Boolean = true; - canZoomOut: Boolean = true; - static centerProperty: DependencyProperty = null; - static zoomLevelProperty: DependencyProperty = null; - static childrenProperty: DependencyProperty = null; - static colorSchemeProperty: DependencyProperty = null; - static desiredPitchProperty: DependencyProperty = null; - static headingProperty: DependencyProperty = null; - static landmarksVisibleProperty: DependencyProperty = null; - static loadingStatusProperty: DependencyProperty = null; - static locationProperty: DependencyProperty = null; - static mapElementsProperty: DependencyProperty = null; - static mapServiceTokenProperty: DependencyProperty = null; - static normalizedAnchorPointProperty: DependencyProperty = null; - static pedestrianFeaturesVisibleProperty: DependencyProperty = null; - static pitchProperty: DependencyProperty = null; - static routesProperty: DependencyProperty = null; - static styleProperty: DependencyProperty = null; - static tileSourcesProperty: DependencyProperty = null; - static trafficFlowVisibleProperty: DependencyProperty = null; - static transformOriginProperty: DependencyProperty = null; - static watermarkModeProperty: DependencyProperty = null; - static businessLandmarksVisibleProperty: DependencyProperty = null; - static is3DSupportedProperty: DependencyProperty = null; - static isStreetsideSupportedProperty: DependencyProperty = null; - static panInteractionModeProperty: DependencyProperty = null; - static rotateInteractionModeProperty: DependencyProperty = null; - static sceneProperty: DependencyProperty = null; - static tiltInteractionModeProperty: DependencyProperty = null; - static transitFeaturesVisibleProperty: DependencyProperty = null; - static zoomInteractionModeProperty: DependencyProperty = null; - static businessLandmarksEnabledProperty: DependencyProperty = null; - static transitFeaturesEnabledProperty: DependencyProperty = null; - static mapProjectionProperty: DependencyProperty = null; - static styleSheetProperty: DependencyProperty = null; - static viewPaddingProperty: DependencyProperty = null; - static layersProperty: DependencyProperty = null; - static regionProperty: DependencyProperty = null; - static canTiltUpProperty: DependencyProperty = null; - static canZoomInProperty: DependencyProperty = null; - static canZoomOutProperty: DependencyProperty = null; - static canTiltDownProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = true; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'M', 'a', 'p', 's', '.', 'M', 'a', 'p', 'C', 'o', 'n', 't', 'r', 'o', 'l' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapControl.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MapControl.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MapControl.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MapControl.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MapControl.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MapControl.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MapControl.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MapControl.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MapControl.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MapControl.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MapControl.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MapControl.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MapControl.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MapControl.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MapControl.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MapControl.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MapControl.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MapControl.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MapControl.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MapControl.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MapControl.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MapControl.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MapControl.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MapControl.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MapControl.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MapControl.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MapControl.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MapControl.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MapControl.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MapControl.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MapControl.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MapControl.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MapControl.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MapControl.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MapControl.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MapControl.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MapControl.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MapControl.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MapControl.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MapControl.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MapControl.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MapControl.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MapControl.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MapControl.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MapControl.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MapControl.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MapControl.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MapControl.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MapControl.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MapControl.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MapControl.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MapControl.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MapControl.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MapControl.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MapControl.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MapControl.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MapControl.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MapControl.onCharacterReceived'); - } - - findMapElementsAtOffset(offset: Foundation.Point): MapElement[] { - throw new Error('shimmed function MapControl.findMapElementsAtOffset'); - } - - getLocationFromOffset(offset: Foundation.Point): Devices.Geolocation.Geopoint { - throw new Error('shimmed function MapControl.getLocationFromOffset'); - } - - getOffsetFromLocation(location: Devices.Geolocation.Geopoint): Foundation.Point { - throw new Error('shimmed function MapControl.getOffsetFromLocation'); - } - - isLocationInView(location: Devices.Geolocation.Geopoint): Boolean { - throw new Error('shimmed function MapControl.isLocationInView'); - } - - trySetViewBoundsAsync(bounds: Devices.Geolocation.GeoboundingBox, margin: Thickness | null, animation: MapAnimationKind): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.trySetViewBoundsAsync'); - } - - trySetViewAsync(center: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.trySetViewAsync'); - } - - trySetViewAsync_1(center: Devices.Geolocation.Geopoint, zoomLevel: number | null): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.trySetViewAsync_1'); - } - - trySetViewAsync_2(center: Devices.Geolocation.Geopoint, zoomLevel: number | null, heading: number | null, desiredPitch: number | null): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.trySetViewAsync_2'); - } - - trySetViewAsync_3(center: Devices.Geolocation.Geopoint, zoomLevel: number | null, heading: number | null, desiredPitch: number | null, animation: MapAnimationKind): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.trySetViewAsync_3'); - } - - startContinuousRotate(rateInDegreesPerSecond: number): void { - console.warn('shimmed function MapControl.startContinuousRotate'); - } - - stopContinuousRotate(): void { - console.warn('shimmed function MapControl.stopContinuousRotate'); - } - - startContinuousTilt(rateInDegreesPerSecond: number): void { - console.warn('shimmed function MapControl.startContinuousTilt'); - } - - stopContinuousTilt(): void { - console.warn('shimmed function MapControl.stopContinuousTilt'); - } - - startContinuousZoom(rateOfChangePerSecond: number): void { - console.warn('shimmed function MapControl.startContinuousZoom'); - } - - stopContinuousZoom(): void { - console.warn('shimmed function MapControl.stopContinuousZoom'); - } - - tryRotateAsync(degrees: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryRotateAsync'); - } - - tryRotateToAsync(angleInDegrees: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryRotateToAsync'); - } - - tryTiltAsync(degrees: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryTiltAsync'); - } - - tryTiltToAsync(angleInDegrees: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryTiltToAsync'); - } - - tryZoomInAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryZoomInAsync'); - } - - tryZoomOutAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryZoomOutAsync'); - } - - tryZoomToAsync(zoomLevel: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryZoomToAsync'); - } - - trySetSceneAsync(scene: MapScene): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.trySetSceneAsync'); - } - - trySetSceneAsync_1(scene: MapScene, animationKind: MapAnimationKind): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.trySetSceneAsync_1'); - } - - getVisibleRegion(region: MapVisibleRegionKind): Devices.Geolocation.Geopath { - throw new Error('shimmed function MapControl.getVisibleRegion'); - } - - findMapElementsAtOffset_1(offset: Foundation.Point, radius: number): MapElement[] { - throw new Error('shimmed function MapControl.findMapElementsAtOffset_1'); - } - - getLocationFromOffset_1(offset: Foundation.Point, desiredReferenceSystem: Devices.Geolocation.AltitudeReferenceSystem): Devices.Geolocation.Geopoint { - throw new Error('shimmed function MapControl.getLocationFromOffset_1'); - } - - startContinuousPan(horizontalPixelsPerSecond: number, verticalPixelsPerSecond: number): void { - console.warn('shimmed function MapControl.startContinuousPan'); - } - - stopContinuousPan(): void { - console.warn('shimmed function MapControl.stopContinuousPan'); - } - - tryPanAsync(horizontalPixels: number, verticalPixels: number): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryPanAsync'); - } - - tryPanToAsync(location: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MapControl.tryPanToAsync'); - } - - tryGetLocationFromOffset(offset: Foundation.Point): { returnValue: Boolean, location: Devices.Geolocation.Geopoint } { - throw new Error('shimmed function MapControl.tryGetLocationFromOffset'); - } - - tryGetLocationFromOffset_1(offset: Foundation.Point, desiredReferenceSystem: Devices.Geolocation.AltitudeReferenceSystem): { returnValue: Boolean, location: Devices.Geolocation.Geopoint } { - throw new Error('shimmed function MapControl.tryGetLocationFromOffset_1'); - } - - static getLocation(element: DependencyObject): Devices.Geolocation.Geopoint { - throw new Error('shimmed function MapControl.getLocation'); - } - - static setLocation(element: DependencyObject, value: Devices.Geolocation.Geopoint): void { - console.warn('shimmed function MapControl.setLocation'); - } - - static getNormalizedAnchorPoint(element: DependencyObject): Foundation.Point { - throw new Error('shimmed function MapControl.getNormalizedAnchorPoint'); - } - - static setNormalizedAnchorPoint(element: DependencyObject, value: Foundation.Point): void { - console.warn('shimmed function MapControl.setNormalizedAnchorPoint'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MapControl::addEventListener: ${name}`); - switch (name) { - case "centerchanged": // Foundation.TypedEventHandler - case "headingchanged": // Foundation.TypedEventHandler - case "loadingstatuschanged": // Foundation.TypedEventHandler - case "mapdoubletapped": // Foundation.TypedEventHandler - case "mapholding": // Foundation.TypedEventHandler - case "maptapped": // Foundation.TypedEventHandler - case "pitchchanged": // Foundation.TypedEventHandler - case "transformoriginchanged": // Foundation.TypedEventHandler - case "zoomlevelchanged": // Foundation.TypedEventHandler - case "actualcamerachanged": // Foundation.TypedEventHandler - case "actualcamerachanging": // Foundation.TypedEventHandler - case "customexperiencechanged": // Foundation.TypedEventHandler - case "mapelementclick": // Foundation.TypedEventHandler - case "mapelementpointerentered": // Foundation.TypedEventHandler - case "mapelementpointerexited": // Foundation.TypedEventHandler - case "targetcamerachanged": // Foundation.TypedEventHandler - case "maprighttapped": // Foundation.TypedEventHandler - case "mapcontextrequested": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MapControlBusinessLandmarkClickEventArgs implements IMapControlBusinessLandmarkClickEventArgs { - // constructor(); - localLocations: Services.Maps.LocalSearch.LocalLocation[]; - - } - export class MapControlBusinessLandmarkPointerEnteredEventArgs implements IMapControlBusinessLandmarkPointerEnteredEventArgs { - // constructor(); - localLocations: Services.Maps.LocalSearch.LocalLocation[]; - - } - export class MapControlBusinessLandmarkPointerExitedEventArgs implements IMapControlBusinessLandmarkPointerExitedEventArgs { - // constructor(); - localLocations: Services.Maps.LocalSearch.LocalLocation[]; - - } - export class MapControlBusinessLandmarkRightTappedEventArgs implements IMapControlBusinessLandmarkRightTappedEventArgs { - // constructor(); - localLocations: Services.Maps.LocalSearch.LocalLocation[]; - - } - export class MapControlDataHelper implements IDependencyObject, IDependencyObject2, IMapControlDataHelper, IMapControlDataHelper2 { - // constructor(map: MapControl); - constructor(map: MapControl) {} - - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControlDataHelper.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapControlDataHelper.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapControlDataHelper.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControlDataHelper.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapControlDataHelper.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapControlDataHelper.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapControlDataHelper.unregisterPropertyChangedCallback'); - } - - static createMapControl(rasterRenderMode: Boolean): MapControl { - throw new Error('shimmed function MapControlDataHelper.createMapControl'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MapControlDataHelper::addEventListener: ${name}`); - switch (name) { - case "businesslandmarkclick": // Foundation.TypedEventHandler - case "businesslandmarkrighttapped": // Foundation.TypedEventHandler - case "transitfeatureclick": // Foundation.TypedEventHandler - case "transitfeaturerighttapped": // Foundation.TypedEventHandler - case "businesslandmarkpointerentered": // Foundation.TypedEventHandler - case "businesslandmarkpointerexited": // Foundation.TypedEventHandler - case "transitfeaturepointerentered": // Foundation.TypedEventHandler - case "transitfeaturepointerexited": // Foundation.TypedEventHandler - break; - } - - } - } - export class MapControlTransitFeatureClickEventArgs implements IMapControlTransitFeatureClickEventArgs { - // constructor(); - displayName: string = ''; - location: Devices.Geolocation.Geopoint; - transitProperties: string[]; - - } - export class MapControlTransitFeaturePointerEnteredEventArgs implements IMapControlTransitFeaturePointerEnteredEventArgs { - // constructor(); - displayName: string = ''; - location: Devices.Geolocation.Geopoint; - transitProperties: string[]; - - } - export class MapControlTransitFeaturePointerExitedEventArgs implements IMapControlTransitFeaturePointerExitedEventArgs { - // constructor(); - displayName: string = ''; - location: Devices.Geolocation.Geopoint; - transitProperties: string[]; - - } - export class MapControlTransitFeatureRightTappedEventArgs implements IMapControlTransitFeatureRightTappedEventArgs { - // constructor(); - displayName: string = ''; - location: Devices.Geolocation.Geopoint; - transitProperties: string[]; - - } - export class MapCustomExperience implements IDependencyObject, IDependencyObject2, IMapCustomExperience { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapCustomExperience.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapCustomExperience.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapCustomExperience.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapCustomExperience.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapCustomExperience.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapCustomExperience.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapCustomExperience.unregisterPropertyChangedCallback'); - } - - } - export class MapCustomExperienceChangedEventArgs implements IMapCustomExperienceChangedEventArgs { - // constructor(); - } - export class MapElement implements IDependencyObject, IDependencyObject2, IMapElement, IMapElement2, IMapElement3, IMapElement4 { - // constructor(); - zindex: number = 1; - visible: Boolean = true; - mapTabIndex: number = 0; - tag: any; - mapStyleSheetEntryState: string = ''; - mapStyleSheetEntry: string = ''; - isEnabled: Boolean = true; - static visibleProperty: DependencyProperty = null; - static zindexProperty: DependencyProperty = null; - static mapTabIndexProperty: DependencyProperty = null; - static mapStyleSheetEntryProperty: DependencyProperty = null; - static mapStyleSheetEntryStateProperty: DependencyProperty = null; - static tagProperty: DependencyProperty = null; - static isEnabledProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapElement.unregisterPropertyChangedCallback'); - } - - } - export class MapElement3D implements IDependencyObject, IDependencyObject2, IMapElement, IMapElement2, IMapElement3, IMapElement4, IMapElement3D { - // constructor(); - scale: Foundation.Numerics.Vector3 = null; - roll: number = 0; - pitch: number = 0; - model: MapModel3D; - location: Devices.Geolocation.Geopoint; - heading: number = 0; - static headingProperty: DependencyProperty = null; - static locationProperty: DependencyProperty = null; - static pitchProperty: DependencyProperty = null; - static rollProperty: DependencyProperty = null; - static scaleProperty: DependencyProperty = null; - zindex: number = 1; - visible: Boolean = true; - mapTabIndex: number = 0; - tag: any; - mapStyleSheetEntryState: string = ''; - mapStyleSheetEntry: string = ''; - isEnabled: Boolean = true; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElement3D.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapElement3D.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapElement3D.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElement3D.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElement3D.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapElement3D.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapElement3D.unregisterPropertyChangedCallback'); - } - - } - export class MapElementClickEventArgs implements IMapElementClickEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElements: MapElement[]; - position: Foundation.Point = null; - - } - export enum MapElementCollisionBehavior { - hide, - remainVisible, - } - export class MapElementPointerEnteredEventArgs implements IMapElementPointerEnteredEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElement: MapElement; - position: Foundation.Point = null; - - } - export class MapElementPointerExitedEventArgs implements IMapElementPointerExitedEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElement: MapElement; - position: Foundation.Point = null; - - } - export class MapElementsLayer implements IDependencyObject, IDependencyObject2, IMapLayer, IMapElementsLayer { - // constructor(); - mapElements: MapElement[] = [ ]; - static mapElementsProperty: DependencyProperty = null; - zindex: number = 1; - visible: Boolean = true; - mapTabIndex: number = 0; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElementsLayer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapElementsLayer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapElementsLayer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElementsLayer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapElementsLayer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapElementsLayer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapElementsLayer.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MapElementsLayer::addEventListener: ${name}`); - switch (name) { - case "mapcontextrequested": // Foundation.TypedEventHandler - case "mapelementclick": // Foundation.TypedEventHandler - case "mapelementpointerentered": // Foundation.TypedEventHandler - case "mapelementpointerexited": // Foundation.TypedEventHandler - break; - } - - } - } - export class MapElementsLayerClickEventArgs implements IMapElementsLayerClickEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElements: MapElement[]; - position: Foundation.Point = null; - - } - export class MapElementsLayerContextRequestedEventArgs implements IMapElementsLayerContextRequestedEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElements: MapElement[]; - position: Foundation.Point = null; - - } - export class MapElementsLayerPointerEnteredEventArgs implements IMapElementsLayerPointerEnteredEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElement: MapElement; - position: Foundation.Point = null; - - } - export class MapElementsLayerPointerExitedEventArgs implements IMapElementsLayerPointerExitedEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - mapElement: MapElement; - position: Foundation.Point = null; - - } - export class MapIcon implements IDependencyObject, IDependencyObject2, IMapElement, IMapElement2, IMapElement3, IMapElement4, IMapIcon, IMapIcon2 { - // constructor(); - title: string = ''; - normalizedAnchorPoint: Foundation.Point = null; - location: Devices.Geolocation.Geopoint; - image: Storage.Streams.IRandomAccessStreamReference; - collisionBehaviorDesired: MapElementCollisionBehavior = MapElementCollisionBehavior.remainVisible; - static locationProperty: DependencyProperty = null; - static normalizedAnchorPointProperty: DependencyProperty = null; - static titleProperty: DependencyProperty = null; - static collisionBehaviorDesiredProperty: DependencyProperty = null; - zindex: number = 1; - visible: Boolean = true; - mapTabIndex: number = 0; - tag: any; - mapStyleSheetEntryState: string = ''; - mapStyleSheetEntry: string = ''; - isEnabled: Boolean = true; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapIcon.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapIcon.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapIcon.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapIcon.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapIcon.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapIcon.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapIcon.unregisterPropertyChangedCallback'); - } - - } - export class MapInputEventArgs implements IDependencyObject, IDependencyObject2, IMapInputEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - position: Foundation.Point = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapInputEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapInputEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapInputEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapInputEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapInputEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapInputEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapInputEventArgs.unregisterPropertyChangedCallback'); - } - - } - export enum MapInteractionMode { - auto, - disabled, - gestureOnly, - pointerAndKeyboard = 2, - controlOnly, - gestureAndControl, - pointerKeyboardAndControl = 4, - pointerOnly, - } - export class MapItemsControl implements IDependencyObject, IDependencyObject2, IMapItemsControl { - // constructor(); - itemsSource: any; - itemTemplate: DataTemplate; - items: DependencyObject[] = [ ]; - static itemTemplateProperty: DependencyProperty = null; - static itemsProperty: DependencyProperty = null; - static itemsSourceProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapItemsControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapItemsControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapItemsControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapItemsControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapItemsControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapItemsControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapItemsControl.unregisterPropertyChangedCallback'); - } - - } - export class MapLayer implements IDependencyObject, IDependencyObject2, IMapLayer { - // constructor(); - zindex: number = 1; - visible: Boolean = true; - mapTabIndex: number = 0; - static mapTabIndexProperty: DependencyProperty = null; - static visibleProperty: DependencyProperty = null; - static zindexProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapLayer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapLayer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapLayer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapLayer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapLayer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapLayer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapLayer.unregisterPropertyChangedCallback'); - } - - } - export enum MapLoadingStatus { - loading, - loaded, - dataUnavailable, - downloadedMapsManagerUnavailable, - } - export class MapModel3D implements IDependencyObject, IDependencyObject2, IMapModel3D { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapModel3D.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapModel3D.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapModel3D.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapModel3D.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapModel3D.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapModel3D.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapModel3D.unregisterPropertyChangedCallback'); - } - - static createFrom3MFAsync(source: Storage.Streams.IRandomAccessStreamReference): Foundation.IAsyncOperation { - throw new Error('shimmed function MapModel3D.createFrom3MFAsync'); - } - - static createFrom3MFAsync_1(source: Storage.Streams.IRandomAccessStreamReference, shadingOption: MapModel3DShadingOption): Foundation.IAsyncOperation { - throw new Error('shimmed function MapModel3D.createFrom3MFAsync_1'); - } - - } - export enum MapModel3DShadingOption { - default, - flat, - smooth, - } - export enum MapPanInteractionMode { - auto, - disabled, - } - export class MapPolygon implements IDependencyObject, IDependencyObject2, IMapElement, IMapElement2, IMapElement3, IMapElement4, IMapPolygon, IMapPolygon2 { - // constructor(); - strokeThickness: number = 1; - strokeDashed: Boolean = false; - strokeColor: Color = { a: 255, r: 0, g: 0, b: 255 }; - path: Devices.Geolocation.Geopath; - fillColor: Color = { a: 255, r: 0, g: 0, b: 255 }; - paths: Devices.Geolocation.Geopath[] = [ ]; - static pathProperty: DependencyProperty = null; - static strokeDashedProperty: DependencyProperty = null; - static strokeThicknessProperty: DependencyProperty = null; - zindex: number = 1; - visible: Boolean = true; - mapTabIndex: number = 0; - tag: any; - mapStyleSheetEntryState: string = ''; - mapStyleSheetEntry: string = ''; - isEnabled: Boolean = true; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapPolygon.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapPolygon.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapPolygon.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapPolygon.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapPolygon.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapPolygon.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapPolygon.unregisterPropertyChangedCallback'); - } - - } - export class MapPolyline implements IDependencyObject, IDependencyObject2, IMapElement, IMapElement2, IMapElement3, IMapElement4, IMapPolyline { - // constructor(); - strokeThickness: number = 1; - strokeDashed: Boolean = false; - strokeColor: Color = { a: 255, r: 0, g: 0, b: 255 }; - path: Devices.Geolocation.Geopath; - static pathProperty: DependencyProperty = null; - static strokeDashedProperty: DependencyProperty = null; - zindex: number = 1; - visible: Boolean = true; - mapTabIndex: number = 0; - tag: any; - mapStyleSheetEntryState: string = ''; - mapStyleSheetEntry: string = ''; - isEnabled: Boolean = true; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapPolyline.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapPolyline.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapPolyline.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapPolyline.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapPolyline.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapPolyline.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapPolyline.unregisterPropertyChangedCallback'); - } - - } - export enum MapProjection { - webMercator, - globe, - } - export class MapRightTappedEventArgs implements IMapRightTappedEventArgs { - // constructor(); - location: Devices.Geolocation.Geopoint; - position: Foundation.Point = null; - - } - export class MapRouteView implements IDependencyObject, IDependencyObject2, IMapRouteView { - // constructor(route: Services.Maps.MapRoute); - constructor(route: Services.Maps.MapRoute) {} - - routeColor: Color; - outlineColor: Color; - route: Services.Maps.MapRoute; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapRouteView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapRouteView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapRouteView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapRouteView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapRouteView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapRouteView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapRouteView.unregisterPropertyChangedCallback'); - } - - } - export class MapScene implements IDependencyObject, IDependencyObject2, IMapScene { - targetCamera: MapCamera; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapScene.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapScene.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapScene.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapScene.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapScene.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapScene.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapScene.unregisterPropertyChangedCallback'); - } - - static createFromBoundingBox(bounds: Devices.Geolocation.GeoboundingBox): MapScene { - throw new Error('shimmed function MapScene.createFromBoundingBox'); - } - - static createFromBoundingBox_1(bounds: Devices.Geolocation.GeoboundingBox, headingInDegrees: number, pitchInDegrees: number): MapScene { - throw new Error('shimmed function MapScene.createFromBoundingBox_1'); - } - - static createFromCamera(camera: MapCamera): MapScene { - throw new Error('shimmed function MapScene.createFromCamera'); - } - - static createFromLocation(location: Devices.Geolocation.Geopoint): MapScene { - throw new Error('shimmed function MapScene.createFromLocation'); - } - - static createFromLocation_1(location: Devices.Geolocation.Geopoint, headingInDegrees: number, pitchInDegrees: number): MapScene { - throw new Error('shimmed function MapScene.createFromLocation_1'); - } - - static createFromLocationAndRadius(location: Devices.Geolocation.Geopoint, radiusInMeters: number): MapScene { - throw new Error('shimmed function MapScene.createFromLocationAndRadius'); - } - - static createFromLocationAndRadius_1(location: Devices.Geolocation.Geopoint, radiusInMeters: number, headingInDegrees: number, pitchInDegrees: number): MapScene { - throw new Error('shimmed function MapScene.createFromLocationAndRadius_1'); - } - - static createFromLocations(locations: Foundation.Collections.IIterable): MapScene { - throw new Error('shimmed function MapScene.createFromLocations'); - } - - static createFromLocations_1(locations: Foundation.Collections.IIterable, headingInDegrees: number, pitchInDegrees: number): MapScene { - throw new Error('shimmed function MapScene.createFromLocations_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MapScene::addEventListener: ${name}`); - switch (name) { - case "targetcamerachanged": // Foundation.TypedEventHandler - break; - } - - } - } - export enum MapStyle { - none, - road, - aerial, - aerialWithRoads, - terrain, - aerial3D, - aerial3DWithRoads, - custom, - } - export class MapStyleSheet implements IDependencyObject, IDependencyObject2, IMapStyleSheet { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapStyleSheet.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapStyleSheet.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapStyleSheet.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapStyleSheet.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapStyleSheet.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapStyleSheet.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapStyleSheet.unregisterPropertyChangedCallback'); - } - - static aerial(): MapStyleSheet { - throw new Error('shimmed function MapStyleSheet.aerial'); - } - - static aerialWithOverlay(): MapStyleSheet { - throw new Error('shimmed function MapStyleSheet.aerialWithOverlay'); - } - - static roadLight(): MapStyleSheet { - throw new Error('shimmed function MapStyleSheet.roadLight'); - } - - static roadDark(): MapStyleSheet { - throw new Error('shimmed function MapStyleSheet.roadDark'); - } - - static roadHighContrastLight(): MapStyleSheet { - throw new Error('shimmed function MapStyleSheet.roadHighContrastLight'); - } - - static roadHighContrastDark(): MapStyleSheet { - throw new Error('shimmed function MapStyleSheet.roadHighContrastDark'); - } - - static parseFromJson(styleAsJson: string): MapStyleSheet { - throw new Error('shimmed function MapStyleSheet.parseFromJson'); - } - - static tryParseFromJson(styleAsJson: string): { returnValue: Boolean, styleSheet: MapStyleSheet } { - throw new Error('shimmed function MapStyleSheet.tryParseFromJson'); - } - - } - export class MapStyleSheetEntries { - static adminDistrict: string = 'adminDistrict'; - static adminDistrictCapital: string = 'adminDistrictCapital'; - static airport: string = 'airport'; - static area: string = 'area'; - static arterialRoad: string = 'arterialRoad'; - static building: string = 'building'; - static business: string = 'business'; - static capital: string = 'capital'; - static cemetery: string = 'cemetery'; - static continent: string = 'continent'; - static controlledAccessHighway: string = 'controlledAccessHighway'; - static countryRegion: string = 'countryRegion'; - static countryRegionCapital: string = 'countryRegionCapital'; - static district: string = 'district'; - static drivingRoute: string = 'drivingRoute'; - static education: string = 'education'; - static educationBuilding: string = 'educationBuilding'; - static foodPoint: string = 'foodPoint'; - static forest: string = 'forest'; - static golfCourse: string = 'golfCourse'; - static highSpeedRamp: string = 'highSpeedRamp'; - static highway: string = 'highway'; - static indigenousPeoplesReserve: string = 'indigenousPeoplesReserve'; - static island: string = 'island'; - static majorRoad: string = 'majorRoad'; - static medical: string = 'medical'; - static medicalBuilding: string = 'medicalBuilding'; - static military: string = 'military'; - static naturalPoint: string = 'naturalPoint'; - static nautical: string = 'nautical'; - static neighborhood: string = 'neighborhood'; - static park: string = 'park'; - static peak: string = 'peak'; - static playingField: string = 'playingField'; - static point: string = 'point'; - static pointOfInterest: string = 'pointOfInterest'; - static political: string = 'political'; - static populatedPlace: string = 'populatedPlace'; - static railway: string = 'railway'; - static ramp: string = 'ramp'; - static reserve: string = 'reserve'; - static river: string = 'river'; - static road: string = 'road'; - static roadExit: string = 'roadExit'; - static roadShield: string = 'roadShield'; - static routeLine: string = 'routeLine'; - static runway: string = 'runway'; - static sand: string = 'sand'; - static shoppingCenter: string = 'shoppingCenter'; - static stadium: string = 'stadium'; - static street: string = 'street'; - static structure: string = 'structure'; - static tollRoad: string = 'tollRoad'; - static trail: string = 'trail'; - static transit: string = 'transit'; - static transitBuilding: string = 'transitBuilding'; - static transportation: string = 'transportation'; - static unpavedStreet: string = 'unpavedStreet'; - static vegetation: string = 'vegetation'; - static volcanicPeak: string = 'volcanicPeak'; - static walkingRoute: string = 'walkingRoute'; - static water: string = 'water'; - static waterPoint: string = 'waterPoint'; - static waterRoute: string = 'waterRoute'; - - } - export class MapStyleSheetEntryStates { - static disabled: string = 'disabled'; - static hover: string = 'hover'; - static selected: string = 'selected'; - - } - export class MapTargetCameraChangedEventArgs implements IMapTargetCameraChangedEventArgs, IMapTargetCameraChangedEventArgs2 { - // constructor(); - camera: MapCamera; - changeReason: MapCameraChangeReason = MapCameraChangeReason.system; - - } - export enum MapTileAnimationState { - stopped, - paused, - playing, - } - export class MapTileBitmapRequest implements IMapTileBitmapRequest { - // constructor(); - pixelData: Storage.Streams.IRandomAccessStreamReference; - - getDeferral(): MapTileBitmapRequestDeferral { - throw new Error('shimmed function MapTileBitmapRequest.getDeferral'); - } - - } - export class MapTileBitmapRequestDeferral implements IMapTileBitmapRequestDeferral { - // constructor(); - complete(): void { - console.warn('shimmed function MapTileBitmapRequestDeferral.complete'); - } - - } - export class MapTileBitmapRequestedEventArgs implements IMapTileBitmapRequestedEventArgs, IMapTileBitmapRequestedEventArgs2 { - // constructor(); - request: MapTileBitmapRequest = null; - x: number = 0; - y: number = 0; - zoomLevel: number = 0; - frameIndex: number = 0; - - } - export class MapTileDataSource implements IDependencyObject, IDependencyObject2, IMapTileDataSource { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapTileDataSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapTileDataSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapTileDataSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapTileDataSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapTileDataSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapTileDataSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapTileDataSource.unregisterPropertyChangedCallback'); - } - - } - export enum MapTileLayer { - labelOverlay, - roadOverlay, - areaOverlay, - backgroundOverlay, - backgroundReplacement, - } - export class MapTileSource implements IDependencyObject, IDependencyObject2, IMapTileSource, IMapTileSource2 { - // constructor(); - // constructor(dataSource: MapTileDataSource); - // constructor(dataSource: MapTileDataSource, zoomLevelRange: MapZoomLevelRange); - // constructor(dataSource: MapTileDataSource, zoomLevelRange: MapZoomLevelRange, bounds: Devices.Geolocation.GeoboundingBox); - // constructor(dataSource: MapTileDataSource, zoomLevelRange: MapZoomLevelRange, bounds: Devices.Geolocation.GeoboundingBox, tileSizeInPixels: number); - constructor(dataSource: MapTileDataSource, zoomLevelRange: MapZoomLevelRange, bounds: Devices.Geolocation.GeoboundingBox, tileSizeInPixels: number) {} - - zoomLevelRange: MapZoomLevelRange = null; - zindex: number = 0; - visible: Boolean = true; - tilePixelSize: number = 256; - layer: MapTileLayer = MapTileLayer.roadOverlay; - isTransparencyEnabled: Boolean = true; - isRetryEnabled: Boolean = true; - isFadingEnabled: Boolean = true; - dataSource: MapTileDataSource; - bounds: Devices.Geolocation.GeoboundingBox = null; - allowOverstretch: Boolean = true; - frameDuration: number = 0; - frameCount: number = 0; - autoPlay: Boolean = true; - animationState: MapTileAnimationState = MapTileAnimationState.stopped; - static allowOverstretchProperty: DependencyProperty = null; - static boundsProperty: DependencyProperty = null; - static dataSourceProperty: DependencyProperty = null; - static isFadingEnabledProperty: DependencyProperty = null; - static isRetryEnabledProperty: DependencyProperty = null; - static isTransparencyEnabledProperty: DependencyProperty = null; - static layerProperty: DependencyProperty = null; - static tilePixelSizeProperty: DependencyProperty = null; - static visibleProperty: DependencyProperty = null; - static zindexProperty: DependencyProperty = null; - static zoomLevelRangeProperty: DependencyProperty = null; - static animationStateProperty: DependencyProperty = null; - static autoPlayProperty: DependencyProperty = null; - static frameCountProperty: DependencyProperty = null; - static frameDurationProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapTileSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MapTileSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MapTileSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapTileSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MapTileSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MapTileSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MapTileSource.unregisterPropertyChangedCallback'); - } - - pause(): void { - console.warn('shimmed function MapTileSource.pause'); - } - - play(): void { - console.warn('shimmed function MapTileSource.play'); - } - - stop(): void { - console.warn('shimmed function MapTileSource.stop'); - } - - } - export class MapTileUriRequest implements IMapTileUriRequest { - // constructor(); - uri: Foundation.Uri; - - getDeferral(): MapTileUriRequestDeferral { - throw new Error('shimmed function MapTileUriRequest.getDeferral'); - } - - } - export class MapTileUriRequestDeferral implements IMapTileUriRequestDeferral { - // constructor(); - complete(): void { - console.warn('shimmed function MapTileUriRequestDeferral.complete'); - } - - } - export class MapTileUriRequestedEventArgs implements IMapTileUriRequestedEventArgs, IMapTileUriRequestedEventArgs2 { - // constructor(); - request: MapTileUriRequest = null; - x: number = 0; - y: number = 0; - zoomLevel: number = 0; - frameIndex: number = 0; - - } - export enum MapVisibleRegionKind { - near, - full, - } - export enum MapWatermarkMode { - automatic, - on, - } - export interface MapZoomLevelRange { - min: number; - max: number; - } - export class StreetsideExperience implements IDependencyObject, IDependencyObject2, IMapCustomExperience, IStreetsideExperience { - // constructor(panorama: StreetsidePanorama); - // constructor(panorama: StreetsidePanorama, headingInDegrees: number, pitchInDegrees: number, fieldOfViewInDegrees: number); - constructor(panorama: StreetsidePanorama, headingInDegrees: number, pitchInDegrees: number, fieldOfViewInDegrees: number) {} - - zoomButtonsVisible: Boolean; - streetLabelsVisible: Boolean; - overviewMapVisible: Boolean; - exitButtonVisible: Boolean; - cursorVisible: Boolean; - addressTextVisible: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function StreetsideExperience.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function StreetsideExperience.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function StreetsideExperience.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function StreetsideExperience.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function StreetsideExperience.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function StreetsideExperience.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function StreetsideExperience.unregisterPropertyChangedCallback'); - } - - } - export class StreetsidePanorama implements IDependencyObject, IDependencyObject2, IStreetsidePanorama { - location: Devices.Geolocation.Geopoint; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function StreetsidePanorama.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function StreetsidePanorama.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function StreetsidePanorama.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function StreetsidePanorama.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function StreetsidePanorama.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function StreetsidePanorama.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function StreetsidePanorama.unregisterPropertyChangedCallback'); - } - - static findNearbyAsync(location: Devices.Geolocation.Geopoint): Foundation.IAsyncOperation { - throw new Error('shimmed function StreetsidePanorama.findNearbyAsync'); - } - - static findNearbyAsync_1(location: Devices.Geolocation.Geopoint, radiusInMeters: number): Foundation.IAsyncOperation { - throw new Error('shimmed function StreetsidePanorama.findNearbyAsync_1'); - } - - } - } - export class MediaElement implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IMediaElement, IMediaElement2, IMediaElement3 { - // constructor(); - volume: number = 1; - stereo3DVideoRenderMode: Media.Stereo3DVideoRenderMode = Stereo3DVideoRenderMode.mono; - stereo3DVideoPackingMode: Media.Stereo3DVideoPackingMode = Stereo3DVideoPackingMode.none; - source: Foundation.Uri; - realTimePlayback: Boolean = false; - protectionManager: Media.Protection.MediaProtectionManager; - posterSource: Media.ImageSource; - position: number = 0; - playbackRate: number = 1; - autoPlay: Boolean = true; - audioStreamIndex: number | null; - isMuted: Boolean = false; - audioDeviceType: Media.AudioDeviceType = AudioDeviceType.multimedia; - audioCategory: Media.AudioCategory = AudioCategory.other; - defaultPlaybackRate: number = 1; - isLooping: Boolean = false; - balance: number = 0; - downloadProgressOffset: number = 0; - isAudioOnly: Boolean = false; - isStereo3DVideo: Boolean = false; - markers: Media.TimelineMarkerCollection = [ ]; - naturalDuration: /* Windows.UI.Xaml.Duration */ any = null; - naturalVideoHeight: number = 0; - naturalVideoWidth: number = 0; - playToSource: Media.PlayTo.PlayToSource; - actualStereo3DVideoPackingMode: Media.Stereo3DVideoPackingMode = Stereo3DVideoPackingMode.none; - aspectRatioHeight: number = 0; - aspectRatioWidth: number = 0; - audioStreamCount: number = 0; - bufferingProgress: number = 0; - canPause: Boolean = true; - canSeek: Boolean = true; - currentState: Media.MediaElementState = MediaElementState.closed; - downloadProgress: number = 0; - stretch: Media.Stretch = Stretch.uniform; - playToPreferredSourceUri: Foundation.Uri; - isFullWindow: Boolean = false; - areTransportControlsEnabled: Boolean = false; - transportControls: MediaTransportControls = null; - static downloadProgressOffsetProperty: DependencyProperty = null; - static sourceProperty: DependencyProperty = null; - static stereo3DVideoPackingModeProperty: DependencyProperty = null; - static stereo3DVideoRenderModeProperty: DependencyProperty = null; - static actualStereo3DVideoPackingModeProperty: DependencyProperty = null; - static aspectRatioHeightProperty: DependencyProperty = null; - static aspectRatioWidthProperty: DependencyProperty = null; - static audioCategoryProperty: DependencyProperty = null; - static audioDeviceTypeProperty: DependencyProperty = null; - static audioStreamCountProperty: DependencyProperty = null; - static audioStreamIndexProperty: DependencyProperty = null; - static autoPlayProperty: DependencyProperty = null; - static balanceProperty: DependencyProperty = null; - static bufferingProgressProperty: DependencyProperty = null; - static canPauseProperty: DependencyProperty = null; - static canSeekProperty: DependencyProperty = null; - static currentStateProperty: DependencyProperty = null; - static defaultPlaybackRateProperty: DependencyProperty = null; - static volumeProperty: DependencyProperty = null; - static downloadProgressProperty: DependencyProperty = null; - static isAudioOnlyProperty: DependencyProperty = null; - static isLoopingProperty: DependencyProperty = null; - static isMutedProperty: DependencyProperty = null; - static isStereo3DVideoProperty: DependencyProperty = null; - static naturalDurationProperty: DependencyProperty = null; - static naturalVideoHeightProperty: DependencyProperty = null; - static naturalVideoWidthProperty: DependencyProperty = null; - static playToSourceProperty: DependencyProperty = null; - static playbackRateProperty: DependencyProperty = null; - static positionProperty: DependencyProperty = null; - static posterSourceProperty: DependencyProperty = null; - static protectionManagerProperty: DependencyProperty = null; - static realTimePlaybackProperty: DependencyProperty = null; - static isFullWindowProperty: DependencyProperty = null; - static playToPreferredSourceUriProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - static areTransportControlsEnabledProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MediaElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MediaElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MediaElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MediaElement.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MediaElement.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MediaElement.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MediaElement.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MediaElement.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MediaElement.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MediaElement.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MediaElement.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MediaElement.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MediaElement.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MediaElement.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MediaElement.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MediaElement.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaElement.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MediaElement.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MediaElement.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaElement.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaElement.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaElement.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MediaElement.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MediaElement.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MediaElement.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaElement.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaElement.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MediaElement.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MediaElement.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaElement.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaElement.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MediaElement.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MediaElement.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MediaElement.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MediaElement.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaElement.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaElement.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MediaElement.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MediaElement.goToElementStateCore'); - } - - stop(): void { - console.warn('shimmed function MediaElement.stop'); - } - - play(): void { - console.warn('shimmed function MediaElement.play'); - } - - pause(): void { - console.warn('shimmed function MediaElement.pause'); - } - - canPlayType(type: string): Media.MediaCanPlayResponse { - throw new Error('shimmed function MediaElement.canPlayType'); - } - - setSource(stream: Storage.Streams.IRandomAccessStream, mimeType: string): void { - console.warn('shimmed function MediaElement.setSource'); - } - - getAudioStreamLanguage(index: number | null): string { - throw new Error('shimmed function MediaElement.getAudioStreamLanguage'); - } - - addAudioEffect(effectID: string, effectOptional: Boolean, effectConfiguration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaElement.addAudioEffect'); - } - - addVideoEffect(effectID: string, effectOptional: Boolean, effectConfiguration: Foundation.Collections.IPropertySet): void { - console.warn('shimmed function MediaElement.addVideoEffect'); - } - - removeAllEffects(): void { - console.warn('shimmed function MediaElement.removeAllEffects'); - } - - setMediaStreamSource(source: Media.Core.IMediaSource): void { - console.warn('shimmed function MediaElement.setMediaStreamSource'); - } - - setPlaybackSource(source: Media.Playback.IMediaPlaybackSource): void { - console.warn('shimmed function MediaElement.setPlaybackSource'); - } - - getAsCastingSource(): Media.Casting.CastingSource { - throw new Error('shimmed function MediaElement.getAsCastingSource'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaElement::addEventListener: ${name}`); - switch (name) { - case "bufferingprogresschanged": // RoutedEventHandler - case "currentstatechanged": // RoutedEventHandler - case "downloadprogresschanged": // RoutedEventHandler - case "markerreached": // Media.TimelineMarkerRoutedEventHandler - case "mediaended": // RoutedEventHandler - case "mediafailed": // ExceptionRoutedEventHandler - case "mediaopened": // RoutedEventHandler - case "ratechanged": // Media.RateChangedRoutedEventHandler - case "seekcompleted": // RoutedEventHandler - case "volumechanged": // RoutedEventHandler - case "partialmediafailuredetected": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlayerElement implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMediaPlayerElement { - // constructor(); - transportControls: MediaTransportControls = null; - stretch: Media.Stretch = Stretch.uniform; - source: Media.Playback.IMediaPlaybackSource; - posterSource: Media.ImageSource; - isFullWindow: Boolean = false; - autoPlay: Boolean = false; - areTransportControlsEnabled: Boolean = false; - mediaPlayer: Media.Playback.MediaPlayer; - static areTransportControlsEnabledProperty: DependencyProperty = null; - static autoPlayProperty: DependencyProperty = null; - static isFullWindowProperty: DependencyProperty = null; - static mediaPlayerProperty: DependencyProperty = null; - static posterSourceProperty: DependencyProperty = null; - static sourceProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MediaPlayerElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MediaPlayerElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MediaPlayerElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MediaPlayerElement.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MediaPlayerElement.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MediaPlayerElement.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MediaPlayerElement.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MediaPlayerElement.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MediaPlayerElement.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MediaPlayerElement.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MediaPlayerElement.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MediaPlayerElement.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MediaPlayerElement.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MediaPlayerElement.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MediaPlayerElement.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MediaPlayerElement.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaPlayerElement.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MediaPlayerElement.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MediaPlayerElement.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaPlayerElement.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaPlayerElement.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaPlayerElement.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MediaPlayerElement.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MediaPlayerElement.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MediaPlayerElement.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaPlayerElement.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaPlayerElement.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaPlayerElement.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MediaPlayerElement.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MediaPlayerElement.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MediaPlayerElement.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MediaPlayerElement.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaPlayerElement.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaPlayerElement.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MediaPlayerElement.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MediaPlayerElement.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MediaPlayerElement.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MediaPlayerElement.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MediaPlayerElement.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MediaPlayerElement.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MediaPlayerElement.onCharacterReceived'); - } - - setMediaPlayer(mediaPlayer: Media.Playback.MediaPlayer): void { - console.warn('shimmed function MediaPlayerElement.setMediaPlayer'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlayerElement::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaPlayerPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IMediaPlayerPresenter { - // constructor(); - stretch: Media.Stretch = Stretch.uniform; - mediaPlayer: Media.Playback.MediaPlayer; - isFullWindow: Boolean = false; - static isFullWindowProperty: DependencyProperty = null; - static mediaPlayerProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MediaPlayerPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MediaPlayerPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaPlayerPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MediaPlayerPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MediaPlayerPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MediaPlayerPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MediaPlayerPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MediaPlayerPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MediaPlayerPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MediaPlayerPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MediaPlayerPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MediaPlayerPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MediaPlayerPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MediaPlayerPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MediaPlayerPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MediaPlayerPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MediaPlayerPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaPlayerPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MediaPlayerPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MediaPlayerPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaPlayerPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaPlayerPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaPlayerPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MediaPlayerPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MediaPlayerPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MediaPlayerPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaPlayerPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaPlayerPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MediaPlayerPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MediaPlayerPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaPlayerPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaPlayerPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MediaPlayerPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MediaPlayerPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MediaPlayerPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MediaPlayerPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaPlayerPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaPlayerPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MediaPlayerPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MediaPlayerPresenter.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaPlayerPresenter::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaTransportControls implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMediaTransportControls, IMediaTransportControls2, IMediaTransportControls3, IMediaTransportControls4 { - // constructor(); - isZoomEnabled: Boolean = true; - isZoomButtonVisible: Boolean = true; - isVolumeEnabled: Boolean = true; - isVolumeButtonVisible: Boolean = true; - isStopEnabled: Boolean = false; - isStopButtonVisible: Boolean = false; - isSeekEnabled: Boolean = true; - isSeekBarVisible: Boolean = true; - isPlaybackRateEnabled: Boolean = false; - isPlaybackRateButtonVisible: Boolean = false; - isFullWindowEnabled: Boolean = true; - isFullWindowButtonVisible: Boolean = true; - isFastRewindEnabled: Boolean = false; - isFastRewindButtonVisible: Boolean = false; - isFastForwardEnabled: Boolean = false; - isFastForwardButtonVisible: Boolean = false; - isCompact: Boolean = false; - isSkipForwardEnabled: Boolean = false; - isSkipForwardButtonVisible: Boolean = false; - isSkipBackwardEnabled: Boolean = false; - isSkipBackwardButtonVisible: Boolean = false; - isPreviousTrackButtonVisible: Boolean = false; - isNextTrackButtonVisible: Boolean = false; - fastPlayFallbackBehaviour: Media.FastPlayFallbackBehaviour = FastPlayFallbackBehaviour.skip; - showAndHideAutomatically: Boolean = true; - isRepeatEnabled: Boolean = false; - isRepeatButtonVisible: Boolean = false; - isCompactOverlayEnabled: Boolean = false; - isCompactOverlayButtonVisible: Boolean = false; - static isCompactProperty: DependencyProperty = null; - static isFastForwardButtonVisibleProperty: DependencyProperty = null; - static isFastForwardEnabledProperty: DependencyProperty = null; - static isFastRewindButtonVisibleProperty: DependencyProperty = null; - static isFastRewindEnabledProperty: DependencyProperty = null; - static isFullWindowButtonVisibleProperty: DependencyProperty = null; - static isFullWindowEnabledProperty: DependencyProperty = null; - static isPlaybackRateButtonVisibleProperty: DependencyProperty = null; - static isPlaybackRateEnabledProperty: DependencyProperty = null; - static isSeekBarVisibleProperty: DependencyProperty = null; - static isSeekEnabledProperty: DependencyProperty = null; - static isStopButtonVisibleProperty: DependencyProperty = null; - static isStopEnabledProperty: DependencyProperty = null; - static isVolumeButtonVisibleProperty: DependencyProperty = null; - static isVolumeEnabledProperty: DependencyProperty = null; - static isZoomButtonVisibleProperty: DependencyProperty = null; - static isZoomEnabledProperty: DependencyProperty = null; - static fastPlayFallbackBehaviourProperty: DependencyProperty = null; - static isNextTrackButtonVisibleProperty: DependencyProperty = null; - static isPreviousTrackButtonVisibleProperty: DependencyProperty = null; - static isSkipBackwardButtonVisibleProperty: DependencyProperty = null; - static isSkipBackwardEnabledProperty: DependencyProperty = null; - static isSkipForwardButtonVisibleProperty: DependencyProperty = null; - static isSkipForwardEnabledProperty: DependencyProperty = null; - static isRepeatButtonVisibleProperty: DependencyProperty = null; - static isRepeatEnabledProperty: DependencyProperty = null; - static showAndHideAutomaticallyProperty: DependencyProperty = null; - static isCompactOverlayButtonVisibleProperty: DependencyProperty = null; - static isCompactOverlayEnabledProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaTransportControls.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MediaTransportControls.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MediaTransportControls.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaTransportControls.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MediaTransportControls.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MediaTransportControls.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MediaTransportControls.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MediaTransportControls.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MediaTransportControls.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MediaTransportControls.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MediaTransportControls.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MediaTransportControls.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MediaTransportControls.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MediaTransportControls.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MediaTransportControls.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MediaTransportControls.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MediaTransportControls.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MediaTransportControls.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MediaTransportControls.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MediaTransportControls.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MediaTransportControls.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MediaTransportControls.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaTransportControls.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaTransportControls.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MediaTransportControls.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MediaTransportControls.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MediaTransportControls.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MediaTransportControls.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MediaTransportControls.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MediaTransportControls.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaTransportControls.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MediaTransportControls.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MediaTransportControls.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MediaTransportControls.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MediaTransportControls.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MediaTransportControls.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaTransportControls.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MediaTransportControls.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MediaTransportControls.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MediaTransportControls.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MediaTransportControls.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MediaTransportControls.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MediaTransportControls.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MediaTransportControls.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MediaTransportControls.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MediaTransportControls.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MediaTransportControls.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MediaTransportControls.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MediaTransportControls.onCharacterReceived'); - } - - show(): void { - console.warn('shimmed function MediaTransportControls.show'); - } - - hide(): void { - console.warn('shimmed function MediaTransportControls.hide'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MediaTransportControls::addEventListener: ${name}`); - switch (name) { - case "thumbnailrequested": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MediaTransportControlsHelper implements IMediaTransportControlsHelper { - static dropoutOrderProperty: DependencyProperty = null; - - static getDropoutOrder(element: UIElement): number | null { - throw new Error('shimmed function MediaTransportControlsHelper.getDropoutOrder'); - } - - static setDropoutOrder(element: UIElement, value: number | null): void { - console.warn('shimmed function MediaTransportControlsHelper.setDropoutOrder'); - } - - } - export class MenuBar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMenuBar { - // constructor(); - items: MenuBarItem[] = [ ]; - static itemsProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'M', 'e', 'n', 'u', 'B', 'a', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuBar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuBar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuBar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuBar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MenuBar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MenuBar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MenuBar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MenuBar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MenuBar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MenuBar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MenuBar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MenuBar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MenuBar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MenuBar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MenuBar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MenuBar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MenuBar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MenuBar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MenuBar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuBar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuBar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuBar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MenuBar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MenuBar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MenuBar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuBar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MenuBar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MenuBar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuBar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuBar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MenuBar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MenuBar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MenuBar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MenuBar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuBar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuBar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MenuBar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MenuBar.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MenuBar.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MenuBar.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MenuBar.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MenuBar.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuBar.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuBar.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MenuBar.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MenuBar.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MenuBar.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MenuBar.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MenuBar.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuBar::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuBarItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMenuBarItem { - // constructor(); - title: string = ''; - items: MenuFlyoutItemBase[] = [ ]; - static itemsProperty: DependencyProperty = null; - static titleProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'M', 'e', 'n', 'u', 'B', 'a', 'r', 'I', 't', 'e', 'm' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuBarItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuBarItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuBarItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuBarItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MenuBarItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MenuBarItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MenuBarItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MenuBarItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MenuBarItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MenuBarItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MenuBarItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MenuBarItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MenuBarItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MenuBarItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MenuBarItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MenuBarItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MenuBarItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MenuBarItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MenuBarItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuBarItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuBarItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuBarItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MenuBarItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MenuBarItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MenuBarItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuBarItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuBarItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MenuBarItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MenuBarItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuBarItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuBarItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MenuBarItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MenuBarItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MenuBarItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MenuBarItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuBarItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuBarItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MenuBarItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MenuBarItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MenuBarItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MenuBarItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MenuBarItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MenuBarItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MenuBarItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MenuBarItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MenuBarItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MenuBarItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MenuBarItem.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuBarItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuBarItemFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, IMenuFlyout, IMenuFlyout2, IMenuBarItemFlyout { - // constructor(); - menuFlyoutPresenterStyle: Style; - items: MenuFlyoutItemBase[] = [ ]; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.top; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = true; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = false; - isConstrainedToRootBounds: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItemFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuBarItemFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuBarItemFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItemFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuBarItemFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuBarItemFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuBarItemFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function MenuBarItemFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function MenuBarItemFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuBarItemFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function MenuBarItemFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function MenuBarItemFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuBarItemFlyout.onProcessKeyboardAccelerators'); - } - - showAt_2(targetElement: UIElement, point: Foundation.Point): void { - console.warn('shimmed function MenuBarItemFlyout.showAt_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuBarItemFlyout::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, IMenuFlyout, IMenuFlyout2 { - // constructor(); - menuFlyoutPresenterStyle: Style; - items: MenuFlyoutItemBase[] = [ ]; - static menuFlyoutPresenterStyleProperty: DependencyProperty = null; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.top; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = true; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = false; - isConstrainedToRootBounds: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function MenuFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function MenuFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function MenuFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function MenuFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyout.onProcessKeyboardAccelerators'); - } - - showAt_2(targetElement: UIElement, point: Foundation.Point): void { - console.warn('shimmed function MenuFlyout.showAt_2'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuFlyout::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuFlyoutItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMenuFlyoutItemBase, IMenuFlyoutItem, IMenuFlyoutItem2, IMenuFlyoutItem3 { - // constructor(); - text: string = ''; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - icon: IconElement; - keyboardAcceleratorTextOverride: string = ''; - templateSettings: Primitives.MenuFlyoutItemTemplateSettings; - static commandParameterProperty: DependencyProperty = null; - static commandProperty: DependencyProperty = null; - static textProperty: DependencyProperty = null; - static iconProperty: DependencyProperty = null; - static keyboardAcceleratorTextOverrideProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MenuFlyoutItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MenuFlyoutItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MenuFlyoutItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MenuFlyoutItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MenuFlyoutItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MenuFlyoutItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MenuFlyoutItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MenuFlyoutItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MenuFlyoutItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MenuFlyoutItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MenuFlyoutItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MenuFlyoutItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MenuFlyoutItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MenuFlyoutItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MenuFlyoutItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MenuFlyoutItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MenuFlyoutItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MenuFlyoutItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MenuFlyoutItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MenuFlyoutItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MenuFlyoutItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MenuFlyoutItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MenuFlyoutItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MenuFlyoutItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MenuFlyoutItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MenuFlyoutItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MenuFlyoutItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MenuFlyoutItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItem.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuFlyoutItem::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuFlyoutItemBase implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMenuFlyoutItemBase { - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutItemBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutItemBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutItemBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutItemBase.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MenuFlyoutItemBase.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MenuFlyoutItemBase.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MenuFlyoutItemBase.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MenuFlyoutItemBase.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MenuFlyoutItemBase.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MenuFlyoutItemBase.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MenuFlyoutItemBase.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MenuFlyoutItemBase.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MenuFlyoutItemBase.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MenuFlyoutItemBase.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MenuFlyoutItemBase.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MenuFlyoutItemBase.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MenuFlyoutItemBase.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MenuFlyoutItemBase.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MenuFlyoutItemBase.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutItemBase.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutItemBase.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MenuFlyoutItemBase.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MenuFlyoutItemBase.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MenuFlyoutItemBase.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutItemBase.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutItemBase.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutItemBase.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MenuFlyoutItemBase.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MenuFlyoutItemBase.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MenuFlyoutItemBase.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MenuFlyoutItemBase.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutItemBase.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutItemBase.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MenuFlyoutItemBase.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MenuFlyoutItemBase.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MenuFlyoutItemBase.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MenuFlyoutItemBase.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MenuFlyoutItemBase.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MenuFlyoutItemBase.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutItemBase.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuFlyoutItemBase::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuFlyoutPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, IMenuFlyoutPresenter, IMenuFlyoutPresenter2, IMenuFlyoutPresenter3 { - // constructor(); - templateSettings: Primitives.MenuFlyoutPresenterTemplateSettings = null; - isDefaultShadowEnabled: Boolean = true; - static isDefaultShadowEnabledProperty: DependencyProperty = null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MenuFlyoutPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MenuFlyoutPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MenuFlyoutPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MenuFlyoutPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MenuFlyoutPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MenuFlyoutPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MenuFlyoutPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MenuFlyoutPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MenuFlyoutPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MenuFlyoutPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MenuFlyoutPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MenuFlyoutPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MenuFlyoutPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MenuFlyoutPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MenuFlyoutPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MenuFlyoutPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MenuFlyoutPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MenuFlyoutPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MenuFlyoutPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MenuFlyoutPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MenuFlyoutPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MenuFlyoutPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MenuFlyoutPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MenuFlyoutPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MenuFlyoutPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MenuFlyoutPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MenuFlyoutPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutPresenter.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function MenuFlyoutPresenter.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function MenuFlyoutPresenter.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function MenuFlyoutPresenter.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function MenuFlyoutPresenter.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function MenuFlyoutPresenter.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function MenuFlyoutPresenter.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function MenuFlyoutPresenter.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function MenuFlyoutPresenter.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function MenuFlyoutPresenter.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function MenuFlyoutPresenter.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function MenuFlyoutPresenter.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function MenuFlyoutPresenter.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function MenuFlyoutPresenter.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function MenuFlyoutPresenter.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function MenuFlyoutPresenter.containerFromIndex'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuFlyoutPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuFlyoutSeparator implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMenuFlyoutItemBase, IMenuFlyoutSeparator { - // constructor(); - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutSeparator.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutSeparator.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutSeparator.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutSeparator.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutSeparator.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutSeparator.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutSeparator.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MenuFlyoutSeparator.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MenuFlyoutSeparator.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MenuFlyoutSeparator.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MenuFlyoutSeparator.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MenuFlyoutSeparator.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MenuFlyoutSeparator.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MenuFlyoutSeparator.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MenuFlyoutSeparator.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MenuFlyoutSeparator.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MenuFlyoutSeparator.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MenuFlyoutSeparator.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MenuFlyoutSeparator.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MenuFlyoutSeparator.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MenuFlyoutSeparator.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MenuFlyoutSeparator.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutSeparator.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutSeparator.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MenuFlyoutSeparator.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MenuFlyoutSeparator.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MenuFlyoutSeparator.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutSeparator.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutSeparator.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutSeparator.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MenuFlyoutSeparator.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MenuFlyoutSeparator.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MenuFlyoutSeparator.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MenuFlyoutSeparator.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutSeparator.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutSeparator.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MenuFlyoutSeparator.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MenuFlyoutSeparator.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MenuFlyoutSeparator.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MenuFlyoutSeparator.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MenuFlyoutSeparator.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MenuFlyoutSeparator.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSeparator.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuFlyoutSeparator::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuFlyoutSubItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMenuFlyoutItemBase, IMenuFlyoutSubItem, IMenuFlyoutSubItem2 { - // constructor(); - text: string = ''; - items: MenuFlyoutItemBase[] = [ ]; - icon: IconElement; - static textProperty: DependencyProperty = null; - static iconProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutSubItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutSubItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutSubItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutSubItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutSubItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutSubItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutSubItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function MenuFlyoutSubItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function MenuFlyoutSubItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function MenuFlyoutSubItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function MenuFlyoutSubItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function MenuFlyoutSubItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function MenuFlyoutSubItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function MenuFlyoutSubItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function MenuFlyoutSubItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function MenuFlyoutSubItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function MenuFlyoutSubItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function MenuFlyoutSubItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function MenuFlyoutSubItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function MenuFlyoutSubItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function MenuFlyoutSubItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function MenuFlyoutSubItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutSubItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function MenuFlyoutSubItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function MenuFlyoutSubItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function MenuFlyoutSubItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function MenuFlyoutSubItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function MenuFlyoutSubItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutSubItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function MenuFlyoutSubItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function MenuFlyoutSubItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function MenuFlyoutSubItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function MenuFlyoutSubItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function MenuFlyoutSubItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutSubItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function MenuFlyoutSubItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function MenuFlyoutSubItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function MenuFlyoutSubItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function MenuFlyoutSubItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function MenuFlyoutSubItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function MenuFlyoutSubItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function MenuFlyoutSubItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function MenuFlyoutSubItem.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`MenuFlyoutSubItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class NavigationView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, INavigationView, INavigationView2, INavigationView3 { - // constructor(); - menuItemTemplateSelector: DataTemplateSelector; - menuItemTemplate: DataTemplate; - menuItemContainerStyleSelector: StyleSelector; - menuItemContainerStyle: Style; - isSettingsVisible: Boolean = true; - isPaneToggleButtonVisible: Boolean = true; - isPaneOpen: Boolean = true; - headerTemplate: DataTemplate; - header: any; - expandedModeThresholdWidth: number = 1008; - menuItemsSource: any; - compactPaneLength: number = 48; - compactModeThresholdWidth: number = 641; - autoSuggestBox: AutoSuggestBox; - openPaneLength: number = 320; - alwaysShowHeader: Boolean = true; - selectedItem: any; - paneToggleButtonStyle: Style; - paneFooter: UIElement; - displayMode: NavigationViewDisplayMode = NavigationViewDisplayMode.minimal; - menuItems: any[] = [ ]; - settingsItem: any; - paneTitle: string = ''; - isBackEnabled: Boolean = false; - isBackButtonVisible: NavigationViewBackButtonVisible = NavigationViewBackButtonVisible.auto; - shoulderNavigationEnabled: NavigationViewShoulderNavigationEnabled = NavigationViewShoulderNavigationEnabled.never; - selectionFollowsFocus: NavigationViewSelectionFollowsFocus = NavigationViewSelectionFollowsFocus.disabled; - paneHeader: UIElement; - paneDisplayMode: NavigationViewPaneDisplayMode = NavigationViewPaneDisplayMode.auto; - paneCustomContent: UIElement; - overflowLabelMode: NavigationViewOverflowLabelMode = NavigationViewOverflowLabelMode.moreLabel; - isPaneVisible: Boolean = true; - contentOverlay: UIElement; - templateSettings: NavigationViewTemplateSettings = null; - static expandedModeThresholdWidthProperty: DependencyProperty = null; - static isSettingsVisibleProperty: DependencyProperty = null; - static menuItemContainerStyleProperty: DependencyProperty = null; - static menuItemContainerStyleSelectorProperty: DependencyProperty = null; - static menuItemTemplateProperty: DependencyProperty = null; - static menuItemTemplateSelectorProperty: DependencyProperty = null; - static menuItemsProperty: DependencyProperty = null; - static menuItemsSourceProperty: DependencyProperty = null; - static openPaneLengthProperty: DependencyProperty = null; - static paneFooterProperty: DependencyProperty = null; - static paneToggleButtonStyleProperty: DependencyProperty = null; - static selectedItemProperty: DependencyProperty = null; - static alwaysShowHeaderProperty: DependencyProperty = null; - static autoSuggestBoxProperty: DependencyProperty = null; - static compactModeThresholdWidthProperty: DependencyProperty = null; - static compactPaneLengthProperty: DependencyProperty = null; - static displayModeProperty: DependencyProperty = null; - static settingsItemProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static isPaneOpenProperty: DependencyProperty = null; - static isPaneToggleButtonVisibleProperty: DependencyProperty = null; - static isBackButtonVisibleProperty: DependencyProperty = null; - static isBackEnabledProperty: DependencyProperty = null; - static paneTitleProperty: DependencyProperty = null; - static isPaneVisibleProperty: DependencyProperty = null; - static overflowLabelModeProperty: DependencyProperty = null; - static paneCustomContentProperty: DependencyProperty = null; - static paneDisplayModeProperty: DependencyProperty = null; - static paneHeaderProperty: DependencyProperty = null; - static selectionFollowsFocusProperty: DependencyProperty = null; - static shoulderNavigationEnabledProperty: DependencyProperty = null; - static templateSettingsProperty: DependencyProperty = null; - static contentOverlayProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'N', 'a', 'v', 'i', 'g', 'a', 't', 'i', 'o', 'n', 'V', 'i', 'e', 'w' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function NavigationView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function NavigationView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function NavigationView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function NavigationView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function NavigationView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function NavigationView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function NavigationView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function NavigationView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function NavigationView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function NavigationView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function NavigationView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function NavigationView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function NavigationView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function NavigationView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function NavigationView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function NavigationView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function NavigationView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function NavigationView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function NavigationView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function NavigationView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function NavigationView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function NavigationView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function NavigationView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function NavigationView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function NavigationView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function NavigationView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function NavigationView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function NavigationView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function NavigationView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function NavigationView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function NavigationView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function NavigationView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function NavigationView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function NavigationView.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function NavigationView.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function NavigationView.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function NavigationView.onContentTemplateSelectorChanged'); - } - - menuItemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function NavigationView.menuItemFromContainer'); - } - - containerFromMenuItem(item: any): DependencyObject { - throw new Error('shimmed function NavigationView.containerFromMenuItem'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NavigationView::addEventListener: ${name}`); - switch (name) { - case "displaymodechanged": // Foundation.TypedEventHandler - case "iteminvoked": // Foundation.TypedEventHandler - case "selectionchanged": // Foundation.TypedEventHandler - case "backrequested": // Foundation.TypedEventHandler - case "paneclosed": // Foundation.TypedEventHandler - case "paneclosing": // Foundation.TypedEventHandler - case "paneopened": // Foundation.TypedEventHandler - case "paneopening": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum NavigationViewBackButtonVisible { - collapsed, - visible, - auto, - } - export class NavigationViewBackRequestedEventArgs implements INavigationViewBackRequestedEventArgs { - } - export enum NavigationViewDisplayMode { - minimal, - compact, - expanded, - } - export class NavigationViewDisplayModeChangedEventArgs implements INavigationViewDisplayModeChangedEventArgs { - displayMode: NavigationViewDisplayMode; - - } - export class NavigationViewItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IListViewItem, INavigationViewItemBase, INavigationViewItem, INavigationViewItem2 { - // constructor(); - icon: IconElement; - compactPaneLength: number = 48; - selectsOnInvoked: Boolean = true; - static compactPaneLengthProperty: DependencyProperty = null; - static iconProperty: DependencyProperty = null; - static selectsOnInvokedProperty: DependencyProperty = null; - templateSettings: Primitives.ListViewItemTemplateSettings = null; - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'N', 'a', 'v', 'i', 'g', 'a', 't', 'i', 'o', 'n', 'V', 'i', 'e', 'w', 'I', 't', 'e', 'm' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function NavigationViewItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function NavigationViewItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function NavigationViewItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function NavigationViewItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function NavigationViewItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function NavigationViewItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function NavigationViewItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function NavigationViewItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function NavigationViewItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function NavigationViewItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function NavigationViewItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function NavigationViewItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function NavigationViewItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function NavigationViewItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function NavigationViewItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function NavigationViewItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function NavigationViewItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function NavigationViewItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function NavigationViewItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function NavigationViewItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function NavigationViewItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function NavigationViewItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function NavigationViewItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function NavigationViewItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function NavigationViewItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function NavigationViewItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function NavigationViewItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function NavigationViewItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function NavigationViewItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function NavigationViewItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NavigationViewItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class NavigationViewItemBase implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IListViewItem, INavigationViewItemBase { - templateSettings: Primitives.ListViewItemTemplateSettings; - isSelected: Boolean; - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewItemBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewItemBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewItemBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewItemBase.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function NavigationViewItemBase.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function NavigationViewItemBase.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function NavigationViewItemBase.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function NavigationViewItemBase.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function NavigationViewItemBase.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function NavigationViewItemBase.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function NavigationViewItemBase.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function NavigationViewItemBase.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function NavigationViewItemBase.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function NavigationViewItemBase.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function NavigationViewItemBase.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function NavigationViewItemBase.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewItemBase.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function NavigationViewItemBase.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function NavigationViewItemBase.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemBase.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemBase.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function NavigationViewItemBase.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function NavigationViewItemBase.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function NavigationViewItemBase.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItemBase.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemBase.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemBase.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function NavigationViewItemBase.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function NavigationViewItemBase.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function NavigationViewItemBase.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function NavigationViewItemBase.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemBase.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemBase.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function NavigationViewItemBase.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function NavigationViewItemBase.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function NavigationViewItemBase.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function NavigationViewItemBase.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function NavigationViewItemBase.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function NavigationViewItemBase.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemBase.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function NavigationViewItemBase.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function NavigationViewItemBase.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function NavigationViewItemBase.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NavigationViewItemBase::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class NavigationViewItemHeader implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IListViewItem, INavigationViewItemBase, INavigationViewItemHeader { - // constructor(); - templateSettings: Primitives.ListViewItemTemplateSettings = null; - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'N', 'a', 'v', 'i', 'g', 'a', 't', 'i', 'o', 'n', 'V', 'i', 'e', 'w', 'I', 't', 'e', 'm', 'H', 'e', 'a', 'd', 'e', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemHeader.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewItemHeader.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewItemHeader.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemHeader.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemHeader.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewItemHeader.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewItemHeader.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function NavigationViewItemHeader.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function NavigationViewItemHeader.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function NavigationViewItemHeader.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function NavigationViewItemHeader.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function NavigationViewItemHeader.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function NavigationViewItemHeader.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function NavigationViewItemHeader.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function NavigationViewItemHeader.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function NavigationViewItemHeader.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function NavigationViewItemHeader.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function NavigationViewItemHeader.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function NavigationViewItemHeader.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewItemHeader.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function NavigationViewItemHeader.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function NavigationViewItemHeader.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemHeader.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemHeader.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function NavigationViewItemHeader.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function NavigationViewItemHeader.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function NavigationViewItemHeader.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItemHeader.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemHeader.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemHeader.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function NavigationViewItemHeader.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function NavigationViewItemHeader.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function NavigationViewItemHeader.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function NavigationViewItemHeader.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemHeader.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemHeader.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function NavigationViewItemHeader.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function NavigationViewItemHeader.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function NavigationViewItemHeader.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function NavigationViewItemHeader.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function NavigationViewItemHeader.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function NavigationViewItemHeader.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemHeader.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function NavigationViewItemHeader.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function NavigationViewItemHeader.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function NavigationViewItemHeader.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NavigationViewItemHeader::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class NavigationViewItemInvokedEventArgs implements INavigationViewItemInvokedEventArgs, INavigationViewItemInvokedEventArgs2 { - // constructor(); - invokedItem: any; - isSettingsInvoked: Boolean = false; - invokedItemContainer: NavigationViewItemBase; - recommendedNavigationTransitionInfo: Media.Animation.NavigationTransitionInfo; - - } - export class NavigationViewItemSeparator implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IListViewItem, INavigationViewItemBase, INavigationViewItemSeparator { - // constructor(); - templateSettings: Primitives.ListViewItemTemplateSettings = null; - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'N', 'a', 'v', 'i', 'g', 'a', 't', 'i', 'o', 'n', 'V', 'i', 'e', 'w', 'I', 't', 'e', 'm', 'S', 'e', 'p', 'a', 'r', 'a', 't', 'o', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemSeparator.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewItemSeparator.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewItemSeparator.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemSeparator.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemSeparator.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewItemSeparator.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewItemSeparator.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function NavigationViewItemSeparator.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function NavigationViewItemSeparator.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function NavigationViewItemSeparator.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function NavigationViewItemSeparator.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function NavigationViewItemSeparator.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function NavigationViewItemSeparator.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function NavigationViewItemSeparator.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function NavigationViewItemSeparator.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function NavigationViewItemSeparator.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function NavigationViewItemSeparator.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function NavigationViewItemSeparator.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function NavigationViewItemSeparator.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewItemSeparator.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function NavigationViewItemSeparator.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function NavigationViewItemSeparator.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemSeparator.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemSeparator.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function NavigationViewItemSeparator.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function NavigationViewItemSeparator.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function NavigationViewItemSeparator.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItemSeparator.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemSeparator.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemSeparator.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function NavigationViewItemSeparator.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function NavigationViewItemSeparator.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function NavigationViewItemSeparator.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function NavigationViewItemSeparator.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemSeparator.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemSeparator.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function NavigationViewItemSeparator.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function NavigationViewItemSeparator.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function NavigationViewItemSeparator.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function NavigationViewItemSeparator.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function NavigationViewItemSeparator.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function NavigationViewItemSeparator.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemSeparator.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function NavigationViewItemSeparator.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function NavigationViewItemSeparator.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function NavigationViewItemSeparator.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NavigationViewItemSeparator::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class NavigationViewList implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IListViewBase, IListViewBase2, IListViewBase3, IListViewBase4, IListViewBase5, IListViewBase6, ISemanticZoomInformation, IListView, INavigationViewList { - // constructor(); - selectionMode: ListViewSelectionMode = ListViewSelectionMode.single; - isSwipeEnabled: Boolean = true; - isItemClickEnabled: Boolean = false; - incrementalLoadingTrigger: IncrementalLoadingTrigger = IncrementalLoadingTrigger.edge; - incrementalLoadingThreshold: number = 0; - headerTransitions: Media.Animation.TransitionCollection = [ ]; - headerTemplate: DataTemplate; - header: any; - dataFetchSize: number = 3; - canReorderItems: Boolean = false; - canDragItems: Boolean = false; - selectedItems: any[] = [ ]; - showsScrollingPlaceholders: Boolean = true; - footerTransitions: Media.Animation.TransitionCollection = [ ]; - footerTemplate: DataTemplate; - footer: any; - reorderMode: ListViewReorderMode = ListViewReorderMode.disabled; - isMultiSelectCheckBoxEnabled: Boolean = true; - selectedRanges: Data.ItemIndexRange[] = [ ]; - singleSelectionFollowsFocus: Boolean = true; - semanticZoomOwner: SemanticZoom; - isZoomedInView: Boolean = true; - isActiveView: Boolean = false; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewList.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewList.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewList.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewList.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewList.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewList.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewList.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function NavigationViewList.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function NavigationViewList.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function NavigationViewList.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function NavigationViewList.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function NavigationViewList.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function NavigationViewList.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function NavigationViewList.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function NavigationViewList.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function NavigationViewList.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function NavigationViewList.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function NavigationViewList.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function NavigationViewList.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewList.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function NavigationViewList.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function NavigationViewList.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewList.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewList.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewList.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function NavigationViewList.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function NavigationViewList.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function NavigationViewList.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewList.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewList.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function NavigationViewList.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function NavigationViewList.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewList.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewList.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function NavigationViewList.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function NavigationViewList.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function NavigationViewList.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function NavigationViewList.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewList.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewList.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function NavigationViewList.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function NavigationViewList.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function NavigationViewList.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function NavigationViewList.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function NavigationViewList.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function NavigationViewList.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewList.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewList.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewList.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewList.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewList.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function NavigationViewList.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function NavigationViewList.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function NavigationViewList.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function NavigationViewList.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function NavigationViewList.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function NavigationViewList.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function NavigationViewList.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function NavigationViewList.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function NavigationViewList.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function NavigationViewList.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function NavigationViewList.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function NavigationViewList.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function NavigationViewList.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function NavigationViewList.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function NavigationViewList.containerFromIndex'); - } - - scrollIntoView(item: any): void { - console.warn('shimmed function NavigationViewList.scrollIntoView'); - } - - selectAll(): void { - console.warn('shimmed function NavigationViewList.selectAll'); - } - - loadMoreItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewList.loadMoreItemsAsync'); - } - - scrollIntoView_1(item: any, alignment: ScrollIntoViewAlignment): void { - console.warn('shimmed function NavigationViewList.scrollIntoView_1'); - } - - setDesiredContainerUpdateDuration(duration: number): void { - console.warn('shimmed function NavigationViewList.setDesiredContainerUpdateDuration'); - } - - selectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function NavigationViewList.selectRange'); - } - - deselectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function NavigationViewList.deselectRange'); - } - - isDragSource(): Boolean { - throw new Error('shimmed function NavigationViewList.isDragSource'); - } - - tryStartConnectedAnimationAsync(animation: Media.Animation.ConnectedAnimation, item: any, elementName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewList.tryStartConnectedAnimationAsync'); - } - - prepareConnectedAnimation(key: string, item: any, elementName: string): Media.Animation.ConnectedAnimation { - throw new Error('shimmed function NavigationViewList.prepareConnectedAnimation'); - } - - initializeViewChange(): void { - console.warn('shimmed function NavigationViewList.initializeViewChange'); - } - - completeViewChange(): void { - console.warn('shimmed function NavigationViewList.completeViewChange'); - } - - makeVisible(item: SemanticZoomLocation): void { - console.warn('shimmed function NavigationViewList.makeVisible'); - } - - startViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function NavigationViewList.startViewChangeFrom'); - } - - startViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function NavigationViewList.startViewChangeTo'); - } - - completeViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function NavigationViewList.completeViewChangeFrom'); - } - - completeViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function NavigationViewList.completeViewChangeTo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NavigationViewList::addEventListener: ${name}`); - switch (name) { - case "dragitemsstarting": // DragItemsStartingEventHandler - case "itemclick": // ItemClickEventHandler - case "containercontentchanging": // Foundation.TypedEventHandler - case "choosinggroupheadercontainer": // Foundation.TypedEventHandler - case "choosingitemcontainer": // Foundation.TypedEventHandler - case "dragitemscompleted": // Foundation.TypedEventHandler - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum NavigationViewOverflowLabelMode { - moreLabel, - noLabel, - } - export class NavigationViewPaneClosingEventArgs implements INavigationViewPaneClosingEventArgs { - cancel: Boolean; - - } - export enum NavigationViewPaneDisplayMode { - auto, - left, - top, - leftCompact, - leftMinimal, - } - export class NavigationViewSelectionChangedEventArgs implements INavigationViewSelectionChangedEventArgs, INavigationViewSelectionChangedEventArgs2 { - isSettingsSelected: Boolean; - selectedItem: any; - recommendedNavigationTransitionInfo: Media.Animation.NavigationTransitionInfo; - selectedItemContainer: NavigationViewItemBase; - - } - export enum NavigationViewSelectionFollowsFocus { - disabled, - enabled, - } - export enum NavigationViewShoulderNavigationEnabled { - whenSelectionFollowsFocus, - always, - never, - } - export class NavigationViewTemplateSettings implements IDependencyObject, IDependencyObject2, INavigationViewTemplateSettings { - // constructor(); - backButtonVisibility: Visibility = Visibility.collapsed; - leftPaneVisibility: Visibility = Visibility.visible; - overflowButtonVisibility: Visibility = Visibility.collapsed; - paneToggleButtonVisibility: Visibility = Visibility.visible; - singleSelectionFollowsFocus: Boolean = false; - topPadding: number = 0; - topPaneVisibility: Visibility = Visibility.collapsed; - static backButtonVisibilityProperty: DependencyProperty = null; - static leftPaneVisibilityProperty: DependencyProperty = null; - static overflowButtonVisibilityProperty: DependencyProperty = null; - static paneToggleButtonVisibilityProperty: DependencyProperty = null; - static singleSelectionFollowsFocusProperty: DependencyProperty = null; - static topPaddingProperty: DependencyProperty = null; - static topPaneVisibilityProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class NotifyEventArgs implements INotifyEventArgs, INotifyEventArgs2 { - value: string; - callingUri: Foundation.Uri; - - } - export type NotifyEventHandler = (e: NotifyEventArgs) => void; - export enum Orientation { - vertical, - horizontal, - } - export class Page implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IUserControl, IPage, IPageOverrides { - // constructor(); - topAppBar: AppBar; - navigationCacheMode: Navigation.NavigationCacheMode = NavigationCacheMode.disabled; - bottomAppBar: AppBar; - frame: Frame; - static bottomAppBarProperty: DependencyProperty = null; - static frameProperty: DependencyProperty = null; - static topAppBarProperty: DependencyProperty = null; - content: UIElement; - padding: Thickness = null; - isTabStop: Boolean = false; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Page.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Page.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Page.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Page.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Page.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Page.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Page.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Page.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Page.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Page.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Page.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Page.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Page.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Page.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Page.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Page.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Page.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Page.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Page.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Page.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Page.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Page.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Page.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Page.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Page.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Page.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Page.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Page.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Page.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Page.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Page.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Page.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Page.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Page.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Page.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Page.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Page.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Page.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Page.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Page.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Page.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Page.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Page.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Page.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Page.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Page.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Page.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Page.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Page.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Page.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Page.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Page.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Page.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Page.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Page.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Page.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Page.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Page.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Page.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Page.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Page.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Page.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Page.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Page.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Page.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Page.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Page.onCharacterReceived'); - } - - onNavigatedFrom(e: Navigation.NavigationEventArgs): void { - console.warn('shimmed function Page.onNavigatedFrom'); - } - - onNavigatedTo(e: Navigation.NavigationEventArgs): void { - console.warn('shimmed function Page.onNavigatedTo'); - } - - onNavigatingFrom(e: Navigation.NavigatingCancelEventArgs): void { - console.warn('shimmed function Page.onNavigatingFrom'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Page::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Panel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2 { - childrenTransitions: Media.Animation.TransitionCollection; - background: Media.Brush; - children: UIElementCollection; - isItemsHost: Boolean; - backgroundTransition: BrushTransition; - static backgroundProperty: DependencyProperty = null; - static childrenTransitionsProperty: DependencyProperty = null; - static isItemsHostProperty: DependencyProperty = null; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Panel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Panel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Panel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Panel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Panel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Panel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Panel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Panel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Panel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Panel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Panel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Panel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Panel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Panel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Panel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Panel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Panel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Panel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Panel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Panel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Panel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Panel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Panel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Panel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Panel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Panel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Panel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Panel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Panel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Panel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Panel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Panel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Panel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Panel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Panel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Panel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Panel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Panel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Panel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Panel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Panel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Panel.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Panel::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PanelScrollingDirection { - none, - forward, - backward, - } - export enum ParallaxSourceOffsetKind { - absolute, - relative, - } - export class ParallaxView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IParallaxView { - // constructor(); - verticalSourceStartOffset: number = 0; - verticalSourceOffsetKind: ParallaxSourceOffsetKind = ParallaxSourceOffsetKind.relative; - verticalSourceEndOffset: number = 0; - verticalShift: number = 0; - source: UIElement; - maxVerticalShiftRatio: number = 1; - maxHorizontalShiftRatio: number = 1; - isVerticalShiftClamped: Boolean = true; - isHorizontalShiftClamped: Boolean = true; - horizontalSourceStartOffset: number = 0; - horizontalSourceOffsetKind: ParallaxSourceOffsetKind = ParallaxSourceOffsetKind.relative; - horizontalSourceEndOffset: number = 0; - horizontalShift: number = 0; - child: UIElement; - static childProperty: DependencyProperty = null; - static horizontalShiftProperty: DependencyProperty = null; - static horizontalSourceEndOffsetProperty: DependencyProperty = null; - static horizontalSourceOffsetKindProperty: DependencyProperty = null; - static horizontalSourceStartOffsetProperty: DependencyProperty = null; - static isHorizontalShiftClampedProperty: DependencyProperty = null; - static isVerticalShiftClampedProperty: DependencyProperty = null; - static maxHorizontalShiftRatioProperty: DependencyProperty = null; - static maxVerticalShiftRatioProperty: DependencyProperty = null; - static sourceProperty: DependencyProperty = null; - static verticalShiftProperty: DependencyProperty = null; - static verticalSourceEndOffsetProperty: DependencyProperty = null; - static verticalSourceOffsetKindProperty: DependencyProperty = null; - static verticalSourceStartOffsetProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ParallaxView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ParallaxView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ParallaxView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ParallaxView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ParallaxView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ParallaxView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ParallaxView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ParallaxView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ParallaxView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ParallaxView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ParallaxView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ParallaxView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ParallaxView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ParallaxView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ParallaxView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ParallaxView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ParallaxView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ParallaxView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ParallaxView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ParallaxView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ParallaxView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ParallaxView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ParallaxView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ParallaxView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ParallaxView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ParallaxView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ParallaxView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ParallaxView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ParallaxView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ParallaxView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ParallaxView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ParallaxView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ParallaxView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ParallaxView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ParallaxView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ParallaxView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ParallaxView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ParallaxView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ParallaxView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ParallaxView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ParallaxView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ParallaxView.goToElementStateCore'); - } - - refreshAutomaticHorizontalOffsets(): void { - console.warn('shimmed function ParallaxView.refreshAutomaticHorizontalOffsets'); - } - - refreshAutomaticVerticalOffsets(): void { - console.warn('shimmed function ParallaxView.refreshAutomaticVerticalOffsets'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ParallaxView::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PasswordBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IPasswordBox, IPasswordBox2, IPasswordBox3, IPasswordBox4, IPasswordBox5 { - // constructor(); - passwordChar: string = '●'; - password: string = ''; - maxLength: number = 0; - isPasswordRevealButtonEnabled: Boolean = false; - selectionHighlightColor: Media.SolidColorBrush = null; - preventKeyboardDisplayOnProgrammaticFocus: Boolean = false; - placeholderText: string = ''; - headerTemplate: DataTemplate; - header: any; - textReadingOrder: TextReadingOrder = TextReadingOrder.detectFromContent; - passwordRevealMode: PasswordRevealMode = PasswordRevealMode.peek; - inputScope: Input.InputScope; - selectionFlyout: Primitives.FlyoutBase; - description: any; - canPasteClipboardContent: Boolean = true; - static isPasswordRevealButtonEnabledProperty: DependencyProperty = null; - static maxLengthProperty: DependencyProperty = null; - static passwordCharProperty: DependencyProperty = null; - static passwordProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static placeholderTextProperty: DependencyProperty = null; - static preventKeyboardDisplayOnProgrammaticFocusProperty: DependencyProperty = null; - static selectionHighlightColorProperty: DependencyProperty = null; - static inputScopeProperty: DependencyProperty = null; - static passwordRevealModeProperty: DependencyProperty = null; - static textReadingOrderProperty: DependencyProperty = null; - static canPasteClipboardContentProperty: DependencyProperty = null; - static descriptionProperty: DependencyProperty = null; - static selectionFlyoutProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PasswordBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PasswordBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PasswordBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PasswordBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PasswordBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PasswordBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PasswordBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PasswordBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PasswordBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PasswordBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PasswordBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PasswordBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PasswordBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PasswordBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PasswordBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PasswordBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PasswordBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PasswordBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PasswordBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PasswordBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PasswordBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PasswordBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PasswordBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PasswordBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PasswordBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PasswordBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PasswordBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PasswordBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PasswordBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PasswordBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PasswordBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PasswordBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PasswordBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PasswordBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PasswordBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PasswordBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PasswordBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PasswordBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PasswordBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PasswordBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PasswordBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PasswordBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function PasswordBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function PasswordBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function PasswordBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function PasswordBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function PasswordBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function PasswordBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function PasswordBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function PasswordBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function PasswordBox.onCharacterReceived'); - } - - selectAll(): void { - console.warn('shimmed function PasswordBox.selectAll'); - } - - pasteFromClipboard(): void { - console.warn('shimmed function PasswordBox.pasteFromClipboard'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PasswordBox::addEventListener: ${name}`); - switch (name) { - case "contextmenuopening": // ContextMenuOpeningEventHandler - case "passwordchanged": // RoutedEventHandler - case "paste": // TextControlPasteEventHandler - case "passwordchanging": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PasswordBoxPasswordChangingEventArgs implements IPasswordBoxPasswordChangingEventArgs { - isContentChanging: Boolean; - - } - export enum PasswordRevealMode { - peek, - hidden, - visible, - } - export class PathIcon implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IIconElement, IPathIcon { - // constructor(); - data: Media.Geometry; - static dataProperty: DependencyProperty = null; - foreground: Media.Brush = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathIcon.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PathIcon.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PathIcon.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathIcon.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathIcon.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PathIcon.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PathIcon.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PathIcon.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PathIcon.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PathIcon.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PathIcon.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PathIcon.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PathIcon.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PathIcon.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PathIcon.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PathIcon.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PathIcon.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PathIcon.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PathIcon.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PathIcon.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PathIcon.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PathIcon.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PathIcon.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PathIcon.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PathIcon.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PathIcon.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PathIcon.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PathIcon.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PathIcon.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PathIcon.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PathIcon.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PathIcon.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PathIcon.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PathIcon.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PathIcon.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PathIcon.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PathIcon.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PathIcon.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PathIcon.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PathIcon.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PathIcon.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PathIcon.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PathIcon::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PathIconSource implements IDependencyObject, IDependencyObject2, IIconSource, IPathIconSource { - // constructor(); - data: Media.Geometry; - static dataProperty: DependencyProperty = null; - foreground: Media.Brush; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathIconSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PathIconSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PathIconSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathIconSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathIconSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PathIconSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PathIconSource.unregisterPropertyChangedCallback'); - } - - } - export class PersonPicture implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IPersonPicture { - // constructor(); - profilePicture: Media.ImageSource; - preferSmallImage: Boolean = false; - isGroup: Boolean = false; - initials: string = ''; - displayName: string = ''; - contact: ApplicationModel.Contacts.Contact; - badgeText: string = ''; - badgeNumber: number = 0; - badgeImageSource: Media.ImageSource; - badgeGlyph: string = ''; - static badgeGlyphProperty: DependencyProperty = null; - static badgeImageSourceProperty: DependencyProperty = null; - static badgeNumberProperty: DependencyProperty = null; - static badgeTextProperty: DependencyProperty = null; - static contactProperty: DependencyProperty = null; - static displayNameProperty: DependencyProperty = null; - static initialsProperty: DependencyProperty = null; - static isGroupProperty: DependencyProperty = null; - static preferSmallImageProperty: DependencyProperty = null; - static profilePictureProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'P', 'e', 'r', 's', 'o', 'n', 'P', 'i', 'c', 't', 'u', 'r', 'e' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PersonPicture.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PersonPicture.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PersonPicture.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PersonPicture.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PersonPicture.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PersonPicture.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PersonPicture.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PersonPicture.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PersonPicture.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PersonPicture.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PersonPicture.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PersonPicture.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PersonPicture.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PersonPicture.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PersonPicture.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PersonPicture.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PersonPicture.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PersonPicture.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PersonPicture.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PersonPicture.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PersonPicture.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PersonPicture.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PersonPicture.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PersonPicture.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PersonPicture.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PersonPicture.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PersonPicture.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PersonPicture.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PersonPicture.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PersonPicture.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PersonPicture.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PersonPicture.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PersonPicture.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PersonPicture.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PersonPicture.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PersonPicture.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PersonPicture.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PersonPicture.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PersonPicture.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PersonPicture.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PersonPicture.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PersonPicture.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function PersonPicture.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function PersonPicture.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function PersonPicture.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function PersonPicture.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function PersonPicture.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function PersonPicture.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function PersonPicture.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function PersonPicture.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function PersonPicture.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PersonPicture::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PickerConfirmedEventArgs implements IDependencyObject, IDependencyObject2, IPickerConfirmedEventArgs { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerConfirmedEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PickerConfirmedEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PickerConfirmedEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerConfirmedEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerConfirmedEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PickerConfirmedEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PickerConfirmedEventArgs.unregisterPropertyChangedCallback'); - } - - } - export class PickerFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, Primitives.IPickerFlyoutBase, Primitives.IPickerFlyoutBaseOverrides, IPickerFlyout { - // constructor(); - content: UIElement; - confirmationButtonsVisible: Boolean = false; - static confirmationButtonsVisibleProperty: DependencyProperty = null; - static contentProperty: DependencyProperty = null; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.full; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = true; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = true; - isConstrainedToRootBounds: Boolean = true; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PickerFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PickerFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PickerFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PickerFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function PickerFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function PickerFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PickerFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function PickerFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function PickerFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PickerFlyout.onProcessKeyboardAccelerators'); - } - - onConfirmed(): void { - console.warn('shimmed function PickerFlyout.onConfirmed'); - } - - shouldShowConfirmationButtons(): Boolean { - throw new Error('shimmed function PickerFlyout.shouldShowConfirmationButtons'); - } - - showAtAsync(target: FrameworkElement): Foundation.IAsyncOperation { - throw new Error('shimmed function PickerFlyout.showAtAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PickerFlyout::addEventListener: ${name}`); - switch (name) { - case "confirmed": // Foundation.TypedEventHandler - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class PickerFlyoutPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IPickerFlyoutPresenter { - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PickerFlyoutPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PickerFlyoutPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PickerFlyoutPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PickerFlyoutPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PickerFlyoutPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PickerFlyoutPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PickerFlyoutPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PickerFlyoutPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PickerFlyoutPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PickerFlyoutPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PickerFlyoutPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PickerFlyoutPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PickerFlyoutPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PickerFlyoutPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PickerFlyoutPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PickerFlyoutPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PickerFlyoutPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PickerFlyoutPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PickerFlyoutPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PickerFlyoutPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PickerFlyoutPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PickerFlyoutPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PickerFlyoutPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PickerFlyoutPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PickerFlyoutPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PickerFlyoutPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PickerFlyoutPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PickerFlyoutPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PickerFlyoutPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PickerFlyoutPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PickerFlyoutPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PickerFlyoutPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PickerFlyoutPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PickerFlyoutPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function PickerFlyoutPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function PickerFlyoutPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function PickerFlyoutPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function PickerFlyoutPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function PickerFlyoutPresenter.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function PickerFlyoutPresenter.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function PickerFlyoutPresenter.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function PickerFlyoutPresenter.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PickerFlyoutPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Pivot implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, IPivot, IPivot2, IPivot3 { - // constructor(); - titleTemplate: DataTemplate; - title: any; - selectedItem: any; - selectedIndex: number = 0; - isLocked: Boolean = false; - headerTemplate: DataTemplate; - rightHeaderTemplate: DataTemplate; - rightHeader: any; - leftHeaderTemplate: DataTemplate; - leftHeader: any; - isHeaderItemsCarouselEnabled: Boolean = true; - headerFocusVisualPlacement: PivotHeaderFocusVisualPlacement = PivotHeaderFocusVisualPlacement.itemHeaders; - static headerTemplateProperty: DependencyProperty = null; - static isLockedProperty: DependencyProperty = null; - static selectedIndexProperty: DependencyProperty = null; - static selectedItemProperty: DependencyProperty = null; - static slideInAnimationGroupProperty: DependencyProperty = null; - static titleProperty: DependencyProperty = null; - static titleTemplateProperty: DependencyProperty = null; - static leftHeaderProperty: DependencyProperty = null; - static leftHeaderTemplateProperty: DependencyProperty = null; - static rightHeaderProperty: DependencyProperty = null; - static rightHeaderTemplateProperty: DependencyProperty = null; - static headerFocusVisualPlacementProperty: DependencyProperty = null; - static isHeaderItemsCarouselEnabledProperty: DependencyProperty = null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'P', 'i', 'v', 'o', 't' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Pivot.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Pivot.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Pivot.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Pivot.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Pivot.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Pivot.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Pivot.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Pivot.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Pivot.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Pivot.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Pivot.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Pivot.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Pivot.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Pivot.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Pivot.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Pivot.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Pivot.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Pivot.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Pivot.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Pivot.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Pivot.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Pivot.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Pivot.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Pivot.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Pivot.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Pivot.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Pivot.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Pivot.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Pivot.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Pivot.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Pivot.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Pivot.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Pivot.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Pivot.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Pivot.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Pivot.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Pivot.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Pivot.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Pivot.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Pivot.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Pivot.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Pivot.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Pivot.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Pivot.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Pivot.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Pivot.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Pivot.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Pivot.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Pivot.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Pivot.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Pivot.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Pivot.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Pivot.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Pivot.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Pivot.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Pivot.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Pivot.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Pivot.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Pivot.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Pivot.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Pivot.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Pivot.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Pivot.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Pivot.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Pivot.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function Pivot.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function Pivot.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function Pivot.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function Pivot.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function Pivot.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function Pivot.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function Pivot.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function Pivot.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function Pivot.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function Pivot.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function Pivot.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function Pivot.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function Pivot.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function Pivot.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function Pivot.containerFromIndex'); - } - - static getSlideInAnimationGroup(element: FrameworkElement): PivotSlideInAnimationGroup { - throw new Error('shimmed function Pivot.getSlideInAnimationGroup'); - } - - static setSlideInAnimationGroup(element: FrameworkElement, value: PivotSlideInAnimationGroup): void { - console.warn('shimmed function Pivot.setSlideInAnimationGroup'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Pivot::addEventListener: ${name}`); - switch (name) { - case "pivotitemloaded": // Foundation.TypedEventHandler - case "pivotitemloading": // Foundation.TypedEventHandler - case "pivotitemunloaded": // Foundation.TypedEventHandler - case "pivotitemunloading": // Foundation.TypedEventHandler - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PivotHeaderFocusVisualPlacement { - itemHeaders, - selectedItemHeader, - } - export class PivotItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IPivotItem { - // constructor(); - header: any; - static headerProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'P', 'i', 'v', 'o', 't', 'I', 't', 'e', 'm' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PivotItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PivotItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PivotItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PivotItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PivotItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PivotItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PivotItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PivotItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PivotItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PivotItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PivotItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PivotItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PivotItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PivotItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PivotItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PivotItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PivotItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PivotItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PivotItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PivotItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PivotItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PivotItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PivotItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PivotItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PivotItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PivotItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PivotItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PivotItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PivotItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PivotItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function PivotItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function PivotItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function PivotItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function PivotItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PivotItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PivotItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function PivotItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function PivotItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function PivotItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function PivotItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function PivotItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function PivotItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function PivotItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function PivotItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PivotItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PivotItemEventArgs implements IPivotItemEventArgs { - // constructor(); - item: PivotItem; - - } - export enum PivotSlideInAnimationGroup { - default, - groupOne, - groupTwo, - groupThree, - } - export namespace Primitives { - export enum AnimationDirection { - left, - top, - right, - bottom, - } - export class AppBarButtonTemplateSettings implements IDependencyObject, IDependencyObject2, IAppBarButtonTemplateSettings { - keyboardAcceleratorTextMinWidth: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButtonTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarButtonTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarButtonTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButtonTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarButtonTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarButtonTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarButtonTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class AppBarTemplateSettings implements IDependencyObject, IDependencyObject2, IAppBarTemplateSettings, IAppBarTemplateSettings2 { - clipRect: Foundation.Rect; - compactRootMargin: Thickness; - compactVerticalDelta: number; - hiddenRootMargin: Thickness; - hiddenVerticalDelta: number; - minimalRootMargin: Thickness; - minimalVerticalDelta: number; - negativeCompactVerticalDelta: number; - negativeHiddenVerticalDelta: number; - negativeMinimalVerticalDelta: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class AppBarToggleButtonTemplateSettings implements IDependencyObject, IDependencyObject2, IAppBarToggleButtonTemplateSettings { - keyboardAcceleratorTextMinWidth: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButtonTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AppBarToggleButtonTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AppBarToggleButtonTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButtonTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AppBarToggleButtonTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AppBarToggleButtonTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AppBarToggleButtonTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class ButtonBase implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IButtonBase { - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode; - isPointerOver: Boolean; - isPressed: Boolean; - static clickModeProperty: DependencyProperty = null; - static commandParameterProperty: DependencyProperty = null; - static commandProperty: DependencyProperty = null; - static isPointerOverProperty: DependencyProperty = null; - static isPressedProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ButtonBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ButtonBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ButtonBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ButtonBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ButtonBase.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ButtonBase.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ButtonBase.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ButtonBase.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ButtonBase.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ButtonBase.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ButtonBase.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ButtonBase.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ButtonBase.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ButtonBase.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ButtonBase.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ButtonBase.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ButtonBase.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ButtonBase.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ButtonBase.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ButtonBase.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ButtonBase.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ButtonBase.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ButtonBase.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ButtonBase.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ButtonBase.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ButtonBase.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ButtonBase.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ButtonBase.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ButtonBase.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ButtonBase.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ButtonBase.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ButtonBase.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ButtonBase.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ButtonBase.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ButtonBase.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ButtonBase.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ButtonBase.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ButtonBase.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ButtonBase.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ButtonBase.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ButtonBase.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ButtonBase.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ButtonBase.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ButtonBase.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ButtonBase.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ButtonBase.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ButtonBase.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ButtonBase.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ButtonBase.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ButtonBase.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ButtonBase.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ButtonBase.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ButtonBase::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CalendarPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, ICalendarPanel { - // constructor(); - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CalendarPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CalendarPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CalendarPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CalendarPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CalendarPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CalendarPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CalendarPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CalendarPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CalendarPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CalendarPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CalendarPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CalendarPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CalendarPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CalendarPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CalendarPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CalendarPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CalendarPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CalendarPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CalendarPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CalendarPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CalendarPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CalendarPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CalendarPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CalendarPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CalendarPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CalendarPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CalendarPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CalendarPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CalendarPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CalendarPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CalendarPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CalendarPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CalendarPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CalendarPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CalendarPanel.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CalendarPanel::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CalendarViewTemplateSettings implements IDependencyObject, IDependencyObject2, ICalendarViewTemplateSettings { - centerX: number; - centerY: number; - clipRect: Foundation.Rect; - hasMoreContentAfter: Boolean; - hasMoreContentBefore: Boolean; - hasMoreViews: Boolean; - headerText: string; - minViewWidth: number; - weekDay1: string; - weekDay2: string; - weekDay3: string; - weekDay4: string; - weekDay5: string; - weekDay6: string; - weekDay7: string; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarViewTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CalendarViewTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CalendarViewTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarViewTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CalendarViewTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CalendarViewTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CalendarViewTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class CarouselPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IVirtualizingPanel, IVirtualizingPanelProtected, IVirtualizingPanelOverrides, ICarouselPanel, IScrollSnapPointsInfo { - // constructor(); - scrollOwner: any; - canVerticallyScroll: Boolean = false; - canHorizontallyScroll: Boolean = false; - extentHeight: number = 0; - extentWidth: number = 0; - horizontalOffset: number = 0; - verticalOffset: number = 0; - viewportHeight: number = 0; - viewportWidth: number = 0; - areHorizontalSnapPointsRegular: Boolean = false; - areVerticalSnapPointsRegular: Boolean = false; - itemContainerGenerator: ItemContainerGenerator; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CarouselPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CarouselPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CarouselPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CarouselPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CarouselPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CarouselPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CarouselPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CarouselPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CarouselPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CarouselPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CarouselPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CarouselPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CarouselPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CarouselPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CarouselPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CarouselPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CarouselPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CarouselPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CarouselPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CarouselPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CarouselPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CarouselPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CarouselPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CarouselPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CarouselPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CarouselPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CarouselPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CarouselPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CarouselPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CarouselPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CarouselPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CarouselPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CarouselPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CarouselPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CarouselPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CarouselPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CarouselPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CarouselPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CarouselPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CarouselPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CarouselPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CarouselPanel.goToElementStateCore'); - } - - addInternalChild(child: UIElement): void { - console.warn('shimmed function CarouselPanel.addInternalChild'); - } - - insertInternalChild(index: number, child: UIElement): void { - console.warn('shimmed function CarouselPanel.insertInternalChild'); - } - - removeInternalChildRange(index: number, range: number): void { - console.warn('shimmed function CarouselPanel.removeInternalChildRange'); - } - - onItemsChanged(sender: any, args: ItemsChangedEventArgs): void { - console.warn('shimmed function CarouselPanel.onItemsChanged'); - } - - onClearChildren(): void { - console.warn('shimmed function CarouselPanel.onClearChildren'); - } - - bringIndexIntoView(index: number): void { - console.warn('shimmed function CarouselPanel.bringIndexIntoView'); - } - - lineUp(): void { - console.warn('shimmed function CarouselPanel.lineUp'); - } - - lineDown(): void { - console.warn('shimmed function CarouselPanel.lineDown'); - } - - lineLeft(): void { - console.warn('shimmed function CarouselPanel.lineLeft'); - } - - lineRight(): void { - console.warn('shimmed function CarouselPanel.lineRight'); - } - - pageUp(): void { - console.warn('shimmed function CarouselPanel.pageUp'); - } - - pageDown(): void { - console.warn('shimmed function CarouselPanel.pageDown'); - } - - pageLeft(): void { - console.warn('shimmed function CarouselPanel.pageLeft'); - } - - pageRight(): void { - console.warn('shimmed function CarouselPanel.pageRight'); - } - - mouseWheelUp(): void { - console.warn('shimmed function CarouselPanel.mouseWheelUp'); - } - - mouseWheelDown(): void { - console.warn('shimmed function CarouselPanel.mouseWheelDown'); - } - - mouseWheelLeft(): void { - console.warn('shimmed function CarouselPanel.mouseWheelLeft'); - } - - mouseWheelRight(): void { - console.warn('shimmed function CarouselPanel.mouseWheelRight'); - } - - setHorizontalOffset(offset: number): void { - console.warn('shimmed function CarouselPanel.setHorizontalOffset'); - } - - setVerticalOffset(offset: number): void { - console.warn('shimmed function CarouselPanel.setVerticalOffset'); - } - - makeVisible(visual: UIElement, rectangle: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function CarouselPanel.makeVisible'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): number[] { - throw new Error('shimmed function CarouselPanel.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function CarouselPanel.getRegularSnapPoints'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CarouselPanel::addEventListener: ${name}`); - switch (name) { - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ColorPickerSlider implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IRangeBase, IRangeBaseOverrides, ISlider, ISlider2, IColorPickerSlider { - // constructor(); - colorChannel: ColorPickerHsvChannel = ColorPickerHsvChannel.value; - static colorChannelProperty: DependencyProperty = null; - tickPlacement: TickPlacement = TickPlacement.inline; - tickFrequency: number = 0; - thumbToolTipValueConverter: Data.IValueConverter; - stepFrequency: number = 1; - snapsTo: SliderSnapsTo = SliderSnapsTo.stepValues; - orientation: Orientation = Orientation.horizontal; - isThumbToolTipEnabled: Boolean = true; - isDirectionReversed: Boolean = false; - intermediateValue: number = 0; - headerTemplate: DataTemplate; - header: any; - value: number = 0; - smallChange: number = 1; - minimum: number = 0; - maximum: number = 100; - largeChange: number = 10; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'S', 'l', 'i', 'd', 'e', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPickerSlider.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorPickerSlider.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorPickerSlider.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPickerSlider.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorPickerSlider.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorPickerSlider.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorPickerSlider.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ColorPickerSlider.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ColorPickerSlider.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ColorPickerSlider.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ColorPickerSlider.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ColorPickerSlider.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ColorPickerSlider.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ColorPickerSlider.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ColorPickerSlider.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ColorPickerSlider.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ColorPickerSlider.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ColorPickerSlider.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ColorPickerSlider.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ColorPickerSlider.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ColorPickerSlider.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ColorPickerSlider.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ColorPickerSlider.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ColorPickerSlider.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ColorPickerSlider.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ColorPickerSlider.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ColorPickerSlider.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ColorPickerSlider.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorPickerSlider.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ColorPickerSlider.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ColorPickerSlider.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ColorPickerSlider.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ColorPickerSlider.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ColorPickerSlider.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ColorPickerSlider.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ColorPickerSlider.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ColorPickerSlider.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ColorPickerSlider.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ColorPickerSlider.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ColorPickerSlider.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ColorPickerSlider.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ColorPickerSlider.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ColorPickerSlider.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ColorPickerSlider.onCharacterReceived'); - } - - onMinimumChanged(oldMinimum: number, newMinimum: number): void { - console.warn('shimmed function ColorPickerSlider.onMinimumChanged'); - } - - onMaximumChanged(oldMaximum: number, newMaximum: number): void { - console.warn('shimmed function ColorPickerSlider.onMaximumChanged'); - } - - onValueChanged(oldValue: number, newValue: number): void { - console.warn('shimmed function ColorPickerSlider.onValueChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ColorPickerSlider::addEventListener: ${name}`); - switch (name) { - case "valuechanged": // RangeBaseValueChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ColorSpectrum implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IColorSpectrum { - // constructor(); - shape: ColorSpectrumShape = ColorSpectrumShape.box; - minValue: number = 0; - minSaturation: number = 0; - minHue: number = 0; - maxValue: number = 100; - maxSaturation: number = 100; - maxHue: number = 359; - hsvColor: Foundation.Numerics.Vector4 = null; - components: ColorSpectrumComponents = ColorSpectrumComponents.hueSaturation; - color: Color = { a: 255, r: 255, g: 255, b: 255 }; - static colorProperty: DependencyProperty = null; - static componentsProperty: DependencyProperty = null; - static hsvColorProperty: DependencyProperty = null; - static maxHueProperty: DependencyProperty = null; - static maxSaturationProperty: DependencyProperty = null; - static maxValueProperty: DependencyProperty = null; - static minHueProperty: DependencyProperty = null; - static minSaturationProperty: DependencyProperty = null; - static minValueProperty: DependencyProperty = null; - static shapeProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = true; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'P', 'r', 'i', 'm', 'i', 't', 'i', 'v', 'e', 's', '.', 'C', 'o', 'l', 'o', 'r', 'S', 'p', 'e', 'c', 't', 'r', 'u', 'm' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorSpectrum.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorSpectrum.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorSpectrum.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorSpectrum.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorSpectrum.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorSpectrum.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorSpectrum.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ColorSpectrum.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ColorSpectrum.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ColorSpectrum.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ColorSpectrum.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ColorSpectrum.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ColorSpectrum.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ColorSpectrum.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ColorSpectrum.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ColorSpectrum.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ColorSpectrum.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ColorSpectrum.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ColorSpectrum.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ColorSpectrum.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ColorSpectrum.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ColorSpectrum.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ColorSpectrum.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ColorSpectrum.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ColorSpectrum.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ColorSpectrum.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ColorSpectrum.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ColorSpectrum.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ColorSpectrum.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ColorSpectrum.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ColorSpectrum.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ColorSpectrum.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ColorSpectrum.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ColorSpectrum.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ColorSpectrum.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ColorSpectrum.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ColorSpectrum.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ColorSpectrum.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ColorSpectrum.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ColorSpectrum.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ColorSpectrum.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ColorSpectrum.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ColorSpectrum.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ColorSpectrum.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ColorSpectrum.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ColorSpectrum.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ColorSpectrum.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ColorSpectrum.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ColorSpectrum.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ColorSpectrum::addEventListener: ${name}`); - switch (name) { - case "colorchanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ComboBoxTemplateSettings implements IDependencyObject, IDependencyObject2, IComboBoxTemplateSettings, IComboBoxTemplateSettings2 { - dropDownClosedHeight: number; - dropDownOffset: number; - dropDownOpenedHeight: number; - selectedItemDirection: AnimationDirection; - dropDownContentMinWidth: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ComboBoxTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ComboBoxTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ComboBoxTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ComboBoxTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ComboBoxTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class CommandBarFlyoutCommandBar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IAppBar, IAppBar2, IAppBar3, IAppBar4, IAppBarOverrides, IAppBarOverrides3, ICommandBar, ICommandBar2, ICommandBar3, ICommandBarFlyoutCommandBar { - // constructor(); - flyoutTemplateSettings: CommandBarFlyoutCommandBarTemplateSettings = null; - primaryCommands: ICommandBarElement[] = [ ]; - secondaryCommands: ICommandBarElement[] = [ ]; - commandBarOverflowPresenterStyle: Style; - commandBarTemplateSettings: CommandBarTemplateSettings = null; - overflowButtonVisibility: CommandBarOverflowButtonVisibility = CommandBarOverflowButtonVisibility.auto; - isDynamicOverflowEnabled: Boolean = true; - defaultLabelPosition: CommandBarDefaultLabelPosition = CommandBarDefaultLabelPosition.bottom; - isSticky: Boolean = false; - isOpen: Boolean = false; - closedDisplayMode: AppBarClosedDisplayMode = AppBarClosedDisplayMode.compact; - templateSettings: AppBarTemplateSettings = null; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'P', 'r', 'i', 'm', 'i', 't', 'i', 'v', 'e', 's', '.', 'C', 'o', 'm', 'm', 'a', 'n', 'd', 'B', 'a', 'r', 'F', 'l', 'y', 'o', 'u', 't', 'C', 'o', 'm', 'm', 'a', 'n', 'd', 'B', 'a', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyoutCommandBar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyoutCommandBar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyoutCommandBar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CommandBarFlyoutCommandBar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function CommandBarFlyoutCommandBar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function CommandBarFlyoutCommandBar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function CommandBarFlyoutCommandBar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function CommandBarFlyoutCommandBar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function CommandBarFlyoutCommandBar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function CommandBarFlyoutCommandBar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function CommandBarFlyoutCommandBar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function CommandBarFlyoutCommandBar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function CommandBarFlyoutCommandBar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CommandBarFlyoutCommandBar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function CommandBarFlyoutCommandBar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function CommandBarFlyoutCommandBar.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function CommandBarFlyoutCommandBar.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function CommandBarFlyoutCommandBar.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function CommandBarFlyoutCommandBar.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onContentTemplateSelectorChanged'); - } - - onClosed(e: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onClosed'); - } - - onOpened(e: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onOpened'); - } - - onClosing(e: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onClosing'); - } - - onOpening(e: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBar.onOpening'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`CommandBarFlyoutCommandBar::addEventListener: ${name}`); - switch (name) { - case "dynamicoverflowitemschanging": // Foundation.TypedEventHandler - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class CommandBarFlyoutCommandBarTemplateSettings implements IDependencyObject, IDependencyObject2, ICommandBarFlyoutCommandBarTemplateSettings { - closeAnimationEndPosition: number; - contentClipRect: Foundation.Rect; - currentWidth: number; - expandDownAnimationEndPosition: number; - expandDownAnimationHoldPosition: number; - expandDownAnimationStartPosition: number; - expandDownOverflowVerticalPosition: number; - expandUpAnimationEndPosition: number; - expandUpAnimationHoldPosition: number; - expandUpAnimationStartPosition: number; - expandUpOverflowVerticalPosition: number; - expandedWidth: number; - openAnimationEndPosition: number; - openAnimationStartPosition: number; - overflowContentClipRect: Foundation.Rect; - widthExpansionAnimationEndPosition: number; - widthExpansionAnimationStartPosition: number; - widthExpansionDelta: number; - widthExpansionMoreButtonAnimationEndPosition: number; - widthExpansionMoreButtonAnimationStartPosition: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyoutCommandBarTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CommandBarFlyoutCommandBarTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CommandBarFlyoutCommandBarTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyoutCommandBarTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarFlyoutCommandBarTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CommandBarFlyoutCommandBarTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CommandBarFlyoutCommandBarTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class CommandBarTemplateSettings implements IDependencyObject, IDependencyObject2, ICommandBarTemplateSettings, ICommandBarTemplateSettings2, ICommandBarTemplateSettings3, ICommandBarTemplateSettings4 { - contentHeight: number; - negativeOverflowContentHeight: number; - overflowContentClipRect: Foundation.Rect; - overflowContentHeight: number; - overflowContentHorizontalOffset: number; - overflowContentMaxHeight: number; - overflowContentMinWidth: number; - overflowContentMaxWidth: number; - effectiveOverflowButtonVisibility: Visibility; - overflowContentCompactYTranslation: number; - overflowContentHiddenYTranslation: number; - overflowContentMinimalYTranslation: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CommandBarTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CommandBarTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommandBarTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CommandBarTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CommandBarTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export enum ComponentResourceLocation { - application, - nested, - } - export class DragCompletedEventArgs implements IRoutedEventArgs, IDragCompletedEventArgs { - // constructor(horizontalChange: number, verticalChange: number, canceled: Boolean); - constructor(horizontalChange: number, verticalChange: number, canceled: Boolean) {} - - canceled: Boolean; - horizontalChange: number; - verticalChange: number; - originalSource: any; - - } - export type DragCompletedEventHandler = (e: DragCompletedEventArgs) => void; - export class DragDeltaEventArgs implements IRoutedEventArgs, IDragDeltaEventArgs { - // constructor(horizontalChange: number, verticalChange: number); - constructor(horizontalChange: number, verticalChange: number) {} - - horizontalChange: number; - verticalChange: number; - originalSource: any; - - } - export type DragDeltaEventHandler = (e: DragDeltaEventArgs) => void; - export class DragStartedEventArgs implements IRoutedEventArgs, IDragStartedEventArgs { - // constructor(horizontalOffset: number, verticalOffset: number); - constructor(horizontalOffset: number, verticalOffset: number) {} - - horizontalOffset: number; - verticalOffset: number; - originalSource: any; - - } - export type DragStartedEventHandler = (e: DragStartedEventArgs) => void; - export enum EdgeTransitionLocation { - left, - top, - right, - bottom, - } - export class FlyoutBase implements IDependencyObject, IDependencyObject2, IFlyoutBase, IFlyoutBase2, IFlyoutBase3, IFlyoutBase4, IFlyoutBase5, IFlyoutBase6, IFlyoutBaseOverrides, IFlyoutBaseOverrides4 { - placement: FlyoutPlacementMode; - lightDismissOverlayMode: LightDismissOverlayMode; - elementSoundMode: ElementSoundMode; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: FlyoutShowMode; - areOpenCloseAnimationsEnabled: Boolean; - inputDevicePrefersPrimaryCommands: Boolean; - isOpen: Boolean; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean; - isConstrainedToRootBounds: Boolean; - static attachedFlyoutProperty: DependencyProperty = null; - static placementProperty: DependencyProperty = null; - static allowFocusOnInteractionProperty: DependencyProperty = null; - static allowFocusWhenDisabledProperty: DependencyProperty = null; - static elementSoundModeProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - static overlayInputPassThroughElementProperty: DependencyProperty = null; - static areOpenCloseAnimationsEnabledProperty: DependencyProperty = null; - static inputDevicePrefersPrimaryCommandsProperty: DependencyProperty = null; - static isOpenProperty: DependencyProperty = null; - static showModeProperty: DependencyProperty = null; - static targetProperty: DependencyProperty = null; - static shouldConstrainToRootBoundsProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FlyoutBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FlyoutBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FlyoutBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FlyoutBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FlyoutBase.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function FlyoutBase.showAt'); - } - - hide(): void { - console.warn('shimmed function FlyoutBase.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlyoutBase.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: FlyoutShowOptions): void { - console.warn('shimmed function FlyoutBase.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function FlyoutBase.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FlyoutBase.onProcessKeyboardAccelerators'); - } - - static getAttachedFlyout(element: FrameworkElement): FlyoutBase { - throw new Error('shimmed function FlyoutBase.getAttachedFlyout'); - } - - static setAttachedFlyout(element: FrameworkElement, value: FlyoutBase): void { - console.warn('shimmed function FlyoutBase.setAttachedFlyout'); - } - - static showAttachedFlyout(flyoutOwner: FrameworkElement): void { - console.warn('shimmed function FlyoutBase.showAttachedFlyout'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FlyoutBase::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class FlyoutBaseClosingEventArgs implements IFlyoutBaseClosingEventArgs { - cancel: Boolean; - - } - export enum FlyoutPlacementMode { - top, - bottom, - left, - right, - full, - topEdgeAlignedLeft, - topEdgeAlignedRight, - bottomEdgeAlignedLeft, - bottomEdgeAlignedRight, - leftEdgeAlignedTop, - leftEdgeAlignedBottom, - rightEdgeAlignedTop, - rightEdgeAlignedBottom, - auto, - } - export enum FlyoutShowMode { - auto, - standard, - transient, - transientWithDismissOnPointerMoveAway, - } - export class FlyoutShowOptions implements IFlyoutShowOptions { - // constructor(); - showMode: FlyoutShowMode = FlyoutShowMode.auto; - position: Foundation.Point | null; - placement: FlyoutPlacementMode = FlyoutPlacementMode.auto; - exclusionRect: Foundation.Rect | null; - - } - export enum GeneratorDirection { - forward, - backward, - } - export interface GeneratorPosition { - index: number; - offset: number; - } - export class GeneratorPositionHelper implements IGeneratorPositionHelper { - static fromIndexAndOffset(index: number, offset: number): /* Windows.UI.Xaml.Controls.Primitives.GeneratorPosition */ any { - throw new Error('shimmed function GeneratorPositionHelper.fromIndexAndOffset'); - } - - } - export class GridViewItemPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IContentPresenter, IContentPresenter2, IContentPresenter3, IContentPresenter4, IContentPresenter5, IContentPresenterOverrides, IGridViewItemPresenter { - // constructor(); - selectionCheckMarkVisualEnabled: Boolean = true; - selectedPointerOverBorderBrush: Media.Brush; - selectedPointerOverBackground: Media.Brush; - selectedForeground: Media.Brush; - selectedBorderThickness: Thickness = null; - selectedBackground: Media.Brush; - reorderHintOffset: number = 16; - pointerOverBackgroundMargin: Thickness = null; - pointerOverBackground: Media.Brush; - placeholderBackground: Media.Brush; - gridViewItemPresenterVerticalContentAlignment: VerticalAlignment = VerticalAlignment.stretch; - gridViewItemPresenterPadding: Thickness = null; - gridViewItemPresenterHorizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - focusBorderBrush: Media.Brush; - dragOpacity: number = 0.800000011920929; - dragForeground: Media.Brush; - dragBackground: Media.Brush; - disabledOpacity: number = 0.550000011920929; - contentMargin: Thickness = null; - checkSelectingBrush: Media.Brush; - checkHintBrush: Media.Brush; - checkBrush: Media.Brush; - static checkBrushProperty: DependencyProperty = null; - static checkHintBrushProperty: DependencyProperty = null; - static checkSelectingBrushProperty: DependencyProperty = null; - static contentMarginProperty: DependencyProperty = null; - static disabledOpacityProperty: DependencyProperty = null; - static dragBackgroundProperty: DependencyProperty = null; - static dragForegroundProperty: DependencyProperty = null; - static dragOpacityProperty: DependencyProperty = null; - static focusBorderBrushProperty: DependencyProperty = null; - static gridViewItemPresenterHorizontalContentAlignmentProperty: DependencyProperty = null; - static gridViewItemPresenterPaddingProperty: DependencyProperty = null; - static gridViewItemPresenterVerticalContentAlignmentProperty: DependencyProperty = null; - static placeholderBackgroundProperty: DependencyProperty = null; - static pointerOverBackgroundMarginProperty: DependencyProperty = null; - static pointerOverBackgroundProperty: DependencyProperty = null; - static reorderHintOffsetProperty: DependencyProperty = null; - static selectedBackgroundProperty: DependencyProperty = null; - static selectedBorderThicknessProperty: DependencyProperty = null; - static selectedForegroundProperty: DependencyProperty = null; - static selectedPointerOverBackgroundProperty: DependencyProperty = null; - static selectedPointerOverBorderBrushProperty: DependencyProperty = null; - static selectionCheckMarkVisualEnabledProperty: DependencyProperty = null; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - characterSpacing: number = 0; - textLineBounds: TextLineBounds = TextLineBounds.full; - opticalMarginAlignment: OpticalMarginAlignment = OpticalMarginAlignment.none; - isTextScaleFactorEnabled: Boolean = true; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.stretch; - textWrapping: TextWrapping = TextWrapping.noWrap; - padding: Thickness = null; - maxLines: number = 0; - lineStackingStrategy: LineStackingStrategy = LineStackingStrategy.maxHeight; - lineHeight: number = 0; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - background: Media.Brush; - backgroundTransition: BrushTransition; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewItemPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewItemPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewItemPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewItemPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function GridViewItemPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function GridViewItemPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function GridViewItemPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function GridViewItemPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function GridViewItemPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function GridViewItemPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function GridViewItemPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function GridViewItemPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function GridViewItemPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function GridViewItemPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function GridViewItemPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function GridViewItemPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function GridViewItemPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function GridViewItemPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function GridViewItemPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridViewItemPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridViewItemPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function GridViewItemPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function GridViewItemPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function GridViewItemPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function GridViewItemPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function GridViewItemPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function GridViewItemPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function GridViewItemPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function GridViewItemPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridViewItemPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GridViewItemPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function GridViewItemPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function GridViewItemPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function GridViewItemPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function GridViewItemPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridViewItemPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function GridViewItemPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function GridViewItemPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function GridViewItemPresenter.goToElementStateCore'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function GridViewItemPresenter.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function GridViewItemPresenter.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`GridViewItemPresenter::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class GridViewItemTemplateSettings implements IDependencyObject, IDependencyObject2, IGridViewItemTemplateSettings { - dragItemsCount: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GridViewItemTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GridViewItemTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GridViewItemTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GridViewItemTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GridViewItemTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export enum GroupHeaderPlacement { - top, - left, - } - export interface IScrollSnapPointsInfo { - areHorizontalSnapPointsRegular: Boolean; - areVerticalSnapPointsRegular: Boolean; - getIrregularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): number[]; - getRegularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): { returnValue: number, offset: number }; - } - export class ItemsChangedEventArgs implements IItemsChangedEventArgs { - action: number; - itemCount: number; - itemUICount: number; - oldPosition: /* Windows.UI.Xaml.Controls.Primitives.GeneratorPosition */ any; - position: /* Windows.UI.Xaml.Controls.Primitives.GeneratorPosition */ any; - - } - export type ItemsChangedEventHandler = (e: ItemsChangedEventArgs) => void; - export class JumpListItemBackgroundConverter implements IDependencyObject, IDependencyObject2, IJumpListItemBackgroundConverter, Data.IValueConverter { - // constructor(); - enabled: Media.Brush = null; - disabled: Media.Brush = null; - static disabledProperty: DependencyProperty = null; - static enabledProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function JumpListItemBackgroundConverter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function JumpListItemBackgroundConverter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function JumpListItemBackgroundConverter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function JumpListItemBackgroundConverter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function JumpListItemBackgroundConverter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function JumpListItemBackgroundConverter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function JumpListItemBackgroundConverter.unregisterPropertyChangedCallback'); - } - - convert(value: any, targetType: /* System.Type */ any, parameter: any, language: string): any { - throw new Error('shimmed function JumpListItemBackgroundConverter.convert'); - } - - convertBack(value: any, targetType: /* System.Type */ any, parameter: any, language: string): any { - throw new Error('shimmed function JumpListItemBackgroundConverter.convertBack'); - } - - } - export class JumpListItemForegroundConverter implements IDependencyObject, IDependencyObject2, IJumpListItemForegroundConverter, Data.IValueConverter { - // constructor(); - enabled: Media.Brush = null; - disabled: Media.Brush = null; - static disabledProperty: DependencyProperty = null; - static enabledProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function JumpListItemForegroundConverter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function JumpListItemForegroundConverter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function JumpListItemForegroundConverter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function JumpListItemForegroundConverter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function JumpListItemForegroundConverter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function JumpListItemForegroundConverter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function JumpListItemForegroundConverter.unregisterPropertyChangedCallback'); - } - - convert(value: any, targetType: /* System.Type */ any, parameter: any, language: string): any { - throw new Error('shimmed function JumpListItemForegroundConverter.convert'); - } - - convertBack(value: any, targetType: /* System.Type */ any, parameter: any, language: string): any { - throw new Error('shimmed function JumpListItemForegroundConverter.convertBack'); - } - - } - export class LayoutInformation implements ILayoutInformation { - static getAvailableSize(element: UIElement): Foundation.Size { - throw new Error('shimmed function LayoutInformation.getAvailableSize'); - } - - static getLayoutExceptionElement(dispatcher: any): UIElement { - throw new Error('shimmed function LayoutInformation.getLayoutExceptionElement'); - } - - static getLayoutSlot(element: FrameworkElement): Foundation.Rect { - throw new Error('shimmed function LayoutInformation.getLayoutSlot'); - } - - } - export class ListViewItemPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IContentPresenter, IContentPresenter2, IContentPresenter3, IContentPresenter4, IContentPresenter5, IContentPresenterOverrides, IListViewItemPresenter, IListViewItemPresenter2, IListViewItemPresenter3 { - // constructor(); - selectionCheckMarkVisualEnabled: Boolean = true; - selectedPointerOverBorderBrush: Media.Brush; - selectedPointerOverBackground: Media.Brush; - selectedForeground: Media.Brush; - selectedBorderThickness: Thickness = null; - selectedBackground: Media.Brush; - reorderHintOffset: number = 10; - pointerOverBackgroundMargin: Thickness = null; - pointerOverBackground: Media.Brush; - placeholderBackground: Media.Brush; - listViewItemPresenterVerticalContentAlignment: VerticalAlignment = VerticalAlignment.stretch; - listViewItemPresenterPadding: Thickness = null; - listViewItemPresenterHorizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - focusBorderBrush: Media.Brush; - dragOpacity: number = 0.800000011920929; - dragForeground: Media.Brush; - dragBackground: Media.Brush; - disabledOpacity: number = 0.550000011920929; - contentMargin: Thickness = null; - checkSelectingBrush: Media.Brush; - checkHintBrush: Media.Brush; - checkBrush: Media.Brush; - selectedPressedBackground: Media.Brush; - pressedBackground: Media.Brush; - pointerOverForeground: Media.Brush; - focusSecondaryBorderBrush: Media.Brush; - checkMode: ListViewItemPresenterCheckMode = ListViewItemPresenterCheckMode.inline; - checkBoxBrush: Media.Brush; - revealBorderThickness: Thickness = null; - revealBorderBrush: Media.Brush; - revealBackgroundShowsAboveContent: Boolean = false; - revealBackground: Media.Brush; - static checkBrushProperty: DependencyProperty = null; - static checkHintBrushProperty: DependencyProperty = null; - static checkSelectingBrushProperty: DependencyProperty = null; - static contentMarginProperty: DependencyProperty = null; - static disabledOpacityProperty: DependencyProperty = null; - static dragBackgroundProperty: DependencyProperty = null; - static dragForegroundProperty: DependencyProperty = null; - static dragOpacityProperty: DependencyProperty = null; - static focusBorderBrushProperty: DependencyProperty = null; - static listViewItemPresenterHorizontalContentAlignmentProperty: DependencyProperty = null; - static listViewItemPresenterPaddingProperty: DependencyProperty = null; - static listViewItemPresenterVerticalContentAlignmentProperty: DependencyProperty = null; - static placeholderBackgroundProperty: DependencyProperty = null; - static pointerOverBackgroundMarginProperty: DependencyProperty = null; - static pointerOverBackgroundProperty: DependencyProperty = null; - static reorderHintOffsetProperty: DependencyProperty = null; - static selectedBackgroundProperty: DependencyProperty = null; - static selectedBorderThicknessProperty: DependencyProperty = null; - static selectedForegroundProperty: DependencyProperty = null; - static selectedPointerOverBackgroundProperty: DependencyProperty = null; - static selectedPointerOverBorderBrushProperty: DependencyProperty = null; - static selectionCheckMarkVisualEnabledProperty: DependencyProperty = null; - static checkBoxBrushProperty: DependencyProperty = null; - static checkModeProperty: DependencyProperty = null; - static focusSecondaryBorderBrushProperty: DependencyProperty = null; - static pointerOverForegroundProperty: DependencyProperty = null; - static pressedBackgroundProperty: DependencyProperty = null; - static selectedPressedBackgroundProperty: DependencyProperty = null; - static revealBackgroundProperty: DependencyProperty = null; - static revealBackgroundShowsAboveContentProperty: DependencyProperty = null; - static revealBorderBrushProperty: DependencyProperty = null; - static revealBorderThicknessProperty: DependencyProperty = null; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - characterSpacing: number = 0; - textLineBounds: TextLineBounds = TextLineBounds.full; - opticalMarginAlignment: OpticalMarginAlignment = OpticalMarginAlignment.none; - isTextScaleFactorEnabled: Boolean = true; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.stretch; - textWrapping: TextWrapping = TextWrapping.noWrap; - padding: Thickness = null; - maxLines: number = 0; - lineStackingStrategy: LineStackingStrategy = LineStackingStrategy.maxHeight; - lineHeight: number = 0; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - background: Media.Brush; - backgroundTransition: BrushTransition; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewItemPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewItemPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewItemPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewItemPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ListViewItemPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ListViewItemPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ListViewItemPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ListViewItemPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ListViewItemPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ListViewItemPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ListViewItemPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ListViewItemPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ListViewItemPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ListViewItemPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ListViewItemPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ListViewItemPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ListViewItemPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ListViewItemPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ListViewItemPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewItemPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewItemPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ListViewItemPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ListViewItemPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ListViewItemPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ListViewItemPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ListViewItemPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ListViewItemPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ListViewItemPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ListViewItemPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewItemPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ListViewItemPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ListViewItemPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ListViewItemPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ListViewItemPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ListViewItemPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewItemPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ListViewItemPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ListViewItemPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ListViewItemPresenter.goToElementStateCore'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ListViewItemPresenter.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ListViewItemPresenter.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ListViewItemPresenter::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ListViewItemPresenterCheckMode { - inline, - overlay, - } - export class ListViewItemTemplateSettings implements IDependencyObject, IDependencyObject2, IListViewItemTemplateSettings { - dragItemsCount: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ListViewItemTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ListViewItemTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ListViewItemTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ListViewItemTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ListViewItemTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class LoopingSelector implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ILoopingSelector { - shouldLoop: Boolean; - selectedItem: any; - selectedIndex: number; - items: any[]; - itemWidth: number; - itemTemplate: DataTemplate; - itemHeight: number; - static itemHeightProperty: DependencyProperty = null; - static itemTemplateProperty: DependencyProperty = null; - static itemWidthProperty: DependencyProperty = null; - static itemsProperty: DependencyProperty = null; - static selectedIndexProperty: DependencyProperty = null; - static selectedItemProperty: DependencyProperty = null; - static shouldLoopProperty: DependencyProperty = null; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelector.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LoopingSelector.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LoopingSelector.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelector.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelector.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LoopingSelector.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LoopingSelector.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function LoopingSelector.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function LoopingSelector.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function LoopingSelector.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function LoopingSelector.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function LoopingSelector.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function LoopingSelector.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function LoopingSelector.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function LoopingSelector.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function LoopingSelector.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function LoopingSelector.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function LoopingSelector.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function LoopingSelector.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function LoopingSelector.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function LoopingSelector.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function LoopingSelector.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function LoopingSelector.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function LoopingSelector.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function LoopingSelector.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function LoopingSelector.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function LoopingSelector.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function LoopingSelector.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelector.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function LoopingSelector.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function LoopingSelector.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function LoopingSelector.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LoopingSelector.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LoopingSelector.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function LoopingSelector.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function LoopingSelector.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function LoopingSelector.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function LoopingSelector.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function LoopingSelector.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function LoopingSelector.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function LoopingSelector.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function LoopingSelector.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function LoopingSelector.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function LoopingSelector.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function LoopingSelector.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function LoopingSelector.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelector.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelector.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelector.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelector.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelector.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LoopingSelector::addEventListener: ${name}`); - switch (name) { - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class LoopingSelectorItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, ILoopingSelectorItem { - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LoopingSelectorItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LoopingSelectorItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LoopingSelectorItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LoopingSelectorItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function LoopingSelectorItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function LoopingSelectorItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function LoopingSelectorItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function LoopingSelectorItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function LoopingSelectorItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function LoopingSelectorItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function LoopingSelectorItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function LoopingSelectorItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function LoopingSelectorItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function LoopingSelectorItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function LoopingSelectorItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function LoopingSelectorItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function LoopingSelectorItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function LoopingSelectorItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function LoopingSelectorItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function LoopingSelectorItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function LoopingSelectorItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function LoopingSelectorItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function LoopingSelectorItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function LoopingSelectorItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LoopingSelectorItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LoopingSelectorItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function LoopingSelectorItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function LoopingSelectorItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function LoopingSelectorItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function LoopingSelectorItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function LoopingSelectorItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function LoopingSelectorItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function LoopingSelectorItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function LoopingSelectorItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function LoopingSelectorItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function LoopingSelectorItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function LoopingSelectorItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function LoopingSelectorItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function LoopingSelectorItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function LoopingSelectorItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function LoopingSelectorItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function LoopingSelectorItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LoopingSelectorItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class LoopingSelectorPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, ICanvas, ILoopingSelectorPanel, IScrollSnapPointsInfo { - areHorizontalSnapPointsRegular: Boolean; - areVerticalSnapPointsRegular: Boolean; - childrenTransitions: Media.Animation.TransitionCollection; - background: Media.Brush; - children: UIElementCollection; - isItemsHost: Boolean; - backgroundTransition: BrushTransition; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LoopingSelectorPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LoopingSelectorPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LoopingSelectorPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LoopingSelectorPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LoopingSelectorPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function LoopingSelectorPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function LoopingSelectorPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function LoopingSelectorPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function LoopingSelectorPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function LoopingSelectorPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function LoopingSelectorPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function LoopingSelectorPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function LoopingSelectorPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function LoopingSelectorPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function LoopingSelectorPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function LoopingSelectorPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function LoopingSelectorPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function LoopingSelectorPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function LoopingSelectorPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function LoopingSelectorPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function LoopingSelectorPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function LoopingSelectorPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function LoopingSelectorPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function LoopingSelectorPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function LoopingSelectorPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function LoopingSelectorPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function LoopingSelectorPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function LoopingSelectorPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function LoopingSelectorPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function LoopingSelectorPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LoopingSelectorPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LoopingSelectorPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function LoopingSelectorPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function LoopingSelectorPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function LoopingSelectorPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function LoopingSelectorPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function LoopingSelectorPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function LoopingSelectorPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function LoopingSelectorPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function LoopingSelectorPanel.goToElementStateCore'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): number[] { - throw new Error('shimmed function LoopingSelectorPanel.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function LoopingSelectorPanel.getRegularSnapPoints'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LoopingSelectorPanel::addEventListener: ${name}`); - switch (name) { - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class MenuFlyoutItemTemplateSettings implements IDependencyObject, IDependencyObject2, IMenuFlyoutItemTemplateSettings { - keyboardAcceleratorTextMinWidth: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutItemTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutItemTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutItemTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutItemTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutItemTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class MenuFlyoutPresenterTemplateSettings implements IDependencyObject, IDependencyObject2, IMenuFlyoutPresenterTemplateSettings { - flyoutContentMinWidth: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenterTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MenuFlyoutPresenterTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MenuFlyoutPresenterTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenterTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MenuFlyoutPresenterTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MenuFlyoutPresenterTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MenuFlyoutPresenterTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class NavigationViewItemPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, INavigationViewItemPresenter { - // constructor(); - icon: IconElement; - static iconProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'P', 'r', 'i', 'm', 'i', 't', 'i', 'v', 'e', 's', '.', 'N', 'a', 'v', 'i', 'g', 'a', 't', 'i', 'o', 'n', 'V', 'i', 'e', 'w', 'I', 't', 'e', 'm', 'P', 'r', 'e', 's', 'e', 'n', 't', 'e', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationViewItemPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationViewItemPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationViewItemPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationViewItemPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationViewItemPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function NavigationViewItemPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function NavigationViewItemPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function NavigationViewItemPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function NavigationViewItemPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function NavigationViewItemPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function NavigationViewItemPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function NavigationViewItemPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function NavigationViewItemPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function NavigationViewItemPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function NavigationViewItemPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function NavigationViewItemPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function NavigationViewItemPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function NavigationViewItemPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function NavigationViewItemPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function NavigationViewItemPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function NavigationViewItemPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function NavigationViewItemPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function NavigationViewItemPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function NavigationViewItemPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function NavigationViewItemPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function NavigationViewItemPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function NavigationViewItemPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function NavigationViewItemPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function NavigationViewItemPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function NavigationViewItemPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function NavigationViewItemPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function NavigationViewItemPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function NavigationViewItemPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function NavigationViewItemPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function NavigationViewItemPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function NavigationViewItemPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function NavigationViewItemPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function NavigationViewItemPresenter.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function NavigationViewItemPresenter.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function NavigationViewItemPresenter.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function NavigationViewItemPresenter.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`NavigationViewItemPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class OrientedVirtualizingPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IVirtualizingPanel, IVirtualizingPanelProtected, IVirtualizingPanelOverrides, IOrientedVirtualizingPanel, IScrollSnapPointsInfo, IInsertionPanel { - scrollOwner: any; - canVerticallyScroll: Boolean; - canHorizontallyScroll: Boolean; - extentHeight: number; - extentWidth: number; - horizontalOffset: number; - verticalOffset: number; - viewportHeight: number; - viewportWidth: number; - areHorizontalSnapPointsRegular: Boolean; - areVerticalSnapPointsRegular: Boolean; - itemContainerGenerator: ItemContainerGenerator; - childrenTransitions: Media.Animation.TransitionCollection; - background: Media.Brush; - children: UIElementCollection; - isItemsHost: Boolean; - backgroundTransition: BrushTransition; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function OrientedVirtualizingPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function OrientedVirtualizingPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function OrientedVirtualizingPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function OrientedVirtualizingPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function OrientedVirtualizingPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function OrientedVirtualizingPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function OrientedVirtualizingPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function OrientedVirtualizingPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function OrientedVirtualizingPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function OrientedVirtualizingPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function OrientedVirtualizingPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function OrientedVirtualizingPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function OrientedVirtualizingPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function OrientedVirtualizingPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function OrientedVirtualizingPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function OrientedVirtualizingPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function OrientedVirtualizingPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function OrientedVirtualizingPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function OrientedVirtualizingPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function OrientedVirtualizingPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function OrientedVirtualizingPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function OrientedVirtualizingPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function OrientedVirtualizingPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function OrientedVirtualizingPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function OrientedVirtualizingPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function OrientedVirtualizingPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function OrientedVirtualizingPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function OrientedVirtualizingPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function OrientedVirtualizingPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function OrientedVirtualizingPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function OrientedVirtualizingPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function OrientedVirtualizingPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function OrientedVirtualizingPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function OrientedVirtualizingPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function OrientedVirtualizingPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function OrientedVirtualizingPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function OrientedVirtualizingPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function OrientedVirtualizingPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function OrientedVirtualizingPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function OrientedVirtualizingPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function OrientedVirtualizingPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function OrientedVirtualizingPanel.goToElementStateCore'); - } - - addInternalChild(child: UIElement): void { - console.warn('shimmed function OrientedVirtualizingPanel.addInternalChild'); - } - - insertInternalChild(index: number, child: UIElement): void { - console.warn('shimmed function OrientedVirtualizingPanel.insertInternalChild'); - } - - removeInternalChildRange(index: number, range: number): void { - console.warn('shimmed function OrientedVirtualizingPanel.removeInternalChildRange'); - } - - onItemsChanged(sender: any, args: ItemsChangedEventArgs): void { - console.warn('shimmed function OrientedVirtualizingPanel.onItemsChanged'); - } - - onClearChildren(): void { - console.warn('shimmed function OrientedVirtualizingPanel.onClearChildren'); - } - - bringIndexIntoView(index: number): void { - console.warn('shimmed function OrientedVirtualizingPanel.bringIndexIntoView'); - } - - lineUp(): void { - console.warn('shimmed function OrientedVirtualizingPanel.lineUp'); - } - - lineDown(): void { - console.warn('shimmed function OrientedVirtualizingPanel.lineDown'); - } - - lineLeft(): void { - console.warn('shimmed function OrientedVirtualizingPanel.lineLeft'); - } - - lineRight(): void { - console.warn('shimmed function OrientedVirtualizingPanel.lineRight'); - } - - pageUp(): void { - console.warn('shimmed function OrientedVirtualizingPanel.pageUp'); - } - - pageDown(): void { - console.warn('shimmed function OrientedVirtualizingPanel.pageDown'); - } - - pageLeft(): void { - console.warn('shimmed function OrientedVirtualizingPanel.pageLeft'); - } - - pageRight(): void { - console.warn('shimmed function OrientedVirtualizingPanel.pageRight'); - } - - mouseWheelUp(): void { - console.warn('shimmed function OrientedVirtualizingPanel.mouseWheelUp'); - } - - mouseWheelDown(): void { - console.warn('shimmed function OrientedVirtualizingPanel.mouseWheelDown'); - } - - mouseWheelLeft(): void { - console.warn('shimmed function OrientedVirtualizingPanel.mouseWheelLeft'); - } - - mouseWheelRight(): void { - console.warn('shimmed function OrientedVirtualizingPanel.mouseWheelRight'); - } - - setHorizontalOffset(offset: number): void { - console.warn('shimmed function OrientedVirtualizingPanel.setHorizontalOffset'); - } - - setVerticalOffset(offset: number): void { - console.warn('shimmed function OrientedVirtualizingPanel.setVerticalOffset'); - } - - makeVisible(visual: UIElement, rectangle: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function OrientedVirtualizingPanel.makeVisible'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): number[] { - throw new Error('shimmed function OrientedVirtualizingPanel.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function OrientedVirtualizingPanel.getRegularSnapPoints'); - } - - getInsertionIndexes(position: Foundation.Point): { first: number, second: number } { - throw new Error('shimmed function OrientedVirtualizingPanel.getInsertionIndexes'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`OrientedVirtualizingPanel::addEventListener: ${name}`); - switch (name) { - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PickerFlyoutBase implements IDependencyObject, IDependencyObject2, IFlyoutBase, IFlyoutBase2, IFlyoutBase3, IFlyoutBase4, IFlyoutBase5, IFlyoutBase6, IFlyoutBaseOverrides, IFlyoutBaseOverrides4, IPickerFlyoutBase, IPickerFlyoutBaseOverrides { - static titleProperty: DependencyProperty = null; - placement: FlyoutPlacementMode; - lightDismissOverlayMode: LightDismissOverlayMode; - elementSoundMode: ElementSoundMode; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: FlyoutShowMode; - areOpenCloseAnimationsEnabled: Boolean; - inputDevicePrefersPrimaryCommands: Boolean; - isOpen: Boolean; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean; - isConstrainedToRootBounds: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PickerFlyoutBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PickerFlyoutBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PickerFlyoutBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PickerFlyoutBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PickerFlyoutBase.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function PickerFlyoutBase.showAt'); - } - - hide(): void { - console.warn('shimmed function PickerFlyoutBase.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PickerFlyoutBase.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: FlyoutShowOptions): void { - console.warn('shimmed function PickerFlyoutBase.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function PickerFlyoutBase.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PickerFlyoutBase.onProcessKeyboardAccelerators'); - } - - onConfirmed(): void { - console.warn('shimmed function PickerFlyoutBase.onConfirmed'); - } - - shouldShowConfirmationButtons(): Boolean { - throw new Error('shimmed function PickerFlyoutBase.shouldShowConfirmationButtons'); - } - - static getTitle(element: DependencyObject): string { - throw new Error('shimmed function PickerFlyoutBase.getTitle'); - } - - static setTitle(element: DependencyObject, value: string): void { - console.warn('shimmed function PickerFlyoutBase.setTitle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PickerFlyoutBase::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class PivotHeaderItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IPivotHeaderItem { - // constructor(); - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotHeaderItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PivotHeaderItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PivotHeaderItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotHeaderItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotHeaderItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PivotHeaderItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PivotHeaderItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PivotHeaderItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PivotHeaderItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PivotHeaderItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PivotHeaderItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PivotHeaderItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PivotHeaderItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PivotHeaderItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PivotHeaderItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PivotHeaderItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PivotHeaderItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PivotHeaderItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PivotHeaderItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PivotHeaderItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PivotHeaderItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PivotHeaderItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotHeaderItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotHeaderItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotHeaderItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PivotHeaderItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PivotHeaderItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PivotHeaderItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotHeaderItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotHeaderItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotHeaderItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PivotHeaderItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PivotHeaderItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PivotHeaderItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PivotHeaderItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotHeaderItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotHeaderItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PivotHeaderItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PivotHeaderItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function PivotHeaderItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function PivotHeaderItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function PivotHeaderItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function PivotHeaderItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function PivotHeaderItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function PivotHeaderItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function PivotHeaderItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function PivotHeaderItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PivotHeaderItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PivotHeaderPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, ICanvas, IPivotHeaderPanel { - // constructor(); - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotHeaderPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PivotHeaderPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PivotHeaderPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotHeaderPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotHeaderPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PivotHeaderPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PivotHeaderPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PivotHeaderPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PivotHeaderPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PivotHeaderPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PivotHeaderPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PivotHeaderPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PivotHeaderPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PivotHeaderPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PivotHeaderPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PivotHeaderPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PivotHeaderPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PivotHeaderPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PivotHeaderPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PivotHeaderPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PivotHeaderPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PivotHeaderPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotHeaderPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotHeaderPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotHeaderPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PivotHeaderPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PivotHeaderPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PivotHeaderPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotHeaderPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotHeaderPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PivotHeaderPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PivotHeaderPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotHeaderPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotHeaderPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PivotHeaderPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PivotHeaderPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PivotHeaderPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PivotHeaderPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotHeaderPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotHeaderPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PivotHeaderPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PivotHeaderPanel.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PivotHeaderPanel::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class PivotPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IPivotPanel, IScrollSnapPointsInfo { - // constructor(); - areHorizontalSnapPointsRegular: Boolean = true; - areVerticalSnapPointsRegular: Boolean = true; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PivotPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PivotPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PivotPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PivotPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PivotPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function PivotPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function PivotPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function PivotPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function PivotPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function PivotPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function PivotPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function PivotPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function PivotPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function PivotPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function PivotPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function PivotPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function PivotPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function PivotPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function PivotPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function PivotPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function PivotPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function PivotPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function PivotPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function PivotPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function PivotPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function PivotPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function PivotPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function PivotPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function PivotPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function PivotPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function PivotPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function PivotPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function PivotPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function PivotPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function PivotPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function PivotPanel.goToElementStateCore'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): number[] { - throw new Error('shimmed function PivotPanel.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function PivotPanel.getRegularSnapPoints'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PivotPanel::addEventListener: ${name}`); - switch (name) { - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum PlacementMode { - bottom = 2, - left = 9, - mouse = 7, - right = 4, - top = 10, - } - export class Popup implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPopup, IPopup2, IPopup3 { - // constructor(); - verticalOffset: number = 0; - isOpen: Boolean = false; - isLightDismissEnabled: Boolean = false; - horizontalOffset: number = 0; - childTransitions: Media.Animation.TransitionCollection = [ ]; - child: UIElement; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.off; - shouldConstrainToRootBounds: Boolean = true; - isConstrainedToRootBounds: Boolean = true; - static childProperty: DependencyProperty = null; - static childTransitionsProperty: DependencyProperty = null; - static horizontalOffsetProperty: DependencyProperty = null; - static isLightDismissEnabledProperty: DependencyProperty = null; - static isOpenProperty: DependencyProperty = null; - static verticalOffsetProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - static shouldConstrainToRootBoundsProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Popup.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Popup.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Popup.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Popup.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Popup.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Popup.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Popup.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Popup.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Popup.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Popup.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Popup.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Popup.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Popup.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Popup.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Popup.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Popup.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Popup.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Popup.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Popup.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Popup.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Popup.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Popup.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Popup.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Popup.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Popup.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Popup.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Popup.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Popup.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Popup.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Popup.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Popup.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Popup.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Popup.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Popup.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Popup.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Popup.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Popup.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Popup.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Popup.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Popup.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Popup.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Popup.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Popup::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ProgressBarTemplateSettings implements IDependencyObject, IDependencyObject2, IProgressBarTemplateSettings { - containerAnimationEndPosition: number; - containerAnimationStartPosition: number; - ellipseAnimationEndPosition: number; - ellipseAnimationWellPosition: number; - ellipseDiameter: number; - ellipseOffset: number; - indicatorLengthDelta: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBarTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ProgressBarTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ProgressBarTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBarTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBarTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ProgressBarTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ProgressBarTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class ProgressRingTemplateSettings implements IDependencyObject, IDependencyObject2, IProgressRingTemplateSettings { - ellipseDiameter: number; - ellipseOffset: Thickness; - maxSideLength: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRingTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ProgressRingTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ProgressRingTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRingTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRingTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ProgressRingTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ProgressRingTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class RangeBase implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IRangeBase, IRangeBaseOverrides { - value: number; - smallChange: number; - minimum: number; - maximum: number; - largeChange: number; - static largeChangeProperty: DependencyProperty = null; - static maximumProperty: DependencyProperty = null; - static minimumProperty: DependencyProperty = null; - static smallChangeProperty: DependencyProperty = null; - static valueProperty: DependencyProperty = null; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RangeBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RangeBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RangeBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RangeBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RangeBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RangeBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RangeBase.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RangeBase.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RangeBase.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RangeBase.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RangeBase.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RangeBase.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RangeBase.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RangeBase.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RangeBase.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RangeBase.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RangeBase.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RangeBase.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RangeBase.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RangeBase.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RangeBase.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RangeBase.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RangeBase.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RangeBase.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RangeBase.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RangeBase.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RangeBase.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RangeBase.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RangeBase.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RangeBase.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RangeBase.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RangeBase.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RangeBase.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RangeBase.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RangeBase.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RangeBase.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RangeBase.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RangeBase.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RangeBase.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RangeBase.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RangeBase.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RangeBase.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function RangeBase.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RangeBase.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function RangeBase.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function RangeBase.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RangeBase.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RangeBase.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function RangeBase.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function RangeBase.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function RangeBase.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function RangeBase.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function RangeBase.onCharacterReceived'); - } - - onMinimumChanged(oldMinimum: number, newMinimum: number): void { - console.warn('shimmed function RangeBase.onMinimumChanged'); - } - - onMaximumChanged(oldMaximum: number, newMaximum: number): void { - console.warn('shimmed function RangeBase.onMaximumChanged'); - } - - onValueChanged(oldValue: number, newValue: number): void { - console.warn('shimmed function RangeBase.onValueChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RangeBase::addEventListener: ${name}`); - switch (name) { - case "valuechanged": // RangeBaseValueChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RangeBaseValueChangedEventArgs implements IRoutedEventArgs, IRangeBaseValueChangedEventArgs { - newValue: number; - oldValue: number; - originalSource: any; - - } - export type RangeBaseValueChangedEventHandler = (e: RangeBaseValueChangedEventArgs) => void; - export class RepeatButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IButtonBase, IRepeatButton { - // constructor(); - interval: number = 33; - delay: number = 500; - static delayProperty: DependencyProperty = null; - static intervalProperty: DependencyProperty = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.press; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepeatButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RepeatButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RepeatButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepeatButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepeatButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RepeatButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RepeatButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RepeatButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RepeatButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RepeatButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RepeatButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RepeatButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RepeatButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RepeatButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RepeatButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RepeatButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RepeatButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RepeatButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RepeatButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RepeatButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RepeatButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RepeatButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RepeatButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RepeatButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RepeatButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RepeatButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RepeatButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RepeatButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RepeatButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RepeatButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RepeatButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RepeatButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RepeatButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RepeatButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RepeatButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RepeatButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RepeatButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RepeatButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RepeatButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RepeatButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RepeatButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RepeatButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function RepeatButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RepeatButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function RepeatButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function RepeatButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function RepeatButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function RepeatButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function RepeatButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function RepeatButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function RepeatButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function RepeatButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function RepeatButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function RepeatButton.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RepeatButton::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ScrollBar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IRangeBase, IRangeBaseOverrides, IScrollBar { - // constructor(); - viewportSize: number = 0; - orientation: Orientation = Orientation.vertical; - indicatorMode: ScrollingIndicatorMode = ScrollingIndicatorMode.none; - static indicatorModeProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static viewportSizeProperty: DependencyProperty = null; - value: number = 0; - smallChange: number = 0.1; - minimum: number = 0; - maximum: number = 1; - largeChange: number = 1; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollBar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ScrollBar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ScrollBar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollBar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollBar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ScrollBar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ScrollBar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ScrollBar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ScrollBar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ScrollBar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ScrollBar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ScrollBar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ScrollBar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ScrollBar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ScrollBar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ScrollBar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ScrollBar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ScrollBar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ScrollBar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ScrollBar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ScrollBar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ScrollBar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ScrollBar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ScrollBar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ScrollBar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ScrollBar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ScrollBar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ScrollBar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollBar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ScrollBar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ScrollBar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ScrollBar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ScrollBar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ScrollBar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ScrollBar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ScrollBar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ScrollBar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ScrollBar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ScrollBar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ScrollBar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ScrollBar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ScrollBar.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ScrollBar.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ScrollBar.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ScrollBar.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ScrollBar.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ScrollBar.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ScrollBar.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ScrollBar.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ScrollBar.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ScrollBar.onCharacterReceived'); - } - - onMinimumChanged(oldMinimum: number, newMinimum: number): void { - console.warn('shimmed function ScrollBar.onMinimumChanged'); - } - - onMaximumChanged(oldMaximum: number, newMaximum: number): void { - console.warn('shimmed function ScrollBar.onMaximumChanged'); - } - - onValueChanged(oldValue: number, newValue: number): void { - console.warn('shimmed function ScrollBar.onValueChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ScrollBar::addEventListener: ${name}`); - switch (name) { - case "scroll": // ScrollEventHandler - case "valuechanged": // RangeBaseValueChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ScrollEventArgs implements IRoutedEventArgs, IScrollEventArgs { - // constructor(); - newValue: number = 0; - scrollEventType: ScrollEventType = ScrollEventType.smallDecrement; - originalSource: any; - - } - export type ScrollEventHandler = (e: ScrollEventArgs) => void; - export enum ScrollEventType { - smallDecrement, - smallIncrement, - largeDecrement, - largeIncrement, - thumbPosition, - thumbTrack, - first, - last, - endScroll, - } - export enum ScrollingIndicatorMode { - none, - touchIndicator, - mouseIndicator, - } - export class Selector implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, ISelector { - selectedValuePath: string; - selectedValue: any; - selectedItem: any; - selectedIndex: number; - isSynchronizedWithCurrentItem: Boolean | null; - static isSynchronizedWithCurrentItemProperty: DependencyProperty = null; - static selectedIndexProperty: DependencyProperty = null; - static selectedItemProperty: DependencyProperty = null; - static selectedValuePathProperty: DependencyProperty = null; - static selectedValueProperty: DependencyProperty = null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string; - groupStyle: GroupStyle[]; - isGrouping: Boolean; - itemContainerGenerator: ItemContainerGenerator; - items: ItemCollection; - itemsPanelRoot: Panel; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Selector.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Selector.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Selector.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Selector.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Selector.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Selector.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Selector.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Selector.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Selector.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Selector.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Selector.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Selector.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Selector.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Selector.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Selector.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Selector.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Selector.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Selector.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Selector.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Selector.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Selector.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Selector.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Selector.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Selector.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Selector.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Selector.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Selector.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Selector.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Selector.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Selector.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Selector.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Selector.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Selector.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Selector.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Selector.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Selector.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Selector.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Selector.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Selector.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Selector.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Selector.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Selector.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Selector.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Selector.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Selector.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Selector.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Selector.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Selector.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Selector.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Selector.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Selector.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Selector.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Selector.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Selector.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Selector.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Selector.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Selector.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Selector.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Selector.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Selector.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Selector.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Selector.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Selector.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Selector.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Selector.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Selector.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Selector.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function Selector.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function Selector.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function Selector.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function Selector.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function Selector.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function Selector.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function Selector.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function Selector.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function Selector.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function Selector.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function Selector.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function Selector.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function Selector.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function Selector.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function Selector.containerFromIndex'); - } - - static getIsSelectionActive(element: DependencyObject): Boolean { - throw new Error('shimmed function Selector.getIsSelectionActive'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Selector::addEventListener: ${name}`); - switch (name) { - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SelectorItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, ISelectorItem { - isSelected: Boolean; - static isSelectedProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SelectorItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SelectorItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SelectorItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SelectorItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SelectorItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SelectorItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SelectorItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SelectorItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SelectorItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SelectorItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SelectorItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SelectorItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SelectorItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SelectorItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SelectorItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SelectorItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SelectorItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SelectorItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SelectorItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SelectorItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SelectorItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SelectorItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SelectorItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SelectorItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SelectorItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SelectorItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SelectorItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SelectorItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SelectorItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SelectorItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SelectorItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SelectorItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SelectorItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SelectorItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SelectorItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SelectorItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SelectorItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SelectorItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SelectorItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SelectorItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function SelectorItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function SelectorItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function SelectorItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function SelectorItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function SelectorItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function SelectorItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function SelectorItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function SelectorItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function SelectorItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function SelectorItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function SelectorItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function SelectorItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SelectorItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SettingsFlyoutTemplateSettings implements IDependencyObject, IDependencyObject2, ISettingsFlyoutTemplateSettings { - borderBrush: Media.Brush; - borderThickness: Thickness; - contentTransitions: Media.Animation.TransitionCollection; - headerBackground: Media.Brush; - headerForeground: Media.Brush; - iconSource: Media.ImageSource; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyoutTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SettingsFlyoutTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SettingsFlyoutTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyoutTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyoutTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SettingsFlyoutTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SettingsFlyoutTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export enum SliderSnapsTo { - stepValues, - ticks, - } - export enum SnapPointsAlignment { - near, - center, - far, - } - export class SplitViewTemplateSettings implements IDependencyObject, IDependencyObject2, ISplitViewTemplateSettings { - compactPaneGridLength: /* Windows.UI.Xaml.GridLength */ any; - negativeOpenPaneLength: number; - negativeOpenPaneLengthMinusCompactLength: number; - openPaneGridLength: /* Windows.UI.Xaml.GridLength */ any; - openPaneLength: number; - openPaneLengthMinusCompactLength: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitViewTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplitViewTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplitViewTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitViewTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitViewTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplitViewTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplitViewTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class Thumb implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IThumb { - // constructor(); - isDragging: Boolean = false; - static isDraggingProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Thumb.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Thumb.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Thumb.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Thumb.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Thumb.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Thumb.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Thumb.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Thumb.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Thumb.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Thumb.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Thumb.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Thumb.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Thumb.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Thumb.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Thumb.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Thumb.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Thumb.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Thumb.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Thumb.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Thumb.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Thumb.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Thumb.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Thumb.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Thumb.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Thumb.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Thumb.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Thumb.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Thumb.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Thumb.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Thumb.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Thumb.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Thumb.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Thumb.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Thumb.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Thumb.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Thumb.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Thumb.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Thumb.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Thumb.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Thumb.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Thumb.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Thumb.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Thumb.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Thumb.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Thumb.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Thumb.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Thumb.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Thumb.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Thumb.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Thumb.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Thumb.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Thumb.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Thumb.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Thumb.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Thumb.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Thumb.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Thumb.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Thumb.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Thumb.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Thumb.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Thumb.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Thumb.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Thumb.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Thumb.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Thumb.onCharacterReceived'); - } - - cancelDrag(): void { - console.warn('shimmed function Thumb.cancelDrag'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Thumb::addEventListener: ${name}`); - switch (name) { - case "dragcompleted": // DragCompletedEventHandler - case "dragdelta": // DragDeltaEventHandler - case "dragstarted": // DragStartedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TickBar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, ITickBar { - // constructor(); - fill: Media.Brush; - static fillProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TickBar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TickBar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TickBar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TickBar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TickBar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TickBar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TickBar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TickBar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TickBar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TickBar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TickBar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TickBar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TickBar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TickBar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TickBar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TickBar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TickBar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TickBar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TickBar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TickBar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TickBar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TickBar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TickBar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TickBar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TickBar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TickBar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TickBar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TickBar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TickBar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TickBar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TickBar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TickBar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TickBar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TickBar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TickBar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TickBar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TickBar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TickBar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TickBar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TickBar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TickBar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TickBar.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TickBar::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum TickPlacement { - none, - topLeft, - bottomRight, - outside, - inline, - } - export class ToggleButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IButtonBase, IToggleButton, IToggleButtonOverrides { - // constructor(); - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - static isCheckedProperty: DependencyProperty = null; - static isThreeStateProperty: DependencyProperty = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ToggleButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ToggleButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ToggleButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ToggleButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ToggleButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ToggleButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ToggleButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ToggleButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ToggleButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ToggleButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ToggleButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ToggleButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ToggleButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ToggleButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ToggleButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ToggleButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ToggleButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ToggleButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ToggleButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ToggleButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ToggleButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ToggleButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ToggleButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ToggleButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ToggleButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ToggleButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ToggleButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ToggleButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ToggleButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ToggleButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ToggleButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ToggleButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ToggleButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ToggleButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ToggleButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ToggleButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ToggleButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function ToggleButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ToggleButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ToggleSwitchTemplateSettings implements IDependencyObject, IDependencyObject2, IToggleSwitchTemplateSettings { - curtainCurrentToOffOffset: number; - curtainCurrentToOnOffset: number; - curtainOffToOnOffset: number; - curtainOnToOffOffset: number; - knobCurrentToOffOffset: number; - knobCurrentToOnOffset: number; - knobOffToOnOffset: number; - knobOnToOffOffset: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitchTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleSwitchTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleSwitchTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitchTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitchTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleSwitchTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleSwitchTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class ToolTipTemplateSettings implements IDependencyObject, IDependencyObject2, IToolTipTemplateSettings { - fromHorizontalOffset: number; - fromVerticalOffset: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToolTipTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToolTipTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToolTipTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToolTipTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToolTipTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToolTipTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToolTipTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - } - export class ProgressBar implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, Primitives.IRangeBase, Primitives.IRangeBaseOverrides, IProgressBar { - // constructor(); - showPaused: Boolean = false; - showError: Boolean = false; - isIndeterminate: Boolean = false; - templateSettings: Primitives.ProgressBarTemplateSettings = null; - static isIndeterminateProperty: DependencyProperty = null; - static showErrorProperty: DependencyProperty = null; - static showPausedProperty: DependencyProperty = null; - value: number = 0; - smallChange: number = 0.1; - minimum: number = 0; - maximum: number = 1; - largeChange: number = 1; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBar.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ProgressBar.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ProgressBar.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBar.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressBar.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ProgressBar.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ProgressBar.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ProgressBar.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ProgressBar.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ProgressBar.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ProgressBar.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ProgressBar.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ProgressBar.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ProgressBar.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ProgressBar.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ProgressBar.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ProgressBar.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ProgressBar.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ProgressBar.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ProgressBar.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ProgressBar.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ProgressBar.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ProgressBar.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ProgressBar.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ProgressBar.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ProgressBar.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ProgressBar.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ProgressBar.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressBar.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ProgressBar.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ProgressBar.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ProgressBar.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ProgressBar.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ProgressBar.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ProgressBar.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ProgressBar.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ProgressBar.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ProgressBar.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ProgressBar.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ProgressBar.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ProgressBar.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ProgressBar.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ProgressBar.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ProgressBar.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ProgressBar.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ProgressBar.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ProgressBar.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ProgressBar.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ProgressBar.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ProgressBar.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ProgressBar.onCharacterReceived'); - } - - onMinimumChanged(oldMinimum: number, newMinimum: number): void { - console.warn('shimmed function ProgressBar.onMinimumChanged'); - } - - onMaximumChanged(oldMaximum: number, newMaximum: number): void { - console.warn('shimmed function ProgressBar.onMaximumChanged'); - } - - onValueChanged(oldValue: number, newValue: number): void { - console.warn('shimmed function ProgressBar.onValueChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ProgressBar::addEventListener: ${name}`); - switch (name) { - case "valuechanged": // Primitives.RangeBaseValueChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ProgressRing implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IProgressRing { - // constructor(); - isActive: Boolean = false; - templateSettings: Primitives.ProgressRingTemplateSettings = null; - static isActiveProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRing.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ProgressRing.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ProgressRing.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRing.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ProgressRing.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ProgressRing.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ProgressRing.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ProgressRing.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ProgressRing.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ProgressRing.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ProgressRing.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ProgressRing.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ProgressRing.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ProgressRing.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ProgressRing.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ProgressRing.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ProgressRing.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ProgressRing.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ProgressRing.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ProgressRing.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ProgressRing.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ProgressRing.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ProgressRing.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ProgressRing.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ProgressRing.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ProgressRing.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ProgressRing.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ProgressRing.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ProgressRing.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ProgressRing.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ProgressRing.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ProgressRing.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ProgressRing.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ProgressRing.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ProgressRing.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ProgressRing.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ProgressRing.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ProgressRing.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ProgressRing.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ProgressRing.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ProgressRing.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ProgressRing.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ProgressRing.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ProgressRing.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ProgressRing.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ProgressRing.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ProgressRing.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ProgressRing.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ProgressRing.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ProgressRing.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ProgressRing.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ProgressRing::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RadioButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.IButtonBase, Primitives.IToggleButton, Primitives.IToggleButtonOverrides, IRadioButton { - // constructor(); - groupName: string = ''; - static groupNameProperty: DependencyProperty = null; - isThreeState: Boolean = false; - isChecked: Boolean | null = null; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - clickMode: ClickMode = ClickMode.release; - isPointerOver: Boolean = false; - isPressed: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RadioButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RadioButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RadioButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RadioButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RadioButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RadioButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RadioButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RadioButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RadioButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RadioButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RadioButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RadioButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RadioButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RadioButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RadioButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RadioButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RadioButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RadioButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RadioButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RadioButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RadioButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RadioButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RadioButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RadioButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RadioButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RadioButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RadioButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RadioButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RadioButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RadioButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RadioButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RadioButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RadioButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RadioButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RadioButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RadioButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RadioButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RadioButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RadioButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RadioButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RadioButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RadioButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function RadioButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RadioButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function RadioButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function RadioButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RadioButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RadioButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function RadioButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function RadioButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function RadioButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function RadioButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function RadioButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function RadioButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function RadioButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function RadioButton.onContentTemplateSelectorChanged'); - } - - onToggle(): void { - console.warn('shimmed function RadioButton.onToggle'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RadioButton::addEventListener: ${name}`); - switch (name) { - case "checked": // RoutedEventHandler - case "indeterminate": // RoutedEventHandler - case "unchecked": // RoutedEventHandler - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RatingControl implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IRatingControl { - // constructor(); - value: number = -1; - placeholderValue: number = -1; - maxRating: number = 5; - itemInfo: RatingItemInfo; - isReadOnly: Boolean = false; - isClearEnabled: Boolean = true; - initialSetValue: number = 1; - caption: string = ''; - static captionProperty: DependencyProperty = null; - static initialSetValueProperty: DependencyProperty = null; - static isClearEnabledProperty: DependencyProperty = null; - static isReadOnlyProperty: DependencyProperty = null; - static itemInfoProperty: DependencyProperty = null; - static maxRatingProperty: DependencyProperty = null; - static placeholderValueProperty: DependencyProperty = null; - static valueProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'R', 'a', 't', 'i', 'n', 'g', 'C', 'o', 'n', 't', 'r', 'o', 'l' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RatingControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RatingControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RatingControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RatingControl.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RatingControl.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RatingControl.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RatingControl.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RatingControl.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RatingControl.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RatingControl.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RatingControl.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RatingControl.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RatingControl.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RatingControl.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RatingControl.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RatingControl.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RatingControl.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RatingControl.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RatingControl.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RatingControl.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RatingControl.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RatingControl.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RatingControl.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RatingControl.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RatingControl.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RatingControl.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RatingControl.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RatingControl.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RatingControl.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RatingControl.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RatingControl.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RatingControl.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RatingControl.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RatingControl.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RatingControl.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RatingControl.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RatingControl.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RatingControl.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RatingControl.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function RatingControl.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RatingControl.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function RatingControl.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function RatingControl.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RatingControl.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RatingControl.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function RatingControl.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function RatingControl.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function RatingControl.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function RatingControl.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function RatingControl.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RatingControl::addEventListener: ${name}`); - switch (name) { - case "valuechanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RatingItemFontInfo implements IDependencyObject, IDependencyObject2, IRatingItemInfo, IRatingItemFontInfo { - // constructor(); - unsetGlyph: string = ''; - pointerOverPlaceholderGlyph: string = ''; - pointerOverGlyph: string = ''; - placeholderGlyph: string = ''; - glyph: string = ''; - disabledGlyph: string = ''; - static disabledGlyphProperty: DependencyProperty = null; - static glyphProperty: DependencyProperty = null; - static placeholderGlyphProperty: DependencyProperty = null; - static pointerOverGlyphProperty: DependencyProperty = null; - static pointerOverPlaceholderGlyphProperty: DependencyProperty = null; - static unsetGlyphProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemFontInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RatingItemFontInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RatingItemFontInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemFontInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemFontInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RatingItemFontInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RatingItemFontInfo.unregisterPropertyChangedCallback'); - } - - } - export class RatingItemImageInfo implements IDependencyObject, IDependencyObject2, IRatingItemInfo, IRatingItemImageInfo { - // constructor(); - unsetImage: Media.ImageSource; - pointerOverPlaceholderImage: Media.ImageSource; - pointerOverImage: Media.ImageSource; - placeholderImage: Media.ImageSource; - image: Media.ImageSource; - disabledImage: Media.ImageSource; - static disabledImageProperty: DependencyProperty = null; - static imageProperty: DependencyProperty = null; - static placeholderImageProperty: DependencyProperty = null; - static pointerOverImageProperty: DependencyProperty = null; - static pointerOverPlaceholderImageProperty: DependencyProperty = null; - static unsetImageProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemImageInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RatingItemImageInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RatingItemImageInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemImageInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemImageInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RatingItemImageInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RatingItemImageInfo.unregisterPropertyChangedCallback'); - } - - } - export class RatingItemInfo implements IDependencyObject, IDependencyObject2, IRatingItemInfo { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RatingItemInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RatingItemInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RatingItemInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RatingItemInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RatingItemInfo.unregisterPropertyChangedCallback'); - } - - } - export class RefreshContainer implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IRefreshContainer { - // constructor(); - visualizer: RefreshVisualizer; - pullDirection: RefreshPullDirection = RefreshPullDirection.topToBottom; - static pullDirectionProperty: DependencyProperty = null; - static visualizerProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'R', 'e', 'f', 'r', 'e', 's', 'h', 'C', 'o', 'n', 't', 'a', 'i', 'n', 'e', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RefreshContainer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RefreshContainer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RefreshContainer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RefreshContainer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RefreshContainer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RefreshContainer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RefreshContainer.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RefreshContainer.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RefreshContainer.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RefreshContainer.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RefreshContainer.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RefreshContainer.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RefreshContainer.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RefreshContainer.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RefreshContainer.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RefreshContainer.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RefreshContainer.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RefreshContainer.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RefreshContainer.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RefreshContainer.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RefreshContainer.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RefreshContainer.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RefreshContainer.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RefreshContainer.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RefreshContainer.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RefreshContainer.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RefreshContainer.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RefreshContainer.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RefreshContainer.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RefreshContainer.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RefreshContainer.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RefreshContainer.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RefreshContainer.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RefreshContainer.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RefreshContainer.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RefreshContainer.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RefreshContainer.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RefreshContainer.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RefreshContainer.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RefreshContainer.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RefreshContainer.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RefreshContainer.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function RefreshContainer.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RefreshContainer.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function RefreshContainer.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function RefreshContainer.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function RefreshContainer.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function RefreshContainer.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function RefreshContainer.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function RefreshContainer.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function RefreshContainer.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function RefreshContainer.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function RefreshContainer.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function RefreshContainer.onContentTemplateSelectorChanged'); - } - - requestRefresh(): void { - console.warn('shimmed function RefreshContainer.requestRefresh'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RefreshContainer::addEventListener: ${name}`); - switch (name) { - case "refreshrequested": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RefreshInteractionRatioChangedEventArgs implements IRefreshInteractionRatioChangedEventArgs { - interactionRatio: number; - - } - export enum RefreshPullDirection { - leftToRight, - topToBottom, - rightToLeft, - bottomToTop, - } - export class RefreshRequestedEventArgs implements IRefreshRequestedEventArgs { - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function RefreshRequestedEventArgs.getDeferral'); - } - - } - export class RefreshStateChangedEventArgs implements IRefreshStateChangedEventArgs { - newState: RefreshVisualizerState; - oldState: RefreshVisualizerState; - - } - export class RefreshVisualizer implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IRefreshVisualizer { - // constructor(); - orientation: RefreshVisualizerOrientation = RefreshVisualizerOrientation.auto; - content: UIElement; - state: RefreshVisualizerState = RefreshVisualizerState.idle; - static contentProperty: DependencyProperty = null; - static infoProviderProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static stateProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'R', 'e', 'f', 'r', 'e', 's', 'h', 'V', 'i', 's', 'u', 'a', 'l', 'i', 'z', 'e', 'r' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RefreshVisualizer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RefreshVisualizer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RefreshVisualizer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RefreshVisualizer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RefreshVisualizer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RefreshVisualizer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RefreshVisualizer.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RefreshVisualizer.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RefreshVisualizer.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RefreshVisualizer.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RefreshVisualizer.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RefreshVisualizer.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RefreshVisualizer.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RefreshVisualizer.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RefreshVisualizer.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RefreshVisualizer.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RefreshVisualizer.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RefreshVisualizer.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RefreshVisualizer.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RefreshVisualizer.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RefreshVisualizer.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RefreshVisualizer.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RefreshVisualizer.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RefreshVisualizer.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RefreshVisualizer.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RefreshVisualizer.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RefreshVisualizer.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RefreshVisualizer.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RefreshVisualizer.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RefreshVisualizer.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RefreshVisualizer.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RefreshVisualizer.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RefreshVisualizer.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RefreshVisualizer.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RefreshVisualizer.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RefreshVisualizer.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RefreshVisualizer.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RefreshVisualizer.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RefreshVisualizer.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function RefreshVisualizer.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RefreshVisualizer.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function RefreshVisualizer.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function RefreshVisualizer.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function RefreshVisualizer.onCharacterReceived'); - } - - requestRefresh(): void { - console.warn('shimmed function RefreshVisualizer.requestRefresh'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RefreshVisualizer::addEventListener: ${name}`); - switch (name) { - case "refreshrequested": // Foundation.TypedEventHandler - case "refreshstatechanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RefreshVisualizerOrientation { - auto, - normal, - rotate90DegreesCounterclockwise, - rotate270DegreesCounterclockwise, - } - export enum RefreshVisualizerState { - idle, - peeking, - interacting, - pending, - refreshing, - } - export class RelativePanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IRelativePanel, IRelativePanel2 { - // constructor(); - padding: Thickness = null; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - static aboveProperty: DependencyProperty = null; - static alignBottomWithPanelProperty: DependencyProperty = null; - static alignBottomWithProperty: DependencyProperty = null; - static alignHorizontalCenterWithPanelProperty: DependencyProperty = null; - static alignHorizontalCenterWithProperty: DependencyProperty = null; - static alignLeftWithPanelProperty: DependencyProperty = null; - static alignLeftWithProperty: DependencyProperty = null; - static alignRightWithPanelProperty: DependencyProperty = null; - static alignRightWithProperty: DependencyProperty = null; - static alignTopWithPanelProperty: DependencyProperty = null; - static alignTopWithProperty: DependencyProperty = null; - static alignVerticalCenterWithPanelProperty: DependencyProperty = null; - static alignVerticalCenterWithProperty: DependencyProperty = null; - static belowProperty: DependencyProperty = null; - static borderBrushProperty: DependencyProperty = null; - static borderThicknessProperty: DependencyProperty = null; - static cornerRadiusProperty: DependencyProperty = null; - static leftOfProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static rightOfProperty: DependencyProperty = null; - static backgroundSizingProperty: DependencyProperty = null; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RelativePanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RelativePanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RelativePanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RelativePanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RelativePanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RelativePanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RelativePanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RelativePanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RelativePanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RelativePanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RelativePanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RelativePanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RelativePanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RelativePanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RelativePanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RelativePanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RelativePanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RelativePanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RelativePanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RelativePanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RelativePanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RelativePanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RelativePanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RelativePanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RelativePanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RelativePanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RelativePanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RelativePanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RelativePanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RelativePanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RelativePanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RelativePanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RelativePanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RelativePanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RelativePanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RelativePanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RelativePanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RelativePanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RelativePanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RelativePanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RelativePanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RelativePanel.goToElementStateCore'); - } - - static getLeftOf(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getLeftOf'); - } - - static setLeftOf(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setLeftOf'); - } - - static getAbove(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getAbove'); - } - - static setAbove(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setAbove'); - } - - static getRightOf(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getRightOf'); - } - - static setRightOf(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setRightOf'); - } - - static getBelow(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getBelow'); - } - - static setBelow(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setBelow'); - } - - static getAlignHorizontalCenterWith(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getAlignHorizontalCenterWith'); - } - - static setAlignHorizontalCenterWith(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setAlignHorizontalCenterWith'); - } - - static getAlignVerticalCenterWith(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getAlignVerticalCenterWith'); - } - - static setAlignVerticalCenterWith(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setAlignVerticalCenterWith'); - } - - static getAlignLeftWith(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getAlignLeftWith'); - } - - static setAlignLeftWith(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setAlignLeftWith'); - } - - static getAlignTopWith(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getAlignTopWith'); - } - - static setAlignTopWith(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setAlignTopWith'); - } - - static getAlignRightWith(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getAlignRightWith'); - } - - static setAlignRightWith(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setAlignRightWith'); - } - - static getAlignBottomWith(element: UIElement): any { - throw new Error('shimmed function RelativePanel.getAlignBottomWith'); - } - - static setAlignBottomWith(element: UIElement, value: any): void { - console.warn('shimmed function RelativePanel.setAlignBottomWith'); - } - - static getAlignLeftWithPanel(element: UIElement): Boolean { - throw new Error('shimmed function RelativePanel.getAlignLeftWithPanel'); - } - - static setAlignLeftWithPanel(element: UIElement, value: Boolean): void { - console.warn('shimmed function RelativePanel.setAlignLeftWithPanel'); - } - - static getAlignTopWithPanel(element: UIElement): Boolean { - throw new Error('shimmed function RelativePanel.getAlignTopWithPanel'); - } - - static setAlignTopWithPanel(element: UIElement, value: Boolean): void { - console.warn('shimmed function RelativePanel.setAlignTopWithPanel'); - } - - static getAlignRightWithPanel(element: UIElement): Boolean { - throw new Error('shimmed function RelativePanel.getAlignRightWithPanel'); - } - - static setAlignRightWithPanel(element: UIElement, value: Boolean): void { - console.warn('shimmed function RelativePanel.setAlignRightWithPanel'); - } - - static getAlignBottomWithPanel(element: UIElement): Boolean { - throw new Error('shimmed function RelativePanel.getAlignBottomWithPanel'); - } - - static setAlignBottomWithPanel(element: UIElement, value: Boolean): void { - console.warn('shimmed function RelativePanel.setAlignBottomWithPanel'); - } - - static getAlignHorizontalCenterWithPanel(element: UIElement): Boolean { - throw new Error('shimmed function RelativePanel.getAlignHorizontalCenterWithPanel'); - } - - static setAlignHorizontalCenterWithPanel(element: UIElement, value: Boolean): void { - console.warn('shimmed function RelativePanel.setAlignHorizontalCenterWithPanel'); - } - - static getAlignVerticalCenterWithPanel(element: UIElement): Boolean { - throw new Error('shimmed function RelativePanel.getAlignVerticalCenterWithPanel'); - } - - static setAlignVerticalCenterWithPanel(element: UIElement, value: Boolean): void { - console.warn('shimmed function RelativePanel.setAlignVerticalCenterWithPanel'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RelativePanel::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum RequiresPointer { - never, - whenEngaged, - whenFocused, - } - export class RichEditBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IRichEditBox, IRichEditBox2, IRichEditBox3, IRichEditBox4, IRichEditBox5, IRichEditBox6, IRichEditBox7, IRichEditBox8 { - // constructor(); - textWrapping: TextWrapping = TextWrapping.noWrap; - textAlignment: TextAlignment = TextAlignment.detectFromContent; - isTextPredictionEnabled: Boolean = true; - isSpellCheckEnabled: Boolean = true; - isReadOnly: Boolean = false; - inputScope: Input.InputScope; - acceptsReturn: Boolean = true; - document: Text.ITextDocument = null; - selectionHighlightColor: Media.SolidColorBrush = null; - preventKeyboardDisplayOnProgrammaticFocus: Boolean = false; - placeholderText: string = ''; - isColorFontEnabled: Boolean = true; - headerTemplate: DataTemplate; - header: any; - textReadingOrder: TextReadingOrder = TextReadingOrder.detectFromContent; - desiredCandidateWindowAlignment: CandidateWindowAlignment = CandidateWindowAlignment.default; - clipboardCopyFormat: RichEditClipboardFormat = RichEditClipboardFormat.allFormats; - selectionHighlightColorWhenNotFocused: Media.SolidColorBrush = null; - maxLength: number = 0; - horizontalTextAlignment: TextAlignment = TextAlignment.detectFromContent; - disabledFormattingAccelerators: DisabledFormattingAccelerators = DisabledFormattingAccelerators.none; - characterCasing: CharacterCasing = CharacterCasing.normal; - isHandwritingViewEnabled: Boolean = true; - handwritingView: HandwritingView = null; - contentLinkProviders: Documents.ContentLinkProviderCollection; - contentLinkForegroundColor: Media.SolidColorBrush = null; - contentLinkBackgroundColor: Media.SolidColorBrush = null; - selectionFlyout: Primitives.FlyoutBase; - description: any; - proofingMenuFlyout: Primitives.FlyoutBase = null; - textDocument: Text.RichEditTextDocument = null; - static acceptsReturnProperty: DependencyProperty = null; - static inputScopeProperty: DependencyProperty = null; - static isReadOnlyProperty: DependencyProperty = null; - static isSpellCheckEnabledProperty: DependencyProperty = null; - static isTextPredictionEnabledProperty: DependencyProperty = null; - static textAlignmentProperty: DependencyProperty = null; - static textWrappingProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static isColorFontEnabledProperty: DependencyProperty = null; - static placeholderTextProperty: DependencyProperty = null; - static preventKeyboardDisplayOnProgrammaticFocusProperty: DependencyProperty = null; - static selectionHighlightColorProperty: DependencyProperty = null; - static desiredCandidateWindowAlignmentProperty: DependencyProperty = null; - static textReadingOrderProperty: DependencyProperty = null; - static clipboardCopyFormatProperty: DependencyProperty = null; - static maxLengthProperty: DependencyProperty = null; - static selectionHighlightColorWhenNotFocusedProperty: DependencyProperty = null; - static characterCasingProperty: DependencyProperty = null; - static disabledFormattingAcceleratorsProperty: DependencyProperty = null; - static horizontalTextAlignmentProperty: DependencyProperty = null; - static contentLinkBackgroundColorProperty: DependencyProperty = null; - static contentLinkForegroundColorProperty: DependencyProperty = null; - static contentLinkProvidersProperty: DependencyProperty = null; - static handwritingViewProperty: DependencyProperty = null; - static isHandwritingViewEnabledProperty: DependencyProperty = null; - static descriptionProperty: DependencyProperty = null; - static proofingMenuFlyoutProperty: DependencyProperty = null; - static selectionFlyoutProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichEditBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RichEditBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RichEditBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichEditBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichEditBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RichEditBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RichEditBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RichEditBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RichEditBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RichEditBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RichEditBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RichEditBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RichEditBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RichEditBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RichEditBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RichEditBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RichEditBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RichEditBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RichEditBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RichEditBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RichEditBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RichEditBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RichEditBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RichEditBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RichEditBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RichEditBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RichEditBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RichEditBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichEditBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RichEditBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RichEditBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RichEditBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RichEditBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RichEditBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RichEditBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RichEditBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RichEditBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RichEditBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RichEditBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RichEditBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RichEditBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RichEditBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function RichEditBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RichEditBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function RichEditBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function RichEditBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function RichEditBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function RichEditBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function RichEditBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function RichEditBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function RichEditBox.onCharacterReceived'); - } - - getLinguisticAlternativesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RichEditBox.getLinguisticAlternativesAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RichEditBox::addEventListener: ${name}`); - switch (name) { - case "contextmenuopening": // ContextMenuOpeningEventHandler - case "selectionchanged": // RoutedEventHandler - case "textchanged": // RoutedEventHandler - case "paste": // TextControlPasteEventHandler - case "candidatewindowboundschanged": // Foundation.TypedEventHandler - case "textchanging": // Foundation.TypedEventHandler - case "textcompositionchanged": // Foundation.TypedEventHandler - case "textcompositionended": // Foundation.TypedEventHandler - case "textcompositionstarted": // Foundation.TypedEventHandler - case "copyingtoclipboard": // Foundation.TypedEventHandler - case "cuttingtoclipboard": // Foundation.TypedEventHandler - case "contentlinkchanged": // Foundation.TypedEventHandler - case "contentlinkinvoked": // Foundation.TypedEventHandler - case "selectionchanging": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RichEditBoxSelectionChangingEventArgs implements IRichEditBoxSelectionChangingEventArgs { - cancel: Boolean; - selectionLength: number; - selectionStart: number; - - } - export class RichEditBoxTextChangingEventArgs implements IRichEditBoxTextChangingEventArgs, IRichEditBoxTextChangingEventArgs2 { - isContentChanging: Boolean; - - } - export enum RichEditClipboardFormat { - allFormats, - plainText, - } - export class RichTextBlock implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IRichTextBlock, IRichTextBlock2, IRichTextBlock3, IRichTextBlock4, IRichTextBlock5, IRichTextBlock6 { - // constructor(); - textWrapping: TextWrapping = TextWrapping.wrap; - textTrimming: TextTrimming = TextTrimming.none; - textIndent: number = 0; - textAlignment: TextAlignment = TextAlignment.left; - padding: Thickness = null; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - overflowContentTarget: RichTextBlockOverflow; - lineStackingStrategy: LineStackingStrategy = LineStackingStrategy.maxHeight; - characterSpacing: number = 0; - lineHeight: number = 0; - isTextSelectionEnabled: Boolean = true; - hasOverflowContent: Boolean = false; - selectedText: string = ''; - selectionEnd: Documents.TextPointer; - selectionStart: Documents.TextPointer; - baselineOffset: number = 0; - blocks: Documents.BlockCollection = [ ]; - contentEnd: Documents.TextPointer = null; - contentStart: Documents.TextPointer = null; - textReadingOrder: TextReadingOrder = TextReadingOrder.detectFromContent; - textLineBounds: TextLineBounds = TextLineBounds.full; - selectionHighlightColor: Media.SolidColorBrush = null; - opticalMarginAlignment: OpticalMarginAlignment = OpticalMarginAlignment.none; - maxLines: number = 0; - isColorFontEnabled: Boolean = true; - isTextScaleFactorEnabled: Boolean = true; - textDecorations: Text.TextDecorations = TextDecorations.none; - horizontalTextAlignment: TextAlignment = TextAlignment.left; - isTextTrimmed: Boolean = false; - textHighlighters: Documents.TextHighlighter[] = [ ]; - selectionFlyout: Primitives.FlyoutBase = null; - static characterSpacingProperty: DependencyProperty = null; - static fontFamilyProperty: DependencyProperty = null; - static fontSizeProperty: DependencyProperty = null; - static fontStretchProperty: DependencyProperty = null; - static fontStyleProperty: DependencyProperty = null; - static fontWeightProperty: DependencyProperty = null; - static foregroundProperty: DependencyProperty = null; - static hasOverflowContentProperty: DependencyProperty = null; - static isTextSelectionEnabledProperty: DependencyProperty = null; - static lineHeightProperty: DependencyProperty = null; - static lineStackingStrategyProperty: DependencyProperty = null; - static overflowContentTargetProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static selectedTextProperty: DependencyProperty = null; - static textAlignmentProperty: DependencyProperty = null; - static textIndentProperty: DependencyProperty = null; - static textTrimmingProperty: DependencyProperty = null; - static textWrappingProperty: DependencyProperty = null; - static isColorFontEnabledProperty: DependencyProperty = null; - static maxLinesProperty: DependencyProperty = null; - static opticalMarginAlignmentProperty: DependencyProperty = null; - static selectionHighlightColorProperty: DependencyProperty = null; - static textLineBoundsProperty: DependencyProperty = null; - static textReadingOrderProperty: DependencyProperty = null; - static isTextScaleFactorEnabledProperty: DependencyProperty = null; - static textDecorationsProperty: DependencyProperty = null; - static horizontalTextAlignmentProperty: DependencyProperty = null; - static isTextTrimmedProperty: DependencyProperty = null; - static selectionFlyoutProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase = null; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlock.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RichTextBlock.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RichTextBlock.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlock.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlock.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RichTextBlock.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RichTextBlock.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RichTextBlock.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RichTextBlock.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RichTextBlock.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RichTextBlock.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RichTextBlock.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RichTextBlock.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RichTextBlock.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RichTextBlock.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RichTextBlock.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RichTextBlock.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RichTextBlock.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RichTextBlock.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RichTextBlock.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RichTextBlock.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RichTextBlock.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RichTextBlock.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RichTextBlock.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RichTextBlock.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RichTextBlock.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RichTextBlock.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RichTextBlock.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlock.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RichTextBlock.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RichTextBlock.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RichTextBlock.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RichTextBlock.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RichTextBlock.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RichTextBlock.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RichTextBlock.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RichTextBlock.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RichTextBlock.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RichTextBlock.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RichTextBlock.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RichTextBlock.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RichTextBlock.goToElementStateCore'); - } - - selectAll(): void { - console.warn('shimmed function RichTextBlock.selectAll'); - } - - select(start: Documents.TextPointer, end: Documents.TextPointer): void { - console.warn('shimmed function RichTextBlock.select'); - } - - getPositionFromPoint(point: Foundation.Point): Documents.TextPointer { - throw new Error('shimmed function RichTextBlock.getPositionFromPoint'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RichTextBlock.focus'); - } - - copySelectionToClipboard(): void { - console.warn('shimmed function RichTextBlock.copySelectionToClipboard'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RichTextBlock::addEventListener: ${name}`); - switch (name) { - case "contextmenuopening": // ContextMenuOpeningEventHandler - case "selectionchanged": // RoutedEventHandler - case "istexttrimmedchanged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RichTextBlockOverflow implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IRichTextBlockOverflow, IRichTextBlockOverflow2, IRichTextBlockOverflow3 { - // constructor(); - padding: Thickness = null; - overflowContentTarget: RichTextBlockOverflow; - baselineOffset: number = 0; - contentEnd: Documents.TextPointer; - contentSource: RichTextBlock; - contentStart: Documents.TextPointer; - hasOverflowContent: Boolean = false; - maxLines: number = 0; - isTextTrimmed: Boolean = false; - static hasOverflowContentProperty: DependencyProperty = null; - static overflowContentTargetProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static maxLinesProperty: DependencyProperty = null; - static isTextTrimmedProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockOverflow.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RichTextBlockOverflow.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RichTextBlockOverflow.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockOverflow.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RichTextBlockOverflow.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RichTextBlockOverflow.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RichTextBlockOverflow.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function RichTextBlockOverflow.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function RichTextBlockOverflow.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function RichTextBlockOverflow.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function RichTextBlockOverflow.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function RichTextBlockOverflow.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function RichTextBlockOverflow.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function RichTextBlockOverflow.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function RichTextBlockOverflow.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function RichTextBlockOverflow.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function RichTextBlockOverflow.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function RichTextBlockOverflow.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function RichTextBlockOverflow.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function RichTextBlockOverflow.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function RichTextBlockOverflow.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function RichTextBlockOverflow.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RichTextBlockOverflow.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RichTextBlockOverflow.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function RichTextBlockOverflow.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function RichTextBlockOverflow.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function RichTextBlockOverflow.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function RichTextBlockOverflow.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function RichTextBlockOverflow.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function RichTextBlockOverflow.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function RichTextBlockOverflow.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function RichTextBlockOverflow.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RichTextBlockOverflow.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RichTextBlockOverflow.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function RichTextBlockOverflow.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function RichTextBlockOverflow.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function RichTextBlockOverflow.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function RichTextBlockOverflow.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RichTextBlockOverflow.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function RichTextBlockOverflow.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function RichTextBlockOverflow.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function RichTextBlockOverflow.goToElementStateCore'); - } - - getPositionFromPoint(point: Foundation.Point): Documents.TextPointer { - throw new Error('shimmed function RichTextBlockOverflow.getPositionFromPoint'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function RichTextBlockOverflow.focus'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RichTextBlockOverflow::addEventListener: ${name}`); - switch (name) { - case "istexttrimmedchanged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class RowDefinition implements IDependencyObject, IDependencyObject2, IRowDefinition { - // constructor(); - minHeight: number = 0; - maxHeight: number = ∞; - height: /* Windows.UI.Xaml.GridLength */ any = null; - actualHeight: number = 0; - static heightProperty: DependencyProperty = null; - static maxHeightProperty: DependencyProperty = null; - static minHeightProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RowDefinition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RowDefinition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RowDefinition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RowDefinition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RowDefinition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RowDefinition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RowDefinition.unregisterPropertyChangedCallback'); - } - - } - export class RowDefinitionCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): RowDefinition { - throw new Error('shimmed function RowDefinitionCollection.getAt'); - } - - getView(): RowDefinition[] { - throw new Error('shimmed function RowDefinitionCollection.getView'); - } - - indexOf(value: RowDefinition): { returnValue: Boolean, index: number } { - throw new Error('shimmed function RowDefinitionCollection.indexOf'); - } - - setAt(index: number, value: RowDefinition): void { - console.warn('shimmed function RowDefinitionCollection.setAt'); - } - - insertAt(index: number, value: RowDefinition): void { - console.warn('shimmed function RowDefinitionCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function RowDefinitionCollection.removeAt'); - } - - append(value: RowDefinition): void { - console.warn('shimmed function RowDefinitionCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function RowDefinitionCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function RowDefinitionCollection.clear'); - } - - getMany(startIndex: number, items: RowDefinition[]): number { - throw new Error('shimmed function RowDefinitionCollection.getMany'); - } - - replaceAll(items: RowDefinition[]): void { - console.warn('shimmed function RowDefinitionCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function RowDefinitionCollection.first'); - } - - } - export enum ScrollBarVisibility { - disabled, - auto, - hidden, - visible, - } - export class ScrollContentPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IContentPresenter, IContentPresenter2, IContentPresenter3, IContentPresenter4, IContentPresenter5, IContentPresenterOverrides, IScrollContentPresenter, IScrollContentPresenter2 { - // constructor(); - scrollOwner: any; - canVerticallyScroll: Boolean = false; - canHorizontallyScroll: Boolean = false; - extentHeight: number = 0; - extentWidth: number = 0; - horizontalOffset: number = 0; - verticalOffset: number = 0; - viewportHeight: number = 0; - viewportWidth: number = 0; - sizesContentToTemplatedParent: Boolean = false; - canContentRenderOutsideBounds: Boolean = false; - static canContentRenderOutsideBoundsProperty: DependencyProperty = null; - static sizesContentToTemplatedParentProperty: DependencyProperty = null; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - characterSpacing: number = 0; - textLineBounds: TextLineBounds = TextLineBounds.full; - opticalMarginAlignment: OpticalMarginAlignment = OpticalMarginAlignment.none; - isTextScaleFactorEnabled: Boolean = true; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.stretch; - textWrapping: TextWrapping = TextWrapping.noWrap; - padding: Thickness = null; - maxLines: number = 0; - lineStackingStrategy: LineStackingStrategy = LineStackingStrategy.maxHeight; - lineHeight: number = 0; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - background: Media.Brush; - backgroundTransition: BrushTransition; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollContentPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ScrollContentPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ScrollContentPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollContentPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollContentPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ScrollContentPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ScrollContentPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ScrollContentPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ScrollContentPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ScrollContentPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ScrollContentPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ScrollContentPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ScrollContentPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ScrollContentPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ScrollContentPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ScrollContentPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ScrollContentPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ScrollContentPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ScrollContentPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ScrollContentPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ScrollContentPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ScrollContentPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ScrollContentPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ScrollContentPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ScrollContentPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ScrollContentPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ScrollContentPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ScrollContentPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollContentPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ScrollContentPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ScrollContentPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ScrollContentPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ScrollContentPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ScrollContentPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ScrollContentPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ScrollContentPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ScrollContentPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ScrollContentPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ScrollContentPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ScrollContentPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ScrollContentPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ScrollContentPresenter.goToElementStateCore'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ScrollContentPresenter.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ScrollContentPresenter.onContentTemplateSelectorChanged'); - } - - lineUp(): void { - console.warn('shimmed function ScrollContentPresenter.lineUp'); - } - - lineDown(): void { - console.warn('shimmed function ScrollContentPresenter.lineDown'); - } - - lineLeft(): void { - console.warn('shimmed function ScrollContentPresenter.lineLeft'); - } - - lineRight(): void { - console.warn('shimmed function ScrollContentPresenter.lineRight'); - } - - pageUp(): void { - console.warn('shimmed function ScrollContentPresenter.pageUp'); - } - - pageDown(): void { - console.warn('shimmed function ScrollContentPresenter.pageDown'); - } - - pageLeft(): void { - console.warn('shimmed function ScrollContentPresenter.pageLeft'); - } - - pageRight(): void { - console.warn('shimmed function ScrollContentPresenter.pageRight'); - } - - mouseWheelUp(): void { - console.warn('shimmed function ScrollContentPresenter.mouseWheelUp'); - } - - mouseWheelDown(): void { - console.warn('shimmed function ScrollContentPresenter.mouseWheelDown'); - } - - mouseWheelLeft(): void { - console.warn('shimmed function ScrollContentPresenter.mouseWheelLeft'); - } - - mouseWheelRight(): void { - console.warn('shimmed function ScrollContentPresenter.mouseWheelRight'); - } - - setHorizontalOffset(offset: number): void { - console.warn('shimmed function ScrollContentPresenter.setHorizontalOffset'); - } - - setVerticalOffset(offset: number): void { - console.warn('shimmed function ScrollContentPresenter.setVerticalOffset'); - } - - makeVisible(visual: UIElement, rectangle: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function ScrollContentPresenter.makeVisible'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ScrollContentPresenter::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ScrollIntoViewAlignment { - default, - leading, - } - export enum ScrollMode { - disabled, - enabled, - auto, - } - export class ScrollViewer implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IScrollViewer, IScrollViewer2, IScrollViewer3, IScrollViewer4, IScrollAnchorProvider { - // constructor(); - currentAnchor: UIElement; - isVerticalRailEnabled: Boolean = true; - isScrollInertiaEnabled: Boolean = true; - isHorizontalScrollChainingEnabled: Boolean = true; - isHorizontalRailEnabled: Boolean = true; - isDeferredScrollingEnabled: Boolean = false; - horizontalSnapPointsType: SnapPointsType = SnapPointsType.optional; - horizontalSnapPointsAlignment: Primitives.SnapPointsAlignment = SnapPointsAlignment.near; - horizontalScrollMode: ScrollMode = ScrollMode.enabled; - horizontalScrollBarVisibility: ScrollBarVisibility = ScrollBarVisibility.disabled; - minZoomFactor: number = 0.1; - maxZoomFactor: number = 10; - isZoomInertiaEnabled: Boolean = true; - isZoomChainingEnabled: Boolean = true; - isVerticalScrollChainingEnabled: Boolean = true; - bringIntoViewOnFocusChange: Boolean = true; - zoomSnapPointsType: SnapPointsType = SnapPointsType.optional; - zoomMode: ZoomMode = ZoomMode.enabled; - verticalSnapPointsType: SnapPointsType = SnapPointsType.optional; - verticalSnapPointsAlignment: Primitives.SnapPointsAlignment = SnapPointsAlignment.near; - verticalScrollMode: ScrollMode = ScrollMode.enabled; - verticalScrollBarVisibility: ScrollBarVisibility = ScrollBarVisibility.visible; - computedHorizontalScrollBarVisibility: Visibility = Visibility.visible; - computedVerticalScrollBarVisibility: Visibility = Visibility.visible; - extentHeight: number = 0; - extentWidth: number = 0; - horizontalOffset: number = 0; - scrollableWidth: number = 0; - verticalOffset: number = 0; - viewportHeight: number = 0; - viewportWidth: number = 0; - zoomFactor: number = 1; - zoomSnapPoints: number[] = [ ]; - scrollableHeight: number = 0; - topLeftHeader: UIElement; - topHeader: UIElement; - leftHeader: UIElement; - verticalAnchorRatio: number = 0; - reduceViewportForCoreInputViewOcclusions: Boolean = false; - horizontalAnchorRatio: number = 0; - canContentRenderOutsideBounds: Boolean = false; - static isScrollInertiaEnabledProperty: DependencyProperty = null; - static verticalSnapPointsTypeProperty: DependencyProperty = null; - static viewportHeightProperty: DependencyProperty = null; - static viewportWidthProperty: DependencyProperty = null; - static zoomFactorProperty: DependencyProperty = null; - static zoomModeProperty: DependencyProperty = null; - static zoomSnapPointsProperty: DependencyProperty = null; - static bringIntoViewOnFocusChangeProperty: DependencyProperty = null; - static computedHorizontalScrollBarVisibilityProperty: DependencyProperty = null; - static computedVerticalScrollBarVisibilityProperty: DependencyProperty = null; - static extentHeightProperty: DependencyProperty = null; - static extentWidthProperty: DependencyProperty = null; - static horizontalOffsetProperty: DependencyProperty = null; - static horizontalScrollBarVisibilityProperty: DependencyProperty = null; - static horizontalScrollModeProperty: DependencyProperty = null; - static horizontalSnapPointsAlignmentProperty: DependencyProperty = null; - static horizontalSnapPointsTypeProperty: DependencyProperty = null; - static isDeferredScrollingEnabledProperty: DependencyProperty = null; - static isHorizontalRailEnabledProperty: DependencyProperty = null; - static isHorizontalScrollChainingEnabledProperty: DependencyProperty = null; - static zoomSnapPointsTypeProperty: DependencyProperty = null; - static isVerticalRailEnabledProperty: DependencyProperty = null; - static isVerticalScrollChainingEnabledProperty: DependencyProperty = null; - static isZoomChainingEnabledProperty: DependencyProperty = null; - static isZoomInertiaEnabledProperty: DependencyProperty = null; - static maxZoomFactorProperty: DependencyProperty = null; - static minZoomFactorProperty: DependencyProperty = null; - static scrollableHeightProperty: DependencyProperty = null; - static scrollableWidthProperty: DependencyProperty = null; - static verticalOffsetProperty: DependencyProperty = null; - static verticalScrollBarVisibilityProperty: DependencyProperty = null; - static verticalScrollModeProperty: DependencyProperty = null; - static verticalSnapPointsAlignmentProperty: DependencyProperty = null; - static leftHeaderProperty: DependencyProperty = null; - static topHeaderProperty: DependencyProperty = null; - static topLeftHeaderProperty: DependencyProperty = null; - static horizontalAnchorRatioProperty: DependencyProperty = null; - static reduceViewportForCoreInputViewOcclusionsProperty: DependencyProperty = null; - static verticalAnchorRatioProperty: DependencyProperty = null; - static canContentRenderOutsideBoundsProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollViewer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ScrollViewer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ScrollViewer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollViewer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScrollViewer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ScrollViewer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ScrollViewer.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ScrollViewer.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ScrollViewer.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ScrollViewer.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ScrollViewer.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ScrollViewer.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ScrollViewer.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ScrollViewer.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ScrollViewer.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ScrollViewer.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ScrollViewer.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ScrollViewer.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ScrollViewer.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ScrollViewer.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ScrollViewer.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ScrollViewer.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ScrollViewer.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ScrollViewer.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ScrollViewer.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ScrollViewer.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ScrollViewer.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ScrollViewer.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ScrollViewer.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ScrollViewer.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ScrollViewer.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ScrollViewer.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ScrollViewer.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ScrollViewer.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ScrollViewer.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ScrollViewer.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ScrollViewer.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ScrollViewer.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ScrollViewer.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ScrollViewer.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ScrollViewer.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ScrollViewer.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ScrollViewer.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ScrollViewer.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ScrollViewer.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ScrollViewer.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ScrollViewer.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ScrollViewer.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ScrollViewer.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ScrollViewer.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ScrollViewer.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ScrollViewer.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ScrollViewer.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ScrollViewer.onContentTemplateSelectorChanged'); - } - - scrollToHorizontalOffset(offset: number): void { - console.warn('shimmed function ScrollViewer.scrollToHorizontalOffset'); - } - - scrollToVerticalOffset(offset: number): void { - console.warn('shimmed function ScrollViewer.scrollToVerticalOffset'); - } - - zoomToFactor(factor: number): void { - console.warn('shimmed function ScrollViewer.zoomToFactor'); - } - - invalidateScrollInfo(): void { - console.warn('shimmed function ScrollViewer.invalidateScrollInfo'); - } - - changeView(horizontalOffset: number | null, verticalOffset: number | null, zoomFactor: number | null): Boolean { - throw new Error('shimmed function ScrollViewer.changeView'); - } - - changeView_1(horizontalOffset: number | null, verticalOffset: number | null, zoomFactor: number | null, disableAnimation: Boolean): Boolean { - throw new Error('shimmed function ScrollViewer.changeView_1'); - } - - registerAnchorCandidate(element: UIElement): void { - console.warn('shimmed function ScrollViewer.registerAnchorCandidate'); - } - - unregisterAnchorCandidate(element: UIElement): void { - console.warn('shimmed function ScrollViewer.unregisterAnchorCandidate'); - } - - static getCanContentRenderOutsideBounds(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getCanContentRenderOutsideBounds'); - } - - static setCanContentRenderOutsideBounds(element: DependencyObject, canContentRenderOutsideBounds: Boolean): void { - console.warn('shimmed function ScrollViewer.setCanContentRenderOutsideBounds'); - } - - static getHorizontalScrollBarVisibility(element: DependencyObject): ScrollBarVisibility { - throw new Error('shimmed function ScrollViewer.getHorizontalScrollBarVisibility'); - } - - static setHorizontalScrollBarVisibility(element: DependencyObject, horizontalScrollBarVisibility: ScrollBarVisibility): void { - console.warn('shimmed function ScrollViewer.setHorizontalScrollBarVisibility'); - } - - static getVerticalScrollBarVisibility(element: DependencyObject): ScrollBarVisibility { - throw new Error('shimmed function ScrollViewer.getVerticalScrollBarVisibility'); - } - - static setVerticalScrollBarVisibility(element: DependencyObject, verticalScrollBarVisibility: ScrollBarVisibility): void { - console.warn('shimmed function ScrollViewer.setVerticalScrollBarVisibility'); - } - - static getIsHorizontalRailEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsHorizontalRailEnabled'); - } - - static setIsHorizontalRailEnabled(element: DependencyObject, isHorizontalRailEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsHorizontalRailEnabled'); - } - - static getIsVerticalRailEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsVerticalRailEnabled'); - } - - static setIsVerticalRailEnabled(element: DependencyObject, isVerticalRailEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsVerticalRailEnabled'); - } - - static getIsHorizontalScrollChainingEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsHorizontalScrollChainingEnabled'); - } - - static setIsHorizontalScrollChainingEnabled(element: DependencyObject, isHorizontalScrollChainingEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsHorizontalScrollChainingEnabled'); - } - - static getIsVerticalScrollChainingEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsVerticalScrollChainingEnabled'); - } - - static setIsVerticalScrollChainingEnabled(element: DependencyObject, isVerticalScrollChainingEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsVerticalScrollChainingEnabled'); - } - - static getIsZoomChainingEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsZoomChainingEnabled'); - } - - static setIsZoomChainingEnabled(element: DependencyObject, isZoomChainingEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsZoomChainingEnabled'); - } - - static getIsScrollInertiaEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsScrollInertiaEnabled'); - } - - static setIsScrollInertiaEnabled(element: DependencyObject, isScrollInertiaEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsScrollInertiaEnabled'); - } - - static getIsZoomInertiaEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsZoomInertiaEnabled'); - } - - static setIsZoomInertiaEnabled(element: DependencyObject, isZoomInertiaEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsZoomInertiaEnabled'); - } - - static getHorizontalScrollMode(element: DependencyObject): ScrollMode { - throw new Error('shimmed function ScrollViewer.getHorizontalScrollMode'); - } - - static setHorizontalScrollMode(element: DependencyObject, horizontalScrollMode: ScrollMode): void { - console.warn('shimmed function ScrollViewer.setHorizontalScrollMode'); - } - - static getVerticalScrollMode(element: DependencyObject): ScrollMode { - throw new Error('shimmed function ScrollViewer.getVerticalScrollMode'); - } - - static setVerticalScrollMode(element: DependencyObject, verticalScrollMode: ScrollMode): void { - console.warn('shimmed function ScrollViewer.setVerticalScrollMode'); - } - - static getZoomMode(element: DependencyObject): ZoomMode { - throw new Error('shimmed function ScrollViewer.getZoomMode'); - } - - static setZoomMode(element: DependencyObject, zoomMode: ZoomMode): void { - console.warn('shimmed function ScrollViewer.setZoomMode'); - } - - static getIsDeferredScrollingEnabled(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getIsDeferredScrollingEnabled'); - } - - static setIsDeferredScrollingEnabled(element: DependencyObject, isDeferredScrollingEnabled: Boolean): void { - console.warn('shimmed function ScrollViewer.setIsDeferredScrollingEnabled'); - } - - static getBringIntoViewOnFocusChange(element: DependencyObject): Boolean { - throw new Error('shimmed function ScrollViewer.getBringIntoViewOnFocusChange'); - } - - static setBringIntoViewOnFocusChange(element: DependencyObject, bringIntoViewOnFocusChange: Boolean): void { - console.warn('shimmed function ScrollViewer.setBringIntoViewOnFocusChange'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ScrollViewer::addEventListener: ${name}`); - switch (name) { - case "viewchanged": // /* System.EventHandler`1[[Windows.UI.Xaml.Controls.ScrollViewerViewChangedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "viewchanging": // /* System.EventHandler`1[[Windows.UI.Xaml.Controls.ScrollViewerViewChangingEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "directmanipulationcompleted": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "directmanipulationstarted": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "anchorrequested": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ScrollViewerView implements IScrollViewerView { - horizontalOffset: number; - verticalOffset: number; - zoomFactor: number; - - } - export class ScrollViewerViewChangedEventArgs implements IScrollViewerViewChangedEventArgs { - // constructor(); - isIntermediate: Boolean = false; - - } - export class ScrollViewerViewChangingEventArgs implements IScrollViewerViewChangingEventArgs { - finalView: ScrollViewerView; - isInertial: Boolean; - nextView: ScrollViewerView; - - } - export class SearchBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ISearchBox { - // constructor(); - searchHistoryEnabled: Boolean = true; - searchHistoryContext: string = ''; - queryText: string = ''; - placeholderText: string = ''; - focusOnKeyboardInput: Boolean = false; - chooseSuggestionOnEnter: Boolean = false; - static chooseSuggestionOnEnterProperty: DependencyProperty = null; - static focusOnKeyboardInputProperty: DependencyProperty = null; - static placeholderTextProperty: DependencyProperty = null; - static queryTextProperty: DependencyProperty = null; - static searchHistoryContextProperty: DependencyProperty = null; - static searchHistoryEnabledProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SearchBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SearchBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SearchBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SearchBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SearchBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SearchBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SearchBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SearchBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SearchBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SearchBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SearchBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SearchBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SearchBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SearchBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SearchBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SearchBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SearchBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SearchBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SearchBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SearchBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SearchBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SearchBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SearchBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SearchBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SearchBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SearchBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SearchBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SearchBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SearchBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SearchBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SearchBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SearchBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SearchBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SearchBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SearchBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SearchBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SearchBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SearchBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SearchBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SearchBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SearchBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SearchBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function SearchBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function SearchBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function SearchBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function SearchBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SearchBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SearchBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function SearchBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function SearchBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function SearchBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function SearchBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function SearchBox.onCharacterReceived'); - } - - setLocalContentSuggestionSettings(settings: ApplicationModel.Search.LocalContentSuggestionSettings): void { - console.warn('shimmed function SearchBox.setLocalContentSuggestionSettings'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SearchBox::addEventListener: ${name}`); - switch (name) { - case "prepareforfocusonkeyboardinput": // Foundation.TypedEventHandler - case "querychanged": // Foundation.TypedEventHandler - case "querysubmitted": // Foundation.TypedEventHandler - case "resultsuggestionchosen": // Foundation.TypedEventHandler - case "suggestionsrequested": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SearchBoxQueryChangedEventArgs implements ISearchBoxQueryChangedEventArgs { - language: string; - linguisticDetails: ApplicationModel.Search.SearchQueryLinguisticDetails; - queryText: string; - - } - export class SearchBoxQuerySubmittedEventArgs implements ISearchBoxQuerySubmittedEventArgs { - keyModifiers: System.VirtualKeyModifiers; - language: string; - linguisticDetails: ApplicationModel.Search.SearchQueryLinguisticDetails; - queryText: string; - - } - export class SearchBoxResultSuggestionChosenEventArgs implements ISearchBoxResultSuggestionChosenEventArgs { - // constructor(); - keyModifiers: System.VirtualKeyModifiers = VirtualKeyModifiers.none; - tag: string = ''; - - } - export class SearchBoxSuggestionsRequestedEventArgs implements ISearchBoxSuggestionsRequestedEventArgs { - language: string; - linguisticDetails: ApplicationModel.Search.SearchQueryLinguisticDetails; - queryText: string; - request: ApplicationModel.Search.SearchSuggestionsRequest; - - } - export class SectionsInViewChangedEventArgs implements ISectionsInViewChangedEventArgs { - addedSections: HubSection[]; - removedSections: HubSection[]; - - } - export type SectionsInViewChangedEventHandler = (e: SectionsInViewChangedEventArgs) => void; - export class SelectionChangedEventArgs implements IRoutedEventArgs, ISelectionChangedEventArgs { - // constructor(removedItems: any[], addedItems: any[]); - constructor(removedItems: any[], addedItems: any[]) {} - - addedItems: any[]; - removedItems: any[]; - originalSource: any; - - } - export type SelectionChangedEventHandler = (e: SelectionChangedEventArgs) => void; - export enum SelectionMode { - single, - multiple, - extended, - } - export class SemanticZoom implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ISemanticZoom { - // constructor(); - zoomedOutView: ISemanticZoomInformation; - zoomedInView: ISemanticZoomInformation; - isZoomedInViewActive: Boolean = true; - isZoomOutButtonEnabled: Boolean = true; - canChangeViews: Boolean = true; - static canChangeViewsProperty: DependencyProperty = null; - static isZoomOutButtonEnabledProperty: DependencyProperty = null; - static isZoomedInViewActiveProperty: DependencyProperty = null; - static zoomedInViewProperty: DependencyProperty = null; - static zoomedOutViewProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SemanticZoom.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SemanticZoom.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SemanticZoom.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SemanticZoom.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SemanticZoom.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SemanticZoom.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SemanticZoom.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SemanticZoom.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SemanticZoom.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SemanticZoom.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SemanticZoom.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SemanticZoom.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SemanticZoom.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SemanticZoom.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SemanticZoom.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SemanticZoom.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SemanticZoom.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SemanticZoom.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SemanticZoom.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SemanticZoom.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SemanticZoom.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SemanticZoom.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SemanticZoom.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SemanticZoom.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SemanticZoom.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SemanticZoom.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SemanticZoom.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SemanticZoom.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SemanticZoom.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SemanticZoom.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SemanticZoom.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SemanticZoom.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SemanticZoom.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SemanticZoom.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SemanticZoom.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SemanticZoom.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SemanticZoom.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SemanticZoom.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SemanticZoom.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SemanticZoom.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SemanticZoom.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SemanticZoom.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function SemanticZoom.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function SemanticZoom.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function SemanticZoom.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function SemanticZoom.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function SemanticZoom.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function SemanticZoom.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function SemanticZoom.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function SemanticZoom.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function SemanticZoom.onCharacterReceived'); - } - - toggleActiveView(): void { - console.warn('shimmed function SemanticZoom.toggleActiveView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SemanticZoom::addEventListener: ${name}`); - switch (name) { - case "viewchangecompleted": // SemanticZoomViewChangedEventHandler - case "viewchangestarted": // SemanticZoomViewChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SemanticZoomLocation implements ISemanticZoomLocation { - // constructor(); - item: any; - bounds: Foundation.Rect = { x: 0, y: 0, width: -1, height: -1 }; - - } - export class SemanticZoomViewChangedEventArgs implements ISemanticZoomViewChangedEventArgs { - // constructor(); - sourceItem: SemanticZoomLocation; - isSourceZoomedInView: Boolean = false; - destinationItem: SemanticZoomLocation; - - } - export type SemanticZoomViewChangedEventHandler = (e: SemanticZoomViewChangedEventArgs) => void; - export class SettingsFlyout implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, ISettingsFlyout { - // constructor(); - title: string = ''; - iconSource: Media.ImageSource; - headerForeground: Media.Brush; - headerBackground: Media.Brush; - templateSettings: Primitives.SettingsFlyoutTemplateSettings = null; - static headerBackgroundProperty: DependencyProperty = null; - static headerForegroundProperty: DependencyProperty = null; - static iconSourceProperty: DependencyProperty = null; - static titleProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SettingsFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SettingsFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SettingsFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SettingsFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SettingsFlyout.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SettingsFlyout.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SettingsFlyout.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SettingsFlyout.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SettingsFlyout.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SettingsFlyout.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SettingsFlyout.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SettingsFlyout.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SettingsFlyout.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SettingsFlyout.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SettingsFlyout.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SettingsFlyout.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SettingsFlyout.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SettingsFlyout.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SettingsFlyout.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SettingsFlyout.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SettingsFlyout.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SettingsFlyout.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SettingsFlyout.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SettingsFlyout.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SettingsFlyout.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SettingsFlyout.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SettingsFlyout.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SettingsFlyout.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SettingsFlyout.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SettingsFlyout.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SettingsFlyout.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SettingsFlyout.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SettingsFlyout.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SettingsFlyout.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SettingsFlyout.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SettingsFlyout.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SettingsFlyout.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SettingsFlyout.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function SettingsFlyout.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function SettingsFlyout.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function SettingsFlyout.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function SettingsFlyout.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function SettingsFlyout.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function SettingsFlyout.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function SettingsFlyout.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function SettingsFlyout.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function SettingsFlyout.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function SettingsFlyout.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function SettingsFlyout.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function SettingsFlyout.onContentTemplateSelectorChanged'); - } - - show(): void { - console.warn('shimmed function SettingsFlyout.show'); - } - - showIndependent(): void { - console.warn('shimmed function SettingsFlyout.showIndependent'); - } - - hide(): void { - console.warn('shimmed function SettingsFlyout.hide'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SettingsFlyout::addEventListener: ${name}`); - switch (name) { - case "backclick": // BackClickEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Slider implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, Primitives.IRangeBase, Primitives.IRangeBaseOverrides, ISlider, ISlider2 { - // constructor(); - tickPlacement: Primitives.TickPlacement = TickPlacement.inline; - tickFrequency: number = 0; - thumbToolTipValueConverter: Data.IValueConverter; - stepFrequency: number = 1; - snapsTo: Primitives.SliderSnapsTo = SliderSnapsTo.stepValues; - orientation: Orientation = Orientation.horizontal; - isThumbToolTipEnabled: Boolean = true; - isDirectionReversed: Boolean = false; - intermediateValue: number = 0; - headerTemplate: DataTemplate; - header: any; - static intermediateValueProperty: DependencyProperty = null; - static isDirectionReversedProperty: DependencyProperty = null; - static isThumbToolTipEnabledProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static snapsToProperty: DependencyProperty = null; - static stepFrequencyProperty: DependencyProperty = null; - static thumbToolTipValueConverterProperty: DependencyProperty = null; - static tickFrequencyProperty: DependencyProperty = null; - static tickPlacementProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - value: number = 0; - smallChange: number = 1; - minimum: number = 0; - maximum: number = 100; - largeChange: number = 10; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Slider.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Slider.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Slider.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Slider.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Slider.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Slider.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Slider.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Slider.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Slider.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Slider.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Slider.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Slider.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Slider.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Slider.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Slider.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Slider.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Slider.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Slider.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Slider.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Slider.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Slider.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Slider.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Slider.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Slider.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Slider.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Slider.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Slider.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Slider.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Slider.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Slider.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Slider.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Slider.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Slider.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Slider.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Slider.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Slider.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Slider.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Slider.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Slider.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Slider.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Slider.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Slider.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function Slider.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Slider.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function Slider.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function Slider.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function Slider.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function Slider.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function Slider.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function Slider.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function Slider.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function Slider.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function Slider.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function Slider.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function Slider.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function Slider.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Slider.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Slider.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Slider.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function Slider.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function Slider.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function Slider.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function Slider.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function Slider.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Slider.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function Slider.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function Slider.onCharacterReceived'); - } - - onMinimumChanged(oldMinimum: number, newMinimum: number): void { - console.warn('shimmed function Slider.onMinimumChanged'); - } - - onMaximumChanged(oldMaximum: number, newMaximum: number): void { - console.warn('shimmed function Slider.onMaximumChanged'); - } - - onValueChanged(oldValue: number, newValue: number): void { - console.warn('shimmed function Slider.onValueChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Slider::addEventListener: ${name}`); - switch (name) { - case "valuechanged": // Primitives.RangeBaseValueChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SnapPointsType { - none, - optional, - mandatory, - optionalSingle, - mandatorySingle, - } - export class SplitButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, ISplitButton { - // constructor(); - flyout: Primitives.FlyoutBase; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - static commandParameterProperty: DependencyProperty = null; - static commandProperty: DependencyProperty = null; - static flyoutProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'S', 'p', 'l', 'i', 't', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplitButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplitButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplitButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplitButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SplitButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SplitButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SplitButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SplitButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SplitButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SplitButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SplitButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SplitButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SplitButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SplitButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SplitButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SplitButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SplitButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SplitButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SplitButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SplitButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SplitButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SplitButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SplitButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SplitButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SplitButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SplitButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SplitButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SplitButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SplitButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SplitButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SplitButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SplitButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SplitButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SplitButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SplitButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SplitButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SplitButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SplitButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function SplitButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function SplitButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function SplitButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function SplitButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SplitButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SplitButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function SplitButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function SplitButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function SplitButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function SplitButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function SplitButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function SplitButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function SplitButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function SplitButton.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SplitButton::addEventListener: ${name}`); - switch (name) { - case "click": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SplitButtonAutomationPeer implements IDependencyObject, IDependencyObject2, Automation.Peers.IAutomationPeer, Automation.Peers.IAutomationPeer2, Automation.Peers.IAutomationPeer3, Automation.Peers.IAutomationPeer4, Automation.Peers.IAutomationPeer5, Automation.Peers.IAutomationPeer6, Automation.Peers.IAutomationPeer7, Automation.Peers.IAutomationPeer8, Automation.Peers.IAutomationPeer9, Automation.Peers.IAutomationPeerProtected, Automation.Peers.IAutomationPeerOverrides, Automation.Peers.IAutomationPeerOverrides2, Automation.Peers.IAutomationPeerOverrides3, Automation.Peers.IAutomationPeerOverrides4, Automation.Peers.IAutomationPeerOverrides5, Automation.Peers.IAutomationPeerOverrides6, Automation.Peers.IAutomationPeerOverrides8, Automation.Peers.IAutomationPeerOverrides9, Automation.Peers.IFrameworkElementAutomationPeer, ISplitButtonAutomationPeer, Automation.Provider.IExpandCollapseProvider, Automation.Provider.IInvokeProvider { - // constructor(owner: SplitButton); - constructor(owner: SplitButton) {} - - expandCollapseState: Automation.ExpandCollapseState; - owner: UIElement; - eventsSource: Automation.Peers.AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplitButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplitButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplitButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplitButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: Automation.Peers.PatternInterface): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: Automation.Peers.AutomationEvents): void { - console.warn('shimmed function SplitButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: Automation.AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function SplitButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): Automation.Peers.AutomationControlType { - throw new Error('shimmed function SplitButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function SplitButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function SplitButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function SplitButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getName'); - } - - getOrientation(): Automation.Peers.AutomationOrientation { - throw new Error('shimmed function SplitButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function SplitButtonAutomationPeer.setFocus'); - } - - getParent(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function SplitButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): Automation.Peers.AutomationLiveSetting { - throw new Error('shimmed function SplitButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: Automation.Peers.AutomationNavigationDirection): any { - throw new Error('shimmed function SplitButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function SplitButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function SplitButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): Automation.Peers.AutomationPeerAnnotation[] { - throw new Error('shimmed function SplitButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: Automation.Peers.AutomationPeer): void { - console.warn('shimmed function SplitButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: Automation.AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function SplitButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: Automation.Peers.AutomationStructureChangeType, child: Automation.Peers.AutomationPeer): void { - console.warn('shimmed function SplitButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): Automation.Peers.AutomationLandmarkType { - throw new Error('shimmed function SplitButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: Automation.Peers.AutomationNotificationKind, notificationProcessing: Automation.Peers.AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function SplitButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): Automation.Peers.AutomationHeadingLevel { - throw new Error('shimmed function SplitButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Automation.Provider.IRawElementProviderSimple): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: Automation.Peers.AutomationPeer): Automation.Provider.IRawElementProviderSimple { - throw new Error('shimmed function SplitButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: Automation.Peers.PatternInterface): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): Automation.Peers.AutomationControlType { - throw new Error('shimmed function SplitButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function SplitButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function SplitButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function SplitButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): Automation.Peers.AutomationOrientation { - throw new Error('shimmed function SplitButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function SplitButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): Automation.Peers.AutomationLiveSetting { - throw new Error('shimmed function SplitButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function SplitButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function SplitButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: Automation.Peers.AutomationNavigationDirection): any { - throw new Error('shimmed function SplitButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function SplitButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): Automation.Peers.AutomationPeerAnnotation[] { - throw new Error('shimmed function SplitButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): Automation.Peers.AutomationLandmarkType { - throw new Error('shimmed function SplitButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function SplitButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SplitButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SplitButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function SplitButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function SplitButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): Automation.Peers.AutomationHeadingLevel { - throw new Error('shimmed function SplitButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function SplitButtonAutomationPeer.isDialogCore'); - } - - collapse(): void { - console.warn('shimmed function SplitButtonAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function SplitButtonAutomationPeer.expand'); - } - - invoke(): void { - console.warn('shimmed function SplitButtonAutomationPeer.invoke'); - } - - } - export class SplitButtonClickEventArgs implements ISplitButtonClickEventArgs { - } - export class SplitView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ISplitView, ISplitView2, ISplitView3 { - // constructor(); - panePlacement: SplitViewPanePlacement = SplitViewPanePlacement.left; - paneBackground: Media.Brush; - pane: UIElement; - openPaneLength: number = 0; - isPaneOpen: Boolean = false; - displayMode: SplitViewDisplayMode = SplitViewDisplayMode.overlay; - content: UIElement; - compactPaneLength: number = 0; - templateSettings: Primitives.SplitViewTemplateSettings = null; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - static compactPaneLengthProperty: DependencyProperty = null; - static contentProperty: DependencyProperty = null; - static displayModeProperty: DependencyProperty = null; - static isPaneOpenProperty: DependencyProperty = null; - static openPaneLengthProperty: DependencyProperty = null; - static paneBackgroundProperty: DependencyProperty = null; - static panePlacementProperty: DependencyProperty = null; - static paneProperty: DependencyProperty = null; - static templateSettingsProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplitView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplitView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplitView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplitView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SplitView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SplitView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SplitView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SplitView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SplitView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SplitView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SplitView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SplitView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SplitView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SplitView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SplitView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SplitView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SplitView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SplitView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SplitView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SplitView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SplitView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SplitView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SplitView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SplitView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SplitView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SplitView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SplitView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SplitView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SplitView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SplitView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SplitView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SplitView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SplitView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SplitView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SplitView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SplitView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SplitView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SplitView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SplitView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function SplitView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function SplitView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function SplitView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function SplitView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function SplitView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function SplitView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function SplitView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function SplitView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function SplitView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function SplitView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function SplitView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function SplitView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function SplitView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SplitView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SplitView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function SplitView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function SplitView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function SplitView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function SplitView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SplitView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function SplitView.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SplitView::addEventListener: ${name}`); - switch (name) { - case "paneclosed": // Foundation.TypedEventHandler - case "paneclosing": // Foundation.TypedEventHandler - case "paneopened": // Foundation.TypedEventHandler - case "paneopening": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SplitViewDisplayMode { - overlay, - inline, - compactOverlay, - compactInline, - } - export class SplitViewPaneClosingEventArgs implements ISplitViewPaneClosingEventArgs { - cancel: Boolean; - - } - export enum SplitViewPanePlacement { - left, - right, - } - export class StackPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IStackPanel, IStackPanel2, IStackPanel4, IStackPanel5, Primitives.IScrollSnapPointsInfo, IInsertionPanel { - // constructor(); - orientation: Orientation = Orientation.vertical; - areScrollSnapPointsRegular: Boolean = false; - padding: Thickness = null; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - spacing: number = 0; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - areHorizontalSnapPointsRegular: Boolean = false; - areVerticalSnapPointsRegular: Boolean = false; - static areScrollSnapPointsRegularProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static borderBrushProperty: DependencyProperty = null; - static borderThicknessProperty: DependencyProperty = null; - static cornerRadiusProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static spacingProperty: DependencyProperty = null; - static backgroundSizingProperty: DependencyProperty = null; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function StackPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function StackPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function StackPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function StackPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function StackPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function StackPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function StackPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function StackPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function StackPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function StackPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function StackPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function StackPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function StackPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function StackPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function StackPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function StackPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function StackPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function StackPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function StackPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function StackPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function StackPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function StackPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function StackPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function StackPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function StackPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function StackPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function StackPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function StackPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function StackPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function StackPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function StackPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function StackPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function StackPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function StackPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function StackPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function StackPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function StackPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function StackPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function StackPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function StackPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function StackPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function StackPanel.goToElementStateCore'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): number[] { - throw new Error('shimmed function StackPanel.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function StackPanel.getRegularSnapPoints'); - } - - getInsertionIndexes(position: Foundation.Point): { first: number, second: number } { - throw new Error('shimmed function StackPanel.getInsertionIndexes'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StackPanel::addEventListener: ${name}`); - switch (name) { - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum StretchDirection { - upOnly, - downOnly, - both, - } - export class StyleSelector implements IStyleSelector, IStyleSelectorOverrides { - // constructor(); - selectStyle(item: any, container: DependencyObject): Style { - throw new Error('shimmed function StyleSelector.selectStyle'); - } - - selectStyleCore(item: any, container: DependencyObject): Style { - throw new Error('shimmed function StyleSelector.selectStyleCore'); - } - - } - export class SwapChainBackgroundPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IGrid, IGrid2, IGrid3, IGrid4, ISwapChainBackgroundPanel, ISwapChainBackgroundPanel2 { - // constructor(); - columnDefinitions: ColumnDefinitionCollection = [ ]; - rowDefinitions: RowDefinitionCollection = [ ]; - padding: Thickness = null; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - rowSpacing: number = 0; - columnSpacing: number = 0; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwapChainBackgroundPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SwapChainBackgroundPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SwapChainBackgroundPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwapChainBackgroundPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwapChainBackgroundPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SwapChainBackgroundPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SwapChainBackgroundPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SwapChainBackgroundPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SwapChainBackgroundPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SwapChainBackgroundPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SwapChainBackgroundPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SwapChainBackgroundPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SwapChainBackgroundPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SwapChainBackgroundPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SwapChainBackgroundPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SwapChainBackgroundPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SwapChainBackgroundPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SwapChainBackgroundPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SwapChainBackgroundPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SwapChainBackgroundPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SwapChainBackgroundPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SwapChainBackgroundPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SwapChainBackgroundPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SwapChainBackgroundPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SwapChainBackgroundPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SwapChainBackgroundPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SwapChainBackgroundPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SwapChainBackgroundPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SwapChainBackgroundPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SwapChainBackgroundPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SwapChainBackgroundPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SwapChainBackgroundPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SwapChainBackgroundPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SwapChainBackgroundPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SwapChainBackgroundPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SwapChainBackgroundPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SwapChainBackgroundPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SwapChainBackgroundPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SwapChainBackgroundPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SwapChainBackgroundPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SwapChainBackgroundPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SwapChainBackgroundPanel.goToElementStateCore'); - } - - createCoreIndependentInputSource(deviceTypes: Core.CoreInputDeviceTypes): Core.CoreIndependentInputSource { - throw new Error('shimmed function SwapChainBackgroundPanel.createCoreIndependentInputSource'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SwapChainBackgroundPanel::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SwapChainPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IGrid, IGrid2, IGrid3, IGrid4, ISwapChainPanel { - // constructor(); - compositionScaleX: number = 1; - compositionScaleY: number = 1; - static compositionScaleXProperty: DependencyProperty = null; - static compositionScaleYProperty: DependencyProperty = null; - columnDefinitions: ColumnDefinitionCollection = [ ]; - rowDefinitions: RowDefinitionCollection = [ ]; - padding: Thickness = null; - cornerRadius: CornerRadius = null; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - rowSpacing: number = 0; - columnSpacing: number = 0; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwapChainPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SwapChainPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SwapChainPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwapChainPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwapChainPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SwapChainPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SwapChainPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SwapChainPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SwapChainPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SwapChainPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SwapChainPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SwapChainPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SwapChainPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SwapChainPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SwapChainPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SwapChainPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SwapChainPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SwapChainPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SwapChainPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SwapChainPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SwapChainPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SwapChainPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SwapChainPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SwapChainPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SwapChainPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SwapChainPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SwapChainPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SwapChainPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SwapChainPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SwapChainPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SwapChainPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SwapChainPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SwapChainPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SwapChainPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SwapChainPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SwapChainPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SwapChainPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SwapChainPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SwapChainPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SwapChainPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SwapChainPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SwapChainPanel.goToElementStateCore'); - } - - createCoreIndependentInputSource(deviceTypes: Core.CoreInputDeviceTypes): Core.CoreIndependentInputSource { - throw new Error('shimmed function SwapChainPanel.createCoreIndependentInputSource'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SwapChainPanel::addEventListener: ${name}`); - switch (name) { - case "compositionscalechanged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum SwipeBehaviorOnInvoked { - auto, - close, - remainOpen, - } - export class SwipeControl implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, ISwipeControl { - // constructor(); - topItems: SwipeItems; - rightItems: SwipeItems; - leftItems: SwipeItems; - bottomItems: SwipeItems; - static bottomItemsProperty: DependencyProperty = null; - static leftItemsProperty: DependencyProperty = null; - static rightItemsProperty: DependencyProperty = null; - static topItemsProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'S', 'w', 'i', 'p', 'e', 'C', 'o', 'n', 't', 'r', 'o', 'l' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SwipeControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SwipeControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SwipeControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SwipeControl.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SwipeControl.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SwipeControl.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SwipeControl.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SwipeControl.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SwipeControl.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SwipeControl.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SwipeControl.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SwipeControl.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SwipeControl.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SwipeControl.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SwipeControl.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SwipeControl.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SwipeControl.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SwipeControl.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SwipeControl.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SwipeControl.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SwipeControl.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SwipeControl.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SwipeControl.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SwipeControl.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SwipeControl.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SwipeControl.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SwipeControl.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SwipeControl.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SwipeControl.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SwipeControl.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SwipeControl.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SwipeControl.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SwipeControl.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SwipeControl.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SwipeControl.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SwipeControl.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SwipeControl.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SwipeControl.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SwipeControl.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function SwipeControl.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function SwipeControl.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function SwipeControl.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function SwipeControl.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function SwipeControl.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function SwipeControl.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function SwipeControl.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function SwipeControl.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function SwipeControl.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function SwipeControl.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function SwipeControl.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function SwipeControl.onContentTemplateSelectorChanged'); - } - - close(): void { - console.warn('shimmed function SwipeControl.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SwipeControl::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SwipeItem implements IDependencyObject, IDependencyObject2, ISwipeItem { - // constructor(); - text: string = ''; - iconSource: IconSource; - foreground: Media.Brush; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - behaviorOnInvoked: SwipeBehaviorOnInvoked = SwipeBehaviorOnInvoked.auto; - background: Media.Brush; - static backgroundProperty: DependencyProperty = null; - static behaviorOnInvokedProperty: DependencyProperty = null; - static commandParameterProperty: DependencyProperty = null; - static commandProperty: DependencyProperty = null; - static foregroundProperty: DependencyProperty = null; - static iconSourceProperty: DependencyProperty = null; - static textProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SwipeItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SwipeItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SwipeItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SwipeItem.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SwipeItem::addEventListener: ${name}`); - switch (name) { - case "invoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class SwipeItemInvokedEventArgs implements ISwipeItemInvokedEventArgs { - swipeControl: SwipeControl; - - } - export class SwipeItems implements IDependencyObject, IDependencyObject2, ISwipeItems, Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - mode: SwipeMode = SwipeMode.reveal; - static modeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeItems.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SwipeItems.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SwipeItems.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeItems.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeItems.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SwipeItems.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SwipeItems.unregisterPropertyChangedCallback'); - } - - getAt(index: number): SwipeItem { - throw new Error('shimmed function SwipeItems.getAt'); - } - - getView(): SwipeItem[] { - throw new Error('shimmed function SwipeItems.getView'); - } - - indexOf(value: SwipeItem): { returnValue: Boolean, index: number } { - throw new Error('shimmed function SwipeItems.indexOf'); - } - - setAt(index: number, value: SwipeItem): void { - console.warn('shimmed function SwipeItems.setAt'); - } - - insertAt(index: number, value: SwipeItem): void { - console.warn('shimmed function SwipeItems.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function SwipeItems.removeAt'); - } - - append(value: SwipeItem): void { - console.warn('shimmed function SwipeItems.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function SwipeItems.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function SwipeItems.clear'); - } - - getMany(startIndex: number, items: SwipeItem[]): number { - throw new Error('shimmed function SwipeItems.getMany'); - } - - replaceAll(items: SwipeItem[]): void { - console.warn('shimmed function SwipeItems.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function SwipeItems.first'); - } - - } - export enum SwipeMode { - reveal, - execute, - } - export enum Symbol { - previous = 57600, - next, - play, - pause, - edit, - save, - clear, - delete, - remove, - add, - cancel, - accept, - more, - redo, - undo, - home, - up, - forward, - back, - favorite, - camera, - setting, - video, - sync, - download, - mail, - find, - help, - upload, - emoji, - twoPage, - leaveChat, - mailForward, - clock, - send, - crop, - rotateCamera, - people, - openPane, - closePane, - world, - flag, - previewLink, - globe, - trim, - attachCamera, - zoomIn, - bookmarks, - document, - protectedDocument, - page, - bullets, - comment, - mailFilled, - contactInfo, - hangUp, - viewAll, - mapPin, - phone, - videoChat, - switch, - contact, - rename, - pin = 57665, - musicInfo, - go, - keyboard, - dockLeft, - dockRight, - dockBottom, - remote, - refresh, - rotate, - shuffle, - list, - shop, - selectAll, - orientation, - import, - importAll, - browsePhotos = 57685, - webCam, - pictures = 57688, - saveLocal, - caption, - stop, - showResults, - volume, - repair, - message, - page2, - calendarDay, - calendarWeek, - calendar, - character, - mailReplyAll, - read, - link, - account, - showBcc, - hideBcc, - cut, - attach, - paste, - filter, - copy, - emoji2, - important, - mailReply, - slideShow, - sort, - manage = 57720, - allApps, - disconnectDrive, - mapDrive, - newWindow, - openWith, - contactPresence = 57729, - priority, - goToToday = 57732, - font, - fontColor, - contact2, - folder, - audio, - placeholder, - view, - setLockScreen, - setTile, - closedCaption = 57744, - stopSlideShow, - permissions, - highlight, - disableUpdates, - unFavorite, - unPin, - openLocal, - mute, - italic, - underline, - bold, - moveToFolder, - likeDislike, - dislike, - like, - alignRight, - alignCenter, - alignLeft, - zoom, - zoomOut, - openFile, - otherUser, - admin, - street = 57795, - map, - clearSelection, - fontDecrease, - fontIncrease, - fontSize, - cellPhone, - reShare, - tag, - repeatOne, - repeatAll, - outlineStar, - solidStar, - calculator, - directions, - target, - library, - phoneBook, - memo, - microphone, - postUpdate, - backToWindow, - fullScreen, - newFolder, - calendarReply, - unSyncFolder = 57821, - reportHacked, - syncFolder, - blockContact, - switchApps, - addFriend, - touchPointer, - goToStart, - zeroBars, - oneBar, - twoBars, - threeBars, - fourBars, - scan = 58004, - preview, - globalNavigationButton = 59136, - share = 59181, - print = 59209, - xboxOneConsole = 59792, - } - export class SymbolIcon implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IIconElement, ISymbolIcon { - // constructor(symbol: Symbol); - // constructor(); - constructor(symbol: Symbol) {} - - symbol: Symbol = Symbol.emoji; - static symbolProperty: DependencyProperty = null; - foreground: Media.Brush = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SymbolIcon.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SymbolIcon.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SymbolIcon.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SymbolIcon.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SymbolIcon.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SymbolIcon.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SymbolIcon.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function SymbolIcon.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function SymbolIcon.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function SymbolIcon.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function SymbolIcon.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function SymbolIcon.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function SymbolIcon.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function SymbolIcon.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function SymbolIcon.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function SymbolIcon.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function SymbolIcon.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function SymbolIcon.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function SymbolIcon.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function SymbolIcon.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function SymbolIcon.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function SymbolIcon.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SymbolIcon.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SymbolIcon.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function SymbolIcon.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function SymbolIcon.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function SymbolIcon.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function SymbolIcon.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function SymbolIcon.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function SymbolIcon.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function SymbolIcon.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function SymbolIcon.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SymbolIcon.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SymbolIcon.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function SymbolIcon.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function SymbolIcon.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function SymbolIcon.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function SymbolIcon.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SymbolIcon.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function SymbolIcon.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function SymbolIcon.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function SymbolIcon.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SymbolIcon::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class SymbolIconSource implements IDependencyObject, IDependencyObject2, IIconSource, ISymbolIconSource { - // constructor(); - symbol: Symbol = Symbol.emoji; - static symbolProperty: DependencyProperty = null; - foreground: Media.Brush; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SymbolIconSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SymbolIconSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SymbolIconSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SymbolIconSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SymbolIconSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SymbolIconSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SymbolIconSource.unregisterPropertyChangedCallback'); - } - - } - export class TextBlock implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, ITextBlock, ITextBlock2, ITextBlock3, ITextBlock4, ITextBlock5, ITextBlock6, ITextBlock7 { - // constructor(); - textWrapping: TextWrapping = TextWrapping.noWrap; - textTrimming: TextTrimming = TextTrimming.none; - textAlignment: TextAlignment = TextAlignment.left; - text: string = ''; - padding: Thickness = null; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - lineStackingStrategy: LineStackingStrategy = LineStackingStrategy.maxHeight; - lineHeight: number = 0; - characterSpacing: number = 0; - isTextSelectionEnabled: Boolean = false; - selectedText: string = ''; - selectionEnd: Documents.TextPointer; - selectionStart: Documents.TextPointer; - baselineOffset: number = 0; - contentEnd: Documents.TextPointer = null; - contentStart: Documents.TextPointer = null; - inlines: Documents.InlineCollection = [ ]; - textReadingOrder: TextReadingOrder = TextReadingOrder.detectFromContent; - textLineBounds: TextLineBounds = TextLineBounds.full; - selectionHighlightColor: Media.SolidColorBrush = null; - opticalMarginAlignment: OpticalMarginAlignment = OpticalMarginAlignment.none; - maxLines: number = 0; - isColorFontEnabled: Boolean = true; - isTextScaleFactorEnabled: Boolean = true; - textDecorations: Text.TextDecorations = TextDecorations.none; - horizontalTextAlignment: TextAlignment = TextAlignment.left; - isTextTrimmed: Boolean = false; - textHighlighters: Documents.TextHighlighter[] = [ ]; - selectionFlyout: Primitives.FlyoutBase = null; - static characterSpacingProperty: DependencyProperty = null; - static fontFamilyProperty: DependencyProperty = null; - static fontSizeProperty: DependencyProperty = null; - static fontStretchProperty: DependencyProperty = null; - static fontStyleProperty: DependencyProperty = null; - static fontWeightProperty: DependencyProperty = null; - static foregroundProperty: DependencyProperty = null; - static isTextSelectionEnabledProperty: DependencyProperty = null; - static lineHeightProperty: DependencyProperty = null; - static lineStackingStrategyProperty: DependencyProperty = null; - static paddingProperty: DependencyProperty = null; - static selectedTextProperty: DependencyProperty = null; - static textAlignmentProperty: DependencyProperty = null; - static textProperty: DependencyProperty = null; - static textTrimmingProperty: DependencyProperty = null; - static textWrappingProperty: DependencyProperty = null; - static isColorFontEnabledProperty: DependencyProperty = null; - static maxLinesProperty: DependencyProperty = null; - static opticalMarginAlignmentProperty: DependencyProperty = null; - static selectionHighlightColorProperty: DependencyProperty = null; - static textLineBoundsProperty: DependencyProperty = null; - static textReadingOrderProperty: DependencyProperty = null; - static isTextScaleFactorEnabledProperty: DependencyProperty = null; - static textDecorationsProperty: DependencyProperty = null; - static horizontalTextAlignmentProperty: DependencyProperty = null; - static isTextTrimmedProperty: DependencyProperty = null; - static selectionFlyoutProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase = null; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBlock.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TextBlock.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TextBlock.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBlock.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBlock.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TextBlock.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TextBlock.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TextBlock.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TextBlock.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TextBlock.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TextBlock.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TextBlock.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TextBlock.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TextBlock.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TextBlock.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TextBlock.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TextBlock.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TextBlock.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TextBlock.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TextBlock.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TextBlock.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TextBlock.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TextBlock.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TextBlock.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TextBlock.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TextBlock.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TextBlock.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TextBlock.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBlock.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TextBlock.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TextBlock.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TextBlock.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TextBlock.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TextBlock.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TextBlock.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TextBlock.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TextBlock.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TextBlock.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TextBlock.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TextBlock.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TextBlock.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TextBlock.goToElementStateCore'); - } - - selectAll(): void { - console.warn('shimmed function TextBlock.selectAll'); - } - - select(start: Documents.TextPointer, end: Documents.TextPointer): void { - console.warn('shimmed function TextBlock.select'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TextBlock.focus'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function TextBlock.getAlphaMask'); - } - - copySelectionToClipboard(): void { - console.warn('shimmed function TextBlock.copySelectionToClipboard'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TextBlock::addEventListener: ${name}`); - switch (name) { - case "contextmenuopening": // ContextMenuOpeningEventHandler - case "selectionchanged": // RoutedEventHandler - case "istexttrimmedchanged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TextBox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ITextBox, ITextBox2, ITextBox3, ITextBox4, ITextBox5, ITextBox6, ITextBox7, ITextBox8 { - // constructor(); - textWrapping: TextWrapping = TextWrapping.noWrap; - textAlignment: TextAlignment = TextAlignment.detectFromContent; - text: string = ''; - selectionStart: number = 0; - selectionLength: number = 0; - selectedText: string = ''; - maxLength: number = 0; - isTextPredictionEnabled: Boolean = true; - isSpellCheckEnabled: Boolean = true; - isReadOnly: Boolean = false; - inputScope: Input.InputScope; - acceptsReturn: Boolean = false; - isColorFontEnabled: Boolean = true; - placeholderText: string = ''; - preventKeyboardDisplayOnProgrammaticFocus: Boolean = false; - selectionHighlightColor: Media.SolidColorBrush = null; - headerTemplate: DataTemplate; - header: any; - desiredCandidateWindowAlignment: CandidateWindowAlignment = CandidateWindowAlignment.default; - textReadingOrder: TextReadingOrder = TextReadingOrder.detectFromContent; - selectionHighlightColorWhenNotFocused: Media.SolidColorBrush = null; - placeholderForeground: Media.Brush; - horizontalTextAlignment: TextAlignment = TextAlignment.detectFromContent; - characterCasing: CharacterCasing = CharacterCasing.normal; - isHandwritingViewEnabled: Boolean = true; - handwritingView: HandwritingView = null; - selectionFlyout: Primitives.FlyoutBase; - description: any; - canPasteClipboardContent: Boolean = true; - canRedo: Boolean = false; - canUndo: Boolean = false; - proofingMenuFlyout: Primitives.FlyoutBase = null; - static textWrappingProperty: DependencyProperty = null; - static textProperty: DependencyProperty = null; - static textAlignmentProperty: DependencyProperty = null; - static maxLengthProperty: DependencyProperty = null; - static isTextPredictionEnabledProperty: DependencyProperty = null; - static isSpellCheckEnabledProperty: DependencyProperty = null; - static isReadOnlyProperty: DependencyProperty = null; - static inputScopeProperty: DependencyProperty = null; - static acceptsReturnProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static selectionHighlightColorProperty: DependencyProperty = null; - static preventKeyboardDisplayOnProgrammaticFocusProperty: DependencyProperty = null; - static placeholderTextProperty: DependencyProperty = null; - static isColorFontEnabledProperty: DependencyProperty = null; - static desiredCandidateWindowAlignmentProperty: DependencyProperty = null; - static textReadingOrderProperty: DependencyProperty = null; - static selectionHighlightColorWhenNotFocusedProperty: DependencyProperty = null; - static placeholderForegroundProperty: DependencyProperty = null; - static horizontalTextAlignmentProperty: DependencyProperty = null; - static characterCasingProperty: DependencyProperty = null; - static isHandwritingViewEnabledProperty: DependencyProperty = null; - static handwritingViewProperty: DependencyProperty = null; - static selectionFlyoutProperty: DependencyProperty = null; - static proofingMenuFlyoutProperty: DependencyProperty = null; - static descriptionProperty: DependencyProperty = null; - static canUndoProperty: DependencyProperty = null; - static canRedoProperty: DependencyProperty = null; - static canPasteClipboardContentProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TextBox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TextBox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextBox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TextBox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TextBox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TextBox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TextBox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TextBox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TextBox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TextBox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TextBox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TextBox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TextBox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TextBox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TextBox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TextBox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TextBox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TextBox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TextBox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TextBox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TextBox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TextBox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TextBox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TextBox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TextBox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TextBox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TextBox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TextBox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TextBox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TextBox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TextBox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TextBox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TextBox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TextBox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TextBox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TextBox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TextBox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TextBox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TextBox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TextBox.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function TextBox.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TextBox.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function TextBox.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function TextBox.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function TextBox.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function TextBox.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function TextBox.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function TextBox.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function TextBox.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function TextBox.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function TextBox.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function TextBox.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function TextBox.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TextBox.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TextBox.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TextBox.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TextBox.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function TextBox.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function TextBox.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function TextBox.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function TextBox.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TextBox.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function TextBox.onCharacterReceived'); - } - - select(start: number, length: number): void { - console.warn('shimmed function TextBox.select'); - } - - selectAll(): void { - console.warn('shimmed function TextBox.selectAll'); - } - - getRectFromCharacterIndex(charIndex: number, trailingEdge: Boolean): Foundation.Rect { - throw new Error('shimmed function TextBox.getRectFromCharacterIndex'); - } - - getLinguisticAlternativesAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TextBox.getLinguisticAlternativesAsync'); - } - - undo(): void { - console.warn('shimmed function TextBox.undo'); - } - - redo(): void { - console.warn('shimmed function TextBox.redo'); - } - - pasteFromClipboard(): void { - console.warn('shimmed function TextBox.pasteFromClipboard'); - } - - copySelectionToClipboard(): void { - console.warn('shimmed function TextBox.copySelectionToClipboard'); - } - - cutSelectionToClipboard(): void { - console.warn('shimmed function TextBox.cutSelectionToClipboard'); - } - - clearUndoRedoHistory(): void { - console.warn('shimmed function TextBox.clearUndoRedoHistory'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TextBox::addEventListener: ${name}`); - switch (name) { - case "contextmenuopening": // ContextMenuOpeningEventHandler - case "selectionchanged": // RoutedEventHandler - case "textchanged": // TextChangedEventHandler - case "paste": // TextControlPasteEventHandler - case "candidatewindowboundschanged": // Foundation.TypedEventHandler - case "textchanging": // Foundation.TypedEventHandler - case "textcompositionchanged": // Foundation.TypedEventHandler - case "textcompositionended": // Foundation.TypedEventHandler - case "textcompositionstarted": // Foundation.TypedEventHandler - case "beforetextchanging": // Foundation.TypedEventHandler - case "copyingtoclipboard": // Foundation.TypedEventHandler - case "cuttingtoclipboard": // Foundation.TypedEventHandler - case "selectionchanging": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TextBoxBeforeTextChangingEventArgs implements ITextBoxBeforeTextChangingEventArgs { - cancel: Boolean; - newText: string; - - } - export class TextBoxSelectionChangingEventArgs implements ITextBoxSelectionChangingEventArgs { - cancel: Boolean; - selectionLength: number; - selectionStart: number; - - } - export class TextBoxTextChangingEventArgs implements ITextBoxTextChangingEventArgs, ITextBoxTextChangingEventArgs2 { - isContentChanging: Boolean; - - } - export class TextChangedEventArgs implements IRoutedEventArgs, ITextChangedEventArgs { - originalSource: any; - - } - export type TextChangedEventHandler = (e: TextChangedEventArgs) => void; - export class TextCommandBarFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, ICommandBarFlyout, ITextCommandBarFlyout { - // constructor(); - primaryCommands: ICommandBarElement[] = [ ]; - secondaryCommands: ICommandBarElement[] = [ ]; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.top; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = false; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = false; - isConstrainedToRootBounds: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextCommandBarFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TextCommandBarFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TextCommandBarFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextCommandBarFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextCommandBarFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TextCommandBarFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TextCommandBarFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function TextCommandBarFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function TextCommandBarFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TextCommandBarFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function TextCommandBarFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function TextCommandBarFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TextCommandBarFlyout.onProcessKeyboardAccelerators'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TextCommandBarFlyout::addEventListener: ${name}`); - switch (name) { - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class TextCompositionChangedEventArgs implements ITextCompositionChangedEventArgs { - length: number; - startIndex: number; - - } - export class TextCompositionEndedEventArgs implements ITextCompositionEndedEventArgs { - length: number; - startIndex: number; - - } - export class TextCompositionStartedEventArgs implements ITextCompositionStartedEventArgs { - length: number; - startIndex: number; - - } - export class TextControlCopyingToClipboardEventArgs implements ITextControlCopyingToClipboardEventArgs { - handled: Boolean; - - } - export class TextControlCuttingToClipboardEventArgs implements ITextControlCuttingToClipboardEventArgs { - handled: Boolean; - - } - export class TextControlPasteEventArgs implements ITextControlPasteEventArgs { - handled: Boolean; - - } - export type TextControlPasteEventHandler = (e: TextControlPasteEventArgs) => void; - export class TimePickedEventArgs implements IDependencyObject, IDependencyObject2, ITimePickedEventArgs { - // constructor(); - newTime: number = 0; - oldTime: number = 0; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickedEventArgs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TimePickedEventArgs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TimePickedEventArgs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickedEventArgs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickedEventArgs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TimePickedEventArgs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TimePickedEventArgs.unregisterPropertyChangedCallback'); - } - - } - export class TimePicker implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ITimePicker, ITimePicker2, ITimePicker3 { - // constructor(); - time: number = -0.0001; - minuteIncrement: number = 1; - headerTemplate: DataTemplate; - header: any; - clockIdentifier: string = '24HourClock'; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - selectedTime: number | null; - static clockIdentifierProperty: DependencyProperty = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static minuteIncrementProperty: DependencyProperty = null; - static timeProperty: DependencyProperty = null; - static lightDismissOverlayModeProperty: DependencyProperty = null; - static selectedTimeProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePicker.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TimePicker.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TimePicker.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePicker.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePicker.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TimePicker.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TimePicker.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TimePicker.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TimePicker.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TimePicker.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TimePicker.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TimePicker.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TimePicker.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TimePicker.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TimePicker.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TimePicker.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TimePicker.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TimePicker.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TimePicker.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TimePicker.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TimePicker.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TimePicker.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TimePicker.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TimePicker.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TimePicker.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TimePicker.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TimePicker.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TimePicker.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePicker.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TimePicker.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TimePicker.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TimePicker.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TimePicker.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TimePicker.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TimePicker.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TimePicker.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TimePicker.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TimePicker.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TimePicker.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TimePicker.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TimePicker.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TimePicker.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function TimePicker.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TimePicker.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function TimePicker.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function TimePicker.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TimePicker.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TimePicker.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function TimePicker.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function TimePicker.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function TimePicker.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function TimePicker.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function TimePicker.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TimePicker::addEventListener: ${name}`); - switch (name) { - case "timechanged": // /* System.EventHandler`1[[Windows.UI.Xaml.Controls.TimePickerValueChangedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "selectedtimechanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TimePickerFlyout implements IDependencyObject, IDependencyObject2, Primitives.IFlyoutBase, Primitives.IFlyoutBase2, Primitives.IFlyoutBase3, Primitives.IFlyoutBase4, Primitives.IFlyoutBase5, Primitives.IFlyoutBase6, Primitives.IFlyoutBaseOverrides, Primitives.IFlyoutBaseOverrides4, Primitives.IPickerFlyoutBase, Primitives.IPickerFlyoutBaseOverrides, ITimePickerFlyout { - // constructor(); - time: number = 68640000; - minuteIncrement: number = 1; - clockIdentifier: string = '24HourClock'; - static clockIdentifierProperty: DependencyProperty = null; - static minuteIncrementProperty: DependencyProperty = null; - static timeProperty: DependencyProperty = null; - placement: Primitives.FlyoutPlacementMode = FlyoutPlacementMode.right; - lightDismissOverlayMode: LightDismissOverlayMode = LightDismissOverlayMode.auto; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - target: FrameworkElement; - overlayInputPassThroughElement: DependencyObject; - showMode: Primitives.FlyoutShowMode = FlyoutShowMode.standard; - areOpenCloseAnimationsEnabled: Boolean = true; - inputDevicePrefersPrimaryCommands: Boolean = false; - isOpen: Boolean = false; - xamlRoot: XamlRoot; - shouldConstrainToRootBounds: Boolean = false; - isConstrainedToRootBounds: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyout.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TimePickerFlyout.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TimePickerFlyout.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyout.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyout.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TimePickerFlyout.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TimePickerFlyout.unregisterPropertyChangedCallback'); - } - - showAt(placementTarget: FrameworkElement): void { - console.warn('shimmed function TimePickerFlyout.showAt'); - } - - hide(): void { - console.warn('shimmed function TimePickerFlyout.hide'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TimePickerFlyout.tryInvokeKeyboardAccelerator'); - } - - showAt_1(placementTarget: DependencyObject, showOptions: Primitives.FlyoutShowOptions): void { - console.warn('shimmed function TimePickerFlyout.showAt_1'); - } - - createPresenter(): Control { - throw new Error('shimmed function TimePickerFlyout.createPresenter'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TimePickerFlyout.onProcessKeyboardAccelerators'); - } - - onConfirmed(): void { - console.warn('shimmed function TimePickerFlyout.onConfirmed'); - } - - shouldShowConfirmationButtons(): Boolean { - throw new Error('shimmed function TimePickerFlyout.shouldShowConfirmationButtons'); - } - - showAtAsync(target: FrameworkElement): Foundation.IAsyncOperation { - throw new Error('shimmed function TimePickerFlyout.showAtAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TimePickerFlyout::addEventListener: ${name}`); - switch (name) { - case "timepicked": // Foundation.TypedEventHandler - case "closed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opened": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "opening": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "closing": // Foundation.TypedEventHandler - break; - } - - } - } - export class TimePickerFlyoutPresenter implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ITimePickerFlyoutPresenter, ITimePickerFlyoutPresenter2 { - isDefaultShadowEnabled: Boolean; - static isDefaultShadowEnabledProperty: DependencyProperty; - padding: Thickness; - isTabStop: Boolean; - isEnabled: Boolean; - horizontalContentAlignment: HorizontalAlignment; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - tabIndex: number; - characterSpacing: number; - borderThickness: Thickness; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment; - template: ControlTemplate; - focusState: FocusState; - isTextScaleFactorEnabled: Boolean; - useSystemFocusVisuals: Boolean; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer; - isFocusEngagementEnabled: Boolean; - isFocusEngaged: Boolean; - elementSoundMode: ElementSoundMode; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius; - backgroundSizing: BackgroundSizing; - defaultStyleKey: any; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyoutPresenter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TimePickerFlyoutPresenter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TimePickerFlyoutPresenter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyoutPresenter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimePickerFlyoutPresenter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TimePickerFlyoutPresenter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TimePickerFlyoutPresenter.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TimePickerFlyoutPresenter.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TimePickerFlyoutPresenter.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenter.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TimePickerFlyoutPresenter.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TimePickerFlyoutPresenter.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TimePickerFlyoutPresenter.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TimePickerFlyoutPresenter.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenter.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TimePickerFlyoutPresenter.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TimePickerFlyoutPresenter.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TimePickerFlyoutPresenter.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TimePickerFlyoutPresenter.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TimePickerFlyoutPresenter.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TimePickerFlyoutPresenter.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TimePickerFlyoutPresenter.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TimePickerFlyoutPresenter.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TimePickerFlyoutPresenter.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TimePickerFlyoutPresenter.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TimePickerFlyoutPresenter.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TimePickerFlyoutPresenter.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TimePickerFlyoutPresenter.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TimePickerFlyoutPresenter.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenter.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenter.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TimePickerFlyoutPresenter.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function TimePickerFlyoutPresenter.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function TimePickerFlyoutPresenter.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function TimePickerFlyoutPresenter.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TimePickerFlyoutPresenter::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TimePickerSelectedValueChangedEventArgs implements ITimePickerSelectedValueChangedEventArgs { - newTime: number | null; - oldTime: number | null; - - } - export class TimePickerValueChangedEventArgs implements ITimePickerValueChangedEventArgs { - newTime: number; - oldTime: number; - - } - export class ToggleMenuFlyoutItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IMenuFlyoutItemBase, IMenuFlyoutItem, IMenuFlyoutItem2, IMenuFlyoutItem3, IToggleMenuFlyoutItem { - // constructor(); - isChecked: Boolean = false; - static isCheckedProperty: DependencyProperty = null; - text: string = ''; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - icon: IconElement; - keyboardAcceleratorTextOverride: string = ''; - templateSettings: Primitives.MenuFlyoutItemTemplateSettings; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleMenuFlyoutItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleMenuFlyoutItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleMenuFlyoutItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleMenuFlyoutItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleMenuFlyoutItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleMenuFlyoutItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleMenuFlyoutItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ToggleMenuFlyoutItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ToggleMenuFlyoutItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ToggleMenuFlyoutItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ToggleMenuFlyoutItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ToggleMenuFlyoutItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ToggleMenuFlyoutItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ToggleMenuFlyoutItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ToggleMenuFlyoutItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleMenuFlyoutItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleMenuFlyoutItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleMenuFlyoutItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ToggleMenuFlyoutItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleMenuFlyoutItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleMenuFlyoutItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleMenuFlyoutItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ToggleMenuFlyoutItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ToggleMenuFlyoutItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ToggleMenuFlyoutItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleMenuFlyoutItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleMenuFlyoutItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ToggleMenuFlyoutItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ToggleMenuFlyoutItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ToggleMenuFlyoutItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ToggleMenuFlyoutItem.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ToggleMenuFlyoutItem::addEventListener: ${name}`); - switch (name) { - case "click": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ToggleSplitButton implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, ISplitButton, IToggleSplitButton { - // constructor(); - isChecked: Boolean = false; - flyout: Primitives.FlyoutBase; - commandParameter: any; - command: /* System.Windows.Input.ICommand */ any; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'T', 'o', 'g', 'g', 'l', 'e', 'S', 'p', 'l', 'i', 't', 'B', 'u', 't', 't', 'o', 'n' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSplitButton.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleSplitButton.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleSplitButton.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSplitButton.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSplitButton.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleSplitButton.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleSplitButton.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ToggleSplitButton.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ToggleSplitButton.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ToggleSplitButton.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ToggleSplitButton.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ToggleSplitButton.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ToggleSplitButton.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ToggleSplitButton.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ToggleSplitButton.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ToggleSplitButton.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ToggleSplitButton.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ToggleSplitButton.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ToggleSplitButton.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ToggleSplitButton.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ToggleSplitButton.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ToggleSplitButton.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleSplitButton.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleSplitButton.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleSplitButton.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSplitButton.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ToggleSplitButton.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ToggleSplitButton.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSplitButton.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleSplitButton.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleSplitButton.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ToggleSplitButton.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ToggleSplitButton.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ToggleSplitButton.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ToggleSplitButton.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleSplitButton.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleSplitButton.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ToggleSplitButton.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ToggleSplitButton.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ToggleSplitButton.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ToggleSplitButton.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ToggleSplitButton.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ToggleSplitButton.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ToggleSplitButton.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ToggleSplitButton.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ToggleSplitButton.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ToggleSplitButton.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ToggleSplitButton::addEventListener: ${name}`); - switch (name) { - case "ischeckedchanged": // Foundation.TypedEventHandler - case "click": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ToggleSplitButtonAutomationPeer implements IDependencyObject, IDependencyObject2, Automation.Peers.IAutomationPeer, Automation.Peers.IAutomationPeer2, Automation.Peers.IAutomationPeer3, Automation.Peers.IAutomationPeer4, Automation.Peers.IAutomationPeer5, Automation.Peers.IAutomationPeer6, Automation.Peers.IAutomationPeer7, Automation.Peers.IAutomationPeer8, Automation.Peers.IAutomationPeer9, Automation.Peers.IAutomationPeerProtected, Automation.Peers.IAutomationPeerOverrides, Automation.Peers.IAutomationPeerOverrides2, Automation.Peers.IAutomationPeerOverrides3, Automation.Peers.IAutomationPeerOverrides4, Automation.Peers.IAutomationPeerOverrides5, Automation.Peers.IAutomationPeerOverrides6, Automation.Peers.IAutomationPeerOverrides8, Automation.Peers.IAutomationPeerOverrides9, Automation.Peers.IFrameworkElementAutomationPeer, IToggleSplitButtonAutomationPeer, Automation.Provider.IExpandCollapseProvider, Automation.Provider.IToggleProvider { - // constructor(owner: ToggleSplitButton); - constructor(owner: ToggleSplitButton) {} - - expandCollapseState: Automation.ExpandCollapseState; - toggleState: Automation.ToggleState; - owner: UIElement; - eventsSource: Automation.Peers.AutomationPeer; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.unregisterPropertyChangedCallback'); - } - - getPattern(patternInterface: Automation.Peers.PatternInterface): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getPattern'); - } - - raiseAutomationEvent(eventId: Automation.Peers.AutomationEvents): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.raiseAutomationEvent'); - } - - raisePropertyChangedEvent(automationProperty: Automation.AutomationProperty, oldValue: any, newValue: any): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.raisePropertyChangedEvent'); - } - - getAcceleratorKey(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAcceleratorKey'); - } - - getAccessKey(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAccessKey'); - } - - getAutomationControlType(): Automation.Peers.AutomationControlType { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAutomationControlType'); - } - - getAutomationId(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAutomationId'); - } - - getBoundingRectangle(): Foundation.Rect { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getBoundingRectangle'); - } - - getChildren(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getChildren'); - } - - getClassName(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getClassName'); - } - - getClickablePoint(): Foundation.Point { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getClickablePoint'); - } - - getHelpText(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getHelpText'); - } - - getItemStatus(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getItemStatus'); - } - - getItemType(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getItemType'); - } - - getLabeledBy(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLabeledBy'); - } - - getLocalizedControlType(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLocalizedControlType'); - } - - getName(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getName'); - } - - getOrientation(): Automation.Peers.AutomationOrientation { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getOrientation'); - } - - hasKeyboardFocus(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.hasKeyboardFocus'); - } - - isContentElement(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isContentElement'); - } - - isControlElement(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isControlElement'); - } - - isEnabled(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isEnabled'); - } - - isKeyboardFocusable(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isKeyboardFocusable'); - } - - isOffscreen(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isOffscreen'); - } - - isPassword(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isPassword'); - } - - isRequiredForForm(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isRequiredForForm'); - } - - setFocus(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.setFocus'); - } - - getParent(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getParent'); - } - - invalidatePeer(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.invalidatePeer'); - } - - getPeerFromPoint(point: Foundation.Point): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getPeerFromPoint'); - } - - getLiveSetting(): Automation.Peers.AutomationLiveSetting { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLiveSetting'); - } - - navigate(direction: Automation.Peers.AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.navigate'); - } - - getElementFromPoint(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getElementFromPoint'); - } - - getFocusedElement(): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getFocusedElement'); - } - - showContextMenu(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.showContextMenu'); - } - - getControlledPeers(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getControlledPeers'); - } - - getAnnotations(): Automation.Peers.AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAnnotations'); - } - - setParent(peer: Automation.Peers.AutomationPeer): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.setParent'); - } - - raiseTextEditTextChangedEvent(automationTextEditChangeType: Automation.AutomationTextEditChangeType, changedData: string[]): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.raiseTextEditTextChangedEvent'); - } - - getPositionInSet(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getPositionInSet'); - } - - getSizeOfSet(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getSizeOfSet'); - } - - getLevel(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLevel'); - } - - raiseStructureChangedEvent(structureChangeType: Automation.Peers.AutomationStructureChangeType, child: Automation.Peers.AutomationPeer): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.raiseStructureChangedEvent'); - } - - getLandmarkType(): Automation.Peers.AutomationLandmarkType { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLandmarkType'); - } - - getLocalizedLandmarkType(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLocalizedLandmarkType'); - } - - isPeripheral(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isPeripheral'); - } - - isDataValidForForm(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isDataValidForForm'); - } - - getFullDescription(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getFullDescription'); - } - - getCulture(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getCulture'); - } - - raiseNotificationEvent(notificationKind: Automation.Peers.AutomationNotificationKind, notificationProcessing: Automation.Peers.AutomationNotificationProcessing, displayString: string, activityId: string): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.raiseNotificationEvent'); - } - - getHeadingLevel(): Automation.Peers.AutomationHeadingLevel { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getHeadingLevel'); - } - - isDialog(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isDialog'); - } - - peerFromProvider(provider: Automation.Provider.IRawElementProviderSimple): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.peerFromProvider'); - } - - providerFromPeer(peer: Automation.Peers.AutomationPeer): Automation.Provider.IRawElementProviderSimple { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.providerFromPeer'); - } - - getPatternCore(patternInterface: Automation.Peers.PatternInterface): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getPatternCore'); - } - - getAcceleratorKeyCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAcceleratorKeyCore'); - } - - getAccessKeyCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAccessKeyCore'); - } - - getAutomationControlTypeCore(): Automation.Peers.AutomationControlType { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAutomationControlTypeCore'); - } - - getAutomationIdCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAutomationIdCore'); - } - - getBoundingRectangleCore(): Foundation.Rect { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getBoundingRectangleCore'); - } - - getChildrenCore(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getChildrenCore'); - } - - getClassNameCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getClassNameCore'); - } - - getClickablePointCore(): Foundation.Point { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getClickablePointCore'); - } - - getHelpTextCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getHelpTextCore'); - } - - getItemStatusCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getItemStatusCore'); - } - - getItemTypeCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getItemTypeCore'); - } - - getLabeledByCore(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLabeledByCore'); - } - - getLocalizedControlTypeCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLocalizedControlTypeCore'); - } - - getNameCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getNameCore'); - } - - getOrientationCore(): Automation.Peers.AutomationOrientation { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getOrientationCore'); - } - - hasKeyboardFocusCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.hasKeyboardFocusCore'); - } - - isContentElementCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isContentElementCore'); - } - - isControlElementCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isControlElementCore'); - } - - isEnabledCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isEnabledCore'); - } - - isKeyboardFocusableCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isKeyboardFocusableCore'); - } - - isOffscreenCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isOffscreenCore'); - } - - isPasswordCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isPasswordCore'); - } - - isRequiredForFormCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isRequiredForFormCore'); - } - - setFocusCore(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.setFocusCore'); - } - - getPeerFromPointCore(point: Foundation.Point): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getPeerFromPointCore'); - } - - getLiveSettingCore(): Automation.Peers.AutomationLiveSetting { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLiveSettingCore'); - } - - showContextMenuCore(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.showContextMenuCore'); - } - - getControlledPeersCore(): Automation.Peers.AutomationPeer[] { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getControlledPeersCore'); - } - - navigateCore(direction: Automation.Peers.AutomationNavigationDirection): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.navigateCore'); - } - - getElementFromPointCore(pointInWindowCoordinates: Foundation.Point): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getElementFromPointCore'); - } - - getFocusedElementCore(): any { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getFocusedElementCore'); - } - - getAnnotationsCore(): Automation.Peers.AutomationPeerAnnotation[] { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getAnnotationsCore'); - } - - getPositionInSetCore(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getPositionInSetCore'); - } - - getSizeOfSetCore(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getSizeOfSetCore'); - } - - getLevelCore(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLevelCore'); - } - - getLandmarkTypeCore(): Automation.Peers.AutomationLandmarkType { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLandmarkTypeCore'); - } - - getLocalizedLandmarkTypeCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getLocalizedLandmarkTypeCore'); - } - - isPeripheralCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isPeripheralCore'); - } - - isDataValidForFormCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isDataValidForFormCore'); - } - - getFullDescriptionCore(): string { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getFullDescriptionCore'); - } - - getDescribedByCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getDescribedByCore'); - } - - getFlowsToCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getFlowsToCore'); - } - - getFlowsFromCore(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getFlowsFromCore'); - } - - getCultureCore(): number { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getCultureCore'); - } - - getHeadingLevelCore(): Automation.Peers.AutomationHeadingLevel { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.getHeadingLevelCore'); - } - - isDialogCore(): Boolean { - throw new Error('shimmed function ToggleSplitButtonAutomationPeer.isDialogCore'); - } - - collapse(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.collapse'); - } - - expand(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.expand'); - } - - toggle(): void { - console.warn('shimmed function ToggleSplitButtonAutomationPeer.toggle'); - } - - } - export class ToggleSplitButtonIsCheckedChangedEventArgs implements IToggleSplitButtonIsCheckedChangedEventArgs { - } - export class ToggleSwitch implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IToggleSwitch, IToggleSwitchOverrides { - // constructor(); - onContentTemplate: DataTemplate; - onContent: any = [ 'O', 'n' ]; - offContentTemplate: DataTemplate; - offContent: any = [ 'O', 'f', 'f' ]; - isOn: Boolean = false; - headerTemplate: DataTemplate; - header: any; - templateSettings: Primitives.ToggleSwitchTemplateSettings = null; - static headerProperty: DependencyProperty = null; - static headerTemplateProperty: DependencyProperty = null; - static isOnProperty: DependencyProperty = null; - static offContentProperty: DependencyProperty = null; - static offContentTemplateProperty: DependencyProperty = null; - static onContentProperty: DependencyProperty = null; - static onContentTemplateProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitch.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToggleSwitch.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToggleSwitch.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitch.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToggleSwitch.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToggleSwitch.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToggleSwitch.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ToggleSwitch.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ToggleSwitch.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ToggleSwitch.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ToggleSwitch.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ToggleSwitch.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ToggleSwitch.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ToggleSwitch.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ToggleSwitch.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ToggleSwitch.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ToggleSwitch.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ToggleSwitch.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ToggleSwitch.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ToggleSwitch.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ToggleSwitch.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ToggleSwitch.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleSwitch.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleSwitch.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToggleSwitch.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToggleSwitch.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ToggleSwitch.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ToggleSwitch.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToggleSwitch.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToggleSwitch.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleSwitch.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToggleSwitch.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ToggleSwitch.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ToggleSwitch.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ToggleSwitch.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ToggleSwitch.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleSwitch.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToggleSwitch.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ToggleSwitch.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ToggleSwitch.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ToggleSwitch.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ToggleSwitch.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ToggleSwitch.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ToggleSwitch.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ToggleSwitch.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ToggleSwitch.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ToggleSwitch.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ToggleSwitch.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ToggleSwitch.onCharacterReceived'); - } - - onToggled(): void { - console.warn('shimmed function ToggleSwitch.onToggled'); - } - - onOnContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ToggleSwitch.onOnContentChanged'); - } - - onOffContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ToggleSwitch.onOffContentChanged'); - } - - onHeaderChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ToggleSwitch.onHeaderChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ToggleSwitch::addEventListener: ${name}`); - switch (name) { - case "toggled": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ToolTip implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, IToolTip, IToolTip2 { - // constructor(); - verticalOffset: number = 0; - placementTarget: UIElement; - placement: Primitives.PlacementMode = PlacementMode.top; - isOpen: Boolean = false; - horizontalOffset: number = 0; - templateSettings: Primitives.ToolTipTemplateSettings = null; - placementRect: Foundation.Rect | null; - static horizontalOffsetProperty: DependencyProperty = null; - static isOpenProperty: DependencyProperty = null; - static placementProperty: DependencyProperty = null; - static placementTargetProperty: DependencyProperty = null; - static verticalOffsetProperty: DependencyProperty = null; - static placementRectProperty: DependencyProperty = null; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToolTip.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ToolTip.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ToolTip.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToolTip.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ToolTip.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ToolTip.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ToolTip.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function ToolTip.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function ToolTip.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function ToolTip.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function ToolTip.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function ToolTip.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function ToolTip.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function ToolTip.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function ToolTip.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function ToolTip.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function ToolTip.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function ToolTip.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function ToolTip.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function ToolTip.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function ToolTip.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function ToolTip.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToolTip.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToolTip.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ToolTip.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function ToolTip.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ToolTip.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function ToolTip.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function ToolTip.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function ToolTip.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function ToolTip.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function ToolTip.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToolTip.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ToolTip.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function ToolTip.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function ToolTip.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function ToolTip.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function ToolTip.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToolTip.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function ToolTip.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function ToolTip.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function ToolTip.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function ToolTip.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ToolTip.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function ToolTip.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function ToolTip.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToolTip.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function ToolTip.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function ToolTip.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function ToolTip.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function ToolTip.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function ToolTip.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function ToolTip.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function ToolTip.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function ToolTip.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function ToolTip.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ToolTip::addEventListener: ${name}`); - switch (name) { - case "closed": // RoutedEventHandler - case "opened": // RoutedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class ToolTipService implements IToolTipService { - static placementProperty: DependencyProperty = null; - static placementTargetProperty: DependencyProperty = null; - static toolTipProperty: DependencyProperty = null; - - static getPlacement(element: DependencyObject): Primitives.PlacementMode { - throw new Error('shimmed function ToolTipService.getPlacement'); - } - - static setPlacement(element: DependencyObject, value: Primitives.PlacementMode): void { - console.warn('shimmed function ToolTipService.setPlacement'); - } - - static getPlacementTarget(element: DependencyObject): UIElement { - throw new Error('shimmed function ToolTipService.getPlacementTarget'); - } - - static setPlacementTarget(element: DependencyObject, value: UIElement): void { - console.warn('shimmed function ToolTipService.setPlacementTarget'); - } - - static getToolTip(element: DependencyObject): any { - throw new Error('shimmed function ToolTipService.getToolTip'); - } - - static setToolTip(element: DependencyObject, value: any): void { - console.warn('shimmed function ToolTipService.setToolTip'); - } - - } - export class TreeView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ITreeView, ITreeView2 { - // constructor(); - selectionMode: TreeViewSelectionMode = TreeViewSelectionMode.single; - rootNodes: TreeViewNode[] = [ ]; - selectedNodes: TreeViewNode[] = [ ]; - itemsSource: any; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - canReorderItems: Boolean = true; - canDragItems: Boolean = true; - static selectionModeProperty: DependencyProperty = null; - static canDragItemsProperty: DependencyProperty = null; - static canReorderItemsProperty: DependencyProperty = null; - static itemContainerStyleProperty: DependencyProperty = null; - static itemContainerStyleSelectorProperty: DependencyProperty = null; - static itemContainerTransitionsProperty: DependencyProperty = null; - static itemTemplateProperty: DependencyProperty = null; - static itemTemplateSelectorProperty: DependencyProperty = null; - static itemsSourceProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'T', 'r', 'e', 'e', 'V', 'i', 'e', 'w' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TreeView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TreeView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TreeView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TreeView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TreeView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TreeView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TreeView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TreeView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TreeView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TreeView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TreeView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TreeView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TreeView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TreeView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TreeView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TreeView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TreeView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TreeView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TreeView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TreeView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TreeView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TreeView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TreeView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TreeView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TreeView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TreeView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TreeView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TreeView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TreeView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TreeView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TreeView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TreeView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TreeView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TreeView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TreeView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TreeView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TreeView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TreeView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function TreeView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TreeView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function TreeView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function TreeView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function TreeView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function TreeView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function TreeView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function TreeView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function TreeView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function TreeView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function TreeView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function TreeView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function TreeView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TreeView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TreeView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function TreeView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function TreeView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function TreeView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function TreeView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function TreeView.onCharacterReceived'); - } - - expand(value: TreeViewNode): void { - console.warn('shimmed function TreeView.expand'); - } - - collapse(value: TreeViewNode): void { - console.warn('shimmed function TreeView.collapse'); - } - - selectAll(): void { - console.warn('shimmed function TreeView.selectAll'); - } - - nodeFromContainer(container: DependencyObject): TreeViewNode { - throw new Error('shimmed function TreeView.nodeFromContainer'); - } - - containerFromNode(node: TreeViewNode): DependencyObject { - throw new Error('shimmed function TreeView.containerFromNode'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function TreeView.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function TreeView.containerFromItem'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TreeView::addEventListener: ${name}`); - switch (name) { - case "collapsed": // Foundation.TypedEventHandler - case "expanding": // Foundation.TypedEventHandler - case "iteminvoked": // Foundation.TypedEventHandler - case "dragitemscompleted": // Foundation.TypedEventHandler - case "dragitemsstarting": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TreeViewCollapsedEventArgs implements ITreeViewCollapsedEventArgs, ITreeViewCollapsedEventArgs2 { - node: TreeViewNode; - item: any; - - } - export class TreeViewDragItemsCompletedEventArgs implements ITreeViewDragItemsCompletedEventArgs { - dropResult: ApplicationModel.DataTransfer.DataPackageOperation; - items: any[]; - - } - export class TreeViewDragItemsStartingEventArgs implements ITreeViewDragItemsStartingEventArgs { - cancel: Boolean; - data: ApplicationModel.DataTransfer.DataPackage; - items: any[]; - - } - export class TreeViewExpandingEventArgs implements ITreeViewExpandingEventArgs, ITreeViewExpandingEventArgs2 { - node: TreeViewNode; - item: any; - - } - export class TreeViewItem implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IContentControl, IContentControl2, IContentControlOverrides, Primitives.ISelectorItem, IListViewItem, ITreeViewItem, ITreeViewItem2 { - // constructor(); - isExpanded: Boolean = false; - glyphSize: number = 12; - glyphOpacity: number = 1; - glyphBrush: Media.Brush; - expandedGlyph: string = ''; - collapsedGlyph: string = ''; - treeViewItemTemplateSettings: TreeViewItemTemplateSettings = null; - itemsSource: any; - hasUnrealizedChildren: Boolean = false; - static collapsedGlyphProperty: DependencyProperty = null; - static expandedGlyphProperty: DependencyProperty = null; - static glyphBrushProperty: DependencyProperty = null; - static glyphOpacityProperty: DependencyProperty = null; - static glyphSizeProperty: DependencyProperty = null; - static isExpandedProperty: DependencyProperty = null; - static treeViewItemTemplateSettingsProperty: DependencyProperty = null; - static hasUnrealizedChildrenProperty: DependencyProperty = null; - static itemsSourceProperty: DependencyProperty = null; - templateSettings: Primitives.ListViewItemTemplateSettings = null; - isSelected: Boolean = false; - contentTransitions: Media.Animation.TransitionCollection = [ ]; - contentTemplateSelector: DataTemplateSelector; - contentTemplate: DataTemplate; - content: any; - contentTemplateRoot: UIElement; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'T', 'r', 'e', 'e', 'V', 'i', 'e', 'w', 'I', 't', 'e', 'm' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItem.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TreeViewItem.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TreeViewItem.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItem.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItem.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TreeViewItem.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TreeViewItem.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TreeViewItem.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TreeViewItem.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TreeViewItem.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TreeViewItem.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TreeViewItem.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TreeViewItem.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TreeViewItem.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TreeViewItem.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TreeViewItem.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TreeViewItem.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TreeViewItem.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TreeViewItem.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TreeViewItem.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TreeViewItem.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TreeViewItem.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TreeViewItem.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TreeViewItem.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TreeViewItem.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TreeViewItem.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TreeViewItem.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TreeViewItem.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewItem.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TreeViewItem.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TreeViewItem.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TreeViewItem.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TreeViewItem.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TreeViewItem.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TreeViewItem.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TreeViewItem.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TreeViewItem.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TreeViewItem.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TreeViewItem.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TreeViewItem.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TreeViewItem.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TreeViewItem.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function TreeViewItem.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TreeViewItem.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function TreeViewItem.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function TreeViewItem.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function TreeViewItem.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function TreeViewItem.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function TreeViewItem.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function TreeViewItem.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function TreeViewItem.onCharacterReceived'); - } - - onContentChanged(oldContent: any, newContent: any): void { - console.warn('shimmed function TreeViewItem.onContentChanged'); - } - - onContentTemplateChanged(oldContentTemplate: DataTemplate, newContentTemplate: DataTemplate): void { - console.warn('shimmed function TreeViewItem.onContentTemplateChanged'); - } - - onContentTemplateSelectorChanged(oldContentTemplateSelector: DataTemplateSelector, newContentTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function TreeViewItem.onContentTemplateSelectorChanged'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TreeViewItem::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TreeViewItemInvokedEventArgs implements ITreeViewItemInvokedEventArgs { - handled: Boolean; - invokedItem: any; - - } - export class TreeViewItemTemplateSettings implements IDependencyObject, IDependencyObject2, ITreeViewItemTemplateSettings { - // constructor(); - collapsedGlyphVisibility: Visibility = Visibility.collapsed; - dragItemsCount: number = 0; - expandedGlyphVisibility: Visibility = Visibility.collapsed; - indentation: Thickness = null; - static collapsedGlyphVisibilityProperty: DependencyProperty = null; - static dragItemsCountProperty: DependencyProperty = null; - static expandedGlyphVisibilityProperty: DependencyProperty = null; - static indentationProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItemTemplateSettings.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TreeViewItemTemplateSettings.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TreeViewItemTemplateSettings.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItemTemplateSettings.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewItemTemplateSettings.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TreeViewItemTemplateSettings.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TreeViewItemTemplateSettings.unregisterPropertyChangedCallback'); - } - - } - export class TreeViewList implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IItemsControl, IItemsControl2, IItemsControl3, IItemsControlOverrides, IItemContainerMapping, Primitives.ISelector, IListViewBase, IListViewBase2, IListViewBase3, IListViewBase4, IListViewBase5, IListViewBase6, ISemanticZoomInformation, IListView, ITreeViewList { - // constructor(); - selectionMode: ListViewSelectionMode = ListViewSelectionMode.single; - isSwipeEnabled: Boolean = true; - isItemClickEnabled: Boolean = false; - incrementalLoadingTrigger: IncrementalLoadingTrigger = IncrementalLoadingTrigger.edge; - incrementalLoadingThreshold: number = 0; - headerTransitions: Media.Animation.TransitionCollection = [ ]; - headerTemplate: DataTemplate; - header: any; - dataFetchSize: number = 3; - canReorderItems: Boolean = false; - canDragItems: Boolean = false; - selectedItems: any[] = [ ]; - showsScrollingPlaceholders: Boolean = true; - footerTransitions: Media.Animation.TransitionCollection = [ ]; - footerTemplate: DataTemplate; - footer: any; - reorderMode: ListViewReorderMode = ListViewReorderMode.disabled; - isMultiSelectCheckBoxEnabled: Boolean = true; - selectedRanges: Data.ItemIndexRange[] = [ ]; - singleSelectionFollowsFocus: Boolean = true; - semanticZoomOwner: SemanticZoom; - isZoomedInView: Boolean = true; - isActiveView: Boolean = false; - selectedValuePath: string = ''; - selectedValue: any; - selectedItem: any; - selectedIndex: number = -1; - isSynchronizedWithCurrentItem: Boolean | null; - itemsSource: any; - itemsPanel: ItemsPanelTemplate; - itemTemplateSelector: DataTemplateSelector; - itemTemplate: DataTemplate; - itemContainerTransitions: Media.Animation.TransitionCollection = [ ]; - itemContainerStyleSelector: StyleSelector; - itemContainerStyle: Style; - groupStyleSelector: GroupStyleSelector; - displayMemberPath: string = ''; - groupStyle: GroupStyle[] = [ ]; - isGrouping: Boolean = false; - itemContainerGenerator: ItemContainerGenerator = null; - items: ItemCollection = [ ]; - itemsPanelRoot: Panel; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewList.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TreeViewList.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TreeViewList.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewList.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewList.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TreeViewList.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TreeViewList.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TreeViewList.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TreeViewList.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TreeViewList.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TreeViewList.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TreeViewList.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TreeViewList.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TreeViewList.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TreeViewList.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TreeViewList.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TreeViewList.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TreeViewList.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TreeViewList.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TreeViewList.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TreeViewList.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TreeViewList.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TreeViewList.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TreeViewList.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TreeViewList.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TreeViewList.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TreeViewList.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TreeViewList.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TreeViewList.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TreeViewList.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TreeViewList.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TreeViewList.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TreeViewList.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TreeViewList.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TreeViewList.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TreeViewList.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TreeViewList.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TreeViewList.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TreeViewList.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TreeViewList.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TreeViewList.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TreeViewList.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function TreeViewList.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TreeViewList.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function TreeViewList.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function TreeViewList.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function TreeViewList.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function TreeViewList.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function TreeViewList.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function TreeViewList.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function TreeViewList.onCharacterReceived'); - } - - groupHeaderContainerFromItemContainer(itemContainer: DependencyObject): DependencyObject { - throw new Error('shimmed function TreeViewList.groupHeaderContainerFromItemContainer'); - } - - isItemItsOwnContainerOverride(item: any): Boolean { - throw new Error('shimmed function TreeViewList.isItemItsOwnContainerOverride'); - } - - getContainerForItemOverride(): DependencyObject { - throw new Error('shimmed function TreeViewList.getContainerForItemOverride'); - } - - clearContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function TreeViewList.clearContainerForItemOverride'); - } - - prepareContainerForItemOverride(element: DependencyObject, item: any): void { - console.warn('shimmed function TreeViewList.prepareContainerForItemOverride'); - } - - onItemsChanged(e: any): void { - console.warn('shimmed function TreeViewList.onItemsChanged'); - } - - onItemContainerStyleChanged(oldItemContainerStyle: Style, newItemContainerStyle: Style): void { - console.warn('shimmed function TreeViewList.onItemContainerStyleChanged'); - } - - onItemContainerStyleSelectorChanged(oldItemContainerStyleSelector: StyleSelector, newItemContainerStyleSelector: StyleSelector): void { - console.warn('shimmed function TreeViewList.onItemContainerStyleSelectorChanged'); - } - - onItemTemplateChanged(oldItemTemplate: DataTemplate, newItemTemplate: DataTemplate): void { - console.warn('shimmed function TreeViewList.onItemTemplateChanged'); - } - - onItemTemplateSelectorChanged(oldItemTemplateSelector: DataTemplateSelector, newItemTemplateSelector: DataTemplateSelector): void { - console.warn('shimmed function TreeViewList.onItemTemplateSelectorChanged'); - } - - onGroupStyleSelectorChanged(oldGroupStyleSelector: GroupStyleSelector, newGroupStyleSelector: GroupStyleSelector): void { - console.warn('shimmed function TreeViewList.onGroupStyleSelectorChanged'); - } - - itemFromContainer(container: DependencyObject): any { - throw new Error('shimmed function TreeViewList.itemFromContainer'); - } - - containerFromItem(item: any): DependencyObject { - throw new Error('shimmed function TreeViewList.containerFromItem'); - } - - indexFromContainer(container: DependencyObject): number { - throw new Error('shimmed function TreeViewList.indexFromContainer'); - } - - containerFromIndex(index: number): DependencyObject { - throw new Error('shimmed function TreeViewList.containerFromIndex'); - } - - scrollIntoView(item: any): void { - console.warn('shimmed function TreeViewList.scrollIntoView'); - } - - selectAll(): void { - console.warn('shimmed function TreeViewList.selectAll'); - } - - loadMoreItemsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function TreeViewList.loadMoreItemsAsync'); - } - - scrollIntoView_1(item: any, alignment: ScrollIntoViewAlignment): void { - console.warn('shimmed function TreeViewList.scrollIntoView_1'); - } - - setDesiredContainerUpdateDuration(duration: number): void { - console.warn('shimmed function TreeViewList.setDesiredContainerUpdateDuration'); - } - - selectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function TreeViewList.selectRange'); - } - - deselectRange(itemIndexRange: Data.ItemIndexRange): void { - console.warn('shimmed function TreeViewList.deselectRange'); - } - - isDragSource(): Boolean { - throw new Error('shimmed function TreeViewList.isDragSource'); - } - - tryStartConnectedAnimationAsync(animation: Media.Animation.ConnectedAnimation, item: any, elementName: string): Foundation.IAsyncOperation { - throw new Error('shimmed function TreeViewList.tryStartConnectedAnimationAsync'); - } - - prepareConnectedAnimation(key: string, item: any, elementName: string): Media.Animation.ConnectedAnimation { - throw new Error('shimmed function TreeViewList.prepareConnectedAnimation'); - } - - initializeViewChange(): void { - console.warn('shimmed function TreeViewList.initializeViewChange'); - } - - completeViewChange(): void { - console.warn('shimmed function TreeViewList.completeViewChange'); - } - - makeVisible(item: SemanticZoomLocation): void { - console.warn('shimmed function TreeViewList.makeVisible'); - } - - startViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function TreeViewList.startViewChangeFrom'); - } - - startViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function TreeViewList.startViewChangeTo'); - } - - completeViewChangeFrom(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function TreeViewList.completeViewChangeFrom'); - } - - completeViewChangeTo(source: SemanticZoomLocation, destination: SemanticZoomLocation): void { - console.warn('shimmed function TreeViewList.completeViewChangeTo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TreeViewList::addEventListener: ${name}`); - switch (name) { - case "dragitemsstarting": // DragItemsStartingEventHandler - case "itemclick": // ItemClickEventHandler - case "containercontentchanging": // Foundation.TypedEventHandler - case "choosinggroupheadercontainer": // Foundation.TypedEventHandler - case "choosingitemcontainer": // Foundation.TypedEventHandler - case "dragitemscompleted": // Foundation.TypedEventHandler - case "selectionchanged": // SelectionChangedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class TreeViewNode implements IDependencyObject, IDependencyObject2, ITreeViewNode { - // constructor(); - isExpanded: Boolean = false; - hasUnrealizedChildren: Boolean = false; - content: any; - children: TreeViewNode[] = [ ]; - depth: number = -1; - hasChildren: Boolean = false; - parent: TreeViewNode; - static contentProperty: DependencyProperty = null; - static depthProperty: DependencyProperty = null; - static hasChildrenProperty: DependencyProperty = null; - static isExpandedProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewNode.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TreeViewNode.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TreeViewNode.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewNode.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TreeViewNode.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TreeViewNode.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TreeViewNode.unregisterPropertyChangedCallback'); - } - - } - export enum TreeViewSelectionMode { - none, - single, - multiple, - } - export class TwoPaneView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, ITwoPaneView { - // constructor(); - wideModeConfiguration: TwoPaneViewWideModeConfiguration = TwoPaneViewWideModeConfiguration.leftRight; - tallModeConfiguration: TwoPaneViewTallModeConfiguration = TwoPaneViewTallModeConfiguration.topBottom; - panePriority: TwoPaneViewPriority = TwoPaneViewPriority.pane1; - pane2Length: /* Windows.UI.Xaml.GridLength */ any = null; - pane2: UIElement; - pane1Length: /* Windows.UI.Xaml.GridLength */ any = null; - pane1: UIElement; - minWideModeWidth: number = 641; - minTallModeHeight: number = 641; - mode: TwoPaneViewMode = TwoPaneViewMode.singlePane; - static minTallModeHeightProperty: DependencyProperty = null; - static minWideModeWidthProperty: DependencyProperty = null; - static modeProperty: DependencyProperty = null; - static pane1LengthProperty: DependencyProperty = null; - static pane1Property: DependencyProperty = null; - static pane2LengthProperty: DependencyProperty = null; - static pane2Property: DependencyProperty = null; - static panePriorityProperty: DependencyProperty = null; - static tallModeConfigurationProperty: DependencyProperty = null; - static wideModeConfigurationProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = true; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = [ 'W', 'i', 'n', 'd', 'o', 'w', 's', '.', 'U', 'I', '.', 'X', 'a', 'm', 'l', '.', 'C', 'o', 'n', 't', 'r', 'o', 'l', 's', '.', 'T', 'w', 'o', 'P', 'a', 'n', 'e', 'V', 'i', 'e', 'w' ]; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TwoPaneView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TwoPaneView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TwoPaneView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TwoPaneView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TwoPaneView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TwoPaneView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TwoPaneView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function TwoPaneView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function TwoPaneView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function TwoPaneView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function TwoPaneView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function TwoPaneView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function TwoPaneView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function TwoPaneView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function TwoPaneView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function TwoPaneView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function TwoPaneView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function TwoPaneView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function TwoPaneView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function TwoPaneView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function TwoPaneView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function TwoPaneView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TwoPaneView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TwoPaneView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function TwoPaneView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function TwoPaneView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TwoPaneView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function TwoPaneView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function TwoPaneView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function TwoPaneView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function TwoPaneView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function TwoPaneView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TwoPaneView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TwoPaneView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function TwoPaneView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function TwoPaneView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function TwoPaneView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function TwoPaneView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TwoPaneView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function TwoPaneView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function TwoPaneView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function TwoPaneView.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function TwoPaneView.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function TwoPaneView.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function TwoPaneView.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function TwoPaneView.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function TwoPaneView.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function TwoPaneView.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function TwoPaneView.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function TwoPaneView.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function TwoPaneView.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TwoPaneView::addEventListener: ${name}`); - switch (name) { - case "modechanged": // Foundation.TypedEventHandler - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum TwoPaneViewMode { - singlePane, - wide, - tall, - } - export enum TwoPaneViewPriority { - pane1, - pane2, - } - export enum TwoPaneViewTallModeConfiguration { - singlePane, - topBottom, - bottomTop, - } - export enum TwoPaneViewWideModeConfiguration { - singlePane, - leftRight, - rightLeft, - } - export class UIElementCollection implements IUIElementCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - move(oldIndex: number, newIndex: number): void { - console.warn('shimmed function UIElementCollection.move'); - } - - getAt(index: number): UIElement { - throw new Error('shimmed function UIElementCollection.getAt'); - } - - getView(): UIElement[] { - throw new Error('shimmed function UIElementCollection.getView'); - } - - indexOf(value: UIElement): { returnValue: Boolean, index: number } { - throw new Error('shimmed function UIElementCollection.indexOf'); - } - - setAt(index: number, value: UIElement): void { - console.warn('shimmed function UIElementCollection.setAt'); - } - - insertAt(index: number, value: UIElement): void { - console.warn('shimmed function UIElementCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function UIElementCollection.removeAt'); - } - - append(value: UIElement): void { - console.warn('shimmed function UIElementCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function UIElementCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function UIElementCollection.clear'); - } - - getMany(startIndex: number, items: UIElement[]): number { - throw new Error('shimmed function UIElementCollection.getMany'); - } - - replaceAll(items: UIElement[]): void { - console.warn('shimmed function UIElementCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function UIElementCollection.first'); - } - - } - export class UserControl implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IControl, IControl2, IControl3, IControl4, IControl5, IControl7, IControlProtected, IControlOverrides, IControlOverrides6, IUserControl { - // constructor(); - content: UIElement; - static contentProperty: DependencyProperty = null; - padding: Thickness = null; - isTabStop: Boolean = false; - isEnabled: Boolean = true; - horizontalContentAlignment: HorizontalAlignment = HorizontalAlignment.center; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - tabIndex: number = 2147483647; - characterSpacing: number = 0; - borderThickness: Thickness = null; - borderBrush: Media.Brush; - tabNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - background: Media.Brush; - verticalContentAlignment: VerticalAlignment = VerticalAlignment.center; - template: ControlTemplate; - focusState: FocusState = FocusState.unfocused; - isTextScaleFactorEnabled: Boolean = true; - useSystemFocusVisuals: Boolean = false; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - requiresPointer: RequiresPointer = RequiresPointer.never; - isFocusEngagementEnabled: Boolean = false; - isFocusEngaged: Boolean = false; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - defaultStyleResourceUri: Foundation.Uri; - cornerRadius: CornerRadius = null; - backgroundSizing: BackgroundSizing = BackgroundSizing.innerBorderEdge; - defaultStyleKey: any = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function UserControl.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function UserControl.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function UserControl.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function UserControl.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function UserControl.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function UserControl.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function UserControl.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function UserControl.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function UserControl.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function UserControl.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function UserControl.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function UserControl.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function UserControl.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function UserControl.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function UserControl.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function UserControl.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function UserControl.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function UserControl.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function UserControl.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function UserControl.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function UserControl.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function UserControl.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function UserControl.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function UserControl.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function UserControl.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function UserControl.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function UserControl.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function UserControl.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function UserControl.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function UserControl.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function UserControl.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function UserControl.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function UserControl.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function UserControl.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function UserControl.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function UserControl.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function UserControl.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function UserControl.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function UserControl.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function UserControl.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function UserControl.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function UserControl.goToElementStateCore'); - } - - applyTemplate(): Boolean { - throw new Error('shimmed function UserControl.applyTemplate'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function UserControl.focus'); - } - - removeFocusEngagement(): void { - console.warn('shimmed function UserControl.removeFocusEngagement'); - } - - getTemplateChild(childName: string): DependencyObject { - throw new Error('shimmed function UserControl.getTemplateChild'); - } - - onPointerEntered(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerEntered'); - } - - onPointerPressed(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerPressed'); - } - - onPointerMoved(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerMoved'); - } - - onPointerReleased(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerReleased'); - } - - onPointerExited(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerExited'); - } - - onPointerCaptureLost(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerCaptureLost'); - } - - onPointerCanceled(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerCanceled'); - } - - onPointerWheelChanged(e: Input.PointerRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPointerWheelChanged'); - } - - onTapped(e: Input.TappedRoutedEventArgs): void { - console.warn('shimmed function UserControl.onTapped'); - } - - onDoubleTapped(e: Input.DoubleTappedRoutedEventArgs): void { - console.warn('shimmed function UserControl.onDoubleTapped'); - } - - onHolding(e: Input.HoldingRoutedEventArgs): void { - console.warn('shimmed function UserControl.onHolding'); - } - - onRightTapped(e: Input.RightTappedRoutedEventArgs): void { - console.warn('shimmed function UserControl.onRightTapped'); - } - - onManipulationStarting(e: Input.ManipulationStartingRoutedEventArgs): void { - console.warn('shimmed function UserControl.onManipulationStarting'); - } - - onManipulationInertiaStarting(e: Input.ManipulationInertiaStartingRoutedEventArgs): void { - console.warn('shimmed function UserControl.onManipulationInertiaStarting'); - } - - onManipulationStarted(e: Input.ManipulationStartedRoutedEventArgs): void { - console.warn('shimmed function UserControl.onManipulationStarted'); - } - - onManipulationDelta(e: Input.ManipulationDeltaRoutedEventArgs): void { - console.warn('shimmed function UserControl.onManipulationDelta'); - } - - onManipulationCompleted(e: Input.ManipulationCompletedRoutedEventArgs): void { - console.warn('shimmed function UserControl.onManipulationCompleted'); - } - - onKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function UserControl.onKeyUp'); - } - - onKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function UserControl.onKeyDown'); - } - - onGotFocus(e: RoutedEventArgs): void { - console.warn('shimmed function UserControl.onGotFocus'); - } - - onLostFocus(e: RoutedEventArgs): void { - console.warn('shimmed function UserControl.onLostFocus'); - } - - onDragEnter(e: DragEventArgs): void { - console.warn('shimmed function UserControl.onDragEnter'); - } - - onDragLeave(e: DragEventArgs): void { - console.warn('shimmed function UserControl.onDragLeave'); - } - - onDragOver(e: DragEventArgs): void { - console.warn('shimmed function UserControl.onDragOver'); - } - - onDrop(e: DragEventArgs): void { - console.warn('shimmed function UserControl.onDrop'); - } - - onPreviewKeyDown(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPreviewKeyDown'); - } - - onPreviewKeyUp(e: Input.KeyRoutedEventArgs): void { - console.warn('shimmed function UserControl.onPreviewKeyUp'); - } - - onCharacterReceived(e: Input.CharacterReceivedRoutedEventArgs): void { - console.warn('shimmed function UserControl.onCharacterReceived'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UserControl::addEventListener: ${name}`); - switch (name) { - case "isenabledchanged": // DependencyPropertyChangedEventHandler - case "focusdisengaged": // Foundation.TypedEventHandler - case "focusengaged": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class VariableSizedWrapGrid implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IVariableSizedWrapGrid { - // constructor(); - verticalChildrenAlignment: VerticalAlignment = VerticalAlignment.top; - orientation: Orientation = Orientation.vertical; - maximumRowsOrColumns: number = -1; - itemWidth: number = NaN; - itemHeight: number = NaN; - horizontalChildrenAlignment: HorizontalAlignment = HorizontalAlignment.left; - static columnSpanProperty: DependencyProperty = null; - static horizontalChildrenAlignmentProperty: DependencyProperty = null; - static itemHeightProperty: DependencyProperty = null; - static itemWidthProperty: DependencyProperty = null; - static maximumRowsOrColumnsProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static rowSpanProperty: DependencyProperty = null; - static verticalChildrenAlignmentProperty: DependencyProperty = null; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VariableSizedWrapGrid.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VariableSizedWrapGrid.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VariableSizedWrapGrid.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VariableSizedWrapGrid.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VariableSizedWrapGrid.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VariableSizedWrapGrid.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VariableSizedWrapGrid.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function VariableSizedWrapGrid.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function VariableSizedWrapGrid.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function VariableSizedWrapGrid.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function VariableSizedWrapGrid.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function VariableSizedWrapGrid.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function VariableSizedWrapGrid.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function VariableSizedWrapGrid.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function VariableSizedWrapGrid.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function VariableSizedWrapGrid.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function VariableSizedWrapGrid.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function VariableSizedWrapGrid.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function VariableSizedWrapGrid.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function VariableSizedWrapGrid.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function VariableSizedWrapGrid.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function VariableSizedWrapGrid.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function VariableSizedWrapGrid.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function VariableSizedWrapGrid.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function VariableSizedWrapGrid.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function VariableSizedWrapGrid.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function VariableSizedWrapGrid.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function VariableSizedWrapGrid.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function VariableSizedWrapGrid.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function VariableSizedWrapGrid.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function VariableSizedWrapGrid.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function VariableSizedWrapGrid.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function VariableSizedWrapGrid.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function VariableSizedWrapGrid.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function VariableSizedWrapGrid.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function VariableSizedWrapGrid.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function VariableSizedWrapGrid.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function VariableSizedWrapGrid.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function VariableSizedWrapGrid.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function VariableSizedWrapGrid.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function VariableSizedWrapGrid.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function VariableSizedWrapGrid.goToElementStateCore'); - } - - static getRowSpan(element: UIElement): number { - throw new Error('shimmed function VariableSizedWrapGrid.getRowSpan'); - } - - static setRowSpan(element: UIElement, value: number): void { - console.warn('shimmed function VariableSizedWrapGrid.setRowSpan'); - } - - static getColumnSpan(element: UIElement): number { - throw new Error('shimmed function VariableSizedWrapGrid.getColumnSpan'); - } - - static setColumnSpan(element: UIElement, value: number): void { - console.warn('shimmed function VariableSizedWrapGrid.setColumnSpan'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VariableSizedWrapGrid::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Viewbox implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IViewbox { - // constructor(); - stretchDirection: StretchDirection = StretchDirection.both; - stretch: Media.Stretch = Stretch.uniform; - child: UIElement; - static stretchDirectionProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Viewbox.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Viewbox.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Viewbox.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Viewbox.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Viewbox.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Viewbox.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Viewbox.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Viewbox.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Viewbox.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Viewbox.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Viewbox.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Viewbox.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Viewbox.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Viewbox.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Viewbox.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Viewbox.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Viewbox.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Viewbox.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Viewbox.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Viewbox.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Viewbox.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Viewbox.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Viewbox.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Viewbox.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Viewbox.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Viewbox.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Viewbox.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Viewbox.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Viewbox.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Viewbox.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Viewbox.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Viewbox.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Viewbox.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Viewbox.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Viewbox.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Viewbox.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Viewbox.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Viewbox.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Viewbox.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Viewbox.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Viewbox.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Viewbox.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Viewbox::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum VirtualizationMode { - standard, - recycling, - } - export class VirtualizingPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IVirtualizingPanel, IVirtualizingPanelProtected, IVirtualizingPanelOverrides { - itemContainerGenerator: ItemContainerGenerator; - childrenTransitions: Media.Animation.TransitionCollection; - background: Media.Brush; - children: UIElementCollection; - isItemsHost: Boolean; - backgroundTransition: BrushTransition; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualizingPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VirtualizingPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VirtualizingPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualizingPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualizingPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VirtualizingPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VirtualizingPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function VirtualizingPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function VirtualizingPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function VirtualizingPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function VirtualizingPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function VirtualizingPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function VirtualizingPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function VirtualizingPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function VirtualizingPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function VirtualizingPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function VirtualizingPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function VirtualizingPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function VirtualizingPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function VirtualizingPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function VirtualizingPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function VirtualizingPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function VirtualizingPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function VirtualizingPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function VirtualizingPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function VirtualizingPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function VirtualizingPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function VirtualizingPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function VirtualizingPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function VirtualizingPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function VirtualizingPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function VirtualizingPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function VirtualizingPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function VirtualizingPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function VirtualizingPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function VirtualizingPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function VirtualizingPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function VirtualizingPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function VirtualizingPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function VirtualizingPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function VirtualizingPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function VirtualizingPanel.goToElementStateCore'); - } - - addInternalChild(child: UIElement): void { - console.warn('shimmed function VirtualizingPanel.addInternalChild'); - } - - insertInternalChild(index: number, child: UIElement): void { - console.warn('shimmed function VirtualizingPanel.insertInternalChild'); - } - - removeInternalChildRange(index: number, range: number): void { - console.warn('shimmed function VirtualizingPanel.removeInternalChildRange'); - } - - onItemsChanged(sender: any, args: Primitives.ItemsChangedEventArgs): void { - console.warn('shimmed function VirtualizingPanel.onItemsChanged'); - } - - onClearChildren(): void { - console.warn('shimmed function VirtualizingPanel.onClearChildren'); - } - - bringIndexIntoView(index: number): void { - console.warn('shimmed function VirtualizingPanel.bringIndexIntoView'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VirtualizingPanel::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class VirtualizingStackPanel implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IVirtualizingPanel, IVirtualizingPanelProtected, IVirtualizingPanelOverrides, Primitives.IOrientedVirtualizingPanel, Primitives.IScrollSnapPointsInfo, IInsertionPanel, IVirtualizingStackPanel, IVirtualizingStackPanelOverrides { - // constructor(); - orientation: Orientation = Orientation.vertical; - areScrollSnapPointsRegular: Boolean = false; - static areScrollSnapPointsRegularProperty: DependencyProperty = null; - static isVirtualizingProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static virtualizationModeProperty: DependencyProperty = null; - scrollOwner: any; - canVerticallyScroll: Boolean = false; - canHorizontallyScroll: Boolean = false; - extentHeight: number = 0; - extentWidth: number = 0; - horizontalOffset: number = 0; - verticalOffset: number = 0; - viewportHeight: number = 0; - viewportWidth: number = 0; - areHorizontalSnapPointsRegular: Boolean = false; - areVerticalSnapPointsRegular: Boolean = false; - itemContainerGenerator: ItemContainerGenerator; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualizingStackPanel.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VirtualizingStackPanel.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VirtualizingStackPanel.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualizingStackPanel.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualizingStackPanel.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VirtualizingStackPanel.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VirtualizingStackPanel.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function VirtualizingStackPanel.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function VirtualizingStackPanel.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function VirtualizingStackPanel.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function VirtualizingStackPanel.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function VirtualizingStackPanel.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function VirtualizingStackPanel.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function VirtualizingStackPanel.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function VirtualizingStackPanel.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function VirtualizingStackPanel.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function VirtualizingStackPanel.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function VirtualizingStackPanel.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function VirtualizingStackPanel.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function VirtualizingStackPanel.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function VirtualizingStackPanel.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function VirtualizingStackPanel.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function VirtualizingStackPanel.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function VirtualizingStackPanel.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function VirtualizingStackPanel.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function VirtualizingStackPanel.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function VirtualizingStackPanel.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function VirtualizingStackPanel.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function VirtualizingStackPanel.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function VirtualizingStackPanel.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function VirtualizingStackPanel.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function VirtualizingStackPanel.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function VirtualizingStackPanel.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function VirtualizingStackPanel.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function VirtualizingStackPanel.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function VirtualizingStackPanel.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function VirtualizingStackPanel.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function VirtualizingStackPanel.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function VirtualizingStackPanel.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function VirtualizingStackPanel.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function VirtualizingStackPanel.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function VirtualizingStackPanel.goToElementStateCore'); - } - - addInternalChild(child: UIElement): void { - console.warn('shimmed function VirtualizingStackPanel.addInternalChild'); - } - - insertInternalChild(index: number, child: UIElement): void { - console.warn('shimmed function VirtualizingStackPanel.insertInternalChild'); - } - - removeInternalChildRange(index: number, range: number): void { - console.warn('shimmed function VirtualizingStackPanel.removeInternalChildRange'); - } - - onItemsChanged(sender: any, args: Primitives.ItemsChangedEventArgs): void { - console.warn('shimmed function VirtualizingStackPanel.onItemsChanged'); - } - - onClearChildren(): void { - console.warn('shimmed function VirtualizingStackPanel.onClearChildren'); - } - - bringIndexIntoView(index: number): void { - console.warn('shimmed function VirtualizingStackPanel.bringIndexIntoView'); - } - - lineUp(): void { - console.warn('shimmed function VirtualizingStackPanel.lineUp'); - } - - lineDown(): void { - console.warn('shimmed function VirtualizingStackPanel.lineDown'); - } - - lineLeft(): void { - console.warn('shimmed function VirtualizingStackPanel.lineLeft'); - } - - lineRight(): void { - console.warn('shimmed function VirtualizingStackPanel.lineRight'); - } - - pageUp(): void { - console.warn('shimmed function VirtualizingStackPanel.pageUp'); - } - - pageDown(): void { - console.warn('shimmed function VirtualizingStackPanel.pageDown'); - } - - pageLeft(): void { - console.warn('shimmed function VirtualizingStackPanel.pageLeft'); - } - - pageRight(): void { - console.warn('shimmed function VirtualizingStackPanel.pageRight'); - } - - mouseWheelUp(): void { - console.warn('shimmed function VirtualizingStackPanel.mouseWheelUp'); - } - - mouseWheelDown(): void { - console.warn('shimmed function VirtualizingStackPanel.mouseWheelDown'); - } - - mouseWheelLeft(): void { - console.warn('shimmed function VirtualizingStackPanel.mouseWheelLeft'); - } - - mouseWheelRight(): void { - console.warn('shimmed function VirtualizingStackPanel.mouseWheelRight'); - } - - setHorizontalOffset(offset: number): void { - console.warn('shimmed function VirtualizingStackPanel.setHorizontalOffset'); - } - - setVerticalOffset(offset: number): void { - console.warn('shimmed function VirtualizingStackPanel.setVerticalOffset'); - } - - makeVisible(visual: UIElement, rectangle: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function VirtualizingStackPanel.makeVisible'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): number[] { - throw new Error('shimmed function VirtualizingStackPanel.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function VirtualizingStackPanel.getRegularSnapPoints'); - } - - getInsertionIndexes(position: Foundation.Point): { first: number, second: number } { - throw new Error('shimmed function VirtualizingStackPanel.getInsertionIndexes'); - } - - onCleanUpVirtualizedItem(e: CleanUpVirtualizedItemEventArgs): void { - console.warn('shimmed function VirtualizingStackPanel.onCleanUpVirtualizedItem'); - } - - static getVirtualizationMode(element: DependencyObject): VirtualizationMode { - throw new Error('shimmed function VirtualizingStackPanel.getVirtualizationMode'); - } - - static setVirtualizationMode(element: DependencyObject, value: VirtualizationMode): void { - console.warn('shimmed function VirtualizingStackPanel.setVirtualizationMode'); - } - - static getIsVirtualizing(o: DependencyObject): Boolean { - throw new Error('shimmed function VirtualizingStackPanel.getIsVirtualizing'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VirtualizingStackPanel::addEventListener: ${name}`); - switch (name) { - case "cleanupvirtualizeditemevent": // CleanUpVirtualizedItemEventHandler - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class WebView implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IWebView, IWebView2, IWebView3, IWebView4, IWebView5, IWebView6, IWebView7 { - // constructor(executionMode: WebViewExecutionMode); - // constructor(); - constructor(executionMode: WebViewExecutionMode) {} - - source: Foundation.Uri; - allowedScriptNotifyUris: Foundation.Uri[] = [ ]; - dataTransferPackage: ApplicationModel.DataTransfer.DataPackage = null; - defaultBackgroundColor: Color = { a: 255, r: 255, g: 255, b: 255 }; - canGoBack: Boolean = false; - canGoForward: Boolean = false; - documentTitle: string = ''; - containsFullScreenElement: Boolean = false; - deferredPermissionRequests: WebViewDeferredPermissionRequest[] = [ ]; - executionMode: WebViewExecutionMode = WebViewExecutionMode.sameThread; - settings: WebViewSettings = null; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - static allowedScriptNotifyUrisProperty: DependencyProperty = null; - static anyScriptNotifyUri: Foundation.Uri[] = [ ]; - static dataTransferPackageProperty: DependencyProperty = null; - static sourceProperty: DependencyProperty = null; - static canGoBackProperty: DependencyProperty = null; - static canGoForwardProperty: DependencyProperty = null; - static defaultBackgroundColorProperty: DependencyProperty = null; - static documentTitleProperty: DependencyProperty = null; - static containsFullScreenElementProperty: DependencyProperty = null; - static defaultExecutionMode: WebViewExecutionMode = WebViewExecutionMode.sameThread; - static xyfocusDownProperty: DependencyProperty = null; - static xyfocusLeftProperty: DependencyProperty = null; - static xyfocusRightProperty: DependencyProperty = null; - static xyfocusUpProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function WebView.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function WebView.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function WebView.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function WebView.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function WebView.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function WebView.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function WebView.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function WebView.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function WebView.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function WebView.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function WebView.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function WebView.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function WebView.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function WebView.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function WebView.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function WebView.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function WebView.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function WebView.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function WebView.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function WebView.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function WebView.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function WebView.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function WebView.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function WebView.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function WebView.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function WebView.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function WebView.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function WebView.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function WebView.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function WebView.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function WebView.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function WebView.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function WebView.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function WebView.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function WebView.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function WebView.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function WebView.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function WebView.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function WebView.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function WebView.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function WebView.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function WebView.goToElementStateCore'); - } - - invokeScript(scriptName: string, __arguments: string[]): string { - throw new Error('shimmed function WebView.invokeScript'); - } - - navigate(source: Foundation.Uri): void { - console.warn('shimmed function WebView.navigate'); - } - - navigateToString(text: string): void { - console.warn('shimmed function WebView.navigateToString'); - } - - goForward(): void { - console.warn('shimmed function WebView.goForward'); - } - - goBack(): void { - console.warn('shimmed function WebView.goBack'); - } - - refresh(): void { - console.warn('shimmed function WebView.refresh'); - } - - stop(): void { - console.warn('shimmed function WebView.stop'); - } - - capturePreviewToStreamAsync(stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function WebView.capturePreviewToStreamAsync'); - } - - invokeScriptAsync(scriptName: string, __arguments: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function WebView.invokeScriptAsync'); - } - - captureSelectedContentToDataPackageAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WebView.captureSelectedContentToDataPackageAsync'); - } - - navigateToLocalStreamUri(source: Foundation.Uri, streamResolver: Web.IUriToStreamResolver): void { - console.warn('shimmed function WebView.navigateToLocalStreamUri'); - } - - buildLocalStreamUri(contentIdentifier: string, relativePath: string): Foundation.Uri { - throw new Error('shimmed function WebView.buildLocalStreamUri'); - } - - navigateWithHttpRequestMessage(requestMessage: Web.Http.HttpRequestMessage): void { - console.warn('shimmed function WebView.navigateWithHttpRequestMessage'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function WebView.focus'); - } - - addWebAllowedObject(name: string, pObject: any): void { - console.warn('shimmed function WebView.addWebAllowedObject'); - } - - deferredPermissionRequestById(id: number): WebViewDeferredPermissionRequest { - throw new Error('shimmed function WebView.deferredPermissionRequestById'); - } - - static clearTemporaryWebDataAsync(): Foundation.IAsyncAction { - throw new Error('shimmed function WebView.clearTemporaryWebDataAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WebView::addEventListener: ${name}`); - switch (name) { - case "loadcompleted": // Navigation.LoadCompletedEventHandler - case "navigationfailed": // WebViewNavigationFailedEventHandler - case "scriptnotify": // NotifyEventHandler - case "contentloading": // Foundation.TypedEventHandler - case "domcontentloaded": // Foundation.TypedEventHandler - case "framecontentloading": // Foundation.TypedEventHandler - case "framedomcontentloaded": // Foundation.TypedEventHandler - case "framenavigationcompleted": // Foundation.TypedEventHandler - case "framenavigationstarting": // Foundation.TypedEventHandler - case "longrunningscriptdetected": // Foundation.TypedEventHandler - case "navigationcompleted": // Foundation.TypedEventHandler - case "navigationstarting": // Foundation.TypedEventHandler - case "unsafecontentwarningdisplaying": // Foundation.TypedEventHandler - case "unviewablecontentidentified": // Foundation.TypedEventHandler - case "containsfullscreenelementchanged": // Foundation.TypedEventHandler - case "newwindowrequested": // Foundation.TypedEventHandler - case "permissionrequested": // Foundation.TypedEventHandler - case "unsupportedurischemeidentified": // Foundation.TypedEventHandler - case "separateprocesslost": // Foundation.TypedEventHandler - case "webresourcerequested": // Foundation.TypedEventHandler - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class WebViewBrush implements IDependencyObject, IDependencyObject2, Media.IBrush, Media.IBrushOverrides2, Composition.IAnimationObject, Media.ITileBrush, IWebViewBrush { - // constructor(); - sourceName: string = ''; - static sourceNameProperty: DependencyProperty = null; - stretch: Media.Stretch = Stretch.fill; - alignmentY: Media.AlignmentY = AlignmentY.center; - alignmentX: Media.AlignmentX = AlignmentX.center; - transform: Media.Transform = null; - relativeTransform: Media.Transform = null; - opacity: number = 1; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function WebViewBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function WebViewBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function WebViewBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function WebViewBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function WebViewBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function WebViewBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function WebViewBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function WebViewBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function WebViewBrush.populatePropertyInfo'); - } - - redraw(): void { - console.warn('shimmed function WebViewBrush.redraw'); - } - - setSource(source: WebView): void { - console.warn('shimmed function WebViewBrush.setSource'); - } - - } - export class WebViewContentLoadingEventArgs implements IWebViewContentLoadingEventArgs { - uri: Foundation.Uri; - - } - export class WebViewDeferredPermissionRequest implements IWebViewDeferredPermissionRequest { - id: number; - permissionType: WebViewPermissionType; - uri: Foundation.Uri; - - allow(): void { - console.warn('shimmed function WebViewDeferredPermissionRequest.allow'); - } - - deny(): void { - console.warn('shimmed function WebViewDeferredPermissionRequest.deny'); - } - - } - export class WebViewDOMContentLoadedEventArgs implements IWebViewDOMContentLoadedEventArgs { - uri: Foundation.Uri; - - } - export enum WebViewExecutionMode { - sameThread, - separateThread, - separateProcess, - } - export class WebViewLongRunningScriptDetectedEventArgs implements IWebViewLongRunningScriptDetectedEventArgs { - stopPageScriptExecution: Boolean; - executionTime: number; - - } - export class WebViewNavigationCompletedEventArgs implements IWebViewNavigationCompletedEventArgs { - isSuccess: Boolean; - uri: Foundation.Uri; - webErrorStatus: Web.WebErrorStatus; - - } - export class WebViewNavigationFailedEventArgs implements IWebViewNavigationFailedEventArgs { - uri: Foundation.Uri; - webErrorStatus: Web.WebErrorStatus; - - } - export type WebViewNavigationFailedEventHandler = (e: WebViewNavigationFailedEventArgs) => void; - export class WebViewNavigationStartingEventArgs implements IWebViewNavigationStartingEventArgs { - cancel: Boolean; - uri: Foundation.Uri; - - } - export class WebViewNewWindowRequestedEventArgs implements IWebViewNewWindowRequestedEventArgs { - handled: Boolean; - referrer: Foundation.Uri; - uri: Foundation.Uri; - - } - export class WebViewPermissionRequest implements IWebViewPermissionRequest { - id: number; - permissionType: WebViewPermissionType; - state: WebViewPermissionState; - uri: Foundation.Uri; - - defer(): void { - console.warn('shimmed function WebViewPermissionRequest.defer'); - } - - allow(): void { - console.warn('shimmed function WebViewPermissionRequest.allow'); - } - - deny(): void { - console.warn('shimmed function WebViewPermissionRequest.deny'); - } - - } - export class WebViewPermissionRequestedEventArgs implements IWebViewPermissionRequestedEventArgs { - permissionRequest: WebViewPermissionRequest; - - } - export enum WebViewPermissionState { - unknown, - defer, - allow, - deny, - } - export enum WebViewPermissionType { - geolocation, - unlimitedIndexedDBQuota, - media, - pointerLock, - webNotifications, - screen, - immersiveView, - } - export class WebViewSeparateProcessLostEventArgs implements IWebViewSeparateProcessLostEventArgs { - } - export class WebViewSettings implements IWebViewSettings { - isJavaScriptEnabled: Boolean; - isIndexedDBEnabled: Boolean; - - } - export class WebViewUnsupportedUriSchemeIdentifiedEventArgs implements IWebViewUnsupportedUriSchemeIdentifiedEventArgs { - handled: Boolean; - uri: Foundation.Uri; - - } - export class WebViewUnviewableContentIdentifiedEventArgs implements IWebViewUnviewableContentIdentifiedEventArgs, IWebViewUnviewableContentIdentifiedEventArgs2 { - referrer: Foundation.Uri; - uri: Foundation.Uri; - mediaType: string; - - } - export class WebViewWebResourceRequestedEventArgs implements IWebViewWebResourceRequestedEventArgs { - response: Web.Http.HttpResponseMessage; - request: Web.Http.HttpRequestMessage; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function WebViewWebResourceRequestedEventArgs.getDeferral'); - } - - } - export class WrapGrid implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IPanel, IPanel2, IVirtualizingPanel, IVirtualizingPanelProtected, IVirtualizingPanelOverrides, Primitives.IOrientedVirtualizingPanel, Primitives.IScrollSnapPointsInfo, IInsertionPanel, IWrapGrid { - // constructor(); - verticalChildrenAlignment: VerticalAlignment = VerticalAlignment.top; - orientation: Orientation = Orientation.vertical; - maximumRowsOrColumns: number = -1; - itemWidth: number = NaN; - itemHeight: number = NaN; - horizontalChildrenAlignment: HorizontalAlignment = HorizontalAlignment.left; - static horizontalChildrenAlignmentProperty: DependencyProperty = null; - static itemHeightProperty: DependencyProperty = null; - static itemWidthProperty: DependencyProperty = null; - static maximumRowsOrColumnsProperty: DependencyProperty = null; - static orientationProperty: DependencyProperty = null; - static verticalChildrenAlignmentProperty: DependencyProperty = null; - scrollOwner: any; - canVerticallyScroll: Boolean = false; - canHorizontallyScroll: Boolean = false; - extentHeight: number = 0; - extentWidth: number = 0; - horizontalOffset: number = 0; - verticalOffset: number = 0; - viewportHeight: number = 0; - viewportWidth: number = 0; - areHorizontalSnapPointsRegular: Boolean = true; - areVerticalSnapPointsRegular: Boolean = false; - itemContainerGenerator: ItemContainerGenerator; - childrenTransitions: Media.Animation.TransitionCollection = [ ]; - background: Media.Brush; - children: UIElementCollection = [ ]; - isItemsHost: Boolean = false; - backgroundTransition: BrushTransition; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function WrapGrid.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function WrapGrid.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function WrapGrid.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function WrapGrid.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function WrapGrid.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function WrapGrid.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function WrapGrid.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function WrapGrid.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function WrapGrid.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function WrapGrid.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function WrapGrid.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function WrapGrid.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function WrapGrid.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function WrapGrid.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function WrapGrid.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function WrapGrid.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function WrapGrid.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function WrapGrid.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function WrapGrid.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function WrapGrid.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function WrapGrid.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function WrapGrid.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function WrapGrid.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function WrapGrid.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function WrapGrid.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function WrapGrid.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function WrapGrid.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function WrapGrid.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function WrapGrid.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function WrapGrid.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function WrapGrid.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function WrapGrid.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function WrapGrid.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function WrapGrid.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function WrapGrid.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function WrapGrid.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function WrapGrid.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function WrapGrid.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function WrapGrid.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function WrapGrid.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function WrapGrid.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function WrapGrid.goToElementStateCore'); - } - - addInternalChild(child: UIElement): void { - console.warn('shimmed function WrapGrid.addInternalChild'); - } - - insertInternalChild(index: number, child: UIElement): void { - console.warn('shimmed function WrapGrid.insertInternalChild'); - } - - removeInternalChildRange(index: number, range: number): void { - console.warn('shimmed function WrapGrid.removeInternalChildRange'); - } - - onItemsChanged(sender: any, args: Primitives.ItemsChangedEventArgs): void { - console.warn('shimmed function WrapGrid.onItemsChanged'); - } - - onClearChildren(): void { - console.warn('shimmed function WrapGrid.onClearChildren'); - } - - bringIndexIntoView(index: number): void { - console.warn('shimmed function WrapGrid.bringIndexIntoView'); - } - - lineUp(): void { - console.warn('shimmed function WrapGrid.lineUp'); - } - - lineDown(): void { - console.warn('shimmed function WrapGrid.lineDown'); - } - - lineLeft(): void { - console.warn('shimmed function WrapGrid.lineLeft'); - } - - lineRight(): void { - console.warn('shimmed function WrapGrid.lineRight'); - } - - pageUp(): void { - console.warn('shimmed function WrapGrid.pageUp'); - } - - pageDown(): void { - console.warn('shimmed function WrapGrid.pageDown'); - } - - pageLeft(): void { - console.warn('shimmed function WrapGrid.pageLeft'); - } - - pageRight(): void { - console.warn('shimmed function WrapGrid.pageRight'); - } - - mouseWheelUp(): void { - console.warn('shimmed function WrapGrid.mouseWheelUp'); - } - - mouseWheelDown(): void { - console.warn('shimmed function WrapGrid.mouseWheelDown'); - } - - mouseWheelLeft(): void { - console.warn('shimmed function WrapGrid.mouseWheelLeft'); - } - - mouseWheelRight(): void { - console.warn('shimmed function WrapGrid.mouseWheelRight'); - } - - setHorizontalOffset(offset: number): void { - console.warn('shimmed function WrapGrid.setHorizontalOffset'); - } - - setVerticalOffset(offset: number): void { - console.warn('shimmed function WrapGrid.setVerticalOffset'); - } - - makeVisible(visual: UIElement, rectangle: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function WrapGrid.makeVisible'); - } - - getIrregularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): number[] { - throw new Error('shimmed function WrapGrid.getIrregularSnapPoints'); - } - - getRegularSnapPoints(orientation: Orientation, alignment: Primitives.SnapPointsAlignment): { returnValue: number, offset: number } { - throw new Error('shimmed function WrapGrid.getRegularSnapPoints'); - } - - getInsertionIndexes(position: Foundation.Point): { first: number, second: number } { - throw new Error('shimmed function WrapGrid.getInsertionIndexes'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WrapGrid::addEventListener: ${name}`); - switch (name) { - case "horizontalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "verticalsnappointschanged": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ZoomMode { - disabled, - enabled, - } - } - export namespace Core { - export namespace Direct { - export interface IXamlDirectObject { - } - export class XamlDirect implements IXamlDirect { - getObject(xamlDirectObject: IXamlDirectObject): any { - throw new Error('shimmed function XamlDirect.getObject'); - } - - getXamlDirectObject(object: any): IXamlDirectObject { - throw new Error('shimmed function XamlDirect.getXamlDirectObject'); - } - - createInstance(typeIndex: XamlTypeIndex): IXamlDirectObject { - throw new Error('shimmed function XamlDirect.createInstance'); - } - - setObjectProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: any): void { - console.warn('shimmed function XamlDirect.setObjectProperty'); - } - - setXamlDirectObjectProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: IXamlDirectObject): void { - console.warn('shimmed function XamlDirect.setXamlDirectObjectProperty'); - } - - setBooleanProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: Boolean): void { - console.warn('shimmed function XamlDirect.setBooleanProperty'); - } - - setDoubleProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: number): void { - console.warn('shimmed function XamlDirect.setDoubleProperty'); - } - - setInt32Property(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: number): void { - console.warn('shimmed function XamlDirect.setInt32Property'); - } - - setStringProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: string): void { - console.warn('shimmed function XamlDirect.setStringProperty'); - } - - setDateTimeProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: Date): void { - console.warn('shimmed function XamlDirect.setDateTimeProperty'); - } - - setPointProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: Foundation.Point): void { - console.warn('shimmed function XamlDirect.setPointProperty'); - } - - setRectProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: Foundation.Rect): void { - console.warn('shimmed function XamlDirect.setRectProperty'); - } - - setSizeProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: Foundation.Size): void { - console.warn('shimmed function XamlDirect.setSizeProperty'); - } - - setTimeSpanProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: number): void { - console.warn('shimmed function XamlDirect.setTimeSpanProperty'); - } - - setColorProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: Color): void { - console.warn('shimmed function XamlDirect.setColorProperty'); - } - - setCornerRadiusProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: CornerRadius): void { - console.warn('shimmed function XamlDirect.setCornerRadiusProperty'); - } - - setDurationProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: /* Windows.UI.Xaml.Duration */ any): void { - console.warn('shimmed function XamlDirect.setDurationProperty'); - } - - setGridLengthProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: /* Windows.UI.Xaml.GridLength */ any): void { - console.warn('shimmed function XamlDirect.setGridLengthProperty'); - } - - setThicknessProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: Thickness): void { - console.warn('shimmed function XamlDirect.setThicknessProperty'); - } - - setMatrixProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: /* Windows.UI.Xaml.Media.Matrix */ any): void { - console.warn('shimmed function XamlDirect.setMatrixProperty'); - } - - setMatrix3DProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any): void { - console.warn('shimmed function XamlDirect.setMatrix3DProperty'); - } - - setEnumProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex, value: number): void { - console.warn('shimmed function XamlDirect.setEnumProperty'); - } - - getObjectProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): any { - throw new Error('shimmed function XamlDirect.getObjectProperty'); - } - - getXamlDirectObjectProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): IXamlDirectObject { - throw new Error('shimmed function XamlDirect.getXamlDirectObjectProperty'); - } - - getBooleanProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): Boolean { - throw new Error('shimmed function XamlDirect.getBooleanProperty'); - } - - getDoubleProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): number { - throw new Error('shimmed function XamlDirect.getDoubleProperty'); - } - - getInt32Property(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): number { - throw new Error('shimmed function XamlDirect.getInt32Property'); - } - - getStringProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): string { - throw new Error('shimmed function XamlDirect.getStringProperty'); - } - - getDateTimeProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): Date { - throw new Error('shimmed function XamlDirect.getDateTimeProperty'); - } - - getPointProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): Foundation.Point { - throw new Error('shimmed function XamlDirect.getPointProperty'); - } - - getRectProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): Foundation.Rect { - throw new Error('shimmed function XamlDirect.getRectProperty'); - } - - getSizeProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): Foundation.Size { - throw new Error('shimmed function XamlDirect.getSizeProperty'); - } - - getTimeSpanProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): number { - throw new Error('shimmed function XamlDirect.getTimeSpanProperty'); - } - - getColorProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): Color { - throw new Error('shimmed function XamlDirect.getColorProperty'); - } - - getCornerRadiusProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): CornerRadius { - throw new Error('shimmed function XamlDirect.getCornerRadiusProperty'); - } - - getDurationProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): /* Windows.UI.Xaml.Duration */ any { - throw new Error('shimmed function XamlDirect.getDurationProperty'); - } - - getGridLengthProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): /* Windows.UI.Xaml.GridLength */ any { - throw new Error('shimmed function XamlDirect.getGridLengthProperty'); - } - - getThicknessProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): Thickness { - throw new Error('shimmed function XamlDirect.getThicknessProperty'); - } - - getMatrixProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): /* Windows.UI.Xaml.Media.Matrix */ any { - throw new Error('shimmed function XamlDirect.getMatrixProperty'); - } - - getMatrix3DProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any { - throw new Error('shimmed function XamlDirect.getMatrix3DProperty'); - } - - getEnumProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): number { - throw new Error('shimmed function XamlDirect.getEnumProperty'); - } - - clearProperty(xamlDirectObject: IXamlDirectObject, propertyIndex: XamlPropertyIndex): void { - console.warn('shimmed function XamlDirect.clearProperty'); - } - - getCollectionCount(xamlDirectObject: IXamlDirectObject): number { - throw new Error('shimmed function XamlDirect.getCollectionCount'); - } - - getXamlDirectObjectFromCollectionAt(xamlDirectObject: IXamlDirectObject, index: number): IXamlDirectObject { - throw new Error('shimmed function XamlDirect.getXamlDirectObjectFromCollectionAt'); - } - - addToCollection(xamlDirectObject: IXamlDirectObject, value: IXamlDirectObject): void { - console.warn('shimmed function XamlDirect.addToCollection'); - } - - insertIntoCollectionAt(xamlDirectObject: IXamlDirectObject, index: number, value: IXamlDirectObject): void { - console.warn('shimmed function XamlDirect.insertIntoCollectionAt'); - } - - removeFromCollection(xamlDirectObject: IXamlDirectObject, value: IXamlDirectObject): Boolean { - throw new Error('shimmed function XamlDirect.removeFromCollection'); - } - - removeFromCollectionAt(xamlDirectObject: IXamlDirectObject, index: number): void { - console.warn('shimmed function XamlDirect.removeFromCollectionAt'); - } - - clearCollection(xamlDirectObject: IXamlDirectObject): void { - console.warn('shimmed function XamlDirect.clearCollection'); - } - - addEventHandler(xamlDirectObject: IXamlDirectObject, eventIndex: XamlEventIndex, handler: any): void { - console.warn('shimmed function XamlDirect.addEventHandler'); - } - - addEventHandler_1(xamlDirectObject: IXamlDirectObject, eventIndex: XamlEventIndex, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function XamlDirect.addEventHandler_1'); - } - - removeEventHandler(xamlDirectObject: IXamlDirectObject, eventIndex: XamlEventIndex, handler: any): void { - console.warn('shimmed function XamlDirect.removeEventHandler'); - } - - static getDefault(): XamlDirect { - throw new Error('shimmed function XamlDirect.getDefault'); - } - - } - export interface XamlDirectContract { - } - export enum XamlEventIndex { - frameworkElement_DataContextChanged = 16, - frameworkElement_SizeChanged, - frameworkElement_LayoutUpdated, - uielement_KeyUp = 22, - uielement_KeyDown, - uielement_GotFocus, - uielement_LostFocus, - uielement_DragStarting, - uielement_DropCompleted, - uielement_CharacterReceived, - uielement_DragEnter, - uielement_DragLeave, - uielement_DragOver, - uielement_Drop, - uielement_PointerPressed = 38, - uielement_PointerMoved, - uielement_PointerReleased, - uielement_PointerEntered, - uielement_PointerExited, - uielement_PointerCaptureLost, - uielement_PointerCanceled, - uielement_PointerWheelChanged, - uielement_Tapped, - uielement_DoubleTapped, - uielement_Holding, - uielement_ContextRequested, - uielement_ContextCanceled, - uielement_RightTapped, - uielement_ManipulationStarting, - uielement_ManipulationInertiaStarting, - uielement_ManipulationStarted, - uielement_ManipulationDelta, - uielement_ManipulationCompleted, - uielement_ProcessKeyboardAccelerators = 60, - uielement_GettingFocus, - uielement_LosingFocus, - uielement_NoFocusCandidateFound, - uielement_PreviewKeyDown, - uielement_PreviewKeyUp, - uielement_BringIntoViewRequested, - appBar_Opening = 109, - appBar_Opened, - appBar_Closing, - appBar_Closed, - autoSuggestBox_SuggestionChosen, - autoSuggestBox_TextChanged, - autoSuggestBox_QuerySubmitted, - calendarDatePicker_CalendarViewDayItemChanging, - calendarDatePicker_DateChanged, - calendarDatePicker_Opened, - calendarDatePicker_Closed, - calendarView_CalendarViewDayItemChanging, - calendarView_SelectedDatesChanged, - comboBox_DropDownClosed, - comboBox_DropDownOpened, - commandBar_DynamicOverflowItemsChanging, - contentDialog_Closing = 126, - contentDialog_Closed, - contentDialog_Opened, - contentDialog_PrimaryButtonClick, - contentDialog_SecondaryButtonClick, - contentDialog_CloseButtonClick, - control_FocusEngaged, - control_FocusDisengaged, - datePicker_DateChanged = 135, - frame_Navigated, - frame_Navigating, - frame_NavigationFailed, - frame_NavigationStopped, - hub_SectionHeaderClick = 143, - hub_SectionsInViewChanged, - itemsPresenter_HorizontalSnapPointsChanged = 148, - itemsPresenter_VerticalSnapPointsChanged, - listViewBase_ItemClick, - listViewBase_DragItemsStarting, - listViewBase_DragItemsCompleted, - listViewBase_ContainerContentChanging, - listViewBase_ChoosingItemContainer, - listViewBase_ChoosingGroupHeaderContainer, - mediaTransportControls_ThumbnailRequested = 167, - menuFlyoutItem_Click, - richEditBox_TextChanging = 177, - scrollViewer_ViewChanging = 192, - scrollViewer_ViewChanged, - scrollViewer_DirectManipulationStarted, - scrollViewer_DirectManipulationCompleted, - searchBox_QueryChanged, - searchBox_SuggestionsRequested, - searchBox_QuerySubmitted, - searchBox_ResultSuggestionChosen, - searchBox_PrepareForFocusOnKeyboardInput, - semanticZoom_ViewChangeStarted, - semanticZoom_ViewChangeCompleted, - settingsFlyout_BackClick, - stackPanel_HorizontalSnapPointsChanged = 208, - stackPanel_VerticalSnapPointsChanged, - timePicker_TimeChanged = 227, - toggleSwitch_Toggled, - toolTip_Closed, - toolTip_Opened, - virtualizingStackPanel_CleanUpVirtualizedItemEvent, - webView_SeparateProcessLost, - webView_LoadCompleted, - webView_ScriptNotify, - webView_NavigationFailed, - webView_NavigationStarting, - webView_ContentLoading, - webView_DOMContentLoaded, - webView_NavigationCompleted, - webView_FrameNavigationStarting, - webView_FrameContentLoading, - webView_FrameDOMContentLoaded, - webView_FrameNavigationCompleted, - webView_LongRunningScriptDetected, - webView_UnsafeContentWarningDisplaying, - webView_UnviewableContentIdentified, - webView_ContainsFullScreenElementChanged, - webView_UnsupportedUriSchemeIdentified, - webView_NewWindowRequested, - webView_PermissionRequested, - buttonBase_Click = 256, - carouselPanel_HorizontalSnapPointsChanged, - carouselPanel_VerticalSnapPointsChanged, - orientedVirtualizingPanel_HorizontalSnapPointsChanged = 263, - orientedVirtualizingPanel_VerticalSnapPointsChanged, - rangeBase_ValueChanged = 267, - scrollBar_Scroll, - selector_SelectionChanged, - thumb_DragStarted, - thumb_DragDelta, - thumb_DragCompleted, - toggleButton_Checked, - toggleButton_Unchecked, - toggleButton_Indeterminate, - webView_WebResourceRequested = 283, - scrollViewer_AnchorRequested = 291, - datePicker_SelectedDateChanged = 322, - timePicker_SelectedTimeChanged, - } - export enum XamlPropertyIndex { - automationProperties_AcceleratorKey = 5, - automationProperties_AccessibilityView, - automationProperties_AccessKey, - automationProperties_AutomationId, - automationProperties_ControlledPeers, - automationProperties_HelpText, - automationProperties_IsRequiredForForm, - automationProperties_ItemStatus, - automationProperties_ItemType, - automationProperties_LabeledBy, - automationProperties_LiveSetting, - automationProperties_Name, - toolTipService_Placement = 24, - toolTipService_PlacementTarget, - toolTipService_ToolTip, - typography_AnnotationAlternates = 28, - typography_Capitals, - typography_CapitalSpacing, - typography_CaseSensitiveForms, - typography_ContextualAlternates, - typography_ContextualLigatures, - typography_ContextualSwashes, - typography_DiscretionaryLigatures, - typography_EastAsianExpertForms, - typography_EastAsianLanguage, - typography_EastAsianWidths, - typography_Fraction, - typography_HistoricalForms, - typography_HistoricalLigatures, - typography_Kerning, - typography_MathematicalGreek, - typography_NumeralAlignment, - typography_NumeralStyle, - typography_SlashedZero, - typography_StandardLigatures, - typography_StandardSwashes, - typography_StylisticAlternates, - typography_StylisticSet1, - typography_StylisticSet10, - typography_StylisticSet11, - typography_StylisticSet12, - typography_StylisticSet13, - typography_StylisticSet14, - typography_StylisticSet15, - typography_StylisticSet16, - typography_StylisticSet17, - typography_StylisticSet18, - typography_StylisticSet19, - typography_StylisticSet2, - typography_StylisticSet20, - typography_StylisticSet3, - typography_StylisticSet4, - typography_StylisticSet5, - typography_StylisticSet6, - typography_StylisticSet7, - typography_StylisticSet8, - typography_StylisticSet9, - typography_Variants, - automationPeer_EventsSource = 75, - autoSuggestBoxSuggestionChosenEventArgs_SelectedItem, - autoSuggestBoxTextChangedEventArgs_Reason, - brush_Opacity, - brush_RelativeTransform, - brush_Transform, - collectionViewSource_IsSourceGrouped, - collectionViewSource_ItemsPath, - collectionViewSource_Source, - collectionViewSource_View, - colorKeyFrame_KeyTime = 90, - colorKeyFrame_Value, - columnDefinition_ActualWidth, - columnDefinition_MaxWidth, - columnDefinition_MinWidth, - columnDefinition_Width, - comboBoxTemplateSettings_DropDownClosedHeight, - comboBoxTemplateSettings_DropDownOffset, - comboBoxTemplateSettings_DropDownOpenedHeight, - comboBoxTemplateSettings_SelectedItemDirection, - doubleKeyFrame_KeyTime = 107, - doubleKeyFrame_Value, - easingFunctionBase_EasingMode = 111, - flyoutBase_AttachedFlyout = 114, - flyoutBase_Placement, - geometry_Bounds = 118, - geometry_Transform, - gradientStop_Color, - gradientStop_Offset, - groupStyle_ContainerStyle = 124, - groupStyle_ContainerStyleSelector, - groupStyle_HeaderContainerStyle, - groupStyle_HeaderTemplate, - groupStyle_HeaderTemplateSelector, - groupStyle_HidesIfEmpty, - groupStyle_Panel, - inertiaExpansionBehavior_DesiredDeceleration = 144, - inertiaExpansionBehavior_DesiredExpansion, - inertiaRotationBehavior_DesiredDeceleration, - inertiaRotationBehavior_DesiredRotation, - inertiaTranslationBehavior_DesiredDeceleration, - inertiaTranslationBehavior_DesiredDisplacement, - inputScope_Names, - inputScopeName_NameValue, - keySpline_ControlPoint1 = 153, - keySpline_ControlPoint2, - manipulationPivot_Center = 159, - manipulationPivot_Radius, - objectKeyFrame_KeyTime = 183, - objectKeyFrame_Value, - pageStackEntry_SourcePageType, - pathFigure_IsClosed = 192, - pathFigure_IsFilled, - pathFigure_Segments, - pathFigure_StartPoint, - pointer_IsInContact = 199, - pointer_IsInRange, - pointer_PointerDeviceType, - pointer_PointerId, - pointKeyFrame_KeyTime = 205, - pointKeyFrame_Value, - printDocument_DocumentSource = 209, - progressBarTemplateSettings_ContainerAnimationEndPosition = 211, - progressBarTemplateSettings_ContainerAnimationStartPosition, - progressBarTemplateSettings_EllipseAnimationEndPosition, - progressBarTemplateSettings_EllipseAnimationWellPosition, - progressBarTemplateSettings_EllipseDiameter, - progressBarTemplateSettings_EllipseOffset, - progressBarTemplateSettings_IndicatorLengthDelta, - progressRingTemplateSettings_EllipseDiameter, - progressRingTemplateSettings_EllipseOffset, - progressRingTemplateSettings_MaxSideLength, - propertyPath_Path, - rowDefinition_ActualHeight = 226, - rowDefinition_Height, - rowDefinition_MaxHeight, - rowDefinition_MinHeight, - setterBase_IsSealed = 233, - settingsFlyoutTemplateSettings_BorderBrush, - settingsFlyoutTemplateSettings_BorderThickness, - settingsFlyoutTemplateSettings_ContentTransitions, - settingsFlyoutTemplateSettings_HeaderBackground, - settingsFlyoutTemplateSettings_HeaderForeground, - settingsFlyoutTemplateSettings_IconSource, - style_BasedOn = 244, - style_IsSealed, - style_Setters, - style_TargetType, - textElement_CharacterSpacing = 249, - textElement_FontFamily, - textElement_FontSize, - textElement_FontStretch, - textElement_FontStyle, - textElement_FontWeight, - textElement_Foreground, - textElement_IsTextScaleFactorEnabled, - textElement_Language, - timeline_AutoReverse = 263, - timeline_BeginTime, - timeline_Duration, - timeline_FillBehavior, - timeline_RepeatBehavior, - timeline_SpeedRatio, - timelineMarker_Text, - timelineMarker_Time, - timelineMarker_Type, - toggleSwitchTemplateSettings_CurtainCurrentToOffOffset = 273, - toggleSwitchTemplateSettings_CurtainCurrentToOnOffset, - toggleSwitchTemplateSettings_CurtainOffToOnOffset, - toggleSwitchTemplateSettings_CurtainOnToOffOffset, - toggleSwitchTemplateSettings_KnobCurrentToOffOffset, - toggleSwitchTemplateSettings_KnobCurrentToOnOffset, - toggleSwitchTemplateSettings_KnobOffToOnOffset, - toggleSwitchTemplateSettings_KnobOnToOffOffset, - toolTipTemplateSettings_FromHorizontalOffset, - toolTipTemplateSettings_FromVerticalOffset, - uielement_AllowDrop = 292, - uielement_CacheMode, - uielement_Clip = 295, - uielement_CompositeMode, - uielement_IsDoubleTapEnabled, - uielement_IsHitTestVisible, - uielement_IsHoldingEnabled, - uielement_IsRightTapEnabled, - uielement_IsTapEnabled, - uielement_ManipulationMode, - uielement_Opacity, - uielement_PointerCaptures, - uielement_Projection, - uielement_RenderSize, - uielement_RenderTransform, - uielement_RenderTransformOrigin, - uielement_Transitions, - uielement_UseLayoutRounding = 311, - uielement_Visibility, - visualState_Storyboard = 322, - visualStateGroup_States, - visualStateGroup_Transitions, - visualStateManager_CustomVisualStateManager, - visualStateManager_VisualStateGroups, - visualTransition_From, - visualTransition_GeneratedDuration, - visualTransition_GeneratedEasingFunction, - visualTransition_Storyboard, - visualTransition_To, - arcSegment_IsLargeArc, - arcSegment_Point, - arcSegment_RotationAngle, - arcSegment_Size, - arcSegment_SweepDirection, - backEase_Amplitude, - beginStoryboard_Storyboard, - bezierSegment_Point1, - bezierSegment_Point2, - bezierSegment_Point3, - bitmapSource_PixelHeight, - bitmapSource_PixelWidth, - block_LineHeight, - block_LineStackingStrategy, - block_Margin, - block_TextAlignment, - bounceEase_Bounces, - bounceEase_Bounciness, - colorAnimation_By, - colorAnimation_EasingFunction, - colorAnimation_EnableDependentAnimation, - colorAnimation_From, - colorAnimation_To, - colorAnimationUsingKeyFrames_EnableDependentAnimation, - colorAnimationUsingKeyFrames_KeyFrames, - contentThemeTransition_HorizontalOffset, - contentThemeTransition_VerticalOffset, - controlTemplate_TargetType, - dispatcherTimer_Interval = 362, - doubleAnimation_By, - doubleAnimation_EasingFunction, - doubleAnimation_EnableDependentAnimation, - doubleAnimation_From, - doubleAnimation_To, - doubleAnimationUsingKeyFrames_EnableDependentAnimation, - doubleAnimationUsingKeyFrames_KeyFrames, - easingColorKeyFrame_EasingFunction = 372, - easingDoubleKeyFrame_EasingFunction, - easingPointKeyFrame_EasingFunction, - edgeUIThemeTransition_Edge, - elasticEase_Oscillations, - elasticEase_Springiness, - ellipseGeometry_Center, - ellipseGeometry_RadiusX, - ellipseGeometry_RadiusY, - entranceThemeTransition_FromHorizontalOffset, - entranceThemeTransition_FromVerticalOffset, - entranceThemeTransition_IsStaggeringEnabled, - eventTrigger_Actions, - eventTrigger_RoutedEvent, - exponentialEase_Exponent, - flyout_Content, - flyout_FlyoutPresenterStyle, - frameworkElement_ActualHeight, - frameworkElement_ActualWidth, - frameworkElement_DataContext, - frameworkElement_FlowDirection, - frameworkElement_Height, - frameworkElement_HorizontalAlignment, - frameworkElement_Language = 396, - frameworkElement_Margin, - frameworkElement_MaxHeight, - frameworkElement_MaxWidth, - frameworkElement_MinHeight, - frameworkElement_MinWidth, - frameworkElement_Parent, - frameworkElement_RequestedTheme, - frameworkElement_Resources, - frameworkElement_Style, - frameworkElement_Tag, - frameworkElement_Triggers, - frameworkElement_VerticalAlignment, - frameworkElement_Width, - frameworkElementAutomationPeer_Owner, - geometryGroup_Children, - geometryGroup_FillRule, - gradientBrush_ColorInterpolationMode, - gradientBrush_GradientStops, - gradientBrush_MappingMode, - gradientBrush_SpreadMethod, - gridViewItemTemplateSettings_DragItemsCount, - itemAutomationPeer_Item = 419, - itemAutomationPeer_ItemsControlAutomationPeer, - lineGeometry_EndPoint = 422, - lineGeometry_StartPoint, - lineSegment_Point, - listViewItemTemplateSettings_DragItemsCount, - matrix3DProjection_ProjectionMatrix, - menuFlyout_Items, - menuFlyout_MenuFlyoutPresenterStyle, - objectAnimationUsingKeyFrames_EnableDependentAnimation, - objectAnimationUsingKeyFrames_KeyFrames, - paneThemeTransition_Edge, - pathGeometry_Figures, - pathGeometry_FillRule, - planeProjection_CenterOfRotationX, - planeProjection_CenterOfRotationY, - planeProjection_CenterOfRotationZ, - planeProjection_GlobalOffsetX, - planeProjection_GlobalOffsetY, - planeProjection_GlobalOffsetZ, - planeProjection_LocalOffsetX, - planeProjection_LocalOffsetY, - planeProjection_LocalOffsetZ, - planeProjection_ProjectionMatrix, - planeProjection_RotationX, - planeProjection_RotationY, - planeProjection_RotationZ, - pointAnimation_By, - pointAnimation_EasingFunction, - pointAnimation_EnableDependentAnimation, - pointAnimation_From, - pointAnimation_To, - pointAnimationUsingKeyFrames_EnableDependentAnimation, - pointAnimationUsingKeyFrames_KeyFrames, - polyBezierSegment_Points = 456, - polyLineSegment_Points, - polyQuadraticBezierSegment_Points, - popupThemeTransition_FromHorizontalOffset, - popupThemeTransition_FromVerticalOffset, - powerEase_Power, - quadraticBezierSegment_Point1 = 466, - quadraticBezierSegment_Point2, - rectangleGeometry_Rect = 470, - relativeSource_Mode, - renderTargetBitmap_PixelHeight, - renderTargetBitmap_PixelWidth, - setter_Property, - setter_Value, - solidColorBrush_Color, - splineColorKeyFrame_KeySpline, - splineDoubleKeyFrame_KeySpline, - splinePointKeyFrame_KeySpline, - tileBrush_AlignmentX = 483, - tileBrush_AlignmentY, - tileBrush_Stretch, - binding_Converter = 487, - binding_ConverterLanguage, - binding_ConverterParameter, - binding_ElementName, - binding_FallbackValue, - binding_Mode, - binding_Path, - binding_RelativeSource, - binding_Source, - binding_TargetNullValue, - binding_UpdateSourceTrigger, - bitmapImage_CreateOptions, - bitmapImage_DecodePixelHeight, - bitmapImage_DecodePixelType, - bitmapImage_DecodePixelWidth, - bitmapImage_UriSource, - border_Background, - border_BorderBrush, - border_BorderThickness, - border_Child, - border_ChildTransitions, - border_CornerRadius, - border_Padding, - captureElement_Source, - captureElement_Stretch, - compositeTransform_CenterX = 514, - compositeTransform_CenterY, - compositeTransform_Rotation, - compositeTransform_ScaleX, - compositeTransform_ScaleY, - compositeTransform_SkewX, - compositeTransform_SkewY, - compositeTransform_TranslateX, - compositeTransform_TranslateY, - contentPresenter_CharacterSpacing, - contentPresenter_Content, - contentPresenter_ContentTemplate, - contentPresenter_ContentTemplateSelector, - contentPresenter_ContentTransitions, - contentPresenter_FontFamily, - contentPresenter_FontSize, - contentPresenter_FontStretch, - contentPresenter_FontStyle, - contentPresenter_FontWeight, - contentPresenter_Foreground, - contentPresenter_IsTextScaleFactorEnabled, - contentPresenter_LineStackingStrategy, - contentPresenter_MaxLines, - contentPresenter_OpticalMarginAlignment, - contentPresenter_TextLineBounds = 539, - contentPresenter_TextWrapping, - control_Background, - control_BorderBrush, - control_BorderThickness, - control_CharacterSpacing, - control_FocusState = 546, - control_FontFamily, - control_FontSize, - control_FontStretch, - control_FontStyle, - control_FontWeight, - control_Foreground, - control_HorizontalContentAlignment, - control_IsEnabled, - control_IsTabStop, - control_IsTextScaleFactorEnabled, - control_Padding, - control_TabIndex, - control_TabNavigation, - control_Template, - control_VerticalContentAlignment, - dragItemThemeAnimation_TargetName = 565, - dragOverThemeAnimation_Direction, - dragOverThemeAnimation_TargetName, - dragOverThemeAnimation_ToOffset, - dropTargetItemThemeAnimation_TargetName, - fadeInThemeAnimation_TargetName, - fadeOutThemeAnimation_TargetName, - glyphs_Fill = 574, - glyphs_FontRenderingEmSize, - glyphs_FontUri, - glyphs_Indices, - glyphs_OriginX, - glyphs_OriginY, - glyphs_StyleSimulations, - glyphs_UnicodeString, - iconElement_Foreground = 584, - image_NineGrid = 586, - image_PlayToSource, - image_Source, - image_Stretch, - imageBrush_ImageSource = 591, - inlineUIContainer_Child, - itemsPresenter_Footer = 594, - itemsPresenter_FooterTemplate, - itemsPresenter_FooterTransitions, - itemsPresenter_Header, - itemsPresenter_HeaderTemplate, - itemsPresenter_HeaderTransitions, - itemsPresenter_Padding = 601, - linearGradientBrush_EndPoint, - linearGradientBrush_StartPoint, - matrixTransform_Matrix, - mediaElement_ActualStereo3DVideoPackingMode, - mediaElement_AreTransportControlsEnabled, - mediaElement_AspectRatioHeight, - mediaElement_AspectRatioWidth, - mediaElement_AudioCategory, - mediaElement_AudioDeviceType, - mediaElement_AudioStreamCount, - mediaElement_AudioStreamIndex, - mediaElement_AutoPlay, - mediaElement_Balance, - mediaElement_BufferingProgress, - mediaElement_CanPause, - mediaElement_CanSeek, - mediaElement_CurrentState, - mediaElement_DefaultPlaybackRate, - mediaElement_DownloadProgress, - mediaElement_DownloadProgressOffset, - mediaElement_IsAudioOnly = 623, - mediaElement_IsFullWindow, - mediaElement_IsLooping, - mediaElement_IsMuted, - mediaElement_IsStereo3DVideo, - mediaElement_Markers, - mediaElement_NaturalDuration, - mediaElement_NaturalVideoHeight, - mediaElement_NaturalVideoWidth, - mediaElement_PlaybackRate, - mediaElement_PlayToPreferredSourceUri, - mediaElement_PlayToSource, - mediaElement_Position, - mediaElement_PosterSource, - mediaElement_ProtectionManager, - mediaElement_RealTimePlayback, - mediaElement_Source, - mediaElement_Stereo3DVideoPackingMode, - mediaElement_Stereo3DVideoRenderMode, - mediaElement_Stretch, - mediaElement_TransportControls, - mediaElement_Volume, - panel_Background = 647, - panel_Children, - panel_ChildrenTransitions, - panel_IsItemsHost = 651, - paragraph_Inlines, - paragraph_TextIndent, - pointerDownThemeAnimation_TargetName = 660, - pointerUpThemeAnimation_TargetName = 662, - popInThemeAnimation_FromHorizontalOffset = 664, - popInThemeAnimation_FromVerticalOffset, - popInThemeAnimation_TargetName, - popOutThemeAnimation_TargetName, - popup_Child, - popup_ChildTransitions, - popup_HorizontalOffset, - popup_IsLightDismissEnabled = 673, - popup_IsOpen, - popup_VerticalOffset = 676, - repositionThemeAnimation_FromHorizontalOffset = 683, - repositionThemeAnimation_FromVerticalOffset, - repositionThemeAnimation_TargetName, - resourceDictionary_MergedDictionaries = 687, - resourceDictionary_Source, - resourceDictionary_ThemeDictionaries, - richTextBlock_Blocks = 691, - richTextBlock_CharacterSpacing, - richTextBlock_FontFamily, - richTextBlock_FontSize, - richTextBlock_FontStretch, - richTextBlock_FontStyle, - richTextBlock_FontWeight, - richTextBlock_Foreground, - richTextBlock_HasOverflowContent, - richTextBlock_IsColorFontEnabled, - richTextBlock_IsTextScaleFactorEnabled, - richTextBlock_IsTextSelectionEnabled, - richTextBlock_LineHeight, - richTextBlock_LineStackingStrategy, - richTextBlock_MaxLines, - richTextBlock_OpticalMarginAlignment, - richTextBlock_OverflowContentTarget, - richTextBlock_Padding, - richTextBlock_SelectedText, - richTextBlock_SelectionHighlightColor, - richTextBlock_TextAlignment, - richTextBlock_TextIndent, - richTextBlock_TextLineBounds, - richTextBlock_TextReadingOrder, - richTextBlock_TextTrimming, - richTextBlock_TextWrapping, - richTextBlockOverflow_HasOverflowContent, - richTextBlockOverflow_MaxLines, - richTextBlockOverflow_OverflowContentTarget, - richTextBlockOverflow_Padding, - rotateTransform_Angle, - rotateTransform_CenterX, - rotateTransform_CenterY, - run_FlowDirection = 725, - run_Text, - scaleTransform_CenterX, - scaleTransform_CenterY, - scaleTransform_ScaleX, - scaleTransform_ScaleY, - setterBaseCollection_IsSealed = 732, - shape_Fill, - shape_GeometryTransform, - shape_Stretch, - shape_Stroke, - shape_StrokeDashArray, - shape_StrokeDashCap, - shape_StrokeDashOffset, - shape_StrokeEndLineCap, - shape_StrokeLineJoin, - shape_StrokeMiterLimit, - shape_StrokeStartLineCap, - shape_StrokeThickness, - skewTransform_AngleX, - skewTransform_AngleY, - skewTransform_CenterX, - skewTransform_CenterY, - span_Inlines, - splitCloseThemeAnimation_ClosedLength, - splitCloseThemeAnimation_ClosedTarget, - splitCloseThemeAnimation_ClosedTargetName, - splitCloseThemeAnimation_ContentTarget, - splitCloseThemeAnimation_ContentTargetName, - splitCloseThemeAnimation_ContentTranslationDirection, - splitCloseThemeAnimation_ContentTranslationOffset, - splitCloseThemeAnimation_OffsetFromCenter, - splitCloseThemeAnimation_OpenedLength, - splitCloseThemeAnimation_OpenedTarget, - splitCloseThemeAnimation_OpenedTargetName, - splitOpenThemeAnimation_ClosedLength, - splitOpenThemeAnimation_ClosedTarget, - splitOpenThemeAnimation_ClosedTargetName, - splitOpenThemeAnimation_ContentTarget, - splitOpenThemeAnimation_ContentTargetName, - splitOpenThemeAnimation_ContentTranslationDirection, - splitOpenThemeAnimation_ContentTranslationOffset, - splitOpenThemeAnimation_OffsetFromCenter, - splitOpenThemeAnimation_OpenedLength, - splitOpenThemeAnimation_OpenedTarget, - splitOpenThemeAnimation_OpenedTargetName, - storyboard_Children, - storyboard_TargetName = 774, - storyboard_TargetProperty, - swipeBackThemeAnimation_FromHorizontalOffset, - swipeBackThemeAnimation_FromVerticalOffset, - swipeBackThemeAnimation_TargetName, - swipeHintThemeAnimation_TargetName, - swipeHintThemeAnimation_ToHorizontalOffset, - swipeHintThemeAnimation_ToVerticalOffset, - textBlock_CharacterSpacing, - textBlock_FontFamily, - textBlock_FontSize, - textBlock_FontStretch, - textBlock_FontStyle, - textBlock_FontWeight, - textBlock_Foreground, - textBlock_Inlines, - textBlock_IsColorFontEnabled, - textBlock_IsTextScaleFactorEnabled, - textBlock_IsTextSelectionEnabled, - textBlock_LineHeight, - textBlock_LineStackingStrategy, - textBlock_MaxLines, - textBlock_OpticalMarginAlignment, - textBlock_Padding, - textBlock_SelectedText, - textBlock_SelectionHighlightColor, - textBlock_Text, - textBlock_TextAlignment, - textBlock_TextDecorations, - textBlock_TextLineBounds, - textBlock_TextReadingOrder, - textBlock_TextTrimming, - textBlock_TextWrapping, - transformGroup_Children = 811, - transformGroup_Value, - translateTransform_X = 814, - translateTransform_Y, - viewbox_Child = 819, - viewbox_Stretch, - viewbox_StretchDirection, - webViewBrush_SourceName = 825, - appBarSeparator_IsCompact, - bitmapIcon_UriSource, - canvas_Left, - canvas_Top, - canvas_ZIndex, - contentControl_Content = 832, - contentControl_ContentTemplate, - contentControl_ContentTemplateSelector, - contentControl_ContentTransitions, - datePicker_CalendarIdentifier = 837, - datePicker_Date, - datePicker_DayFormat, - datePicker_DayVisible, - datePicker_Header, - datePicker_HeaderTemplate, - datePicker_MaxYear, - datePicker_MinYear, - datePicker_MonthFormat, - datePicker_MonthVisible, - datePicker_Orientation, - datePicker_YearFormat, - datePicker_YearVisible, - fontIcon_FontFamily = 851, - fontIcon_FontSize, - fontIcon_FontStyle, - fontIcon_FontWeight, - fontIcon_Glyph, - fontIcon_IsTextScaleFactorEnabled, - grid_Column, - grid_ColumnDefinitions, - grid_ColumnSpan, - grid_Row, - grid_RowDefinitions, - grid_RowSpan, - hub_DefaultSectionIndex, - hub_Header, - hub_HeaderTemplate, - hub_IsActiveView, - hub_IsZoomedInView, - hub_Orientation, - hub_SectionHeaders, - hub_Sections, - hub_SectionsInView, - hub_SemanticZoomOwner, - hubSection_ContentTemplate, - hubSection_Header, - hubSection_HeaderTemplate, - hubSection_IsHeaderInteractive, - hyperlink_NavigateUri, - itemsControl_DisplayMemberPath = 879, - itemsControl_GroupStyle, - itemsControl_GroupStyleSelector, - itemsControl_IsGrouping, - itemsControl_ItemContainerStyle = 884, - itemsControl_ItemContainerStyleSelector, - itemsControl_ItemContainerTransitions, - itemsControl_Items, - itemsControl_ItemsPanel = 889, - itemsControl_ItemsSource, - itemsControl_ItemTemplate, - itemsControl_ItemTemplateSelector, - line_X1, - line_X2, - line_Y1, - line_Y2, - mediaTransportControls_IsFastForwardButtonVisible = 898, - mediaTransportControls_IsFastRewindButtonVisible = 900, - mediaTransportControls_IsFullWindowButtonVisible = 902, - mediaTransportControls_IsPlaybackRateButtonVisible = 904, - mediaTransportControls_IsSeekBarVisible, - mediaTransportControls_IsStopButtonVisible = 908, - mediaTransportControls_IsVolumeButtonVisible = 910, - mediaTransportControls_IsZoomButtonVisible = 912, - passwordBox_Header, - passwordBox_HeaderTemplate, - passwordBox_IsPasswordRevealButtonEnabled, - passwordBox_MaxLength, - passwordBox_Password, - passwordBox_PasswordChar, - passwordBox_PlaceholderText, - passwordBox_PreventKeyboardDisplayOnProgrammaticFocus, - passwordBox_SelectionHighlightColor, - path_Data, - pathIcon_Data, - polygon_FillRule, - polygon_Points, - polyline_FillRule, - polyline_Points, - progressRing_IsActive, - progressRing_TemplateSettings, - rangeBase_LargeChange, - rangeBase_Maximum, - rangeBase_Minimum, - rangeBase_SmallChange, - rangeBase_Value, - rectangle_RadiusX, - rectangle_RadiusY, - richEditBox_AcceptsReturn, - richEditBox_Header, - richEditBox_HeaderTemplate, - richEditBox_InputScope, - richEditBox_IsColorFontEnabled, - richEditBox_IsReadOnly, - richEditBox_IsSpellCheckEnabled, - richEditBox_IsTextPredictionEnabled, - richEditBox_PlaceholderText, - richEditBox_PreventKeyboardDisplayOnProgrammaticFocus, - richEditBox_SelectionHighlightColor, - richEditBox_TextAlignment, - richEditBox_TextWrapping, - searchBox_ChooseSuggestionOnEnter, - searchBox_FocusOnKeyboardInput, - searchBox_PlaceholderText, - searchBox_QueryText, - searchBox_SearchHistoryContext, - searchBox_SearchHistoryEnabled, - semanticZoom_CanChangeViews, - semanticZoom_IsZoomedInViewActive, - semanticZoom_IsZoomOutButtonEnabled, - semanticZoom_ZoomedInView, - semanticZoom_ZoomedOutView, - stackPanel_AreScrollSnapPointsRegular, - stackPanel_Orientation, - symbolIcon_Symbol, - textBox_AcceptsReturn, - textBox_Header, - textBox_HeaderTemplate, - textBox_InputScope, - textBox_IsColorFontEnabled, - textBox_IsReadOnly = 971, - textBox_IsSpellCheckEnabled, - textBox_IsTextPredictionEnabled, - textBox_MaxLength, - textBox_PlaceholderText, - textBox_PreventKeyboardDisplayOnProgrammaticFocus, - textBox_SelectedText, - textBox_SelectionHighlightColor, - textBox_SelectionLength, - textBox_SelectionStart, - textBox_Text, - textBox_TextAlignment, - textBox_TextWrapping, - thumb_IsDragging, - tickBar_Fill, - timePicker_ClockIdentifier, - timePicker_Header, - timePicker_HeaderTemplate, - timePicker_MinuteIncrement, - timePicker_Time, - toggleSwitch_Header, - toggleSwitch_HeaderTemplate, - toggleSwitch_IsOn, - toggleSwitch_OffContent, - toggleSwitch_OffContentTemplate, - toggleSwitch_OnContent, - toggleSwitch_OnContentTemplate, - toggleSwitch_TemplateSettings, - userControl_Content, - variableSizedWrapGrid_ColumnSpan, - variableSizedWrapGrid_HorizontalChildrenAlignment, - variableSizedWrapGrid_ItemHeight, - variableSizedWrapGrid_ItemWidth, - variableSizedWrapGrid_MaximumRowsOrColumns, - variableSizedWrapGrid_Orientation, - variableSizedWrapGrid_RowSpan, - variableSizedWrapGrid_VerticalChildrenAlignment, - webView_AllowedScriptNotifyUris, - webView_CanGoBack, - webView_CanGoForward, - webView_ContainsFullScreenElement, - webView_DataTransferPackage, - webView_DefaultBackgroundColor, - webView_DocumentTitle, - webView_Source, - appBar_ClosedDisplayMode, - appBar_IsOpen, - appBar_IsSticky, - autoSuggestBox_AutoMaximizeSuggestionArea, - autoSuggestBox_Header, - autoSuggestBox_IsSuggestionListOpen, - autoSuggestBox_MaxSuggestionListHeight, - autoSuggestBox_PlaceholderText, - autoSuggestBox_Text, - autoSuggestBox_TextBoxStyle, - autoSuggestBox_TextMemberPath, - autoSuggestBox_UpdateTextOnSelect, - buttonBase_ClickMode = 1029, - buttonBase_Command, - buttonBase_CommandParameter, - buttonBase_IsPointerOver, - buttonBase_IsPressed, - contentDialog_FullSizeDesired, - contentDialog_IsPrimaryButtonEnabled, - contentDialog_IsSecondaryButtonEnabled, - contentDialog_PrimaryButtonCommand, - contentDialog_PrimaryButtonCommandParameter, - contentDialog_PrimaryButtonText, - contentDialog_SecondaryButtonCommand, - contentDialog_SecondaryButtonCommandParameter, - contentDialog_SecondaryButtonText, - contentDialog_Title, - contentDialog_TitleTemplate, - frame_BackStack, - frame_BackStackDepth, - frame_CacheSize, - frame_CanGoBack, - frame_CanGoForward, - frame_CurrentSourcePageType, - frame_ForwardStack, - frame_SourcePageType, - gridViewItemPresenter_CheckBrush, - gridViewItemPresenter_CheckHintBrush, - gridViewItemPresenter_CheckSelectingBrush, - gridViewItemPresenter_ContentMargin, - gridViewItemPresenter_DisabledOpacity, - gridViewItemPresenter_DragBackground, - gridViewItemPresenter_DragForeground, - gridViewItemPresenter_DragOpacity, - gridViewItemPresenter_FocusBorderBrush, - gridViewItemPresenter_GridViewItemPresenterHorizontalContentAlignment, - gridViewItemPresenter_GridViewItemPresenterPadding, - gridViewItemPresenter_PlaceholderBackground, - gridViewItemPresenter_PointerOverBackground, - gridViewItemPresenter_PointerOverBackgroundMargin, - gridViewItemPresenter_ReorderHintOffset, - gridViewItemPresenter_SelectedBackground, - gridViewItemPresenter_SelectedBorderThickness, - gridViewItemPresenter_SelectedForeground, - gridViewItemPresenter_SelectedPointerOverBackground, - gridViewItemPresenter_SelectedPointerOverBorderBrush, - gridViewItemPresenter_SelectionCheckMarkVisualEnabled, - gridViewItemPresenter_GridViewItemPresenterVerticalContentAlignment, - itemsStackPanel_CacheLength = 1076, - itemsStackPanel_GroupHeaderPlacement, - itemsStackPanel_GroupPadding, - itemsStackPanel_ItemsUpdatingScrollMode, - itemsStackPanel_Orientation, - itemsWrapGrid_CacheLength, - itemsWrapGrid_GroupHeaderPlacement, - itemsWrapGrid_GroupPadding, - itemsWrapGrid_ItemHeight, - itemsWrapGrid_ItemWidth, - itemsWrapGrid_MaximumRowsOrColumns, - itemsWrapGrid_Orientation, - listViewItemPresenter_CheckBrush, - listViewItemPresenter_CheckHintBrush, - listViewItemPresenter_CheckSelectingBrush, - listViewItemPresenter_ContentMargin, - listViewItemPresenter_DisabledOpacity, - listViewItemPresenter_DragBackground, - listViewItemPresenter_DragForeground, - listViewItemPresenter_DragOpacity, - listViewItemPresenter_FocusBorderBrush, - listViewItemPresenter_ListViewItemPresenterHorizontalContentAlignment, - listViewItemPresenter_ListViewItemPresenterPadding, - listViewItemPresenter_PlaceholderBackground, - listViewItemPresenter_PointerOverBackground, - listViewItemPresenter_PointerOverBackgroundMargin, - listViewItemPresenter_ReorderHintOffset, - listViewItemPresenter_SelectedBackground, - listViewItemPresenter_SelectedBorderThickness, - listViewItemPresenter_SelectedForeground, - listViewItemPresenter_SelectedPointerOverBackground, - listViewItemPresenter_SelectedPointerOverBorderBrush, - listViewItemPresenter_SelectionCheckMarkVisualEnabled, - listViewItemPresenter_ListViewItemPresenterVerticalContentAlignment, - menuFlyoutItem_Command, - menuFlyoutItem_CommandParameter, - menuFlyoutItem_Text, - page_BottomAppBar = 1114, - page_Frame, - page_NavigationCacheMode, - page_TopAppBar, - progressBar_IsIndeterminate, - progressBar_ShowError, - progressBar_ShowPaused, - progressBar_TemplateSettings, - scrollBar_IndicatorMode, - scrollBar_Orientation, - scrollBar_ViewportSize, - selector_IsSynchronizedWithCurrentItem = 1126, - selector_SelectedIndex, - selector_SelectedItem, - selector_SelectedValue, - selector_SelectedValuePath, - selectorItem_IsSelected, - settingsFlyout_HeaderBackground, - settingsFlyout_HeaderForeground, - settingsFlyout_IconSource, - settingsFlyout_TemplateSettings, - settingsFlyout_Title, - slider_Header, - slider_HeaderTemplate, - slider_IntermediateValue, - slider_IsDirectionReversed, - slider_IsThumbToolTipEnabled, - slider_Orientation, - slider_SnapsTo, - slider_StepFrequency, - slider_ThumbToolTipValueConverter, - slider_TickFrequency, - slider_TickPlacement, - swapChainPanel_CompositionScaleX, - swapChainPanel_CompositionScaleY, - toolTip_HorizontalOffset, - toolTip_IsOpen, - toolTip_Placement, - toolTip_PlacementTarget, - toolTip_TemplateSettings, - toolTip_VerticalOffset, - button_Flyout, - comboBox_Header, - comboBox_HeaderTemplate, - comboBox_IsDropDownOpen, - comboBox_IsEditable, - comboBox_IsSelectionBoxHighlighted, - comboBox_MaxDropDownHeight, - comboBox_PlaceholderText, - comboBox_SelectionBoxItem, - comboBox_SelectionBoxItemTemplate, - comboBox_TemplateSettings, - commandBar_PrimaryCommands, - commandBar_SecondaryCommands, - flipView_UseTouchAnimationsForAllNavigation, - hyperlinkButton_NavigateUri, - listBox_SelectedItems, - listBox_SelectionMode, - listViewBase_CanDragItems, - listViewBase_CanReorderItems, - listViewBase_DataFetchSize, - listViewBase_Footer, - listViewBase_FooterTemplate, - listViewBase_FooterTransitions, - listViewBase_Header, - listViewBase_HeaderTemplate, - listViewBase_HeaderTransitions, - listViewBase_IncrementalLoadingThreshold, - listViewBase_IncrementalLoadingTrigger, - listViewBase_IsActiveView, - listViewBase_IsItemClickEnabled, - listViewBase_IsSwipeEnabled, - listViewBase_IsZoomedInView, - listViewBase_ReorderMode, - listViewBase_SelectedItems, - listViewBase_SelectionMode, - listViewBase_SemanticZoomOwner, - listViewBase_ShowsScrollingPlaceholders, - repeatButton_Delay, - repeatButton_Interval, - scrollViewer_BringIntoViewOnFocusChange, - scrollViewer_ComputedHorizontalScrollBarVisibility, - scrollViewer_ComputedVerticalScrollBarVisibility, - scrollViewer_ExtentHeight, - scrollViewer_ExtentWidth, - scrollViewer_HorizontalOffset, - scrollViewer_HorizontalScrollBarVisibility, - scrollViewer_HorizontalScrollMode, - scrollViewer_HorizontalSnapPointsAlignment, - scrollViewer_HorizontalSnapPointsType, - scrollViewer_IsDeferredScrollingEnabled, - scrollViewer_IsHorizontalRailEnabled, - scrollViewer_IsHorizontalScrollChainingEnabled, - scrollViewer_IsScrollInertiaEnabled, - scrollViewer_IsVerticalRailEnabled, - scrollViewer_IsVerticalScrollChainingEnabled, - scrollViewer_IsZoomChainingEnabled, - scrollViewer_IsZoomInertiaEnabled, - scrollViewer_LeftHeader, - scrollViewer_MaxZoomFactor, - scrollViewer_MinZoomFactor, - scrollViewer_ScrollableHeight, - scrollViewer_ScrollableWidth, - scrollViewer_TopHeader, - scrollViewer_TopLeftHeader, - scrollViewer_VerticalOffset, - scrollViewer_VerticalScrollBarVisibility, - scrollViewer_VerticalScrollMode, - scrollViewer_VerticalSnapPointsAlignment, - scrollViewer_VerticalSnapPointsType, - scrollViewer_ViewportHeight, - scrollViewer_ViewportWidth, - scrollViewer_ZoomFactor, - scrollViewer_ZoomMode, - scrollViewer_ZoomSnapPoints, - scrollViewer_ZoomSnapPointsType, - toggleButton_IsChecked, - toggleButton_IsThreeState, - toggleMenuFlyoutItem_IsChecked, - virtualizingStackPanel_AreScrollSnapPointsRegular, - virtualizingStackPanel_IsVirtualizing = 1236, - virtualizingStackPanel_Orientation, - virtualizingStackPanel_VirtualizationMode, - wrapGrid_HorizontalChildrenAlignment, - wrapGrid_ItemHeight, - wrapGrid_ItemWidth, - wrapGrid_MaximumRowsOrColumns, - wrapGrid_Orientation, - wrapGrid_VerticalChildrenAlignment, - appBarButton_Icon, - appBarButton_IsCompact, - appBarButton_Label, - appBarToggleButton_Icon, - appBarToggleButton_IsCompact, - appBarToggleButton_Label, - gridViewItem_TemplateSettings, - listViewItem_TemplateSettings, - radioButton_GroupName, - glyphs_ColorFontPaletteIndex = 1267, - glyphs_IsColorFontEnabled, - calendarViewTemplateSettings_HasMoreContentAfter = 1274, - calendarViewTemplateSettings_HasMoreContentBefore, - calendarViewTemplateSettings_HasMoreViews, - calendarViewTemplateSettings_HeaderText, - calendarViewTemplateSettings_WeekDay1 = 1280, - calendarViewTemplateSettings_WeekDay2, - calendarViewTemplateSettings_WeekDay3, - calendarViewTemplateSettings_WeekDay4, - calendarViewTemplateSettings_WeekDay5, - calendarViewTemplateSettings_WeekDay6, - calendarViewTemplateSettings_WeekDay7, - calendarView_CalendarIdentifier = 1291, - calendarView_DayOfWeekFormat = 1299, - calendarView_DisplayMode = 1302, - calendarView_FirstDayOfWeek, - calendarView_IsOutOfScopeEnabled = 1317, - calendarView_IsTodayHighlighted, - calendarView_MaxDate = 1320, - calendarView_MinDate, - calendarView_NumberOfWeeksInView = 1327, - calendarView_SelectedDates = 1333, - calendarView_SelectionMode = 1335, - calendarView_TemplateSettings, - calendarViewDayItem_Date = 1339, - calendarViewDayItem_IsBlackout, - mediaTransportControls_IsFastForwardEnabled = 1382, - mediaTransportControls_IsFastRewindEnabled, - mediaTransportControls_IsFullWindowEnabled, - mediaTransportControls_IsPlaybackRateEnabled, - mediaTransportControls_IsSeekEnabled, - mediaTransportControls_IsStopEnabled, - mediaTransportControls_IsVolumeEnabled, - mediaTransportControls_IsZoomEnabled, - contentPresenter_LineHeight = 1425, - calendarViewTemplateSettings_MinViewWidth = 1435, - listViewBase_SelectedRanges = 1459, - splitViewTemplateSettings_CompactPaneGridLength = 1462, - splitViewTemplateSettings_NegativeOpenPaneLength, - splitViewTemplateSettings_NegativeOpenPaneLengthMinusCompactLength, - splitViewTemplateSettings_OpenPaneGridLength, - splitViewTemplateSettings_OpenPaneLengthMinusCompactLength, - splitView_CompactPaneLength, - splitView_Content, - splitView_DisplayMode, - splitView_IsPaneOpen, - splitView_OpenPaneLength, - splitView_Pane, - splitView_PanePlacement, - splitView_TemplateSettings, - uielement_Transform3D, - compositeTransform3D_CenterX, - compositeTransform3D_CenterY = 1478, - compositeTransform3D_CenterZ = 1480, - compositeTransform3D_RotationX = 1482, - compositeTransform3D_RotationY = 1484, - compositeTransform3D_RotationZ = 1486, - compositeTransform3D_ScaleX = 1488, - compositeTransform3D_ScaleY = 1490, - compositeTransform3D_ScaleZ = 1492, - compositeTransform3D_TranslateX = 1494, - compositeTransform3D_TranslateY = 1496, - compositeTransform3D_TranslateZ = 1498, - perspectiveTransform3D_Depth = 1500, - perspectiveTransform3D_OffsetX, - perspectiveTransform3D_OffsetY, - relativePanel_Above = 1508, - relativePanel_AlignBottomWith, - relativePanel_AlignLeftWith, - relativePanel_AlignRightWith = 1515, - relativePanel_AlignTopWith, - relativePanel_Below, - relativePanel_LeftOf = 1520, - relativePanel_RightOf, - splitViewTemplateSettings_OpenPaneLength = 1524, - passwordBox_PasswordRevealMode = 1527, - splitView_PaneBackground, - itemsStackPanel_AreStickyGroupHeadersEnabled, - itemsWrapGrid_AreStickyGroupHeadersEnabled, - menuFlyoutSubItem_Items, - menuFlyoutSubItem_Text, - uielement_CanDrag = 1534, - dataTemplate_ExtensionInstance, - relativePanel_AlignHorizontalCenterWith = 1552, - relativePanel_AlignVerticalCenterWith, - targetPropertyPath_Path = 1555, - targetPropertyPath_Target, - visualState_Setters = 1558, - visualState_StateTriggers, - adaptiveTrigger_MinWindowHeight, - adaptiveTrigger_MinWindowWidth, - setter_Target, - calendarView_BlackoutForeground = 1565, - calendarView_CalendarItemBackground, - calendarView_CalendarItemBorderBrush, - calendarView_CalendarItemBorderThickness, - calendarView_CalendarItemForeground, - calendarView_CalendarViewDayItemStyle, - calendarView_DayItemFontFamily, - calendarView_DayItemFontSize, - calendarView_DayItemFontStyle, - calendarView_DayItemFontWeight, - calendarView_FirstOfMonthLabelFontFamily, - calendarView_FirstOfMonthLabelFontSize, - calendarView_FirstOfMonthLabelFontStyle, - calendarView_FirstOfMonthLabelFontWeight, - calendarView_FirstOfYearDecadeLabelFontFamily, - calendarView_FirstOfYearDecadeLabelFontSize, - calendarView_FirstOfYearDecadeLabelFontStyle, - calendarView_FirstOfYearDecadeLabelFontWeight, - calendarView_FocusBorderBrush, - calendarView_HorizontalDayItemAlignment, - calendarView_HorizontalFirstOfMonthLabelAlignment, - calendarView_HoverBorderBrush, - calendarView_MonthYearItemFontFamily = 1588, - calendarView_MonthYearItemFontSize, - calendarView_MonthYearItemFontStyle, - calendarView_MonthYearItemFontWeight, - calendarView_OutOfScopeBackground, - calendarView_OutOfScopeForeground, - calendarView_PressedBorderBrush, - calendarView_PressedForeground, - calendarView_SelectedBorderBrush, - calendarView_SelectedForeground, - calendarView_SelectedHoverBorderBrush, - calendarView_SelectedPressedBorderBrush, - calendarView_TodayFontWeight, - calendarView_TodayForeground, - calendarView_VerticalDayItemAlignment, - calendarView_VerticalFirstOfMonthLabelAlignment, - mediaTransportControls_IsCompact = 1605, - relativePanel_AlignBottomWithPanel, - relativePanel_AlignHorizontalCenterWithPanel, - relativePanel_AlignLeftWithPanel, - relativePanel_AlignRightWithPanel, - relativePanel_AlignTopWithPanel, - relativePanel_AlignVerticalCenterWithPanel, - listViewBase_IsMultiSelectCheckBoxEnabled, - automationProperties_Level = 1614, - automationProperties_PositionInSet, - automationProperties_SizeOfSet, - listViewItemPresenter_CheckBoxBrush, - listViewItemPresenter_CheckMode, - listViewItemPresenter_PressedBackground = 1620, - listViewItemPresenter_SelectedPressedBackground, - control_IsTemplateFocusTarget = 1623, - control_UseSystemFocusVisuals, - listViewItemPresenter_FocusSecondaryBorderBrush = 1628, - listViewItemPresenter_PointerOverForeground = 1630, - fontIcon_MirroredWhenRightToLeft, - calendarViewTemplateSettings_CenterX, - calendarViewTemplateSettings_CenterY, - calendarViewTemplateSettings_ClipRect, - passwordBox_TextReadingOrder = 1650, - richEditBox_TextReadingOrder, - textBox_TextReadingOrder, - webView_ExecutionMode, - webView_DeferredPermissionRequests = 1655, - webView_Settings, - richEditBox_DesiredCandidateWindowAlignment = 1660, - textBox_DesiredCandidateWindowAlignment = 1662, - calendarDatePicker_CalendarIdentifier, - calendarDatePicker_CalendarViewStyle, - calendarDatePicker_Date, - calendarDatePicker_DateFormat, - calendarDatePicker_DayOfWeekFormat, - calendarDatePicker_DisplayMode, - calendarDatePicker_FirstDayOfWeek, - calendarDatePicker_Header, - calendarDatePicker_HeaderTemplate, - calendarDatePicker_IsCalendarOpen, - calendarDatePicker_IsGroupLabelVisible, - calendarDatePicker_IsOutOfScopeEnabled, - calendarDatePicker_IsTodayHighlighted, - calendarDatePicker_MaxDate, - calendarDatePicker_MinDate, - calendarDatePicker_PlaceholderText, - calendarView_IsGroupLabelVisible, - contentPresenter_Background, - contentPresenter_BorderBrush, - contentPresenter_BorderThickness, - contentPresenter_CornerRadius, - contentPresenter_Padding, - grid_BorderBrush, - grid_BorderThickness, - grid_CornerRadius, - grid_Padding, - relativePanel_BorderBrush, - relativePanel_BorderThickness, - relativePanel_CornerRadius, - relativePanel_Padding, - stackPanel_BorderBrush, - stackPanel_BorderThickness, - stackPanel_CornerRadius, - stackPanel_Padding, - passwordBox_InputScope, - mediaTransportControlsHelper_DropoutOrder, - autoSuggestBoxQuerySubmittedEventArgs_ChosenSuggestion, - autoSuggestBoxQuerySubmittedEventArgs_QueryText, - autoSuggestBox_QueryIcon, - stateTrigger_IsActive, - contentPresenter_HorizontalContentAlignment, - contentPresenter_VerticalContentAlignment, - appBarTemplateSettings_ClipRect, - appBarTemplateSettings_CompactRootMargin, - appBarTemplateSettings_CompactVerticalDelta, - appBarTemplateSettings_HiddenRootMargin, - appBarTemplateSettings_HiddenVerticalDelta, - appBarTemplateSettings_MinimalRootMargin, - appBarTemplateSettings_MinimalVerticalDelta, - commandBarTemplateSettings_ContentHeight, - commandBarTemplateSettings_NegativeOverflowContentHeight, - commandBarTemplateSettings_OverflowContentClipRect, - commandBarTemplateSettings_OverflowContentHeight, - commandBarTemplateSettings_OverflowContentHorizontalOffset, - commandBarTemplateSettings_OverflowContentMaxHeight, - commandBarTemplateSettings_OverflowContentMinWidth, - appBar_TemplateSettings, - commandBar_CommandBarOverflowPresenterStyle, - commandBar_CommandBarTemplateSettings, - drillInThemeAnimation_EntranceTarget, - drillInThemeAnimation_EntranceTargetName, - drillInThemeAnimation_ExitTarget, - drillInThemeAnimation_ExitTargetName, - drillOutThemeAnimation_EntranceTarget, - drillOutThemeAnimation_EntranceTargetName, - drillOutThemeAnimation_ExitTarget, - drillOutThemeAnimation_ExitTargetName, - xamlBindingHelper_DataTemplateComponent, - automationProperties_Annotations = 1732, - automationAnnotation_Element, - automationAnnotation_Type, - automationPeerAnnotation_Peer, - automationPeerAnnotation_Type, - hyperlink_UnderlineStyle = 1741, - control_IsFocusEngaged = 1749, - control_IsFocusEngagementEnabled = 1752, - richEditBox_ClipboardCopyFormat = 1754, - commandBarTemplateSettings_OverflowContentMaxWidth = 1757, - comboBoxTemplateSettings_DropDownContentMinWidth, - menuFlyoutPresenterTemplateSettings_FlyoutContentMinWidth = 1762, - menuFlyoutPresenter_TemplateSettings, - automationProperties_LandmarkType = 1766, - automationProperties_LocalizedLandmarkType, - repositionThemeTransition_IsStaggeringEnabled = 1769, - listBox_SingleSelectionFollowsFocus, - listViewBase_SingleSelectionFollowsFocus, - bitmapImage_AutoPlay = 1773, - bitmapImage_IsAnimatedBitmap, - bitmapImage_IsPlaying, - automationProperties_FullDescription, - automationProperties_IsDataValidForForm, - automationProperties_IsPeripheral, - automationProperties_LocalizedControlType, - flyoutBase_AllowFocusOnInteraction, - textElement_AllowFocusOnInteraction, - frameworkElement_AllowFocusOnInteraction, - control_RequiresPointer, - uielement_ContextFlyout = 1785, - textElement_AccessKey, - uielement_AccessKeyScopeOwner, - uielement_IsAccessKeyScope, - automationProperties_DescribedBy = 1790, - uielement_AccessKey = 1803, - control_XYFocusDown, - control_XYFocusLeft, - control_XYFocusRight, - control_XYFocusUp, - hyperlink_XYFocusDown, - hyperlink_XYFocusLeft, - hyperlink_XYFocusRight, - hyperlink_XYFocusUp, - webView_XYFocusDown, - webView_XYFocusLeft, - webView_XYFocusRight, - webView_XYFocusUp, - commandBarTemplateSettings_EffectiveOverflowButtonVisibility, - appBarSeparator_IsInOverflow, - commandBar_DefaultLabelPosition, - commandBar_IsDynamicOverflowEnabled, - commandBar_OverflowButtonVisibility, - appBarButton_IsInOverflow, - appBarButton_LabelPosition, - appBarToggleButton_IsInOverflow, - appBarToggleButton_LabelPosition, - flyoutBase_LightDismissOverlayMode, - popup_LightDismissOverlayMode = 1827, - calendarDatePicker_LightDismissOverlayMode = 1829, - datePicker_LightDismissOverlayMode, - splitView_LightDismissOverlayMode, - timePicker_LightDismissOverlayMode, - appBar_LightDismissOverlayMode, - autoSuggestBox_LightDismissOverlayMode, - comboBox_LightDismissOverlayMode, - appBarSeparator_DynamicOverflowOrder, - appBarButton_DynamicOverflowOrder, - appBarToggleButton_DynamicOverflowOrder, - frameworkElement_FocusVisualMargin, - frameworkElement_FocusVisualPrimaryBrush, - frameworkElement_FocusVisualPrimaryThickness, - frameworkElement_FocusVisualSecondaryBrush, - frameworkElement_FocusVisualSecondaryThickness, - flyoutBase_AllowFocusWhenDisabled = 1846, - frameworkElement_AllowFocusWhenDisabled, - comboBox_IsTextSearchEnabled, - textElement_ExitDisplayModeOnAccessKeyInvoked, - uielement_ExitDisplayModeOnAccessKeyInvoked, - mediaPlayerPresenter_IsFullWindow, - mediaPlayerPresenter_MediaPlayer, - mediaPlayerPresenter_Stretch, - mediaPlayerElement_AreTransportControlsEnabled, - mediaPlayerElement_AutoPlay, - mediaPlayerElement_IsFullWindow, - mediaPlayerElement_MediaPlayer, - mediaPlayerElement_PosterSource, - mediaPlayerElement_Source, - mediaPlayerElement_Stretch, - mediaPlayerElement_TransportControls, - mediaTransportControls_FastPlayFallbackBehaviour, - mediaTransportControls_IsNextTrackButtonVisible, - mediaTransportControls_IsPreviousTrackButtonVisible, - mediaTransportControls_IsSkipBackwardButtonVisible, - mediaTransportControls_IsSkipBackwardEnabled, - mediaTransportControls_IsSkipForwardButtonVisible, - mediaTransportControls_IsSkipForwardEnabled, - flyoutBase_ElementSoundMode, - control_ElementSoundMode, - hyperlink_ElementSoundMode, - automationProperties_FlowsFrom = 1876, - automationProperties_FlowsTo, - textElement_TextDecorations = 1879, - richTextBlock_TextDecorations = 1881, - control_DefaultStyleResourceUri, - contentDialog_PrimaryButtonStyle = 1884, - contentDialog_SecondaryButtonStyle, - textElement_KeyTipHorizontalOffset = 1890, - textElement_KeyTipPlacementMode, - textElement_KeyTipVerticalOffset, - uielement_KeyTipHorizontalOffset, - uielement_KeyTipPlacementMode, - uielement_KeyTipVerticalOffset, - flyoutBase_OverlayInputPassThroughElement, - uielement_XYFocusKeyboardNavigation, - automationProperties_Culture, - uielement_XYFocusDownNavigationStrategy = 1918, - uielement_XYFocusLeftNavigationStrategy, - uielement_XYFocusRightNavigationStrategy, - uielement_XYFocusUpNavigationStrategy, - hyperlink_XYFocusDownNavigationStrategy, - hyperlink_XYFocusLeftNavigationStrategy, - hyperlink_XYFocusRightNavigationStrategy, - hyperlink_XYFocusUpNavigationStrategy, - textElement_AccessKeyScopeOwner, - textElement_IsAccessKeyScope, - hyperlink_FocusState = 1934, - contentDialog_CloseButtonCommand = 1936, - contentDialog_CloseButtonCommandParameter, - contentDialog_CloseButtonStyle, - contentDialog_CloseButtonText, - contentDialog_DefaultButton, - richEditBox_SelectionHighlightColorWhenNotFocused, - textBox_SelectionHighlightColorWhenNotFocused, - svgImageSource_RasterizePixelHeight = 1948, - svgImageSource_RasterizePixelWidth, - svgImageSource_UriSource, - loadedImageSurface_DecodedPhysicalSize = 1955, - loadedImageSurface_DecodedSize, - loadedImageSurface_NaturalSize, - comboBox_SelectionChangedTrigger, - xamlCompositionBrushBase_FallbackColor = 1960, - uielement_Lights = 1962, - menuFlyoutItem_Icon, - menuFlyoutSubItem_Icon, - bitmapIcon_ShowAsMonochrome, - uielement_HighContrastAdjustment = 1967, - richEditBox_MaxLength, - uielement_TabFocusNavigation, - control_IsTemplateKeyTipTarget, - hyperlink_IsTabStop = 1972, - hyperlink_TabIndex, - mediaTransportControls_IsRepeatButtonVisible, - mediaTransportControls_IsRepeatEnabled, - mediaTransportControls_ShowAndHideAutomatically, - richEditBox_DisabledFormattingAccelerators, - richEditBox_CharacterCasing, - textBox_CharacterCasing, - richTextBlock_IsTextTrimmed, - richTextBlockOverflow_IsTextTrimmed, - textBlock_IsTextTrimmed, - textHighlighter_Background = 1985, - textHighlighter_Foreground, - textHighlighter_Ranges, - richTextBlock_TextHighlighters, - textBlock_TextHighlighters, - frameworkElement_ActualTheme = 1992, - grid_ColumnSpacing, - grid_RowSpacing, - stackPanel_Spacing, - block_HorizontalTextAlignment, - richTextBlock_HorizontalTextAlignment, - textBlock_HorizontalTextAlignment, - richEditBox_HorizontalTextAlignment, - textBox_HorizontalTextAlignment, - textBox_PlaceholderForeground, - comboBox_PlaceholderForeground, - keyboardAccelerator_IsEnabled, - keyboardAccelerator_Key, - keyboardAccelerator_Modifiers, - keyboardAccelerator_ScopeOwner, - uielement_KeyboardAccelerators, - listViewItemPresenter_RevealBackground = 2009, - listViewItemPresenter_RevealBackgroundShowsAboveContent, - listViewItemPresenter_RevealBorderBrush, - listViewItemPresenter_RevealBorderThickness, - uielement_KeyTipTarget = 2014, - appBarButtonTemplateSettings_KeyboardAcceleratorTextMinWidth, - appBarToggleButtonTemplateSettings_KeyboardAcceleratorTextMinWidth, - menuFlyoutItemTemplateSettings_KeyboardAcceleratorTextMinWidth, - menuFlyoutItem_TemplateSettings = 2019, - appBarButton_TemplateSettings = 2021, - appBarToggleButton_TemplateSettings = 2023, - uielement_KeyboardAcceleratorPlacementMode = 2028, - mediaTransportControls_IsCompactOverlayButtonVisible = 2032, - mediaTransportControls_IsCompactOverlayEnabled, - uielement_KeyboardAcceleratorPlacementTarget = 2061, - uielement_CenterPoint, - uielement_Rotation, - uielement_RotationAxis, - uielement_Scale, - uielement_TransformMatrix, - uielement_Translation, - textBox_HandwritingView, - automationProperties_HeadingLevel, - textBox_IsHandwritingViewEnabled = 2076, - richEditBox_ContentLinkProviders = 2078, - richEditBox_ContentLinkBackgroundColor, - richEditBox_ContentLinkForegroundColor, - handwritingView_AreCandidatesEnabled, - handwritingView_IsOpen, - handwritingView_PlacementTarget = 2084, - handwritingView_PlacementAlignment, - richEditBox_HandwritingView, - richEditBox_IsHandwritingViewEnabled, - menuFlyoutItem_KeyboardAcceleratorTextOverride = 2090, - appBarButton_KeyboardAcceleratorTextOverride, - appBarToggleButton_KeyboardAcceleratorTextOverride, - contentLink_Background, - contentLink_Cursor, - contentLink_ElementSoundMode, - contentLink_FocusState, - contentLink_IsTabStop, - contentLink_TabIndex, - contentLink_XYFocusDown, - contentLink_XYFocusDownNavigationStrategy, - contentLink_XYFocusLeft, - contentLink_XYFocusLeftNavigationStrategy, - contentLink_XYFocusRight, - contentLink_XYFocusRightNavigationStrategy, - contentLink_XYFocusUp, - contentLink_XYFocusUpNavigationStrategy, - iconSource_Foreground = 2112, - bitmapIconSource_ShowAsMonochrome, - bitmapIconSource_UriSource, - fontIconSource_FontFamily, - fontIconSource_FontSize, - fontIconSource_FontStyle, - fontIconSource_FontWeight, - fontIconSource_Glyph, - fontIconSource_IsTextScaleFactorEnabled, - fontIconSource_MirroredWhenRightToLeft, - pathIconSource_Data, - symbolIconSource_Symbol, - uielement_Shadow = 2130, - iconSourceElement_IconSource, - passwordBox_CanPasteClipboardContent = 2137, - textBox_CanPasteClipboardContent, - textBox_CanRedo, - textBox_CanUndo, - flyoutBase_ShowMode, - flyoutBase_Target, - control_CornerRadius, - automationProperties_IsDialog = 2149, - appBarElementContainer_DynamicOverflowOrder, - appBarElementContainer_IsCompact, - appBarElementContainer_IsInOverflow, - scrollContentPresenter_CanContentRenderOutsideBounds = 2157, - scrollViewer_CanContentRenderOutsideBounds, - richEditBox_SelectionFlyout, - textBox_SelectionFlyout, - border_BackgroundSizing, - contentPresenter_BackgroundSizing, - control_BackgroundSizing, - grid_BackgroundSizing, - relativePanel_BackgroundSizing, - stackPanel_BackgroundSizing, - scrollViewer_HorizontalAnchorRatio = 2170, - scrollViewer_VerticalAnchorRatio, - comboBox_Text = 2208, - textBox_Description = 2217, - toolTip_PlacementRect, - richTextBlock_SelectionFlyout, - textBlock_SelectionFlyout, - passwordBox_SelectionFlyout, - border_BackgroundTransition, - contentPresenter_BackgroundTransition, - panel_BackgroundTransition, - colorPaletteResources_Accent = 2227, - colorPaletteResources_AltHigh, - colorPaletteResources_AltLow, - colorPaletteResources_AltMedium, - colorPaletteResources_AltMediumHigh, - colorPaletteResources_AltMediumLow, - colorPaletteResources_BaseHigh, - colorPaletteResources_BaseLow, - colorPaletteResources_BaseMedium, - colorPaletteResources_BaseMediumHigh, - colorPaletteResources_BaseMediumLow, - colorPaletteResources_ChromeAltLow, - colorPaletteResources_ChromeBlackHigh, - colorPaletteResources_ChromeBlackLow, - colorPaletteResources_ChromeBlackMedium, - colorPaletteResources_ChromeBlackMediumLow, - colorPaletteResources_ChromeDisabledHigh, - colorPaletteResources_ChromeDisabledLow, - colorPaletteResources_ChromeGray, - colorPaletteResources_ChromeHigh, - colorPaletteResources_ChromeLow, - colorPaletteResources_ChromeMedium, - colorPaletteResources_ChromeMediumLow, - colorPaletteResources_ChromeWhite, - colorPaletteResources_ErrorText = 2252, - colorPaletteResources_ListLow, - colorPaletteResources_ListMedium, - uielement_TranslationTransition, - uielement_OpacityTransition, - uielement_RotationTransition, - uielement_ScaleTransition, - brushTransition_Duration = 2261, - scalarTransition_Duration, - vector3Transition_Duration, - vector3Transition_Components = 2266, - flyoutBase_IsOpen, - standardUICommand_Kind = 2275, - uielement_CanBeScrollAnchor, - themeShadow_Receivers = 2279, - scrollContentPresenter_SizesContentToTemplatedParent, - comboBox_TextBoxStyle, - frame_IsNavigationStackEnabled, - richEditBox_ProofingMenuFlyout, - textBox_ProofingMenuFlyout, - scrollViewer_ReduceViewportForCoreInputViewOcclusions = 2295, - flyoutBase_AreOpenCloseAnimationsEnabled, - flyoutBase_InputDevicePrefersPrimaryCommands, - calendarDatePicker_Description = 2300, - passwordBox_Description = 2308, - richEditBox_Description = 2316, - autoSuggestBox_Description = 2331, - comboBox_Description = 2339, - xamlUICommand_AccessKey = 2347, - xamlUICommand_Command, - xamlUICommand_Description, - xamlUICommand_IconSource, - xamlUICommand_KeyboardAccelerators, - xamlUICommand_Label, - datePicker_SelectedDate = 2355, - timePicker_SelectedTime, - appBarTemplateSettings_NegativeCompactVerticalDelta = 2367, - appBarTemplateSettings_NegativeHiddenVerticalDelta, - appBarTemplateSettings_NegativeMinimalVerticalDelta, - flyoutBase_ShouldConstrainToRootBounds = 2378, - popup_ShouldConstrainToRootBounds, - flyoutPresenter_IsDefaultShadowEnabled, - menuFlyoutPresenter_IsDefaultShadowEnabled, - uielement_ActualOffset, - uielement_ActualSize, - commandBarTemplateSettings_OverflowContentCompactYTranslation, - commandBarTemplateSettings_OverflowContentHiddenYTranslation, - commandBarTemplateSettings_OverflowContentMinimalYTranslation, - } - export enum XamlTypeIndex { - autoSuggestBoxSuggestionChosenEventArgs = 34, - autoSuggestBoxTextChangedEventArgs, - collectionViewSource = 41, - columnDefinition = 44, - gradientStop = 64, - inputScope = 74, - inputScopeName, - keySpline = 78, - pathFigure = 93, - printDocument = 100, - rowDefinition = 106, - style = 114, - timelineMarker = 126, - visualState = 137, - visualStateGroup, - visualStateManager, - visualTransition, - addDeleteThemeTransition = 177, - arcSegment, - backEase, - beginStoryboard, - bezierSegment, - bindingBase, - bitmapCache, - bounceEase = 186, - circleEase, - colorAnimation, - colorAnimationUsingKeyFrames, - contentThemeTransition, - controlTemplate, - cubicEase, - dataTemplate = 194, - discreteColorKeyFrame, - discreteDoubleKeyFrame, - discreteObjectKeyFrame, - discretePointKeyFrame, - doubleAnimation = 200, - doubleAnimationUsingKeyFrames, - easingColorKeyFrame = 204, - easingDoubleKeyFrame, - easingPointKeyFrame, - edgeUIThemeTransition, - elasticEase, - ellipseGeometry, - entranceThemeTransition, - eventTrigger, - exponentialEase, - flyout, - geometryGroup = 216, - itemsPanelTemplate = 227, - linearColorKeyFrame = 230, - linearDoubleKeyFrame, - linearPointKeyFrame, - lineGeometry, - lineSegment, - matrix3DProjection = 236, - menuFlyout = 238, - objectAnimationUsingKeyFrames = 240, - paneThemeTransition, - pathGeometry = 243, - planeProjection, - pointAnimation, - pointAnimationUsingKeyFrames, - polyBezierSegment = 248, - polyLineSegment, - polyQuadraticBezierSegment, - popupThemeTransition, - powerEase, - quadraticBezierSegment = 254, - quadraticEase, - quarticEase, - quinticEase, - rectangleGeometry, - relativeSource, - renderTargetBitmap, - reorderThemeTransition, - repositionThemeTransition, - setter, - sineEase, - solidColorBrush, - splineColorKeyFrame, - splineDoubleKeyFrame, - splinePointKeyFrame, - bitmapImage = 285, - border, - captureElement = 288, - compositeTransform = 295, - contentPresenter, - dragItemThemeAnimation = 302, - dragOverThemeAnimation, - dropTargetItemThemeAnimation, - fadeInThemeAnimation = 306, - fadeOutThemeAnimation, - glyphs = 312, - image = 326, - imageBrush = 328, - inlineUIContainer, - itemsPresenter = 332, - linearGradientBrush = 334, - lineBreak, - matrixTransform = 340, - mediaElement = 342, - paragraph = 349, - pointerDownThemeAnimation = 357, - pointerUpThemeAnimation = 359, - popInThemeAnimation = 361, - popOutThemeAnimation, - popup, - repositionThemeAnimation = 370, - resourceDictionary, - richTextBlock = 374, - richTextBlockOverflow = 376, - rotateTransform = 378, - run = 380, - scaleTransform, - skewTransform = 389, - span, - splitCloseThemeAnimation, - splitOpenThemeAnimation, - storyboard, - swipeBackThemeAnimation, - swipeHintThemeAnimation, - textBlock, - transformGroup = 411, - translateTransform = 413, - viewbox = 417, - webViewBrush = 423, - appBarSeparator = 427, - bitmapIcon = 429, - bold, - canvas = 432, - contentControl = 435, - datePicker, - dependencyObjectCollection, - ellipse, - fontIcon = 440, - grid = 442, - hub = 445, - hubSection, - hyperlink, - italic = 449, - itemsControl = 451, - line, - mediaTransportControls = 458, - passwordBox = 462, - path, - pathIcon, - polygon, - polyline, - progressRing = 468, - rectangle = 470, - richEditBox = 473, - scrollContentPresenter = 476, - searchBox, - semanticZoom = 479, - stackPanel = 481, - symbolIcon, - textBox, - thumb = 485, - tickBar, - timePicker, - toggleSwitch = 489, - underline, - userControl, - variableSizedWrapGrid, - webView = 494, - appBar, - autoSuggestBox = 499, - carouselPanel = 502, - contentDialog = 506, - flyoutPresenter = 508, - frame, - gridViewItemPresenter = 511, - groupItem, - itemsStackPanel = 514, - itemsWrapGrid, - listViewItemPresenter = 520, - menuFlyoutItem, - menuFlyoutPresenter, - menuFlyoutSeparator, - page = 525, - progressBar = 528, - scrollBar = 530, - settingsFlyout = 533, - slider, - swapChainBackgroundPanel, - swapChainPanel, - toolTip = 538, - button = 540, - comboBoxItem, - commandBar, - flipViewItem, - gridViewHeaderItem = 545, - hyperlinkButton, - listBoxItem, - listViewHeaderItem = 550, - repeatButton, - scrollViewer, - toggleButton, - toggleMenuFlyoutItem, - virtualizingStackPanel, - wrapGrid, - appBarButton, - appBarToggleButton, - checkBox, - gridViewItem, - listViewItem, - radioButton, - binding = 564, - comboBox = 566, - flipView, - listBox, - gridView = 570, - listView, - calendarView = 707, - calendarViewDayItem = 709, - calendarPanel = 723, - splitView = 728, - compositeTransform3D = 732, - perspectiveTransform3D, - relativePanel = 744, - inkCanvas = 748, - menuFlyoutSubItem, - adaptiveTrigger = 757, - softwareBitmapSource = 761, - stateTrigger = 767, - calendarDatePicker = 774, - autoSuggestBoxQuerySubmittedEventArgs = 778, - commandBarOverflowPresenter = 781, - drillInThemeAnimation, - drillOutThemeAnimation, - automationAnnotation = 789, - automationPeerAnnotation, - mediaPlayerPresenter = 828, - mediaPlayerElement, - xamlLight = 855, - svgImageSource = 860, - keyboardAccelerator = 897, - handwritingView = 920, - contentLink = 925, - bitmapIconSource = 929, - fontIconSource, - pathIconSource, - symbolIconSource = 933, - iconSourceElement = 939, - appBarElementContainer = 945, - colorPaletteResources = 952, - standardUICommand = 961, - themeShadow = 964, - xamlUICommand = 969, - } - } - } - export interface CornerRadius { - topLeft: number; - topRight: number; - bottomRight: number; - bottomLeft: number; - } - export class CornerRadiusHelper implements ICornerRadiusHelper { - static fromRadii(topLeft: number, topRight: number, bottomRight: number, bottomLeft: number): CornerRadius { - throw new Error('shimmed function CornerRadiusHelper.fromRadii'); - } - - static fromUniformRadius(uniformRadius: number): CornerRadius { - throw new Error('shimmed function CornerRadiusHelper.fromUniformRadius'); - } - - } - export type CreateDefaultValueCallback = () => any; - export namespace Data { - export class BindableAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function BindableAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function BindableAttribute.isDefaultAttribute'); - } - - } - export class Binding implements IDependencyObject, IDependencyObject2, IBindingBase, IBinding, IBinding2 { - // constructor(); - source: any; - relativeSource: RelativeSource; - path: PropertyPath; - mode: BindingMode = BindingMode.oneWay; - elementName: string = ''; - converterParameter: any; - converterLanguage: string = ''; - converter: IValueConverter; - updateSourceTrigger: UpdateSourceTrigger = UpdateSourceTrigger.default; - targetNullValue: any; - fallbackValue: any; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Binding.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Binding.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Binding.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Binding.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Binding.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Binding.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Binding.unregisterPropertyChangedCallback'); - } - - } - export class BindingBase implements IDependencyObject, IDependencyObject2, IBindingBase { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BindingBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BindingBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BindingBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BindingBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BindingBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BindingBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BindingBase.unregisterPropertyChangedCallback'); - } - - } - export class BindingExpression implements IBindingExpressionBase, IBindingExpression { - dataItem: any; - parentBinding: Binding; - - updateSource(): void { - console.warn('shimmed function BindingExpression.updateSource'); - } - - } - export class BindingExpressionBase implements IBindingExpressionBase { - } - export enum BindingMode { - oneWay = 1, - oneTime, - twoWay, - } - export class BindingOperations implements IBindingOperations { - static setBinding(target: DependencyObject, dp: DependencyProperty, binding: BindingBase): void { - console.warn('shimmed function BindingOperations.setBinding'); - } - - } - export class CollectionViewSource implements IDependencyObject, IDependencyObject2, ICollectionViewSource { - // constructor(); - source: any; - itemsPath: PropertyPath; - isSourceGrouped: Boolean = false; - view: ICollectionView; - static isSourceGroupedProperty: DependencyProperty = null; - static itemsPathProperty: DependencyProperty = null; - static sourceProperty: DependencyProperty = null; - static viewProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CollectionViewSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CollectionViewSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CollectionViewSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CollectionViewSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CollectionViewSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CollectionViewSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CollectionViewSource.unregisterPropertyChangedCallback'); - } - - } - export class CurrentChangingEventArgs implements ICurrentChangingEventArgs { - // constructor(); - // constructor(isCancelable: Boolean); - constructor(isCancelable: Boolean) {} - - cancel: Boolean = false; - isCancelable: Boolean = true; - - } - export type CurrentChangingEventHandler = (e: CurrentChangingEventArgs) => void; - export interface ICollectionView extends Foundation.Collections.IObservableVector, Foundation.Collections.IVector, Foundation.Collections.IIterable { - collectionGroups: any[]; - currentItem: any; - currentPosition: number; - hasMoreItems: Boolean; - isCurrentAfterLast: Boolean; - isCurrentBeforeFirst: Boolean; - moveCurrentTo(item: any): Boolean; - moveCurrentToPosition(index: number): Boolean; - moveCurrentToFirst(): Boolean; - moveCurrentToLast(): Boolean; - moveCurrentToNext(): Boolean; - moveCurrentToPrevious(): Boolean; - loadMoreItemsAsync(count: number): Foundation.IAsyncOperation; - } - export interface ICollectionViewFactory { - createView(): ICollectionView; - } - export interface ICollectionViewGroup { - group: any; - groupItems: any[]; - } - export interface ICustomProperty { - canRead: Boolean; - canWrite: Boolean; - name: string; - type: /* System.Type */ any; - getValue(target: any): any; - setValue(target: any, value: any): void; - getIndexedValue(target: any, index: any): any; - setIndexedValue(target: any, value: any, index: any): void; - } - export interface ICustomPropertyProvider { - type: /* System.Type */ any; - getCustomProperty(name: string): ICustomProperty; - getIndexedProperty(name: string, type: /* System.Type */ any): ICustomProperty; - getStringRepresentation(): string; - } - export interface IItemsRangeInfo extends Foundation.IClosable { - rangesChanged(visibleRange: ItemIndexRange, trackedItems: ItemIndexRange[]): void; - } - export interface ISelectionInfo { - selectRange(itemIndexRange: ItemIndexRange): void; - deselectRange(itemIndexRange: ItemIndexRange): void; - isSelected(index: number): Boolean; - getSelectedRanges(): ItemIndexRange[]; - } - export interface ISupportIncrementalLoading { - hasMoreItems: Boolean; - loadMoreItemsAsync(count: number): Foundation.IAsyncOperation; - } - export class ItemIndexRange implements IItemIndexRange { - // constructor(firstIndex: number, length: number); - constructor(firstIndex: number, length: number) {} - - firstIndex: number; - lastIndex: number; - length: number; - - } - export interface IValueConverter { - convert(value: any, targetType: /* System.Type */ any, parameter: any, language: string): any; - convertBack(value: any, targetType: /* System.Type */ any, parameter: any, language: string): any; - } - export interface LoadMoreItemsResult { - count: number; - } - export class PropertyChangedEventArgs implements IPropertyChangedEventArgs { - // constructor(name: string); - constructor(name: string) {} - - propertyName: string; - - } - export type PropertyChangedEventHandler = (e: /* System.ComponentModel.PropertyChangedEventArgs */ any) => void; - export class RelativeSource implements IDependencyObject, IDependencyObject2, IRelativeSource { - // constructor(); - mode: RelativeSourceMode = RelativeSourceMode.none; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RelativeSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RelativeSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RelativeSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RelativeSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RelativeSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RelativeSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RelativeSource.unregisterPropertyChangedCallback'); - } - - } - export enum RelativeSourceMode { - none, - templatedParent, - self, - } - export enum UpdateSourceTrigger { - default, - propertyChanged, - explicit, - lostFocus, - } - } - export class DataContextChangedEventArgs implements IDataContextChangedEventArgs { - handled: Boolean; - newValue: any; - - } - export class DataTemplate implements IDependencyObject, IDependencyObject2, IFrameworkTemplate, IDataTemplate, IElementFactory { - // constructor(); - static extensionInstanceProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DataTemplate.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DataTemplate.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DataTemplate.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DataTemplate.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DataTemplate.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DataTemplate.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DataTemplate.unregisterPropertyChangedCallback'); - } - - loadContent(): DependencyObject { - throw new Error('shimmed function DataTemplate.loadContent'); - } - - getElement(args: ElementFactoryGetArgs): UIElement { - throw new Error('shimmed function DataTemplate.getElement'); - } - - recycleElement(args: ElementFactoryRecycleArgs): void { - console.warn('shimmed function DataTemplate.recycleElement'); - } - - static getExtensionInstance(element: FrameworkElement): IDataTemplateExtension { - throw new Error('shimmed function DataTemplate.getExtensionInstance'); - } - - static setExtensionInstance(element: FrameworkElement, value: IDataTemplateExtension): void { - console.warn('shimmed function DataTemplate.setExtensionInstance'); - } - - } - export class DataTemplateKey implements IDataTemplateKey { - // constructor(); - // constructor(dataType: any); - constructor(dataType: any) {} - - dataType: any; - - } - export class DebugSettings implements IDebugSettings, IDebugSettings2, IDebugSettings3, IDebugSettings4 { - isOverdrawHeatMapEnabled: Boolean; - isBindingTracingEnabled: Boolean; - enableFrameRateCounter: Boolean; - enableRedrawRegions: Boolean; - isTextPerformanceVisualizationEnabled: Boolean; - failFastOnErrors: Boolean; - - addEventListener(name: string, handler: Function) { - console.warn(`DebugSettings::addEventListener: ${name}`); - switch (name) { - case "bindingfailed": // BindingFailedEventHandler - break; - } - - } - } - export class DependencyObject implements IDependencyObject, IDependencyObject2 { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DependencyObject.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DependencyObject.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DependencyObject.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DependencyObject.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DependencyObject.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DependencyObject.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DependencyObject.unregisterPropertyChangedCallback'); - } - - } - export class DependencyObjectCollection implements IDependencyObject, IDependencyObject2, Foundation.Collections.IObservableVector, Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DependencyObjectCollection.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DependencyObjectCollection.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DependencyObjectCollection.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DependencyObjectCollection.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DependencyObjectCollection.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DependencyObjectCollection.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DependencyObjectCollection.unregisterPropertyChangedCallback'); - } - - getAt(index: number): DependencyObject { - throw new Error('shimmed function DependencyObjectCollection.getAt'); - } - - getView(): DependencyObject[] { - throw new Error('shimmed function DependencyObjectCollection.getView'); - } - - indexOf(value: DependencyObject): { returnValue: Boolean, index: number } { - throw new Error('shimmed function DependencyObjectCollection.indexOf'); - } - - setAt(index: number, value: DependencyObject): void { - console.warn('shimmed function DependencyObjectCollection.setAt'); - } - - insertAt(index: number, value: DependencyObject): void { - console.warn('shimmed function DependencyObjectCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function DependencyObjectCollection.removeAt'); - } - - append(value: DependencyObject): void { - console.warn('shimmed function DependencyObjectCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function DependencyObjectCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function DependencyObjectCollection.clear'); - } - - getMany(startIndex: number, items: DependencyObject[]): number { - throw new Error('shimmed function DependencyObjectCollection.getMany'); - } - - replaceAll(items: DependencyObject[]): void { - console.warn('shimmed function DependencyObjectCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function DependencyObjectCollection.first'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DependencyObjectCollection::addEventListener: ${name}`); - switch (name) { - case "vectorchanged": // Foundation.Collections.VectorChangedEventHandler - break; - } - - } - } - export class DependencyProperty implements IDependencyProperty { - static unsetValue: any = null; - - getMetadata(forType: /* System.Type */ any): PropertyMetadata { - throw new Error('shimmed function DependencyProperty.getMetadata'); - } - - static register(name: string, propertyType: /* System.Type */ any, ownerType: /* System.Type */ any, typeMetadata: PropertyMetadata): DependencyProperty { - throw new Error('shimmed function DependencyProperty.register'); - } - - static registerAttached(name: string, propertyType: /* System.Type */ any, ownerType: /* System.Type */ any, defaultMetadata: PropertyMetadata): DependencyProperty { - throw new Error('shimmed function DependencyProperty.registerAttached'); - } - - } - export type DependencyPropertyChangedCallback = (dp: DependencyProperty) => void; - export class DependencyPropertyChangedEventArgs implements IDependencyPropertyChangedEventArgs { - newValue: any; - oldValue: any; - property: DependencyProperty; - - } - export type DependencyPropertyChangedEventHandler = (e: DependencyPropertyChangedEventArgs) => void; - export class DispatcherTimer implements IDispatcherTimer { - // constructor(); - interval: number = 0; - isEnabled: Boolean = false; - - start(): void { - console.warn('shimmed function DispatcherTimer.start'); - } - - stop(): void { - console.warn('shimmed function DispatcherTimer.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DispatcherTimer::addEventListener: ${name}`); - switch (name) { - case "tick": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export namespace Documents { - export class Block implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IBlock, IBlock2 { - textAlignment: TextAlignment; - margin: Thickness; - lineStackingStrategy: LineStackingStrategy; - lineHeight: number; - horizontalTextAlignment: TextAlignment; - static lineHeightProperty: DependencyProperty = null; - static lineStackingStrategyProperty: DependencyProperty = null; - static marginProperty: DependencyProperty = null; - static textAlignmentProperty: DependencyProperty = null; - static horizontalTextAlignmentProperty: DependencyProperty = null; - language: string; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - characterSpacing: number; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string; - isTextScaleFactorEnabled: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - allowFocusOnInteraction: Boolean; - accessKey: string; - textDecorations: Text.TextDecorations; - keyTipVerticalOffset: number; - keyTipPlacementMode: Input.KeyTipPlacementMode; - keyTipHorizontalOffset: number; - isAccessKeyScope: Boolean; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Block.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Block.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Block.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Block.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Block.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Block.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Block.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Block.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Block.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Block::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class BlockCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): Block { - throw new Error('shimmed function BlockCollection.getAt'); - } - - getView(): Block[] { - throw new Error('shimmed function BlockCollection.getView'); - } - - indexOf(value: Block): { returnValue: Boolean, index: number } { - throw new Error('shimmed function BlockCollection.indexOf'); - } - - setAt(index: number, value: Block): void { - console.warn('shimmed function BlockCollection.setAt'); - } - - insertAt(index: number, value: Block): void { - console.warn('shimmed function BlockCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function BlockCollection.removeAt'); - } - - append(value: Block): void { - console.warn('shimmed function BlockCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function BlockCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function BlockCollection.clear'); - } - - getMany(startIndex: number, items: Block[]): number { - throw new Error('shimmed function BlockCollection.getMany'); - } - - replaceAll(items: Block[]): void { - console.warn('shimmed function BlockCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function BlockCollection.first'); - } - - } - export class Bold implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, ISpan, IBold { - // constructor(); - inlines: InlineCollection = [ ]; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Bold.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Bold.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Bold.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Bold.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Bold.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Bold.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Bold.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Bold.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Bold.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Bold::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContactContentLinkProvider implements IDependencyObject, IDependencyObject2, IContentLinkProvider, IContactContentLinkProvider { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContactContentLinkProvider.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContactContentLinkProvider.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContactContentLinkProvider.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContactContentLinkProvider.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContactContentLinkProvider.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContactContentLinkProvider.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContactContentLinkProvider.unregisterPropertyChangedCallback'); - } - - } - export class ContentLink implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, IContentLink { - // constructor(); - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusUp: DependencyObject; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusRight: DependencyObject; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusLeft: DependencyObject; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusDown: DependencyObject; - tabIndex: number = 2147483647; - isTabStop: Boolean = true; - info: Text.ContentLinkInfo; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - cursor: Core.CoreCursorType = CoreCursorType.hand; - background: Media.Brush = null; - focusState: FocusState = FocusState.unfocused; - static backgroundProperty: DependencyProperty = null; - static cursorProperty: DependencyProperty = null; - static elementSoundModeProperty: DependencyProperty = null; - static focusStateProperty: DependencyProperty = null; - static isTabStopProperty: DependencyProperty = null; - static tabIndexProperty: DependencyProperty = null; - static xyfocusDownNavigationStrategyProperty: DependencyProperty = null; - static xyfocusDownProperty: DependencyProperty = null; - static xyfocusLeftNavigationStrategyProperty: DependencyProperty = null; - static xyfocusLeftProperty: DependencyProperty = null; - static xyfocusRightNavigationStrategyProperty: DependencyProperty = null; - static xyfocusRightProperty: DependencyProperty = null; - static xyfocusUpNavigationStrategyProperty: DependencyProperty = null; - static xyfocusUpProperty: DependencyProperty = null; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentLink.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContentLink.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContentLink.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentLink.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentLink.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContentLink.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContentLink.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function ContentLink.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function ContentLink.onDisconnectVisualChildren'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function ContentLink.focus'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ContentLink::addEventListener: ${name}`); - switch (name) { - case "gotfocus": // RoutedEventHandler - case "invoked": // Foundation.TypedEventHandler - case "lostfocus": // RoutedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class ContentLinkInvokedEventArgs implements IContentLinkInvokedEventArgs { - handled: Boolean; - contentLinkInfo: Text.ContentLinkInfo; - - } - export class ContentLinkProvider implements IDependencyObject, IDependencyObject2, IContentLinkProvider { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentLinkProvider.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContentLinkProvider.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContentLinkProvider.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentLinkProvider.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentLinkProvider.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContentLinkProvider.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContentLinkProvider.unregisterPropertyChangedCallback'); - } - - } - export class ContentLinkProviderCollection implements IContentLinkProviderCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): ContentLinkProvider { - throw new Error('shimmed function ContentLinkProviderCollection.getAt'); - } - - getView(): ContentLinkProvider[] { - throw new Error('shimmed function ContentLinkProviderCollection.getView'); - } - - indexOf(value: ContentLinkProvider): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ContentLinkProviderCollection.indexOf'); - } - - setAt(index: number, value: ContentLinkProvider): void { - console.warn('shimmed function ContentLinkProviderCollection.setAt'); - } - - insertAt(index: number, value: ContentLinkProvider): void { - console.warn('shimmed function ContentLinkProviderCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function ContentLinkProviderCollection.removeAt'); - } - - append(value: ContentLinkProvider): void { - console.warn('shimmed function ContentLinkProviderCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function ContentLinkProviderCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function ContentLinkProviderCollection.clear'); - } - - getMany(startIndex: number, items: ContentLinkProvider[]): number { - throw new Error('shimmed function ContentLinkProviderCollection.getMany'); - } - - replaceAll(items: ContentLinkProvider[]): void { - console.warn('shimmed function ContentLinkProviderCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ContentLinkProviderCollection.first'); - } - - } - export class Glyphs implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IGlyphs, IGlyphs2 { - // constructor(); - unicodeString: string = ''; - styleSimulations: Media.StyleSimulations = StyleSimulations.none; - originY: number = 0; - originX: number = 0; - indices: string = ''; - fontUri: Foundation.Uri; - fontRenderingEmSize: number = 0; - fill: Media.Brush; - isColorFontEnabled: Boolean = true; - colorFontPaletteIndex: number = 0; - static fillProperty: DependencyProperty = null; - static fontRenderingEmSizeProperty: DependencyProperty = null; - static fontUriProperty: DependencyProperty = null; - static indicesProperty: DependencyProperty = null; - static originXProperty: DependencyProperty = null; - static originYProperty: DependencyProperty = null; - static styleSimulationsProperty: DependencyProperty = null; - static unicodeStringProperty: DependencyProperty = null; - static colorFontPaletteIndexProperty: DependencyProperty = null; - static isColorFontEnabledProperty: DependencyProperty = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Glyphs.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Glyphs.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Glyphs.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Glyphs.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Glyphs.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Glyphs.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Glyphs.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Glyphs.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Glyphs.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Glyphs.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Glyphs.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Glyphs.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Glyphs.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Glyphs.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Glyphs.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Glyphs.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Glyphs.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Glyphs.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Glyphs.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Glyphs.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Glyphs.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Glyphs.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Glyphs.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Glyphs.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Glyphs.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Glyphs.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Glyphs.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Glyphs.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Glyphs.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Glyphs.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Glyphs.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Glyphs.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Glyphs.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Glyphs.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Glyphs.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Glyphs.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Glyphs.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Glyphs.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Glyphs.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Glyphs.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Glyphs.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Glyphs.goToElementStateCore'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Glyphs::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Hyperlink implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, ISpan, IHyperlink, IHyperlink2, IHyperlink3, IHyperlink4, IHyperlink5 { - // constructor(); - navigateUri: Foundation.Uri; - underlineStyle: UnderlineStyle = UnderlineStyle.single; - xyfocusUp: DependencyObject; - xyfocusRight: DependencyObject; - xyfocusLeft: DependencyObject; - xyfocusDown: DependencyObject; - elementSoundMode: ElementSoundMode = ElementSoundMode.default; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - focusState: FocusState = FocusState.unfocused; - tabIndex: number = 2147483647; - isTabStop: Boolean = true; - static navigateUriProperty: DependencyProperty = null; - static underlineStyleProperty: DependencyProperty = null; - static elementSoundModeProperty: DependencyProperty = null; - static xyfocusDownProperty: DependencyProperty = null; - static xyfocusLeftProperty: DependencyProperty = null; - static xyfocusRightProperty: DependencyProperty = null; - static xyfocusUpProperty: DependencyProperty = null; - static focusStateProperty: DependencyProperty = null; - static xyfocusDownNavigationStrategyProperty: DependencyProperty = null; - static xyfocusLeftNavigationStrategyProperty: DependencyProperty = null; - static xyfocusRightNavigationStrategyProperty: DependencyProperty = null; - static xyfocusUpNavigationStrategyProperty: DependencyProperty = null; - static isTabStopProperty: DependencyProperty = null; - static tabIndexProperty: DependencyProperty = null; - inlines: InlineCollection = [ ]; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.underline; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Hyperlink.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Hyperlink.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Hyperlink.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Hyperlink.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Hyperlink.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Hyperlink.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Hyperlink.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Hyperlink.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Hyperlink.onDisconnectVisualChildren'); - } - - focus(value: FocusState): Boolean { - throw new Error('shimmed function Hyperlink.focus'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Hyperlink::addEventListener: ${name}`); - switch (name) { - case "click": // Foundation.TypedEventHandler - case "gotfocus": // RoutedEventHandler - case "lostfocus": // RoutedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class HyperlinkClickEventArgs implements IRoutedEventArgs, IHyperlinkClickEventArgs { - originalSource: any; - - } - export class Inline implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline { - language: string; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - characterSpacing: number; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string; - isTextScaleFactorEnabled: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - allowFocusOnInteraction: Boolean; - accessKey: string; - textDecorations: Text.TextDecorations; - keyTipVerticalOffset: number; - keyTipPlacementMode: Input.KeyTipPlacementMode; - keyTipHorizontalOffset: number; - isAccessKeyScope: Boolean; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Inline.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Inline.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Inline.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Inline.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Inline.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Inline.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Inline.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Inline.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Inline.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Inline::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class InlineCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): Inline { - throw new Error('shimmed function InlineCollection.getAt'); - } - - getView(): Inline[] { - throw new Error('shimmed function InlineCollection.getView'); - } - - indexOf(value: Inline): { returnValue: Boolean, index: number } { - throw new Error('shimmed function InlineCollection.indexOf'); - } - - setAt(index: number, value: Inline): void { - console.warn('shimmed function InlineCollection.setAt'); - } - - insertAt(index: number, value: Inline): void { - console.warn('shimmed function InlineCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function InlineCollection.removeAt'); - } - - append(value: Inline): void { - console.warn('shimmed function InlineCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function InlineCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function InlineCollection.clear'); - } - - getMany(startIndex: number, items: Inline[]): number { - throw new Error('shimmed function InlineCollection.getMany'); - } - - replaceAll(items: Inline[]): void { - console.warn('shimmed function InlineCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function InlineCollection.first'); - } - - } - export class InlineUIContainer implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, IInlineUIContainer { - // constructor(); - child: UIElement; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InlineUIContainer.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InlineUIContainer.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InlineUIContainer.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InlineUIContainer.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InlineUIContainer.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InlineUIContainer.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InlineUIContainer.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function InlineUIContainer.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function InlineUIContainer.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`InlineUIContainer::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class Italic implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, ISpan, IItalic { - // constructor(); - inlines: InlineCollection = [ ]; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.italic; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Italic.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Italic.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Italic.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Italic.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Italic.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Italic.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Italic.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Italic.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Italic.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Italic::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class LineBreak implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, ILineBreak { - // constructor(); - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineBreak.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LineBreak.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LineBreak.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineBreak.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineBreak.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LineBreak.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LineBreak.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function LineBreak.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function LineBreak.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LineBreak::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export enum LogicalDirection { - backward, - forward, - } - export class Paragraph implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IBlock, IBlock2, IParagraph { - // constructor(); - textIndent: number = 0; - inlines: InlineCollection = [ ]; - static textIndentProperty: DependencyProperty = null; - textAlignment: TextAlignment = TextAlignment.left; - margin: Thickness = null; - lineStackingStrategy: LineStackingStrategy = LineStackingStrategy.maxHeight; - lineHeight: number = 0; - horizontalTextAlignment: TextAlignment = TextAlignment.left; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Paragraph.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Paragraph.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Paragraph.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Paragraph.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Paragraph.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Paragraph.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Paragraph.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Paragraph.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Paragraph.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Paragraph::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class PlaceContentLinkProvider implements IDependencyObject, IDependencyObject2, IContentLinkProvider, IPlaceContentLinkProvider { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PlaceContentLinkProvider.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PlaceContentLinkProvider.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PlaceContentLinkProvider.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PlaceContentLinkProvider.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PlaceContentLinkProvider.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PlaceContentLinkProvider.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PlaceContentLinkProvider.unregisterPropertyChangedCallback'); - } - - } - export class Run implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, IRun { - // constructor(); - text: string = ''; - flowDirection: FlowDirection = FlowDirection.leftToRight; - static flowDirectionProperty: DependencyProperty = null; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Run.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Run.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Run.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Run.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Run.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Run.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Run.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Run.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Run.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Run::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class Span implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, ISpan { - // constructor(); - inlines: InlineCollection = [ ]; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.none; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Span.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Span.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Span.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Span.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Span.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Span.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Span.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Span.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Span.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Span::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class TextElement implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides { - language: string; - foreground: Media.Brush; - fontWeight: Text.FontWeight; - fontStyle: Text.FontStyle; - fontStretch: Text.FontStretch; - fontSize: number; - fontFamily: Media.FontFamily; - characterSpacing: number; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string; - isTextScaleFactorEnabled: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - allowFocusOnInteraction: Boolean; - accessKey: string; - textDecorations: Text.TextDecorations; - keyTipVerticalOffset: number; - keyTipPlacementMode: Input.KeyTipPlacementMode; - keyTipHorizontalOffset: number; - isAccessKeyScope: Boolean; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - static characterSpacingProperty: DependencyProperty = null; - static fontFamilyProperty: DependencyProperty = null; - static fontSizeProperty: DependencyProperty = null; - static fontStretchProperty: DependencyProperty = null; - static fontStyleProperty: DependencyProperty = null; - static fontWeightProperty: DependencyProperty = null; - static foregroundProperty: DependencyProperty = null; - static languageProperty: DependencyProperty = null; - static isTextScaleFactorEnabledProperty: DependencyProperty = null; - static accessKeyProperty: DependencyProperty = null; - static allowFocusOnInteractionProperty: DependencyProperty = null; - static exitDisplayModeOnAccessKeyInvokedProperty: DependencyProperty = null; - static accessKeyScopeOwnerProperty: DependencyProperty = null; - static isAccessKeyScopeProperty: DependencyProperty = null; - static keyTipHorizontalOffsetProperty: DependencyProperty = null; - static keyTipPlacementModeProperty: DependencyProperty = null; - static keyTipVerticalOffsetProperty: DependencyProperty = null; - static textDecorationsProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TextElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TextElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TextElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TextElement.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function TextElement.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function TextElement.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`TextElement::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class TextHighlighter implements ITextHighlighter { - // constructor(); - foreground: Media.Brush; - background: Media.Brush; - ranges: TextRange[] = [ ]; - static backgroundProperty: DependencyProperty = null; - static foregroundProperty: DependencyProperty = null; - - } - export class TextHighlighterBase implements IDependencyObject, IDependencyObject2, ITextHighlighterBase { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextHighlighterBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TextHighlighterBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TextHighlighterBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextHighlighterBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TextHighlighterBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TextHighlighterBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TextHighlighterBase.unregisterPropertyChangedCallback'); - } - - } - export class TextPointer implements ITextPointer { - logicalDirection: LogicalDirection; - offset: number; - parent: DependencyObject; - visualParent: FrameworkElement; - - getCharacterRect(direction: LogicalDirection): Foundation.Rect { - throw new Error('shimmed function TextPointer.getCharacterRect'); - } - - getPositionAtOffset(offset: number, direction: LogicalDirection): TextPointer { - throw new Error('shimmed function TextPointer.getPositionAtOffset'); - } - - } - export interface TextRange { - startIndex: number; - length: number; - } - export class Typography implements ITypography { - static annotationAlternatesProperty: DependencyProperty = null; - static capitalSpacingProperty: DependencyProperty = null; - static capitalsProperty: DependencyProperty = null; - static caseSensitiveFormsProperty: DependencyProperty = null; - static contextualAlternatesProperty: DependencyProperty = null; - static contextualLigaturesProperty: DependencyProperty = null; - static contextualSwashesProperty: DependencyProperty = null; - static discretionaryLigaturesProperty: DependencyProperty = null; - static eastAsianExpertFormsProperty: DependencyProperty = null; - static eastAsianLanguageProperty: DependencyProperty = null; - static eastAsianWidthsProperty: DependencyProperty = null; - static fractionProperty: DependencyProperty = null; - static historicalFormsProperty: DependencyProperty = null; - static historicalLigaturesProperty: DependencyProperty = null; - static kerningProperty: DependencyProperty = null; - static mathematicalGreekProperty: DependencyProperty = null; - static numeralAlignmentProperty: DependencyProperty = null; - static numeralStyleProperty: DependencyProperty = null; - static slashedZeroProperty: DependencyProperty = null; - static standardLigaturesProperty: DependencyProperty = null; - static standardSwashesProperty: DependencyProperty = null; - static stylisticAlternatesProperty: DependencyProperty = null; - static stylisticSet10Property: DependencyProperty = null; - static stylisticSet11Property: DependencyProperty = null; - static stylisticSet12Property: DependencyProperty = null; - static stylisticSet13Property: DependencyProperty = null; - static stylisticSet14Property: DependencyProperty = null; - static stylisticSet15Property: DependencyProperty = null; - static stylisticSet16Property: DependencyProperty = null; - static stylisticSet17Property: DependencyProperty = null; - static stylisticSet18Property: DependencyProperty = null; - static stylisticSet19Property: DependencyProperty = null; - static stylisticSet1Property: DependencyProperty = null; - static stylisticSet20Property: DependencyProperty = null; - static stylisticSet2Property: DependencyProperty = null; - static stylisticSet3Property: DependencyProperty = null; - static stylisticSet4Property: DependencyProperty = null; - static stylisticSet5Property: DependencyProperty = null; - static stylisticSet6Property: DependencyProperty = null; - static stylisticSet7Property: DependencyProperty = null; - static stylisticSet8Property: DependencyProperty = null; - static stylisticSet9Property: DependencyProperty = null; - static variantsProperty: DependencyProperty = null; - - static getAnnotationAlternates(element: DependencyObject): number { - throw new Error('shimmed function Typography.getAnnotationAlternates'); - } - - static setAnnotationAlternates(element: DependencyObject, value: number): void { - console.warn('shimmed function Typography.setAnnotationAlternates'); - } - - static getEastAsianExpertForms(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getEastAsianExpertForms'); - } - - static setEastAsianExpertForms(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setEastAsianExpertForms'); - } - - static getEastAsianLanguage(element: DependencyObject): FontEastAsianLanguage { - throw new Error('shimmed function Typography.getEastAsianLanguage'); - } - - static setEastAsianLanguage(element: DependencyObject, value: FontEastAsianLanguage): void { - console.warn('shimmed function Typography.setEastAsianLanguage'); - } - - static getEastAsianWidths(element: DependencyObject): FontEastAsianWidths { - throw new Error('shimmed function Typography.getEastAsianWidths'); - } - - static setEastAsianWidths(element: DependencyObject, value: FontEastAsianWidths): void { - console.warn('shimmed function Typography.setEastAsianWidths'); - } - - static getStandardLigatures(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStandardLigatures'); - } - - static setStandardLigatures(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStandardLigatures'); - } - - static getContextualLigatures(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getContextualLigatures'); - } - - static setContextualLigatures(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setContextualLigatures'); - } - - static getDiscretionaryLigatures(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getDiscretionaryLigatures'); - } - - static setDiscretionaryLigatures(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setDiscretionaryLigatures'); - } - - static getHistoricalLigatures(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getHistoricalLigatures'); - } - - static setHistoricalLigatures(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setHistoricalLigatures'); - } - - static getStandardSwashes(element: DependencyObject): number { - throw new Error('shimmed function Typography.getStandardSwashes'); - } - - static setStandardSwashes(element: DependencyObject, value: number): void { - console.warn('shimmed function Typography.setStandardSwashes'); - } - - static getContextualSwashes(element: DependencyObject): number { - throw new Error('shimmed function Typography.getContextualSwashes'); - } - - static setContextualSwashes(element: DependencyObject, value: number): void { - console.warn('shimmed function Typography.setContextualSwashes'); - } - - static getContextualAlternates(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getContextualAlternates'); - } - - static setContextualAlternates(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setContextualAlternates'); - } - - static getStylisticAlternates(element: DependencyObject): number { - throw new Error('shimmed function Typography.getStylisticAlternates'); - } - - static setStylisticAlternates(element: DependencyObject, value: number): void { - console.warn('shimmed function Typography.setStylisticAlternates'); - } - - static getStylisticSet1(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet1'); - } - - static setStylisticSet1(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet1'); - } - - static getStylisticSet2(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet2'); - } - - static setStylisticSet2(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet2'); - } - - static getStylisticSet3(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet3'); - } - - static setStylisticSet3(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet3'); - } - - static getStylisticSet4(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet4'); - } - - static setStylisticSet4(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet4'); - } - - static getStylisticSet5(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet5'); - } - - static setStylisticSet5(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet5'); - } - - static getStylisticSet6(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet6'); - } - - static setStylisticSet6(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet6'); - } - - static getStylisticSet7(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet7'); - } - - static setStylisticSet7(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet7'); - } - - static getStylisticSet8(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet8'); - } - - static setStylisticSet8(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet8'); - } - - static getStylisticSet9(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet9'); - } - - static setStylisticSet9(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet9'); - } - - static getStylisticSet10(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet10'); - } - - static setStylisticSet10(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet10'); - } - - static getStylisticSet11(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet11'); - } - - static setStylisticSet11(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet11'); - } - - static getStylisticSet12(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet12'); - } - - static setStylisticSet12(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet12'); - } - - static getStylisticSet13(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet13'); - } - - static setStylisticSet13(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet13'); - } - - static getStylisticSet14(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet14'); - } - - static setStylisticSet14(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet14'); - } - - static getStylisticSet15(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet15'); - } - - static setStylisticSet15(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet15'); - } - - static getStylisticSet16(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet16'); - } - - static setStylisticSet16(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet16'); - } - - static getStylisticSet17(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet17'); - } - - static setStylisticSet17(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet17'); - } - - static getStylisticSet18(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet18'); - } - - static setStylisticSet18(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet18'); - } - - static getStylisticSet19(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet19'); - } - - static setStylisticSet19(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet19'); - } - - static getStylisticSet20(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getStylisticSet20'); - } - - static setStylisticSet20(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setStylisticSet20'); - } - - static getCapitals(element: DependencyObject): FontCapitals { - throw new Error('shimmed function Typography.getCapitals'); - } - - static setCapitals(element: DependencyObject, value: FontCapitals): void { - console.warn('shimmed function Typography.setCapitals'); - } - - static getCapitalSpacing(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getCapitalSpacing'); - } - - static setCapitalSpacing(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setCapitalSpacing'); - } - - static getKerning(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getKerning'); - } - - static setKerning(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setKerning'); - } - - static getCaseSensitiveForms(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getCaseSensitiveForms'); - } - - static setCaseSensitiveForms(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setCaseSensitiveForms'); - } - - static getHistoricalForms(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getHistoricalForms'); - } - - static setHistoricalForms(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setHistoricalForms'); - } - - static getFraction(element: DependencyObject): FontFraction { - throw new Error('shimmed function Typography.getFraction'); - } - - static setFraction(element: DependencyObject, value: FontFraction): void { - console.warn('shimmed function Typography.setFraction'); - } - - static getNumeralStyle(element: DependencyObject): FontNumeralStyle { - throw new Error('shimmed function Typography.getNumeralStyle'); - } - - static setNumeralStyle(element: DependencyObject, value: FontNumeralStyle): void { - console.warn('shimmed function Typography.setNumeralStyle'); - } - - static getNumeralAlignment(element: DependencyObject): FontNumeralAlignment { - throw new Error('shimmed function Typography.getNumeralAlignment'); - } - - static setNumeralAlignment(element: DependencyObject, value: FontNumeralAlignment): void { - console.warn('shimmed function Typography.setNumeralAlignment'); - } - - static getSlashedZero(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getSlashedZero'); - } - - static setSlashedZero(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setSlashedZero'); - } - - static getMathematicalGreek(element: DependencyObject): Boolean { - throw new Error('shimmed function Typography.getMathematicalGreek'); - } - - static setMathematicalGreek(element: DependencyObject, value: Boolean): void { - console.warn('shimmed function Typography.setMathematicalGreek'); - } - - static getVariants(element: DependencyObject): FontVariants { - throw new Error('shimmed function Typography.getVariants'); - } - - static setVariants(element: DependencyObject, value: FontVariants): void { - console.warn('shimmed function Typography.setVariants'); - } - - } - export class Underline implements IDependencyObject, IDependencyObject2, ITextElement, ITextElement2, ITextElement3, ITextElement4, ITextElement5, ITextElementOverrides, IInline, ISpan, IUnderline { - // constructor(); - inlines: InlineCollection = [ ]; - language: string = 'en-GB'; - foreground: Media.Brush = null; - fontWeight: Text.FontWeight = null; - fontStyle: Text.FontStyle = FontStyle.normal; - fontStretch: Text.FontStretch = FontStretch.normal; - fontSize: number = 14; - fontFamily: Media.FontFamily = null; - characterSpacing: number = 0; - contentEnd: TextPointer; - contentStart: TextPointer; - elementEnd: TextPointer; - elementStart: TextPointer; - name: string = ''; - isTextScaleFactorEnabled: Boolean = true; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - allowFocusOnInteraction: Boolean = true; - accessKey: string = ''; - textDecorations: Text.TextDecorations = TextDecorations.underline; - keyTipVerticalOffset: number = 0; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - keyTipHorizontalOffset: number = 0; - isAccessKeyScope: Boolean = false; - accessKeyScopeOwner: DependencyObject; - xamlRoot: XamlRoot; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Underline.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Underline.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Underline.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Underline.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Underline.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Underline.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Underline.unregisterPropertyChangedCallback'); - } - - findName(name: string): any { - throw new Error('shimmed function Underline.findName'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Underline.onDisconnectVisualChildren'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Underline::addEventListener: ${name}`); - switch (name) { - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - break; - } - - } - } - export enum UnderlineStyle { - none, - single, - } - } - export class DragEventArgs implements IRoutedEventArgs, IDragEventArgs, IDragEventArgs2, IDragEventArgs3 { - handled: Boolean; - data: ApplicationModel.DataTransfer.DataPackage; - acceptedOperation: ApplicationModel.DataTransfer.DataPackageOperation; - dataView: ApplicationModel.DataTransfer.DataPackageView; - dragUIOverride: DragUIOverride; - modifiers: ApplicationModel.DataTransfer.DragDrop.DragDropModifiers; - allowedOperations: ApplicationModel.DataTransfer.DataPackageOperation; - originalSource: any; - - getPosition(relativeTo: UIElement): Foundation.Point { - throw new Error('shimmed function DragEventArgs.getPosition'); - } - - getDeferral(): DragOperationDeferral { - throw new Error('shimmed function DragEventArgs.getDeferral'); - } - - } - export type DragEventHandler = (e: DragEventArgs) => void; - export class DragOperationDeferral implements IDragOperationDeferral { - complete(): void { - console.warn('shimmed function DragOperationDeferral.complete'); - } - - } - export class DragStartingEventArgs implements IRoutedEventArgs, IDragStartingEventArgs, IDragStartingEventArgs2 { - cancel: Boolean; - data: ApplicationModel.DataTransfer.DataPackage; - dragUI: DragUI; - allowedOperations: ApplicationModel.DataTransfer.DataPackageOperation; - originalSource: any; - - getDeferral(): DragOperationDeferral { - throw new Error('shimmed function DragStartingEventArgs.getDeferral'); - } - - getPosition(relativeTo: UIElement): Foundation.Point { - throw new Error('shimmed function DragStartingEventArgs.getPosition'); - } - - } - export class DragUI implements IDragUI { - setContentFromBitmapImage(bitmapImage: Media.Imaging.BitmapImage): void { - console.warn('shimmed function DragUI.setContentFromBitmapImage'); - } - - setContentFromBitmapImage_1(bitmapImage: Media.Imaging.BitmapImage, anchorPoint: Foundation.Point): void { - console.warn('shimmed function DragUI.setContentFromBitmapImage_1'); - } - - setContentFromSoftwareBitmap(softwareBitmap: Graphics.Imaging.SoftwareBitmap): void { - console.warn('shimmed function DragUI.setContentFromSoftwareBitmap'); - } - - setContentFromSoftwareBitmap_1(softwareBitmap: Graphics.Imaging.SoftwareBitmap, anchorPoint: Foundation.Point): void { - console.warn('shimmed function DragUI.setContentFromSoftwareBitmap_1'); - } - - setContentFromDataPackage(): void { - console.warn('shimmed function DragUI.setContentFromDataPackage'); - } - - } - export class DragUIOverride implements IDragUIOverride { - isGlyphVisible: Boolean; - isContentVisible: Boolean; - isCaptionVisible: Boolean; - caption: string; - - clear(): void { - console.warn('shimmed function DragUIOverride.clear'); - } - - setContentFromBitmapImage(bitmapImage: Media.Imaging.BitmapImage): void { - console.warn('shimmed function DragUIOverride.setContentFromBitmapImage'); - } - - setContentFromBitmapImage_1(bitmapImage: Media.Imaging.BitmapImage, anchorPoint: Foundation.Point): void { - console.warn('shimmed function DragUIOverride.setContentFromBitmapImage_1'); - } - - setContentFromSoftwareBitmap(softwareBitmap: Graphics.Imaging.SoftwareBitmap): void { - console.warn('shimmed function DragUIOverride.setContentFromSoftwareBitmap'); - } - - setContentFromSoftwareBitmap_1(softwareBitmap: Graphics.Imaging.SoftwareBitmap, anchorPoint: Foundation.Point): void { - console.warn('shimmed function DragUIOverride.setContentFromSoftwareBitmap_1'); - } - - } - export class DropCompletedEventArgs implements IRoutedEventArgs, IDropCompletedEventArgs { - dropResult: ApplicationModel.DataTransfer.DataPackageOperation; - originalSource: any; - - } - export interface Duration { - timeSpan: number; - type: DurationType; - } - export class DurationHelper implements IDurationHelper { - static automatic: /* Windows.UI.Xaml.Duration */ any = null; - static forever: /* Windows.UI.Xaml.Duration */ any = null; - - static compare(duration1: /* Windows.UI.Xaml.Duration */ any, duration2: /* Windows.UI.Xaml.Duration */ any): number { - throw new Error('shimmed function DurationHelper.compare'); - } - - static fromTimeSpan(timeSpan: number): /* Windows.UI.Xaml.Duration */ any { - throw new Error('shimmed function DurationHelper.fromTimeSpan'); - } - - static getHasTimeSpan(target: /* Windows.UI.Xaml.Duration */ any): Boolean { - throw new Error('shimmed function DurationHelper.getHasTimeSpan'); - } - - static add(target: /* Windows.UI.Xaml.Duration */ any, duration: /* Windows.UI.Xaml.Duration */ any): /* Windows.UI.Xaml.Duration */ any { - throw new Error('shimmed function DurationHelper.add'); - } - - static subtract(target: /* Windows.UI.Xaml.Duration */ any, duration: /* Windows.UI.Xaml.Duration */ any): /* Windows.UI.Xaml.Duration */ any { - throw new Error('shimmed function DurationHelper.subtract'); - } - - } - export enum DurationType { - automatic, - timeSpan, - forever, - } - export class EffectiveViewportChangedEventArgs implements IEffectiveViewportChangedEventArgs { - bringIntoViewDistanceX: number; - bringIntoViewDistanceY: number; - effectiveViewport: Foundation.Rect; - maxViewport: Foundation.Rect; - - } - export class ElementFactoryGetArgs implements IElementFactoryGetArgs { - // constructor(); - parent: UIElement; - data: any; - - } - export class ElementFactoryRecycleArgs implements IElementFactoryRecycleArgs { - // constructor(); - parent: UIElement; - element: UIElement; - - } - export enum ElementHighContrastAdjustment { - none, - application = 2147483648, - auto = 4294967295, - } - export enum ElementSoundKind { - focus, - invoke, - show, - hide, - movePrevious, - moveNext, - goBack, - } - export enum ElementSoundMode { - default, - focusOnly, - off, - } - export class ElementSoundPlayer implements IElementSoundPlayer { - static volume: number = 1; - static state: ElementSoundPlayerState = ElementSoundPlayerState.auto; - static spatialAudioMode: ElementSpatialAudioMode = ElementSpatialAudioMode.auto; - - static play(sound: ElementSoundKind): void { - console.warn('shimmed function ElementSoundPlayer.play'); - } - - } - export enum ElementSoundPlayerState { - auto, - off, - on, - } - export enum ElementSpatialAudioMode { - auto, - off, - on, - } - export enum ElementTheme { - default, - light, - dark, - } - export type EnteredBackgroundEventHandler = (e: ApplicationModel.EnteredBackgroundEventArgs) => void; - export class EventTrigger implements IDependencyObject, IDependencyObject2, ITriggerBase, IEventTrigger { - // constructor(); - routedEvent: RoutedEvent; - actions: TriggerActionCollection = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EventTrigger.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EventTrigger.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EventTrigger.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EventTrigger.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EventTrigger.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EventTrigger.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EventTrigger.unregisterPropertyChangedCallback'); - } - - } - export class ExceptionRoutedEventArgs implements IRoutedEventArgs, IExceptionRoutedEventArgs { - errorMessage: string; - originalSource: any; - - } - export type ExceptionRoutedEventHandler = (e: ExceptionRoutedEventArgs) => void; - export enum FlowDirection { - leftToRight, - rightToLeft, - } - export enum FocusState { - unfocused, - pointer, - keyboard, - programmatic, - } - export enum FocusVisualKind { - dottedLine, - highVisibility, - reveal, - } - export enum FontCapitals { - normal, - allSmallCaps, - smallCaps, - allPetiteCaps, - petiteCaps, - unicase, - titling, - } - export enum FontEastAsianLanguage { - normal, - hojoKanji, - jis04, - jis78, - jis83, - jis90, - nlcKanji, - simplified, - traditional, - traditionalNames, - } - export enum FontEastAsianWidths { - normal, - full, - half, - proportional, - quarter, - third, - } - export enum FontFraction { - normal, - stacked, - slashed, - } - export enum FontNumeralAlignment { - normal, - proportional, - tabular, - } - export enum FontNumeralStyle { - normal, - lining, - oldStyle, - } - export enum FontVariants { - normal, - superscript, - subscript, - ordinal, - inferior, - ruby, - } - export class FrameworkElement implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2 { - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - static actualHeightProperty: DependencyProperty = null; - static actualWidthProperty: DependencyProperty = null; - static dataContextProperty: DependencyProperty = null; - static flowDirectionProperty: DependencyProperty = null; - static heightProperty: DependencyProperty = null; - static horizontalAlignmentProperty: DependencyProperty = null; - static languageProperty: DependencyProperty = null; - static marginProperty: DependencyProperty = null; - static maxHeightProperty: DependencyProperty = null; - static maxWidthProperty: DependencyProperty = null; - static minHeightProperty: DependencyProperty = null; - static minWidthProperty: DependencyProperty = null; - static nameProperty: DependencyProperty = null; - static styleProperty: DependencyProperty = null; - static tagProperty: DependencyProperty = null; - static verticalAlignmentProperty: DependencyProperty = null; - static widthProperty: DependencyProperty = null; - static requestedThemeProperty: DependencyProperty = null; - static allowFocusOnInteractionProperty: DependencyProperty = null; - static allowFocusWhenDisabledProperty: DependencyProperty = null; - static focusVisualMarginProperty: DependencyProperty = null; - static focusVisualPrimaryBrushProperty: DependencyProperty = null; - static focusVisualPrimaryThicknessProperty: DependencyProperty = null; - static focusVisualSecondaryBrushProperty: DependencyProperty = null; - static focusVisualSecondaryThicknessProperty: DependencyProperty = null; - static actualThemeProperty: DependencyProperty = null; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FrameworkElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FrameworkElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FrameworkElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FrameworkElement.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function FrameworkElement.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function FrameworkElement.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function FrameworkElement.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function FrameworkElement.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function FrameworkElement.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function FrameworkElement.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function FrameworkElement.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function FrameworkElement.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function FrameworkElement.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function FrameworkElement.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function FrameworkElement.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function FrameworkElement.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function FrameworkElement.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function FrameworkElement.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function FrameworkElement.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FrameworkElement.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FrameworkElement.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function FrameworkElement.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function FrameworkElement.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function FrameworkElement.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function FrameworkElement.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function FrameworkElement.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function FrameworkElement.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function FrameworkElement.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function FrameworkElement.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FrameworkElement.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function FrameworkElement.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function FrameworkElement.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function FrameworkElement.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function FrameworkElement.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function FrameworkElement.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FrameworkElement.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function FrameworkElement.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function FrameworkElement.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function FrameworkElement.goToElementStateCore'); - } - - static deferTree(element: DependencyObject): void { - console.warn('shimmed function FrameworkElement.deferTree'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FrameworkElement::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class FrameworkTemplate implements IDependencyObject, IDependencyObject2, IFrameworkTemplate { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkTemplate.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FrameworkTemplate.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FrameworkTemplate.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkTemplate.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FrameworkTemplate.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FrameworkTemplate.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FrameworkTemplate.unregisterPropertyChangedCallback'); - } - - } - export class FrameworkView implements IFrameworkView, ApplicationModel.Core.IFrameworkView { - // constructor(); - initialize(applicationView: ApplicationModel.Core.CoreApplicationView): void { - console.warn('shimmed function FrameworkView.initialize'); - } - - setWindow(window: Core.CoreWindow): void { - console.warn('shimmed function FrameworkView.setWindow'); - } - - load(entryPoint: string): void { - console.warn('shimmed function FrameworkView.load'); - } - - run(): void { - console.warn('shimmed function FrameworkView.run'); - } - - uninitialize(): void { - console.warn('shimmed function FrameworkView.uninitialize'); - } - - } - export class FrameworkViewSource implements IFrameworkViewSource, ApplicationModel.Core.IFrameworkViewSource { - // constructor(); - createView(): ApplicationModel.Core.IFrameworkView { - throw new Error('shimmed function FrameworkViewSource.createView'); - } - - } - export interface GridLength { - value: number; - gridUnitType: GridUnitType; - } - export class GridLengthHelper implements IGridLengthHelper { - static auto: /* Windows.UI.Xaml.GridLength */ any = null; - - static fromPixels(pixels: number): /* Windows.UI.Xaml.GridLength */ any { - throw new Error('shimmed function GridLengthHelper.fromPixels'); - } - - static fromValueAndType(value: number, type: GridUnitType): /* Windows.UI.Xaml.GridLength */ any { - throw new Error('shimmed function GridLengthHelper.fromValueAndType'); - } - - static getIsAbsolute(target: /* Windows.UI.Xaml.GridLength */ any): Boolean { - throw new Error('shimmed function GridLengthHelper.getIsAbsolute'); - } - - static getIsAuto(target: /* Windows.UI.Xaml.GridLength */ any): Boolean { - throw new Error('shimmed function GridLengthHelper.getIsAuto'); - } - - static getIsStar(target: /* Windows.UI.Xaml.GridLength */ any): Boolean { - throw new Error('shimmed function GridLengthHelper.getIsStar'); - } - - } - export enum GridUnitType { - auto, - pixel, - star, - } - export enum HorizontalAlignment { - left, - center, - right, - stretch, - } - export namespace Hosting { - export class DesignerAppExitedEventArgs implements IDesignerAppExitedEventArgs { - exitCode: number; - - } - export class DesignerAppManager implements IDesignerAppManager, Foundation.IClosable { - // constructor(appUserModelId: string); - constructor(appUserModelId: string) {} - - appUserModelId: string; - - createNewViewAsync(initialViewState: DesignerAppViewState, initialViewSize: Foundation.Size): Foundation.IAsyncOperation { - throw new Error('shimmed function DesignerAppManager.createNewViewAsync'); - } - - loadObjectIntoAppAsync(dllName: string, classId: string, initializationData: string): Foundation.IAsyncAction { - throw new Error('shimmed function DesignerAppManager.loadObjectIntoAppAsync'); - } - - close(): void { - console.warn('shimmed function DesignerAppManager.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DesignerAppManager::addEventListener: ${name}`); - switch (name) { - case "designerappexited": // Foundation.TypedEventHandler - break; - } - - } - } - export class DesignerAppView implements IDesignerAppView, Foundation.IClosable { - appUserModelId: string; - applicationViewId: number; - viewSize: Foundation.Size; - viewState: DesignerAppViewState; - - updateViewAsync(viewState: DesignerAppViewState, viewSize: Foundation.Size): Foundation.IAsyncAction { - throw new Error('shimmed function DesignerAppView.updateViewAsync'); - } - - close(): void { - console.warn('shimmed function DesignerAppView.close'); - } - - } - export enum DesignerAppViewState { - visible, - hidden, - } - export class DesktopWindowXamlSource implements IDesktopWindowXamlSource, Foundation.IClosable { - // constructor(); - content: UIElement; - hasFocus: Boolean; - - navigateFocus(request: XamlSourceFocusNavigationRequest): XamlSourceFocusNavigationResult { - throw new Error('shimmed function DesktopWindowXamlSource.navigateFocus'); - } - - close(): void { - console.warn('shimmed function DesktopWindowXamlSource.close'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DesktopWindowXamlSource::addEventListener: ${name}`); - switch (name) { - case "gotfocus": // Foundation.TypedEventHandler - case "takefocusrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class DesktopWindowXamlSourceGotFocusEventArgs implements IDesktopWindowXamlSourceGotFocusEventArgs { - request: XamlSourceFocusNavigationRequest; - - } - export class DesktopWindowXamlSourceTakeFocusRequestedEventArgs implements IDesktopWindowXamlSourceTakeFocusRequestedEventArgs { - request: XamlSourceFocusNavigationRequest; - - } - export class ElementCompositionPreview implements IElementCompositionPreview { - static setAppWindowContent(appWindow: WindowManagement.AppWindow, xamlContent: UIElement): void { - console.warn('shimmed function ElementCompositionPreview.setAppWindowContent'); - } - - static getAppWindowContent(appWindow: WindowManagement.AppWindow): UIElement { - throw new Error('shimmed function ElementCompositionPreview.getAppWindowContent'); - } - - static setImplicitShowAnimation(element: UIElement, animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ElementCompositionPreview.setImplicitShowAnimation'); - } - - static setImplicitHideAnimation(element: UIElement, animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ElementCompositionPreview.setImplicitHideAnimation'); - } - - static setIsTranslationEnabled(element: UIElement, value: Boolean): void { - console.warn('shimmed function ElementCompositionPreview.setIsTranslationEnabled'); - } - - static getPointerPositionPropertySet(targetElement: UIElement): Composition.CompositionPropertySet { - throw new Error('shimmed function ElementCompositionPreview.getPointerPositionPropertySet'); - } - - static getElementVisual(element: UIElement): Composition.Visual { - throw new Error('shimmed function ElementCompositionPreview.getElementVisual'); - } - - static getElementChildVisual(element: UIElement): Composition.Visual { - throw new Error('shimmed function ElementCompositionPreview.getElementChildVisual'); - } - - static setElementChildVisual(element: UIElement, visual: Composition.Visual): void { - console.warn('shimmed function ElementCompositionPreview.setElementChildVisual'); - } - - static getScrollViewerManipulationPropertySet(scrollViewer: Controls.ScrollViewer): Composition.CompositionPropertySet { - throw new Error('shimmed function ElementCompositionPreview.getScrollViewerManipulationPropertySet'); - } - - } - export interface HostingContract { - } - export interface IXamlUIPresenterHost { - resolveFileResource(path: string): string; - } - export interface IXamlUIPresenterHost2 { - getGenericXamlFilePath(): string; - } - export interface IXamlUIPresenterHost3 { - resolveDictionaryResource(dictionary: ResourceDictionary, dictionaryKey: any, suggestedValue: any): any; - } - export class WindowsXamlManager implements IWindowsXamlManager, Foundation.IClosable { - close(): void { - console.warn('shimmed function WindowsXamlManager.close'); - } - - static initializeForCurrentThread(): WindowsXamlManager { - throw new Error('shimmed function WindowsXamlManager.initializeForCurrentThread'); - } - - } - export enum XamlSourceFocusNavigationReason { - programmatic, - restore, - first = 3, - last, - left = 7, - up, - right, - down, - } - export class XamlSourceFocusNavigationRequest implements IXamlSourceFocusNavigationRequest { - // constructor(reason: XamlSourceFocusNavigationReason); - // constructor(reason: XamlSourceFocusNavigationReason, hintRect: Foundation.Rect); - // constructor(reason: XamlSourceFocusNavigationReason, hintRect: Foundation.Rect, correlationId: string); - constructor(reason: XamlSourceFocusNavigationReason, hintRect: Foundation.Rect, correlationId: string) {} - - correlationId: string; - hintRect: Foundation.Rect; - reason: XamlSourceFocusNavigationReason; - - } - export class XamlSourceFocusNavigationResult implements IXamlSourceFocusNavigationResult { - // constructor(focusMoved: Boolean); - constructor(focusMoved: Boolean) {} - - wasFocusMoved: Boolean; - - } - export class XamlUIPresenter implements IXamlUIPresenter { - themeResourcesXaml: string; - themeKey: string; - rootElement: UIElement; - static completeTimelinesAutomatically: Boolean; - - setSize(width: number, height: number): void { - console.warn('shimmed function XamlUIPresenter.setSize'); - } - - render(): void { - console.warn('shimmed function XamlUIPresenter.render'); - } - - present(): void { - console.warn('shimmed function XamlUIPresenter.present'); - } - - static getFlyoutPlacementTargetInfo(placementTarget: FrameworkElement, preferredPlacement: Controls.Primitives.FlyoutPlacementMode): { returnValue: Foundation.Rect, targetPreferredPlacement: Controls.Primitives.FlyoutPlacementMode, allowFallbacks: Boolean } { - throw new Error('shimmed function XamlUIPresenter.getFlyoutPlacementTargetInfo'); - } - - static getFlyoutPlacement(placementTargetBounds: Foundation.Rect, controlSize: Foundation.Size, minControlSize: Foundation.Size, containerRect: Foundation.Rect, targetPreferredPlacement: Controls.Primitives.FlyoutPlacementMode, allowFallbacks: Boolean): { returnValue: Foundation.Rect, chosenPlacement: Controls.Primitives.FlyoutPlacementMode } { - throw new Error('shimmed function XamlUIPresenter.getFlyoutPlacement'); - } - - static setHost(host: IXamlUIPresenterHost): void { - console.warn('shimmed function XamlUIPresenter.setHost'); - } - - static notifyWindowSizeChanged(): void { - console.warn('shimmed function XamlUIPresenter.notifyWindowSizeChanged'); - } - - } - } - export interface IDataTemplateExtension { - resetTemplate(): void; - processBinding(phase: number): Boolean; - processBindings(arg: Controls.ContainerContentChangingEventArgs): number; - } - export interface IElementFactory { - getElement(args: ElementFactoryGetArgs): UIElement; - recycleElement(args: ElementFactoryRecycleArgs): void; - } - export namespace Input { - export class AccessKeyDisplayDismissedEventArgs implements IAccessKeyDisplayDismissedEventArgs { - // constructor(); - } - export class AccessKeyDisplayRequestedEventArgs implements IAccessKeyDisplayRequestedEventArgs { - // constructor(); - pressedKeys: string; - - } - export class AccessKeyInvokedEventArgs implements IAccessKeyInvokedEventArgs { - // constructor(); - handled: Boolean = false; - - } - export class AccessKeyManager implements IAccessKeyManager { - static isDisplayModeEnabled: Boolean = false; - static areKeyTipsEnabled: Boolean = true; - - static exitDisplayMode(): void { - console.warn('shimmed function AccessKeyManager.exitDisplayMode'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`AccessKeyManager::addEventListener: ${name}`); - switch (name) { - case "isdisplaymodeenabledchanged": // Foundation.TypedEventHandler - break; - } - - } - } - export class CanExecuteRequestedEventArgs implements ICanExecuteRequestedEventArgs { - canExecute: Boolean; - parameter: any; - - } - export class CharacterReceivedRoutedEventArgs implements IRoutedEventArgs, ICharacterReceivedRoutedEventArgs { - handled: Boolean; - character: string; - keyStatus: Core.CorePhysicalKeyStatus; - originalSource: any; - - } - export class ContextRequestedEventArgs implements IRoutedEventArgs, IContextRequestedEventArgs { - // constructor(); - handled: Boolean = false; - originalSource: any; - - tryGetPosition(relativeTo: UIElement): { returnValue: Boolean, point: Foundation.Point } { - throw new Error('shimmed function ContextRequestedEventArgs.tryGetPosition'); - } - - } - export type DoubleTappedEventHandler = (e: DoubleTappedRoutedEventArgs) => void; - export class DoubleTappedRoutedEventArgs implements IRoutedEventArgs, IDoubleTappedRoutedEventArgs { - // constructor(); - handled: Boolean = false; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - originalSource: any; - - getPosition(relativeTo: UIElement): Foundation.Point { - throw new Error('shimmed function DoubleTappedRoutedEventArgs.getPosition'); - } - - } - export class ExecuteRequestedEventArgs implements IExecuteRequestedEventArgs { - parameter: any; - - } - export class FindNextElementOptions implements IFindNextElementOptions { - // constructor(); - xyfocusNavigationStrategyOverride: XYFocusNavigationStrategyOverride = XYFocusNavigationStrategyOverride.none; - searchRoot: DependencyObject; - hintRect: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - exclusionRect: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - - } - export enum FocusInputDeviceKind { - none, - mouse, - touch, - pen, - keyboard, - gameController, - } - export class FocusManager implements IFocusManager { - static getFocusedElement(xamlRoot: XamlRoot): any { - throw new Error('shimmed function FocusManager.getFocusedElement'); - } - - static tryFocusAsync(element: DependencyObject, value: FocusState): Foundation.IAsyncOperation { - throw new Error('shimmed function FocusManager.tryFocusAsync'); - } - - static tryMoveFocusAsync(focusNavigationDirection: FocusNavigationDirection): Foundation.IAsyncOperation { - throw new Error('shimmed function FocusManager.tryMoveFocusAsync'); - } - - static tryMoveFocusAsync_1(focusNavigationDirection: FocusNavigationDirection, focusNavigationOptions: FindNextElementOptions): Foundation.IAsyncOperation { - throw new Error('shimmed function FocusManager.tryMoveFocusAsync_1'); - } - - static tryMoveFocus(focusNavigationDirection: FocusNavigationDirection, focusNavigationOptions: FindNextElementOptions): Boolean { - throw new Error('shimmed function FocusManager.tryMoveFocus'); - } - - static findNextElement(focusNavigationDirection: FocusNavigationDirection): DependencyObject { - throw new Error('shimmed function FocusManager.findNextElement'); - } - - static findFirstFocusableElement(searchScope: DependencyObject): DependencyObject { - throw new Error('shimmed function FocusManager.findFirstFocusableElement'); - } - - static findLastFocusableElement(searchScope: DependencyObject): DependencyObject { - throw new Error('shimmed function FocusManager.findLastFocusableElement'); - } - - static findNextElement_1(focusNavigationDirection: FocusNavigationDirection, focusNavigationOptions: FindNextElementOptions): DependencyObject { - throw new Error('shimmed function FocusManager.findNextElement_1'); - } - - static findNextFocusableElement(focusNavigationDirection: FocusNavigationDirection): UIElement { - throw new Error('shimmed function FocusManager.findNextFocusableElement'); - } - - static findNextFocusableElement_1(focusNavigationDirection: FocusNavigationDirection, hintRect: Foundation.Rect): UIElement { - throw new Error('shimmed function FocusManager.findNextFocusableElement_1'); - } - - static tryMoveFocus_1(focusNavigationDirection: FocusNavigationDirection): Boolean { - throw new Error('shimmed function FocusManager.tryMoveFocus_1'); - } - - static getFocusedElement_1(): any { - throw new Error('shimmed function FocusManager.getFocusedElement_1'); - } - - static addEventListener(name: string, handler: Function) { - console.warn(`FocusManager::addEventListener: ${name}`); - switch (name) { - case "gettingfocus": // /* System.EventHandler`1[[Windows.UI.Xaml.Input.GettingFocusEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "gotfocus": // /* System.EventHandler`1[[Windows.UI.Xaml.Input.FocusManagerGotFocusEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "losingfocus": // /* System.EventHandler`1[[Windows.UI.Xaml.Input.LosingFocusEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "lostfocus": // /* System.EventHandler`1[[Windows.UI.Xaml.Input.FocusManagerLostFocusEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - break; - } - - } - } - export class FocusManagerGotFocusEventArgs implements IFocusManagerGotFocusEventArgs { - correlationId: string; - newFocusedElement: DependencyObject; - - } - export class FocusManagerLostFocusEventArgs implements IFocusManagerLostFocusEventArgs { - correlationId: string; - oldFocusedElement: DependencyObject; - - } - export class FocusMovementResult implements IFocusMovementResult { - succeeded: Boolean; - - } - export enum FocusNavigationDirection { - next, - previous, - up, - down, - left, - right, - none, - } - export class GettingFocusEventArgs implements IRoutedEventArgs, IGettingFocusEventArgs, IGettingFocusEventArgs2, IGettingFocusEventArgs3 { - newFocusedElement: DependencyObject; - handled: Boolean; - cancel: Boolean; - direction: FocusNavigationDirection; - focusState: FocusState; - inputDevice: FocusInputDeviceKind; - oldFocusedElement: DependencyObject; - correlationId: string; - originalSource: any; - - tryCancel(): Boolean { - throw new Error('shimmed function GettingFocusEventArgs.tryCancel'); - } - - trySetNewFocusedElement(element: DependencyObject): Boolean { - throw new Error('shimmed function GettingFocusEventArgs.trySetNewFocusedElement'); - } - - } - export type HoldingEventHandler = (e: HoldingRoutedEventArgs) => void; - export class HoldingRoutedEventArgs implements IRoutedEventArgs, IHoldingRoutedEventArgs { - // constructor(); - handled: Boolean = false; - holdingState: Input.HoldingState = HoldingState.started; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - originalSource: any; - - getPosition(relativeTo: UIElement): Foundation.Point { - throw new Error('shimmed function HoldingRoutedEventArgs.getPosition'); - } - - } - export class InertiaExpansionBehavior implements IInertiaExpansionBehavior { - desiredExpansion: number; - desiredDeceleration: number; - - } - export class InertiaRotationBehavior implements IInertiaRotationBehavior { - desiredRotation: number; - desiredDeceleration: number; - - } - export class InertiaTranslationBehavior implements IInertiaTranslationBehavior { - desiredDisplacement: number; - desiredDeceleration: number; - - } - export class InputScope implements IDependencyObject, IDependencyObject2, IInputScope { - // constructor(); - names: InputScopeName[] = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InputScope.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InputScope.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InputScope.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InputScope.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InputScope.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InputScope.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InputScope.unregisterPropertyChangedCallback'); - } - - } - export class InputScopeName implements IDependencyObject, IDependencyObject2, IInputScopeName { - // constructor(nameValue: InputScopeNameValue); - // constructor(); - constructor(nameValue: InputScopeNameValue) {} - - nameValue: InputScopeNameValue = InputScopeNameValue.default; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function InputScopeName.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function InputScopeName.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function InputScopeName.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function InputScopeName.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function InputScopeName.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function InputScopeName.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function InputScopeName.unregisterPropertyChangedCallback'); - } - - } - export enum InputScopeNameValue { - default, - url, - emailSmtpAddress = 5, - personalFullName = 7, - currencyAmountAndSymbol = 20, - currencyAmount, - dateMonthNumber = 23, - dateDayNumber, - dateYear, - digits = 28, - number, - password = 31, - telephoneNumber, - telephoneCountryCode, - telephoneAreaCode, - telephoneLocalNumber, - timeHour = 37, - timeMinutesOrSeconds, - numberFullWidth, - alphanumericHalfWidth, - alphanumericFullWidth, - hiragana = 44, - katakanaHalfWidth, - katakanaFullWidth, - hanja, - hangulHalfWidth, - hangulFullWidth, - search, - formula, - searchIncremental, - chineseHalfWidth, - chineseFullWidth, - nativeScript, - text = 57, - chat, - nameOrPhoneNumber, - emailNameOrAddress, - maps = 62, - numericPassword, - numericPin, - alphanumericPin, - formulaNumber = 67, - chatWithoutEmoji, - } - export class KeyboardAccelerator implements IDependencyObject, IDependencyObject2, IKeyboardAccelerator { - // constructor(); - scopeOwner: DependencyObject; - modifiers: System.VirtualKeyModifiers = VirtualKeyModifiers.none; - key: System.VirtualKey = VirtualKey.none; - isEnabled: Boolean = true; - static isEnabledProperty: DependencyProperty = null; - static keyProperty: DependencyProperty = null; - static modifiersProperty: DependencyProperty = null; - static scopeOwnerProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function KeyboardAccelerator.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function KeyboardAccelerator.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function KeyboardAccelerator.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function KeyboardAccelerator.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function KeyboardAccelerator.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function KeyboardAccelerator.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function KeyboardAccelerator.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`KeyboardAccelerator::addEventListener: ${name}`); - switch (name) { - case "invoked": // Foundation.TypedEventHandler - break; - } - - } - } - export class KeyboardAcceleratorInvokedEventArgs implements IKeyboardAcceleratorInvokedEventArgs, IKeyboardAcceleratorInvokedEventArgs2 { - handled: Boolean; - element: DependencyObject; - keyboardAccelerator: KeyboardAccelerator; - - } - export enum KeyboardAcceleratorPlacementMode { - auto, - hidden, - } - export enum KeyboardNavigationMode { - local, - cycle, - once, - } - export type KeyEventHandler = (e: KeyRoutedEventArgs) => void; - export class KeyRoutedEventArgs implements IRoutedEventArgs, IKeyRoutedEventArgs, IKeyRoutedEventArgs2, IKeyRoutedEventArgs3 { - handled: Boolean; - key: System.VirtualKey; - keyStatus: Core.CorePhysicalKeyStatus; - originalKey: System.VirtualKey; - deviceId: string; - originalSource: any; - - } - export enum KeyTipPlacementMode { - auto, - bottom, - top, - left, - right, - center, - hidden, - } - export class LosingFocusEventArgs implements IRoutedEventArgs, ILosingFocusEventArgs, ILosingFocusEventArgs2, ILosingFocusEventArgs3 { - newFocusedElement: DependencyObject; - handled: Boolean; - cancel: Boolean; - direction: FocusNavigationDirection; - focusState: FocusState; - inputDevice: FocusInputDeviceKind; - oldFocusedElement: DependencyObject; - correlationId: string; - originalSource: any; - - tryCancel(): Boolean { - throw new Error('shimmed function LosingFocusEventArgs.tryCancel'); - } - - trySetNewFocusedElement(element: DependencyObject): Boolean { - throw new Error('shimmed function LosingFocusEventArgs.trySetNewFocusedElement'); - } - - } - export type ManipulationCompletedEventHandler = (e: ManipulationCompletedRoutedEventArgs) => void; - export class ManipulationCompletedRoutedEventArgs implements IRoutedEventArgs, IManipulationCompletedRoutedEventArgs { - // constructor(); - handled: Boolean = false; - container: UIElement; - cumulative: Input.ManipulationDelta = null; - isInertial: Boolean = false; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - position: Foundation.Point = null; - velocities: Input.ManipulationVelocities = null; - originalSource: any; - - } - export type ManipulationDeltaEventHandler = (e: ManipulationDeltaRoutedEventArgs) => void; - export class ManipulationDeltaRoutedEventArgs implements IRoutedEventArgs, IManipulationDeltaRoutedEventArgs { - // constructor(); - handled: Boolean = false; - container: UIElement; - cumulative: Input.ManipulationDelta; - delta: Input.ManipulationDelta; - isInertial: Boolean = false; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - position: Foundation.Point = null; - velocities: Input.ManipulationVelocities = null; - originalSource: any; - - complete(): void { - console.warn('shimmed function ManipulationDeltaRoutedEventArgs.complete'); - } - - } - export type ManipulationInertiaStartingEventHandler = (e: ManipulationInertiaStartingRoutedEventArgs) => void; - export class ManipulationInertiaStartingRoutedEventArgs implements IRoutedEventArgs, IManipulationInertiaStartingRoutedEventArgs { - // constructor(); - translationBehavior: InertiaTranslationBehavior; - rotationBehavior: InertiaRotationBehavior; - handled: Boolean = false; - expansionBehavior: InertiaExpansionBehavior; - container: UIElement; - cumulative: Input.ManipulationDelta = null; - delta: Input.ManipulationDelta = null; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - velocities: Input.ManipulationVelocities = null; - originalSource: any; - - } - export enum ManipulationModes { - none, - translateX, - translateY, - translateRailsX = 4, - translateRailsY = 8, - rotate = 16, - scale = 32, - translateInertia = 64, - rotateInertia = 128, - scaleInertia = 256, - all = 65535, - system, - } - export class ManipulationPivot implements IManipulationPivot { - // constructor(center: Foundation.Point, radius: number); - // constructor(); - constructor(center: Foundation.Point, radius: number) {} - - radius: number = 0; - center: Foundation.Point = null; - - } - export type ManipulationStartedEventHandler = (e: ManipulationStartedRoutedEventArgs) => void; - export class ManipulationStartedRoutedEventArgs implements IRoutedEventArgs, IManipulationStartedRoutedEventArgs { - // constructor(); - handled: Boolean = false; - container: UIElement; - cumulative: Input.ManipulationDelta = null; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - position: Foundation.Point = null; - originalSource: any; - - complete(): void { - console.warn('shimmed function ManipulationStartedRoutedEventArgs.complete'); - } - - } - export type ManipulationStartingEventHandler = (e: ManipulationStartingRoutedEventArgs) => void; - export class ManipulationStartingRoutedEventArgs implements IRoutedEventArgs, IManipulationStartingRoutedEventArgs { - // constructor(); - pivot: ManipulationPivot; - mode: ManipulationModes = ManipulationModes.system; - handled: Boolean = false; - container: UIElement; - originalSource: any; - - } - export class NoFocusCandidateFoundEventArgs implements IRoutedEventArgs, INoFocusCandidateFoundEventArgs { - handled: Boolean; - direction: FocusNavigationDirection; - inputDevice: FocusInputDeviceKind; - originalSource: any; - - } - export class Pointer implements IPointer { - isInContact: Boolean; - isInRange: Boolean; - pointerDeviceType: Devices.Input.PointerDeviceType; - pointerId: number; - - } - export type PointerEventHandler = (e: PointerRoutedEventArgs) => void; - export class PointerRoutedEventArgs implements IRoutedEventArgs, IPointerRoutedEventArgs, IPointerRoutedEventArgs2 { - handled: Boolean; - keyModifiers: System.VirtualKeyModifiers; - pointer: Pointer; - isGenerated: Boolean; - originalSource: any; - - getCurrentPoint(relativeTo: UIElement): Input.PointerPoint { - throw new Error('shimmed function PointerRoutedEventArgs.getCurrentPoint'); - } - - getIntermediatePoints(relativeTo: UIElement): Input.PointerPoint[] { - throw new Error('shimmed function PointerRoutedEventArgs.getIntermediatePoints'); - } - - } - export class ProcessKeyboardAcceleratorEventArgs implements IProcessKeyboardAcceleratorEventArgs { - handled: Boolean; - key: System.VirtualKey; - modifiers: System.VirtualKeyModifiers; - - } - export type RightTappedEventHandler = (e: RightTappedRoutedEventArgs) => void; - export class RightTappedRoutedEventArgs implements IRoutedEventArgs, IRightTappedRoutedEventArgs { - // constructor(); - handled: Boolean = false; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - originalSource: any; - - getPosition(relativeTo: UIElement): Foundation.Point { - throw new Error('shimmed function RightTappedRoutedEventArgs.getPosition'); - } - - } - export class StandardUICommand implements IDependencyObject, IDependencyObject2, IXamlUICommand, IStandardUICommand, IStandardUICommand2 { - // constructor(); - // constructor(kind: StandardUICommandKind); - constructor(kind: StandardUICommandKind) {} - - kind: StandardUICommandKind = StandardUICommandKind.none; - static kindProperty: DependencyProperty = null; - label: string = ''; - iconSource: Controls.IconSource; - description: string = ''; - command: /* System.Windows.Input.ICommand */ any; - accessKey: string = ''; - keyboardAccelerators: KeyboardAccelerator[] = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function StandardUICommand.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function StandardUICommand.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function StandardUICommand.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function StandardUICommand.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function StandardUICommand.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function StandardUICommand.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function StandardUICommand.unregisterPropertyChangedCallback'); - } - - notifyCanExecuteChanged(): void { - console.warn('shimmed function StandardUICommand.notifyCanExecuteChanged'); - } - - canExecute(parameter: any): Boolean { - throw new Error('shimmed function StandardUICommand.canExecute'); - } - - execute(parameter: any): void { - console.warn('shimmed function StandardUICommand.execute'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`StandardUICommand::addEventListener: ${name}`); - switch (name) { - case "canexecuterequested": // Foundation.TypedEventHandler - case "executerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum StandardUICommandKind { - none, - cut, - copy, - paste, - selectAll, - delete, - share, - save, - open, - close, - pause, - play, - stop, - forward, - backward, - undo, - redo, - } - export type TappedEventHandler = (e: TappedRoutedEventArgs) => void; - export class TappedRoutedEventArgs implements IRoutedEventArgs, ITappedRoutedEventArgs { - // constructor(); - handled: Boolean = false; - pointerDeviceType: Devices.Input.PointerDeviceType = PointerDeviceType.touch; - originalSource: any; - - getPosition(relativeTo: UIElement): Foundation.Point { - throw new Error('shimmed function TappedRoutedEventArgs.getPosition'); - } - - } - export class XamlUICommand implements IDependencyObject, IDependencyObject2, IXamlUICommand { - // constructor(); - label: string = ''; - iconSource: Controls.IconSource; - description: string = ''; - command: /* System.Windows.Input.ICommand */ any; - accessKey: string = ''; - keyboardAccelerators: KeyboardAccelerator[] = [ ]; - static accessKeyProperty: DependencyProperty = null; - static commandProperty: DependencyProperty = null; - static descriptionProperty: DependencyProperty = null; - static iconSourceProperty: DependencyProperty = null; - static keyboardAcceleratorsProperty: DependencyProperty = null; - static labelProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlUICommand.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function XamlUICommand.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function XamlUICommand.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlUICommand.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlUICommand.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function XamlUICommand.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function XamlUICommand.unregisterPropertyChangedCallback'); - } - - notifyCanExecuteChanged(): void { - console.warn('shimmed function XamlUICommand.notifyCanExecuteChanged'); - } - - canExecute(parameter: any): Boolean { - throw new Error('shimmed function XamlUICommand.canExecute'); - } - - execute(parameter: any): void { - console.warn('shimmed function XamlUICommand.execute'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`XamlUICommand::addEventListener: ${name}`); - switch (name) { - case "canexecuterequested": // Foundation.TypedEventHandler - case "executerequested": // Foundation.TypedEventHandler - break; - } - - } - } - export enum XYFocusKeyboardNavigationMode { - auto, - enabled, - disabled, - } - export enum XYFocusNavigationStrategy { - auto, - projection, - navigationDirectionDistance, - rectilinearDistance, - } - export enum XYFocusNavigationStrategyOverride { - none, - auto, - projection, - navigationDirectionDistance, - rectilinearDistance, - } - } - export namespace Interop { - export type BindableVectorChangedEventHandler = (e: any) => void; - export interface IBindableIterator { - current: any; - hasCurrent: Boolean; - moveNext(): Boolean; - } - export interface IBindableObservableVector { - } - export interface IBindableVectorView { - size: number; - getAt(index: number): any; - indexOf(value: any): { returnValue: Boolean, index: number }; - } - export enum NotifyCollectionChangedAction { - add, - remove, - replace, - move, - reset, - } - export class NotifyCollectionChangedEventArgs implements INotifyCollectionChangedEventArgs { - // constructor(action: System.Collections.Specialized.NotifyCollectionChangedAction, newItems: /* System.Collections.IList */ any, oldItems: /* System.Collections.IList */ any, newIndex: number, oldIndex: number); - constructor(action: System.Collections.Specialized.NotifyCollectionChangedAction, newItems: /* System.Collections.IList */ any, oldItems: /* System.Collections.IList */ any, newIndex: number, oldIndex: number) {} - - action: System.Collections.Specialized.NotifyCollectionChangedAction; - newItems: /* System.Collections.IList */ any; - newStartingIndex: number; - oldItems: /* System.Collections.IList */ any; - oldStartingIndex: number; - - } - export type NotifyCollectionChangedEventHandler = (e: /* System.Collections.Specialized.NotifyCollectionChangedEventArgs */ any) => void; - export enum TypeKind { - primitive, - metadata, - custom, - } - export interface TypeName { - name: string; - kind: TypeKind; - } - } - export type LeavingBackgroundEventHandler = (e: ApplicationModel.LeavingBackgroundEventArgs) => void; - export enum LineStackingStrategy { - maxHeight, - blockLineHeight, - baselineToBaseline, - } - export namespace Markup { - export class ContentPropertyAttribute { - // constructor(); - typeId: any; - - name: string; - match(obj: any): Boolean { - throw new Error('shimmed function ContentPropertyAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ContentPropertyAttribute.isDefaultAttribute'); - } - - } - export class FullXamlMetadataProviderAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function FullXamlMetadataProviderAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function FullXamlMetadataProviderAttribute.isDefaultAttribute'); - } - - } - export interface IComponentConnector { - connect(connectionId: number, target: any): void; - } - export interface IComponentConnector2 { - getBindingConnector(connectionId: number, target: any): IComponentConnector; - } - export interface IDataTemplateComponent { - recycle(): void; - processBindings(item: any, itemIndex: number, phase: number): number; - } - export interface IXamlBindScopeDiagnostics { - disable(lineNumber: number, columnNumber: number): void; - } - export interface IXamlMember { - isAttachable: Boolean; - isDependencyProperty: Boolean; - isReadOnly: Boolean; - name: string; - targetType: IXamlType; - type: IXamlType; - getValue(instance: any): any; - setValue(instance: any, value: any): void; - } - export interface IXamlMetadataProvider { - getXamlType(type: /* System.Type */ any): IXamlType; - getXamlType_1(fullName: string): IXamlType; - getXmlnsDefinitions(): XmlnsDefinition[]; - } - export interface IXamlType { - baseType: IXamlType; - contentProperty: IXamlMember; - fullName: string; - isArray: Boolean; - isBindable: Boolean; - isCollection: Boolean; - isConstructible: Boolean; - isDictionary: Boolean; - isMarkupExtension: Boolean; - itemType: IXamlType; - keyType: IXamlType; - underlyingType: /* System.Type */ any; - activateInstance(): any; - createFromString(value: string): any; - getMember(name: string): IXamlMember; - addToVector(instance: any, value: any): void; - addToMap(instance: any, key: any, value: any): void; - runInitializer(): void; - } - export interface IXamlType2 extends IXamlType { - boxedType: IXamlType; - } - export class MarkupExtension implements IMarkupExtension, IMarkupExtensionOverrides { - // constructor(); - provideValue(): any { - throw new Error('shimmed function MarkupExtension.provideValue'); - } - - } - export class MarkupExtensionReturnTypeAttribute { - // constructor(); - typeId: any; - - returnType: /* System.Type */ any; - match(obj: any): Boolean { - throw new Error('shimmed function MarkupExtensionReturnTypeAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function MarkupExtensionReturnTypeAttribute.isDefaultAttribute'); - } - - } - export class XamlBinaryWriter implements IXamlBinaryWriter { - static write(inputStreams: Storage.Streams.IRandomAccessStream[], outputStreams: Storage.Streams.IRandomAccessStream[], xamlMetadataProvider: IXamlMetadataProvider): XamlBinaryWriterErrorInformation { - throw new Error('shimmed function XamlBinaryWriter.write'); - } - - } - export interface XamlBinaryWriterErrorInformation { - inputStreamIndex: number; - lineNumber: number; - linePosition: number; - } - export class XamlBindingHelper implements IXamlBindingHelper { - static dataTemplateComponentProperty: DependencyProperty = null; - - static getDataTemplateComponent(element: DependencyObject): IDataTemplateComponent { - throw new Error('shimmed function XamlBindingHelper.getDataTemplateComponent'); - } - - static setDataTemplateComponent(element: DependencyObject, value: IDataTemplateComponent): void { - console.warn('shimmed function XamlBindingHelper.setDataTemplateComponent'); - } - - static suspendRendering(target: UIElement): void { - console.warn('shimmed function XamlBindingHelper.suspendRendering'); - } - - static resumeRendering(target: UIElement): void { - console.warn('shimmed function XamlBindingHelper.resumeRendering'); - } - - static convertValue(type: /* System.Type */ any, value: any): any { - throw new Error('shimmed function XamlBindingHelper.convertValue'); - } - - static setPropertyFromString(dependencyObject: any, propertyToSet: DependencyProperty, value: string): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromString'); - } - - static setPropertyFromBoolean(dependencyObject: any, propertyToSet: DependencyProperty, value: Boolean): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromBoolean'); - } - - static setPropertyFromChar16(dependencyObject: any, propertyToSet: DependencyProperty, value: string): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromChar16'); - } - - static setPropertyFromDateTime(dependencyObject: any, propertyToSet: DependencyProperty, value: Date): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromDateTime'); - } - - static setPropertyFromDouble(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromDouble'); - } - - static setPropertyFromInt32(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromInt32'); - } - - static setPropertyFromUInt32(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromUInt32'); - } - - static setPropertyFromInt64(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromInt64'); - } - - static setPropertyFromUInt64(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromUInt64'); - } - - static setPropertyFromSingle(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromSingle'); - } - - static setPropertyFromPoint(dependencyObject: any, propertyToSet: DependencyProperty, value: Foundation.Point): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromPoint'); - } - - static setPropertyFromRect(dependencyObject: any, propertyToSet: DependencyProperty, value: Foundation.Rect): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromRect'); - } - - static setPropertyFromSize(dependencyObject: any, propertyToSet: DependencyProperty, value: Foundation.Size): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromSize'); - } - - static setPropertyFromTimeSpan(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromTimeSpan'); - } - - static setPropertyFromByte(dependencyObject: any, propertyToSet: DependencyProperty, value: number): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromByte'); - } - - static setPropertyFromUri(dependencyObject: any, propertyToSet: DependencyProperty, value: Foundation.Uri): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromUri'); - } - - static setPropertyFromObject(dependencyObject: any, propertyToSet: DependencyProperty, value: any): void { - console.warn('shimmed function XamlBindingHelper.setPropertyFromObject'); - } - - } - export class XamlMarkupHelper implements IXamlMarkupHelper { - static unloadObject(element: DependencyObject): void { - console.warn('shimmed function XamlMarkupHelper.unloadObject'); - } - - } - export class XamlReader implements IXamlReader { - static load(xaml: string): any { - throw new Error('shimmed function XamlReader.load'); - } - - static loadWithInitialTemplateValidation(xaml: string): any { - throw new Error('shimmed function XamlReader.loadWithInitialTemplateValidation'); - } - - } - export interface XmlnsDefinition { - xmlNamespace: string; - namespace: string; - } - } - export namespace Media { - export enum AcrylicBackgroundSource { - hostBackdrop, - backdrop, - } - export class AcrylicBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, IXamlCompositionBrushBase, IXamlCompositionBrushBaseProtected, IXamlCompositionBrushBaseOverrides, IAcrylicBrush, IAcrylicBrush2 { - // constructor(); - tintTransitionDuration: number = 500; - tintOpacity: number = 1; - tintColor: Color = { a: 204, r: 255, g: 255, b: 255 }; - backgroundSource: AcrylicBackgroundSource = AcrylicBackgroundSource.backdrop; - alwaysUseFallback: Boolean = false; - tintLuminosityOpacity: number | null; - static alwaysUseFallbackProperty: DependencyProperty = null; - static backgroundSourceProperty: DependencyProperty = null; - static tintColorProperty: DependencyProperty = null; - static tintOpacityProperty: DependencyProperty = null; - static tintTransitionDurationProperty: DependencyProperty = null; - static tintLuminosityOpacityProperty: DependencyProperty = null; - fallbackColor: Color = { a: 0, r: 255, g: 255, b: 255 }; - compositionBrush: Composition.CompositionBrush; - transform: Transform = null; - relativeTransform: Transform = null; - opacity: number = 1; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AcrylicBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AcrylicBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AcrylicBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AcrylicBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AcrylicBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AcrylicBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AcrylicBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AcrylicBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function AcrylicBrush.populatePropertyInfo'); - } - - onConnected(): void { - console.warn('shimmed function AcrylicBrush.onConnected'); - } - - onDisconnected(): void { - console.warn('shimmed function AcrylicBrush.onDisconnected'); - } - - } - export enum AlignmentX { - left, - center, - right, - } - export enum AlignmentY { - top, - center, - bottom, - } - export namespace Animation { - export class AddDeleteThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IAddDeleteThemeTransition { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function AddDeleteThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function AddDeleteThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function AddDeleteThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function AddDeleteThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function AddDeleteThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function AddDeleteThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function AddDeleteThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class BackEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IBackEase { - // constructor(); - amplitude: number = 1; - static amplitudeProperty: DependencyProperty = null; - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BackEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BackEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BackEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BackEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BackEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BackEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BackEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function BackEase.ease'); - } - - } - export class BasicConnectedAnimationConfiguration implements IConnectedAnimationConfiguration, IBasicConnectedAnimationConfiguration { - // constructor(); - } - export class BeginStoryboard implements IDependencyObject, IDependencyObject2, ITriggerAction, IBeginStoryboard { - // constructor(); - storyboard: Storyboard; - static storyboardProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BeginStoryboard.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BeginStoryboard.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BeginStoryboard.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BeginStoryboard.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BeginStoryboard.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BeginStoryboard.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BeginStoryboard.unregisterPropertyChangedCallback'); - } - - } - export class BounceEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IBounceEase { - // constructor(); - bounciness: number = 2; - bounces: number = 3; - static bouncesProperty: DependencyProperty = null; - static bouncinessProperty: DependencyProperty = null; - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BounceEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BounceEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BounceEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BounceEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BounceEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BounceEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BounceEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function BounceEase.ease'); - } - - } - export class CircleEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, ICircleEase { - // constructor(); - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CircleEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CircleEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CircleEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CircleEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CircleEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CircleEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CircleEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function CircleEase.ease'); - } - - } - export enum ClockState { - active, - filling, - stopped, - } - export class ColorAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IColorAnimation { - // constructor(); - to: Color | null; - from: Color | null; - enableDependentAnimation: Boolean = false; - easingFunction: EasingFunctionBase; - by: Color | null; - static byProperty: DependencyProperty = null; - static easingFunctionProperty: DependencyProperty = null; - static enableDependentAnimationProperty: DependencyProperty = null; - static fromProperty: DependencyProperty = null; - static toProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ColorAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class ColorAnimationUsingKeyFrames implements IDependencyObject, IDependencyObject2, ITimeline, IColorAnimationUsingKeyFrames { - // constructor(); - enableDependentAnimation: Boolean = false; - keyFrames: ColorKeyFrameCollection = [ ]; - static enableDependentAnimationProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorAnimationUsingKeyFrames.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorAnimationUsingKeyFrames.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorAnimationUsingKeyFrames.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorAnimationUsingKeyFrames.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorAnimationUsingKeyFrames.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorAnimationUsingKeyFrames.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorAnimationUsingKeyFrames.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ColorAnimationUsingKeyFrames::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class ColorKeyFrame implements IDependencyObject, IDependencyObject2, IColorKeyFrame { - value: Color; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any; - static keyTimeProperty: DependencyProperty = null; - static valueProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ColorKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ColorKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ColorKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ColorKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ColorKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class ColorKeyFrameCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): ColorKeyFrame { - throw new Error('shimmed function ColorKeyFrameCollection.getAt'); - } - - getView(): ColorKeyFrame[] { - throw new Error('shimmed function ColorKeyFrameCollection.getView'); - } - - indexOf(value: ColorKeyFrame): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ColorKeyFrameCollection.indexOf'); - } - - setAt(index: number, value: ColorKeyFrame): void { - console.warn('shimmed function ColorKeyFrameCollection.setAt'); - } - - insertAt(index: number, value: ColorKeyFrame): void { - console.warn('shimmed function ColorKeyFrameCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function ColorKeyFrameCollection.removeAt'); - } - - append(value: ColorKeyFrame): void { - console.warn('shimmed function ColorKeyFrameCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function ColorKeyFrameCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function ColorKeyFrameCollection.clear'); - } - - getMany(startIndex: number, items: ColorKeyFrame[]): number { - throw new Error('shimmed function ColorKeyFrameCollection.getMany'); - } - - replaceAll(items: ColorKeyFrame[]): void { - console.warn('shimmed function ColorKeyFrameCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ColorKeyFrameCollection.first'); - } - - } - export class CommonNavigationTransitionInfo implements IDependencyObject, IDependencyObject2, INavigationTransitionInfo, INavigationTransitionInfoOverrides, ICommonNavigationTransitionInfo { - // constructor(); - isStaggeringEnabled: Boolean = false; - static isStaggerElementProperty: DependencyProperty = null; - static isStaggeringEnabledProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommonNavigationTransitionInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CommonNavigationTransitionInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CommonNavigationTransitionInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommonNavigationTransitionInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CommonNavigationTransitionInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CommonNavigationTransitionInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CommonNavigationTransitionInfo.unregisterPropertyChangedCallback'); - } - - getNavigationStateCore(): string { - throw new Error('shimmed function CommonNavigationTransitionInfo.getNavigationStateCore'); - } - - setNavigationStateCore(navigationState: string): void { - console.warn('shimmed function CommonNavigationTransitionInfo.setNavigationStateCore'); - } - - static getIsStaggerElement(element: UIElement): Boolean { - throw new Error('shimmed function CommonNavigationTransitionInfo.getIsStaggerElement'); - } - - static setIsStaggerElement(element: UIElement, value: Boolean): void { - console.warn('shimmed function CommonNavigationTransitionInfo.setIsStaggerElement'); - } - - } - export class ConditionallyIndependentlyAnimatableAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function ConditionallyIndependentlyAnimatableAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function ConditionallyIndependentlyAnimatableAttribute.isDefaultAttribute'); - } - - } - export class ConnectedAnimation implements IConnectedAnimation, IConnectedAnimation2, IConnectedAnimation3 { - isScaleAnimationEnabled: Boolean; - configuration: ConnectedAnimationConfiguration; - - tryStart(destination: UIElement): Boolean { - throw new Error('shimmed function ConnectedAnimation.tryStart'); - } - - cancel(): void { - console.warn('shimmed function ConnectedAnimation.cancel'); - } - - tryStart_1(destination: UIElement, coordinatedElements: Foundation.Collections.IIterable): Boolean { - throw new Error('shimmed function ConnectedAnimation.tryStart_1'); - } - - setAnimationComponent(component: ConnectedAnimationComponent, animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function ConnectedAnimation.setAnimationComponent'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ConnectedAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // Foundation.TypedEventHandler - break; - } - - } - } - export enum ConnectedAnimationComponent { - offsetX, - offsetY, - crossFade, - scale, - } - export class ConnectedAnimationConfiguration implements IConnectedAnimationConfiguration { - } - export class ConnectedAnimationService implements IConnectedAnimationService { - defaultEasingFunction: Composition.CompositionEasingFunction; - defaultDuration: number; - - prepareToAnimate(key: string, source: UIElement): ConnectedAnimation { - throw new Error('shimmed function ConnectedAnimationService.prepareToAnimate'); - } - - getAnimation(key: string): ConnectedAnimation { - throw new Error('shimmed function ConnectedAnimationService.getAnimation'); - } - - static getForCurrentView(): ConnectedAnimationService { - throw new Error('shimmed function ConnectedAnimationService.getForCurrentView'); - } - - } - export class ContentThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IContentThemeTransition { - // constructor(); - verticalOffset: number = 28; - horizontalOffset: number = 0; - static horizontalOffsetProperty: DependencyProperty = null; - static verticalOffsetProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContentThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContentThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContentThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContentThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContentThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class ContinuumNavigationTransitionInfo implements IDependencyObject, IDependencyObject2, INavigationTransitionInfo, INavigationTransitionInfoOverrides, IContinuumNavigationTransitionInfo { - // constructor(); - exitElement: UIElement; - static exitElementContainerProperty: DependencyProperty = null; - static exitElementProperty: DependencyProperty = null; - static isEntranceElementProperty: DependencyProperty = null; - static isExitElementProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ContinuumNavigationTransitionInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ContinuumNavigationTransitionInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ContinuumNavigationTransitionInfo.unregisterPropertyChangedCallback'); - } - - getNavigationStateCore(): string { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.getNavigationStateCore'); - } - - setNavigationStateCore(navigationState: string): void { - console.warn('shimmed function ContinuumNavigationTransitionInfo.setNavigationStateCore'); - } - - static getIsEntranceElement(element: UIElement): Boolean { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.getIsEntranceElement'); - } - - static setIsEntranceElement(element: UIElement, value: Boolean): void { - console.warn('shimmed function ContinuumNavigationTransitionInfo.setIsEntranceElement'); - } - - static getIsExitElement(element: UIElement): Boolean { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.getIsExitElement'); - } - - static setIsExitElement(element: UIElement, value: Boolean): void { - console.warn('shimmed function ContinuumNavigationTransitionInfo.setIsExitElement'); - } - - static getExitElementContainer(element: Controls.ListViewBase): Boolean { - throw new Error('shimmed function ContinuumNavigationTransitionInfo.getExitElementContainer'); - } - - static setExitElementContainer(element: Controls.ListViewBase, value: Boolean): void { - console.warn('shimmed function ContinuumNavigationTransitionInfo.setExitElementContainer'); - } - - } - export class CubicEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, ICubicEase { - // constructor(); - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CubicEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CubicEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CubicEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CubicEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CubicEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CubicEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CubicEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function CubicEase.ease'); - } - - } - export class DirectConnectedAnimationConfiguration implements IConnectedAnimationConfiguration, IDirectConnectedAnimationConfiguration { - // constructor(); - } - export class DiscreteColorKeyFrame implements IDependencyObject, IDependencyObject2, IColorKeyFrame, IDiscreteColorKeyFrame { - // constructor(); - value: Color = { a: 255, r: 0, g: 0, b: 0 }; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteColorKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DiscreteColorKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DiscreteColorKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteColorKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteColorKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DiscreteColorKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DiscreteColorKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class DiscreteDoubleKeyFrame implements IDependencyObject, IDependencyObject2, IDoubleKeyFrame, IDiscreteDoubleKeyFrame { - // constructor(); - value: number = 0; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteDoubleKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DiscreteDoubleKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DiscreteDoubleKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteDoubleKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteDoubleKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DiscreteDoubleKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DiscreteDoubleKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class DiscreteObjectKeyFrame implements IDependencyObject, IDependencyObject2, IObjectKeyFrame, IDiscreteObjectKeyFrame { - // constructor(); - value: any; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteObjectKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DiscreteObjectKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DiscreteObjectKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteObjectKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscreteObjectKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DiscreteObjectKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DiscreteObjectKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class DiscretePointKeyFrame implements IDependencyObject, IDependencyObject2, IPointKeyFrame, IDiscretePointKeyFrame { - // constructor(); - value: Foundation.Point = null; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscretePointKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DiscretePointKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DiscretePointKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscretePointKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DiscretePointKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DiscretePointKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DiscretePointKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class DoubleAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IDoubleAnimation { - // constructor(); - to: number | null; - from: number | null; - enableDependentAnimation: Boolean = false; - easingFunction: EasingFunctionBase; - by: number | null; - static byProperty: DependencyProperty = null; - static easingFunctionProperty: DependencyProperty = null; - static enableDependentAnimationProperty: DependencyProperty = null; - static fromProperty: DependencyProperty = null; - static toProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DoubleAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DoubleAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DoubleAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DoubleAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DoubleAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class DoubleAnimationUsingKeyFrames implements IDependencyObject, IDependencyObject2, ITimeline, IDoubleAnimationUsingKeyFrames { - // constructor(); - enableDependentAnimation: Boolean = false; - keyFrames: DoubleKeyFrameCollection = [ ]; - static enableDependentAnimationProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleAnimationUsingKeyFrames.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DoubleAnimationUsingKeyFrames.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DoubleAnimationUsingKeyFrames.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleAnimationUsingKeyFrames.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleAnimationUsingKeyFrames.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DoubleAnimationUsingKeyFrames.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DoubleAnimationUsingKeyFrames.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DoubleAnimationUsingKeyFrames::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class DoubleKeyFrame implements IDependencyObject, IDependencyObject2, IDoubleKeyFrame { - value: number; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any; - static keyTimeProperty: DependencyProperty = null; - static valueProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DoubleKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DoubleKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DoubleKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DoubleKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DoubleKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class DoubleKeyFrameCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): DoubleKeyFrame { - throw new Error('shimmed function DoubleKeyFrameCollection.getAt'); - } - - getView(): DoubleKeyFrame[] { - throw new Error('shimmed function DoubleKeyFrameCollection.getView'); - } - - indexOf(value: DoubleKeyFrame): { returnValue: Boolean, index: number } { - throw new Error('shimmed function DoubleKeyFrameCollection.indexOf'); - } - - setAt(index: number, value: DoubleKeyFrame): void { - console.warn('shimmed function DoubleKeyFrameCollection.setAt'); - } - - insertAt(index: number, value: DoubleKeyFrame): void { - console.warn('shimmed function DoubleKeyFrameCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function DoubleKeyFrameCollection.removeAt'); - } - - append(value: DoubleKeyFrame): void { - console.warn('shimmed function DoubleKeyFrameCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function DoubleKeyFrameCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function DoubleKeyFrameCollection.clear'); - } - - getMany(startIndex: number, items: DoubleKeyFrame[]): number { - throw new Error('shimmed function DoubleKeyFrameCollection.getMany'); - } - - replaceAll(items: DoubleKeyFrame[]): void { - console.warn('shimmed function DoubleKeyFrameCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function DoubleKeyFrameCollection.first'); - } - - } - export class DragItemThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IDragItemThemeAnimation { - // constructor(); - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DragItemThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DragItemThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DragItemThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DragItemThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DragItemThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DragItemThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DragItemThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DragItemThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class DragOverThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IDragOverThemeAnimation { - // constructor(); - toOffset: number = 0; - targetName: string = ''; - direction: Controls.Primitives.AnimationDirection = AnimationDirection.top; - static directionProperty: DependencyProperty = null; - static targetNameProperty: DependencyProperty = null; - static toOffsetProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DragOverThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DragOverThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DragOverThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DragOverThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DragOverThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DragOverThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DragOverThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DragOverThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class DrillInNavigationTransitionInfo implements IDependencyObject, IDependencyObject2, INavigationTransitionInfo, INavigationTransitionInfoOverrides, IDrillInNavigationTransitionInfo { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillInNavigationTransitionInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DrillInNavigationTransitionInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DrillInNavigationTransitionInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillInNavigationTransitionInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillInNavigationTransitionInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DrillInNavigationTransitionInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DrillInNavigationTransitionInfo.unregisterPropertyChangedCallback'); - } - - getNavigationStateCore(): string { - throw new Error('shimmed function DrillInNavigationTransitionInfo.getNavigationStateCore'); - } - - setNavigationStateCore(navigationState: string): void { - console.warn('shimmed function DrillInNavigationTransitionInfo.setNavigationStateCore'); - } - - } - export class DrillInThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IDrillInThemeAnimation { - // constructor(); - exitTargetName: string = ''; - exitTarget: DependencyObject; - entranceTargetName: string = ''; - entranceTarget: DependencyObject; - static entranceTargetNameProperty: DependencyProperty = null; - static entranceTargetProperty: DependencyProperty = null; - static exitTargetNameProperty: DependencyProperty = null; - static exitTargetProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillInThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DrillInThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DrillInThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillInThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillInThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DrillInThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DrillInThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DrillInThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class DrillOutThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IDrillOutThemeAnimation { - // constructor(); - exitTargetName: string = ''; - exitTarget: DependencyObject; - entranceTargetName: string = ''; - entranceTarget: DependencyObject; - static entranceTargetNameProperty: DependencyProperty = null; - static entranceTargetProperty: DependencyProperty = null; - static exitTargetNameProperty: DependencyProperty = null; - static exitTargetProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillOutThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DrillOutThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DrillOutThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillOutThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DrillOutThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DrillOutThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DrillOutThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DrillOutThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class DropTargetItemThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IDropTargetItemThemeAnimation { - // constructor(); - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropTargetItemThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function DropTargetItemThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function DropTargetItemThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropTargetItemThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function DropTargetItemThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function DropTargetItemThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function DropTargetItemThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`DropTargetItemThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class EasingColorKeyFrame implements IDependencyObject, IDependencyObject2, IColorKeyFrame, IEasingColorKeyFrame { - // constructor(); - easingFunction: EasingFunctionBase; - static easingFunctionProperty: DependencyProperty = null; - value: Color = { a: 255, r: 0, g: 0, b: 0 }; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingColorKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EasingColorKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EasingColorKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingColorKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingColorKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EasingColorKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EasingColorKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class EasingDoubleKeyFrame implements IDependencyObject, IDependencyObject2, IDoubleKeyFrame, IEasingDoubleKeyFrame { - // constructor(); - easingFunction: EasingFunctionBase; - static easingFunctionProperty: DependencyProperty = null; - value: number = 0; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingDoubleKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EasingDoubleKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EasingDoubleKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingDoubleKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingDoubleKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EasingDoubleKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EasingDoubleKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class EasingFunctionBase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase { - easingMode: EasingMode; - static easingModeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingFunctionBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EasingFunctionBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EasingFunctionBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingFunctionBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingFunctionBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EasingFunctionBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EasingFunctionBase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function EasingFunctionBase.ease'); - } - - } - export enum EasingMode { - easeOut, - easeIn, - easeInOut, - } - export class EasingPointKeyFrame implements IDependencyObject, IDependencyObject2, IPointKeyFrame, IEasingPointKeyFrame { - // constructor(); - easingFunction: EasingFunctionBase; - static easingFunctionProperty: DependencyProperty = null; - value: Foundation.Point = null; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingPointKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EasingPointKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EasingPointKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingPointKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EasingPointKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EasingPointKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EasingPointKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class EdgeUIThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IEdgeUIThemeTransition { - // constructor(); - edge: Controls.Primitives.EdgeTransitionLocation = EdgeTransitionLocation.top; - static edgeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EdgeUIThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EdgeUIThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EdgeUIThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EdgeUIThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EdgeUIThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EdgeUIThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EdgeUIThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class ElasticEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IElasticEase { - // constructor(); - springiness: number = 3; - oscillations: number = 3; - static oscillationsProperty: DependencyProperty = null; - static springinessProperty: DependencyProperty = null; - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ElasticEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ElasticEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ElasticEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ElasticEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ElasticEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ElasticEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ElasticEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function ElasticEase.ease'); - } - - } - export class EntranceNavigationTransitionInfo implements IDependencyObject, IDependencyObject2, INavigationTransitionInfo, INavigationTransitionInfoOverrides, IEntranceNavigationTransitionInfo { - // constructor(); - static isTargetElementProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EntranceNavigationTransitionInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EntranceNavigationTransitionInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EntranceNavigationTransitionInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EntranceNavigationTransitionInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EntranceNavigationTransitionInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EntranceNavigationTransitionInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EntranceNavigationTransitionInfo.unregisterPropertyChangedCallback'); - } - - getNavigationStateCore(): string { - throw new Error('shimmed function EntranceNavigationTransitionInfo.getNavigationStateCore'); - } - - setNavigationStateCore(navigationState: string): void { - console.warn('shimmed function EntranceNavigationTransitionInfo.setNavigationStateCore'); - } - - static getIsTargetElement(element: UIElement): Boolean { - throw new Error('shimmed function EntranceNavigationTransitionInfo.getIsTargetElement'); - } - - static setIsTargetElement(element: UIElement, value: Boolean): void { - console.warn('shimmed function EntranceNavigationTransitionInfo.setIsTargetElement'); - } - - } - export class EntranceThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IEntranceThemeTransition { - // constructor(); - isStaggeringEnabled: Boolean = false; - fromVerticalOffset: number = 28; - fromHorizontalOffset: number = 0; - static fromHorizontalOffsetProperty: DependencyProperty = null; - static fromVerticalOffsetProperty: DependencyProperty = null; - static isStaggeringEnabledProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EntranceThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EntranceThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EntranceThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EntranceThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EntranceThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EntranceThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EntranceThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class ExponentialEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IExponentialEase { - // constructor(); - exponent: number = 2; - static exponentProperty: DependencyProperty = null; - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ExponentialEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ExponentialEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ExponentialEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ExponentialEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ExponentialEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ExponentialEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ExponentialEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function ExponentialEase.ease'); - } - - } - export class FadeInThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IFadeInThemeAnimation { - // constructor(); - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FadeInThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FadeInThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FadeInThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FadeInThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FadeInThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FadeInThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FadeInThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FadeInThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class FadeOutThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IFadeOutThemeAnimation { - // constructor(); - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function FadeOutThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function FadeOutThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function FadeOutThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function FadeOutThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function FadeOutThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function FadeOutThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function FadeOutThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`FadeOutThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export enum FillBehavior { - holdEnd, - stop, - } - export class GravityConnectedAnimationConfiguration implements IConnectedAnimationConfiguration, IGravityConnectedAnimationConfiguration, IGravityConnectedAnimationConfiguration2 { - // constructor(); - isShadowEnabled: Boolean = true; - - } - export class IndependentlyAnimatableAttribute { - // constructor(); - typeId: any; - - match(obj: any): Boolean { - throw new Error('shimmed function IndependentlyAnimatableAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function IndependentlyAnimatableAttribute.isDefaultAttribute'); - } - - } - export class KeySpline implements IDependencyObject, IDependencyObject2, IKeySpline { - // constructor(); - controlPoint2: Foundation.Point = null; - controlPoint1: Foundation.Point = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function KeySpline.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function KeySpline.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function KeySpline.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function KeySpline.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function KeySpline.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function KeySpline.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function KeySpline.unregisterPropertyChangedCallback'); - } - - } - export interface KeyTime { - timeSpan: number; - } - export class KeyTimeHelper implements IKeyTimeHelper { - static fromTimeSpan(timeSpan: number): /* Windows.UI.Xaml.Media.Animation.KeyTime */ any { - throw new Error('shimmed function KeyTimeHelper.fromTimeSpan'); - } - - } - export class LinearColorKeyFrame implements IDependencyObject, IDependencyObject2, IColorKeyFrame, ILinearColorKeyFrame { - // constructor(); - value: Color = { a: 255, r: 0, g: 0, b: 0 }; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearColorKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LinearColorKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LinearColorKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearColorKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearColorKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LinearColorKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LinearColorKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class LinearDoubleKeyFrame implements IDependencyObject, IDependencyObject2, IDoubleKeyFrame, ILinearDoubleKeyFrame { - // constructor(); - value: number = 0; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearDoubleKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LinearDoubleKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LinearDoubleKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearDoubleKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearDoubleKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LinearDoubleKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LinearDoubleKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class LinearPointKeyFrame implements IDependencyObject, IDependencyObject2, IPointKeyFrame, ILinearPointKeyFrame { - // constructor(); - value: Foundation.Point = null; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearPointKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LinearPointKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LinearPointKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearPointKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearPointKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LinearPointKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LinearPointKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class NavigationThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, INavigationThemeTransition { - // constructor(); - defaultNavigationTransitionInfo: NavigationTransitionInfo; - static defaultNavigationTransitionInfoProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class NavigationTransitionInfo implements IDependencyObject, IDependencyObject2, INavigationTransitionInfo, INavigationTransitionInfoOverrides { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationTransitionInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function NavigationTransitionInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function NavigationTransitionInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationTransitionInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function NavigationTransitionInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function NavigationTransitionInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function NavigationTransitionInfo.unregisterPropertyChangedCallback'); - } - - getNavigationStateCore(): string { - throw new Error('shimmed function NavigationTransitionInfo.getNavigationStateCore'); - } - - setNavigationStateCore(navigationState: string): void { - console.warn('shimmed function NavigationTransitionInfo.setNavigationStateCore'); - } - - } - export class ObjectAnimationUsingKeyFrames implements IDependencyObject, IDependencyObject2, ITimeline, IObjectAnimationUsingKeyFrames { - // constructor(); - enableDependentAnimation: Boolean = false; - keyFrames: ObjectKeyFrameCollection = [ ]; - static enableDependentAnimationProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ObjectAnimationUsingKeyFrames.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ObjectAnimationUsingKeyFrames.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ObjectAnimationUsingKeyFrames.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ObjectAnimationUsingKeyFrames.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ObjectAnimationUsingKeyFrames.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ObjectAnimationUsingKeyFrames.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ObjectAnimationUsingKeyFrames.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ObjectAnimationUsingKeyFrames::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class ObjectKeyFrame implements IDependencyObject, IDependencyObject2, IObjectKeyFrame { - value: any; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any; - static keyTimeProperty: DependencyProperty = null; - static valueProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ObjectKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ObjectKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ObjectKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ObjectKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ObjectKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ObjectKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ObjectKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class ObjectKeyFrameCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): ObjectKeyFrame { - throw new Error('shimmed function ObjectKeyFrameCollection.getAt'); - } - - getView(): ObjectKeyFrame[] { - throw new Error('shimmed function ObjectKeyFrameCollection.getView'); - } - - indexOf(value: ObjectKeyFrame): { returnValue: Boolean, index: number } { - throw new Error('shimmed function ObjectKeyFrameCollection.indexOf'); - } - - setAt(index: number, value: ObjectKeyFrame): void { - console.warn('shimmed function ObjectKeyFrameCollection.setAt'); - } - - insertAt(index: number, value: ObjectKeyFrame): void { - console.warn('shimmed function ObjectKeyFrameCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function ObjectKeyFrameCollection.removeAt'); - } - - append(value: ObjectKeyFrame): void { - console.warn('shimmed function ObjectKeyFrameCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function ObjectKeyFrameCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function ObjectKeyFrameCollection.clear'); - } - - getMany(startIndex: number, items: ObjectKeyFrame[]): number { - throw new Error('shimmed function ObjectKeyFrameCollection.getMany'); - } - - replaceAll(items: ObjectKeyFrame[]): void { - console.warn('shimmed function ObjectKeyFrameCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function ObjectKeyFrameCollection.first'); - } - - } - export class PaneThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IPaneThemeTransition { - // constructor(); - edge: Controls.Primitives.EdgeTransitionLocation = EdgeTransitionLocation.right; - static edgeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PaneThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PaneThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PaneThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PaneThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PaneThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PaneThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PaneThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class PointAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IPointAnimation { - // constructor(); - to: Foundation.Point | null; - from: Foundation.Point | null; - enableDependentAnimation: Boolean = false; - easingFunction: EasingFunctionBase; - by: Foundation.Point | null; - static byProperty: DependencyProperty = null; - static easingFunctionProperty: DependencyProperty = null; - static enableDependentAnimationProperty: DependencyProperty = null; - static fromProperty: DependencyProperty = null; - static toProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PointAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PointAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PointAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PointAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PointAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class PointAnimationUsingKeyFrames implements IDependencyObject, IDependencyObject2, ITimeline, IPointAnimationUsingKeyFrames { - // constructor(); - enableDependentAnimation: Boolean = false; - keyFrames: PointKeyFrameCollection = [ ]; - static enableDependentAnimationProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointAnimationUsingKeyFrames.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PointAnimationUsingKeyFrames.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PointAnimationUsingKeyFrames.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointAnimationUsingKeyFrames.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointAnimationUsingKeyFrames.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PointAnimationUsingKeyFrames.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PointAnimationUsingKeyFrames.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PointAnimationUsingKeyFrames::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class PointerDownThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IPointerDownThemeAnimation { - // constructor(); - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointerDownThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PointerDownThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PointerDownThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointerDownThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointerDownThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PointerDownThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PointerDownThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PointerDownThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class PointerUpThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IPointerUpThemeAnimation { - // constructor(); - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointerUpThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PointerUpThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PointerUpThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointerUpThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointerUpThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PointerUpThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PointerUpThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PointerUpThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class PointKeyFrame implements IDependencyObject, IDependencyObject2, IPointKeyFrame { - value: Foundation.Point; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any; - static keyTimeProperty: DependencyProperty = null; - static valueProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PointKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PointKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PointKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PointKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PointKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class PointKeyFrameCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): PointKeyFrame { - throw new Error('shimmed function PointKeyFrameCollection.getAt'); - } - - getView(): PointKeyFrame[] { - throw new Error('shimmed function PointKeyFrameCollection.getView'); - } - - indexOf(value: PointKeyFrame): { returnValue: Boolean, index: number } { - throw new Error('shimmed function PointKeyFrameCollection.indexOf'); - } - - setAt(index: number, value: PointKeyFrame): void { - console.warn('shimmed function PointKeyFrameCollection.setAt'); - } - - insertAt(index: number, value: PointKeyFrame): void { - console.warn('shimmed function PointKeyFrameCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function PointKeyFrameCollection.removeAt'); - } - - append(value: PointKeyFrame): void { - console.warn('shimmed function PointKeyFrameCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function PointKeyFrameCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function PointKeyFrameCollection.clear'); - } - - getMany(startIndex: number, items: PointKeyFrame[]): number { - throw new Error('shimmed function PointKeyFrameCollection.getMany'); - } - - replaceAll(items: PointKeyFrame[]): void { - console.warn('shimmed function PointKeyFrameCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PointKeyFrameCollection.first'); - } - - } - export class PopInThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IPopInThemeAnimation { - // constructor(); - targetName: string = ''; - fromVerticalOffset: number = 0; - fromHorizontalOffset: number = 40; - static fromHorizontalOffsetProperty: DependencyProperty = null; - static fromVerticalOffsetProperty: DependencyProperty = null; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopInThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PopInThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PopInThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopInThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopInThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PopInThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PopInThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PopInThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class PopOutThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IPopOutThemeAnimation { - // constructor(); - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopOutThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PopOutThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PopOutThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopOutThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopOutThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PopOutThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PopOutThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PopOutThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class PopupThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IPopupThemeTransition { - // constructor(); - fromVerticalOffset: number = 40; - fromHorizontalOffset: number = 0; - static fromHorizontalOffsetProperty: DependencyProperty = null; - static fromVerticalOffsetProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopupThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PopupThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PopupThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopupThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PopupThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PopupThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PopupThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class PowerEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IPowerEase { - // constructor(); - power: number = 2; - static powerProperty: DependencyProperty = null; - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PowerEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PowerEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PowerEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PowerEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PowerEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PowerEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PowerEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function PowerEase.ease'); - } - - } - export class QuadraticEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IQuadraticEase { - // constructor(); - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuadraticEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function QuadraticEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function QuadraticEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuadraticEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuadraticEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function QuadraticEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function QuadraticEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function QuadraticEase.ease'); - } - - } - export class QuarticEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IQuarticEase { - // constructor(); - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuarticEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function QuarticEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function QuarticEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuarticEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuarticEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function QuarticEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function QuarticEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function QuarticEase.ease'); - } - - } - export class QuinticEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, IQuinticEase { - // constructor(); - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuinticEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function QuinticEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function QuinticEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuinticEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuinticEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function QuinticEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function QuinticEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function QuinticEase.ease'); - } - - } - export class ReorderThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IReorderThemeTransition { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ReorderThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ReorderThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ReorderThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ReorderThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ReorderThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ReorderThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ReorderThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export interface RepeatBehavior { - count: number; - duration: number; - type: RepeatBehaviorType; - } - export class RepeatBehaviorHelper implements IRepeatBehaviorHelper { - static forever: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - - static fromCount(count: number): /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any { - throw new Error('shimmed function RepeatBehaviorHelper.fromCount'); - } - - static fromDuration(duration: number): /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any { - throw new Error('shimmed function RepeatBehaviorHelper.fromDuration'); - } - - static getHasCount(target: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any): Boolean { - throw new Error('shimmed function RepeatBehaviorHelper.getHasCount'); - } - - static getHasDuration(target: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any): Boolean { - throw new Error('shimmed function RepeatBehaviorHelper.getHasDuration'); - } - - } - export enum RepeatBehaviorType { - count, - duration, - forever, - } - export class RepositionThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, IRepositionThemeAnimation { - // constructor(); - targetName: string = ''; - fromVerticalOffset: number = 0; - fromHorizontalOffset: number = 0; - static fromHorizontalOffsetProperty: DependencyProperty = null; - static fromVerticalOffsetProperty: DependencyProperty = null; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepositionThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RepositionThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RepositionThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepositionThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepositionThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RepositionThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RepositionThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`RepositionThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class RepositionThemeTransition implements IDependencyObject, IDependencyObject2, ITransition, IRepositionThemeTransition, IRepositionThemeTransition2 { - // constructor(); - isStaggeringEnabled: Boolean = true; - static isStaggeringEnabledProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepositionThemeTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RepositionThemeTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RepositionThemeTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepositionThemeTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RepositionThemeTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RepositionThemeTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RepositionThemeTransition.unregisterPropertyChangedCallback'); - } - - } - export class SineEase implements IDependencyObject, IDependencyObject2, IEasingFunctionBase, ISineEase { - // constructor(); - easingMode: EasingMode = EasingMode.easeOut; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SineEase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SineEase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SineEase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SineEase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SineEase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SineEase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SineEase.unregisterPropertyChangedCallback'); - } - - ease(normalizedTime: number): number { - throw new Error('shimmed function SineEase.ease'); - } - - } - export enum SlideNavigationTransitionEffect { - fromBottom, - fromLeft, - fromRight, - } - export class SlideNavigationTransitionInfo implements IDependencyObject, IDependencyObject2, INavigationTransitionInfo, INavigationTransitionInfoOverrides, ISlideNavigationTransitionInfo, ISlideNavigationTransitionInfo2 { - // constructor(); - effect: SlideNavigationTransitionEffect = SlideNavigationTransitionEffect.fromBottom; - static effectProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SlideNavigationTransitionInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SlideNavigationTransitionInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SlideNavigationTransitionInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SlideNavigationTransitionInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SlideNavigationTransitionInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SlideNavigationTransitionInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SlideNavigationTransitionInfo.unregisterPropertyChangedCallback'); - } - - getNavigationStateCore(): string { - throw new Error('shimmed function SlideNavigationTransitionInfo.getNavigationStateCore'); - } - - setNavigationStateCore(navigationState: string): void { - console.warn('shimmed function SlideNavigationTransitionInfo.setNavigationStateCore'); - } - - } - export class SplineColorKeyFrame implements IDependencyObject, IDependencyObject2, IColorKeyFrame, ISplineColorKeyFrame { - // constructor(); - keySpline: KeySpline = null; - static keySplineProperty: DependencyProperty = null; - value: Color = { a: 255, r: 0, g: 0, b: 0 }; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplineColorKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplineColorKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplineColorKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplineColorKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplineColorKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplineColorKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplineColorKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class SplineDoubleKeyFrame implements IDependencyObject, IDependencyObject2, IDoubleKeyFrame, ISplineDoubleKeyFrame { - // constructor(); - keySpline: KeySpline = null; - static keySplineProperty: DependencyProperty = null; - value: number = 0; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplineDoubleKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplineDoubleKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplineDoubleKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplineDoubleKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplineDoubleKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplineDoubleKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplineDoubleKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class SplinePointKeyFrame implements IDependencyObject, IDependencyObject2, IPointKeyFrame, ISplinePointKeyFrame { - // constructor(); - keySpline: KeySpline = null; - static keySplineProperty: DependencyProperty = null; - value: Foundation.Point = null; - keyTime: /* Windows.UI.Xaml.Media.Animation.KeyTime */ any = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplinePointKeyFrame.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplinePointKeyFrame.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplinePointKeyFrame.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplinePointKeyFrame.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplinePointKeyFrame.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplinePointKeyFrame.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplinePointKeyFrame.unregisterPropertyChangedCallback'); - } - - } - export class SplitCloseThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, ISplitCloseThemeAnimation { - // constructor(); - openedTargetName: string = ''; - openedTarget: DependencyObject; - openedLength: number = 0; - offsetFromCenter: number = 0; - contentTranslationOffset: number = 0; - contentTranslationDirection: Controls.Primitives.AnimationDirection = AnimationDirection.top; - contentTargetName: string = ''; - contentTarget: DependencyObject; - closedTargetName: string = ''; - closedTarget: DependencyObject; - closedLength: number = 0; - static closedLengthProperty: DependencyProperty = null; - static closedTargetNameProperty: DependencyProperty = null; - static closedTargetProperty: DependencyProperty = null; - static contentTargetNameProperty: DependencyProperty = null; - static contentTargetProperty: DependencyProperty = null; - static contentTranslationDirectionProperty: DependencyProperty = null; - static contentTranslationOffsetProperty: DependencyProperty = null; - static offsetFromCenterProperty: DependencyProperty = null; - static openedLengthProperty: DependencyProperty = null; - static openedTargetNameProperty: DependencyProperty = null; - static openedTargetProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitCloseThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplitCloseThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplitCloseThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitCloseThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitCloseThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplitCloseThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplitCloseThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SplitCloseThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class SplitOpenThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, ISplitOpenThemeAnimation { - // constructor(); - openedTargetName: string = ''; - openedTarget: DependencyObject; - openedLength: number = 0; - offsetFromCenter: number = 0; - contentTranslationOffset: number = 0; - contentTranslationDirection: Controls.Primitives.AnimationDirection = AnimationDirection.top; - contentTargetName: string = ''; - contentTarget: DependencyObject; - closedTargetName: string = ''; - closedTarget: DependencyObject; - closedLength: number = 0; - static closedLengthProperty: DependencyProperty = null; - static closedTargetNameProperty: DependencyProperty = null; - static closedTargetProperty: DependencyProperty = null; - static contentTargetNameProperty: DependencyProperty = null; - static contentTargetProperty: DependencyProperty = null; - static contentTranslationDirectionProperty: DependencyProperty = null; - static contentTranslationOffsetProperty: DependencyProperty = null; - static offsetFromCenterProperty: DependencyProperty = null; - static openedLengthProperty: DependencyProperty = null; - static openedTargetNameProperty: DependencyProperty = null; - static openedTargetProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitOpenThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SplitOpenThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SplitOpenThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitOpenThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SplitOpenThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SplitOpenThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SplitOpenThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SplitOpenThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class Storyboard implements IDependencyObject, IDependencyObject2, ITimeline, IStoryboard { - // constructor(); - children: TimelineCollection = [ ]; - static targetNameProperty: DependencyProperty = null; - static targetPropertyProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Storyboard.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Storyboard.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Storyboard.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Storyboard.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Storyboard.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Storyboard.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Storyboard.unregisterPropertyChangedCallback'); - } - - seek(offset: number): void { - console.warn('shimmed function Storyboard.seek'); - } - - stop(): void { - console.warn('shimmed function Storyboard.stop'); - } - - begin(): void { - console.warn('shimmed function Storyboard.begin'); - } - - pause(): void { - console.warn('shimmed function Storyboard.pause'); - } - - resume(): void { - console.warn('shimmed function Storyboard.resume'); - } - - getCurrentState(): ClockState { - throw new Error('shimmed function Storyboard.getCurrentState'); - } - - getCurrentTime(): number { - throw new Error('shimmed function Storyboard.getCurrentTime'); - } - - seekAlignedToLastTick(offset: number): void { - console.warn('shimmed function Storyboard.seekAlignedToLastTick'); - } - - skipToFill(): void { - console.warn('shimmed function Storyboard.skipToFill'); - } - - static getTargetProperty(element: Timeline): string { - throw new Error('shimmed function Storyboard.getTargetProperty'); - } - - static setTargetProperty(element: Timeline, path: string): void { - console.warn('shimmed function Storyboard.setTargetProperty'); - } - - static getTargetName(element: Timeline): string { - throw new Error('shimmed function Storyboard.getTargetName'); - } - - static setTargetName(element: Timeline, name: string): void { - console.warn('shimmed function Storyboard.setTargetName'); - } - - static setTarget(timeline: Timeline, target: DependencyObject): void { - console.warn('shimmed function Storyboard.setTarget'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Storyboard::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class SuppressNavigationTransitionInfo implements IDependencyObject, IDependencyObject2, INavigationTransitionInfo, INavigationTransitionInfoOverrides, ISuppressNavigationTransitionInfo { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SuppressNavigationTransitionInfo.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SuppressNavigationTransitionInfo.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SuppressNavigationTransitionInfo.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SuppressNavigationTransitionInfo.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SuppressNavigationTransitionInfo.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SuppressNavigationTransitionInfo.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SuppressNavigationTransitionInfo.unregisterPropertyChangedCallback'); - } - - getNavigationStateCore(): string { - throw new Error('shimmed function SuppressNavigationTransitionInfo.getNavigationStateCore'); - } - - setNavigationStateCore(navigationState: string): void { - console.warn('shimmed function SuppressNavigationTransitionInfo.setNavigationStateCore'); - } - - } - export class SwipeBackThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, ISwipeBackThemeAnimation { - // constructor(); - targetName: string = ''; - fromVerticalOffset: number = 10; - fromHorizontalOffset: number = 0; - static fromHorizontalOffsetProperty: DependencyProperty = null; - static fromVerticalOffsetProperty: DependencyProperty = null; - static targetNameProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeBackThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SwipeBackThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SwipeBackThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeBackThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeBackThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SwipeBackThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SwipeBackThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SwipeBackThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class SwipeHintThemeAnimation implements IDependencyObject, IDependencyObject2, ITimeline, ISwipeHintThemeAnimation { - // constructor(); - toVerticalOffset: number = 10; - toHorizontalOffset: number = 0; - targetName: string = ''; - static targetNameProperty: DependencyProperty = null; - static toHorizontalOffsetProperty: DependencyProperty = null; - static toVerticalOffsetProperty: DependencyProperty = null; - speedRatio: number = 1; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any = null; - fillBehavior: FillBehavior = FillBehavior.holdEnd; - duration: /* Windows.UI.Xaml.Duration */ any = null; - beginTime: number | null; - autoReverse: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeHintThemeAnimation.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SwipeHintThemeAnimation.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SwipeHintThemeAnimation.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeHintThemeAnimation.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SwipeHintThemeAnimation.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SwipeHintThemeAnimation.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SwipeHintThemeAnimation.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SwipeHintThemeAnimation::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class Timeline implements IDependencyObject, IDependencyObject2, ITimeline { - speedRatio: number; - repeatBehavior: /* Windows.UI.Xaml.Media.Animation.RepeatBehavior */ any; - fillBehavior: FillBehavior; - duration: /* Windows.UI.Xaml.Duration */ any; - beginTime: number | null; - autoReverse: Boolean; - static allowDependentAnimations: Boolean = true; - static autoReverseProperty: DependencyProperty = null; - static beginTimeProperty: DependencyProperty = null; - static durationProperty: DependencyProperty = null; - static fillBehaviorProperty: DependencyProperty = null; - static repeatBehaviorProperty: DependencyProperty = null; - static speedRatioProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Timeline.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Timeline.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Timeline.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Timeline.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Timeline.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Timeline.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Timeline.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Timeline::addEventListener: ${name}`); - switch (name) { - case "completed": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class TimelineCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): Timeline { - throw new Error('shimmed function TimelineCollection.getAt'); - } - - getView(): Timeline[] { - throw new Error('shimmed function TimelineCollection.getView'); - } - - indexOf(value: Timeline): { returnValue: Boolean, index: number } { - throw new Error('shimmed function TimelineCollection.indexOf'); - } - - setAt(index: number, value: Timeline): void { - console.warn('shimmed function TimelineCollection.setAt'); - } - - insertAt(index: number, value: Timeline): void { - console.warn('shimmed function TimelineCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function TimelineCollection.removeAt'); - } - - append(value: Timeline): void { - console.warn('shimmed function TimelineCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function TimelineCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function TimelineCollection.clear'); - } - - getMany(startIndex: number, items: Timeline[]): number { - throw new Error('shimmed function TimelineCollection.getMany'); - } - - replaceAll(items: Timeline[]): void { - console.warn('shimmed function TimelineCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function TimelineCollection.first'); - } - - } - export class Transition implements IDependencyObject, IDependencyObject2, ITransition { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Transition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Transition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Transition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Transition.unregisterPropertyChangedCallback'); - } - - } - export class TransitionCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): Transition { - throw new Error('shimmed function TransitionCollection.getAt'); - } - - getView(): Transition[] { - throw new Error('shimmed function TransitionCollection.getView'); - } - - indexOf(value: Transition): { returnValue: Boolean, index: number } { - throw new Error('shimmed function TransitionCollection.indexOf'); - } - - setAt(index: number, value: Transition): void { - console.warn('shimmed function TransitionCollection.setAt'); - } - - insertAt(index: number, value: Transition): void { - console.warn('shimmed function TransitionCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function TransitionCollection.removeAt'); - } - - append(value: Transition): void { - console.warn('shimmed function TransitionCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function TransitionCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function TransitionCollection.clear'); - } - - getMany(startIndex: number, items: Transition[]): number { - throw new Error('shimmed function TransitionCollection.getMany'); - } - - replaceAll(items: Transition[]): void { - console.warn('shimmed function TransitionCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function TransitionCollection.first'); - } - - } - } - export class ArcSegment implements IDependencyObject, IDependencyObject2, IPathSegment, IArcSegment { - // constructor(); - sweepDirection: SweepDirection = SweepDirection.counterclockwise; - size: Foundation.Size = { 0, height: 0 }; - rotationAngle: number = 0; - point: Foundation.Point = null; - isLargeArc: Boolean = false; - static isLargeArcProperty: DependencyProperty = null; - static pointProperty: DependencyProperty = null; - static rotationAngleProperty: DependencyProperty = null; - static sizeProperty: DependencyProperty = null; - static sweepDirectionProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ArcSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ArcSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ArcSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ArcSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ArcSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ArcSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ArcSegment.unregisterPropertyChangedCallback'); - } - - } - export enum AudioCategory { - other, - foregroundOnlyMedia, - backgroundCapableMedia, - communications, - alerts, - soundEffects, - gameEffects, - gameMedia, - gameChat, - speech, - movie, - media, - } - export enum AudioDeviceType { - console, - multimedia, - communications, - } - export class BezierSegment implements IDependencyObject, IDependencyObject2, IPathSegment, IBezierSegment { - // constructor(); - point3: Foundation.Point = null; - point2: Foundation.Point = null; - point1: Foundation.Point = null; - static point1Property: DependencyProperty = null; - static point2Property: DependencyProperty = null; - static point3Property: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BezierSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BezierSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BezierSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BezierSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BezierSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BezierSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BezierSegment.unregisterPropertyChangedCallback'); - } - - } - export class BitmapCache implements IDependencyObject, IDependencyObject2, ICacheMode, IBitmapCache { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapCache.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BitmapCache.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BitmapCache.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapCache.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapCache.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BitmapCache.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BitmapCache.unregisterPropertyChangedCallback'); - } - - } - export class Brush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject { - transform: Transform; - relativeTransform: Transform; - opacity: number; - static opacityProperty: DependencyProperty = null; - static relativeTransformProperty: DependencyProperty = null; - static transformProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Brush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Brush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Brush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Brush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Brush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Brush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Brush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Brush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Brush.populatePropertyInfo'); - } - - } - export class BrushCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): Brush { - throw new Error('shimmed function BrushCollection.getAt'); - } - - getView(): Brush[] { - throw new Error('shimmed function BrushCollection.getView'); - } - - indexOf(value: Brush): { returnValue: Boolean, index: number } { - throw new Error('shimmed function BrushCollection.indexOf'); - } - - setAt(index: number, value: Brush): void { - console.warn('shimmed function BrushCollection.setAt'); - } - - insertAt(index: number, value: Brush): void { - console.warn('shimmed function BrushCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function BrushCollection.removeAt'); - } - - append(value: Brush): void { - console.warn('shimmed function BrushCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function BrushCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function BrushCollection.clear'); - } - - getMany(startIndex: number, items: Brush[]): number { - throw new Error('shimmed function BrushCollection.getMany'); - } - - replaceAll(items: Brush[]): void { - console.warn('shimmed function BrushCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function BrushCollection.first'); - } - - } - export enum BrushMappingMode { - absolute, - relativeToBoundingBox, - } - export class CacheMode implements IDependencyObject, IDependencyObject2, ICacheMode { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CacheMode.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CacheMode.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CacheMode.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CacheMode.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CacheMode.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CacheMode.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CacheMode.unregisterPropertyChangedCallback'); - } - - } - export enum ColorInterpolationMode { - scRgbLinearInterpolation, - srgbLinearInterpolation, - } - export class CompositeTransform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform, ICompositeTransform { - // constructor(); - translateY: number = 0; - translateX: number = 0; - skewY: number = 0; - skewX: number = 0; - scaleY: number = 1; - scaleX: number = 1; - rotation: number = 0; - centerY: number = 0; - centerX: number = 0; - static centerXProperty: DependencyProperty = null; - static centerYProperty: DependencyProperty = null; - static rotationProperty: DependencyProperty = null; - static scaleXProperty: DependencyProperty = null; - static scaleYProperty: DependencyProperty = null; - static skewXProperty: DependencyProperty = null; - static skewYProperty: DependencyProperty = null; - static translateXProperty: DependencyProperty = null; - static translateYProperty: DependencyProperty = null; - inverse: GeneralTransform = null; - inverseCore: GeneralTransform = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CompositeTransform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CompositeTransform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CompositeTransform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CompositeTransform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CompositeTransform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CompositeTransform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CompositeTransform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function CompositeTransform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function CompositeTransform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function CompositeTransform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function CompositeTransform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function CompositeTransform.transformBoundsCore'); - } - - } - export class CompositionTarget implements ICompositionTarget { - static addEventListener(name: string, handler: Function) { - console.warn(`CompositionTarget::addEventListener: ${name}`); - switch (name) { - case "rendered": // /* System.EventHandler`1[[Windows.UI.Xaml.Media.RenderedEventArgs, Windows, Version=255.255.255.255, Culture=neutral, PublicKeyToken=null, ContentType=WindowsRuntime]] */ any - case "rendering": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "surfacecontentslost": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - break; - } - - } - } - export class DoubleCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): number { - throw new Error('shimmed function DoubleCollection.getAt'); - } - - getView(): number[] { - throw new Error('shimmed function DoubleCollection.getView'); - } - - indexOf(value: number): { returnValue: Boolean, index: number } { - throw new Error('shimmed function DoubleCollection.indexOf'); - } - - setAt(index: number, value: number): void { - console.warn('shimmed function DoubleCollection.setAt'); - } - - insertAt(index: number, value: number): void { - console.warn('shimmed function DoubleCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function DoubleCollection.removeAt'); - } - - append(value: number): void { - console.warn('shimmed function DoubleCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function DoubleCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function DoubleCollection.clear'); - } - - getMany(startIndex: number, items: number[]): number { - throw new Error('shimmed function DoubleCollection.getMany'); - } - - replaceAll(items: number[]): void { - console.warn('shimmed function DoubleCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function DoubleCollection.first'); - } - - } - export enum ElementCompositeMode { - inherit, - sourceOver, - minBlend, - } - export class EllipseGeometry implements IDependencyObject, IDependencyObject2, IGeometry, IEllipseGeometry { - // constructor(); - radiusY: number = 0; - radiusX: number = 0; - center: Foundation.Point = null; - static centerProperty: DependencyProperty = null; - static radiusXProperty: DependencyProperty = null; - static radiusYProperty: DependencyProperty = null; - transform: Transform; - bounds: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function EllipseGeometry.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function EllipseGeometry.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function EllipseGeometry.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function EllipseGeometry.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function EllipseGeometry.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function EllipseGeometry.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function EllipseGeometry.unregisterPropertyChangedCallback'); - } - - } - export enum FastPlayFallbackBehaviour { - skip, - hide, - disable, - } - export enum FillRule { - evenOdd, - nonzero, - } - export class FontFamily implements IFontFamily { - // constructor(familyName: string); - constructor(familyName: string) {} - - source: string; - static xamlAutoFontFamily: FontFamily = null; - - } - export class GeneralTransform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides { - inverse: GeneralTransform; - inverseCore: GeneralTransform; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GeneralTransform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GeneralTransform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GeneralTransform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GeneralTransform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GeneralTransform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GeneralTransform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GeneralTransform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function GeneralTransform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function GeneralTransform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function GeneralTransform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function GeneralTransform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function GeneralTransform.transformBoundsCore'); - } - - } - export class Geometry implements IDependencyObject, IDependencyObject2, IGeometry { - transform: Transform; - bounds: Foundation.Rect; - static empty: Geometry = null; - static standardFlatteningTolerance: number = 0.25; - static transformProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Geometry.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Geometry.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Geometry.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Geometry.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Geometry.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Geometry.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Geometry.unregisterPropertyChangedCallback'); - } - - } - export class GeometryCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): Geometry { - throw new Error('shimmed function GeometryCollection.getAt'); - } - - getView(): Geometry[] { - throw new Error('shimmed function GeometryCollection.getView'); - } - - indexOf(value: Geometry): { returnValue: Boolean, index: number } { - throw new Error('shimmed function GeometryCollection.indexOf'); - } - - setAt(index: number, value: Geometry): void { - console.warn('shimmed function GeometryCollection.setAt'); - } - - insertAt(index: number, value: Geometry): void { - console.warn('shimmed function GeometryCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function GeometryCollection.removeAt'); - } - - append(value: Geometry): void { - console.warn('shimmed function GeometryCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function GeometryCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function GeometryCollection.clear'); - } - - getMany(startIndex: number, items: Geometry[]): number { - throw new Error('shimmed function GeometryCollection.getMany'); - } - - replaceAll(items: Geometry[]): void { - console.warn('shimmed function GeometryCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function GeometryCollection.first'); - } - - } - export class GeometryGroup implements IDependencyObject, IDependencyObject2, IGeometry, IGeometryGroup { - // constructor(); - fillRule: FillRule = FillRule.evenOdd; - children: GeometryCollection = [ ]; - static childrenProperty: DependencyProperty = null; - static fillRuleProperty: DependencyProperty = null; - transform: Transform; - bounds: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GeometryGroup.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GeometryGroup.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GeometryGroup.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GeometryGroup.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GeometryGroup.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GeometryGroup.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GeometryGroup.unregisterPropertyChangedCallback'); - } - - } - export class GradientBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, IGradientBrush { - spreadMethod: GradientSpreadMethod; - mappingMode: BrushMappingMode; - gradientStops: GradientStopCollection; - colorInterpolationMode: ColorInterpolationMode; - static colorInterpolationModeProperty: DependencyProperty = null; - static gradientStopsProperty: DependencyProperty = null; - static mappingModeProperty: DependencyProperty = null; - static spreadMethodProperty: DependencyProperty = null; - transform: Transform; - relativeTransform: Transform; - opacity: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GradientBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GradientBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GradientBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GradientBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GradientBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GradientBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GradientBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GradientBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function GradientBrush.populatePropertyInfo'); - } - - } - export enum GradientSpreadMethod { - pad, - reflect, - repeat, - } - export class GradientStop implements IDependencyObject, IDependencyObject2, IGradientStop { - // constructor(); - offset: number = 0; - color: Color = { a: 0, r: 0, g: 0, b: 0 }; - static colorProperty: DependencyProperty = null; - static offsetProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function GradientStop.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function GradientStop.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function GradientStop.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function GradientStop.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function GradientStop.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function GradientStop.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function GradientStop.unregisterPropertyChangedCallback'); - } - - } - export class GradientStopCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): GradientStop { - throw new Error('shimmed function GradientStopCollection.getAt'); - } - - getView(): GradientStop[] { - throw new Error('shimmed function GradientStopCollection.getView'); - } - - indexOf(value: GradientStop): { returnValue: Boolean, index: number } { - throw new Error('shimmed function GradientStopCollection.indexOf'); - } - - setAt(index: number, value: GradientStop): void { - console.warn('shimmed function GradientStopCollection.setAt'); - } - - insertAt(index: number, value: GradientStop): void { - console.warn('shimmed function GradientStopCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function GradientStopCollection.removeAt'); - } - - append(value: GradientStop): void { - console.warn('shimmed function GradientStopCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function GradientStopCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function GradientStopCollection.clear'); - } - - getMany(startIndex: number, items: GradientStop[]): number { - throw new Error('shimmed function GradientStopCollection.getMany'); - } - - replaceAll(items: GradientStop[]): void { - console.warn('shimmed function GradientStopCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function GradientStopCollection.first'); - } - - } - export class ImageBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, ITileBrush, IImageBrush { - // constructor(); - imageSource: ImageSource; - static imageSourceProperty: DependencyProperty = null; - stretch: Stretch = Stretch.fill; - alignmentY: AlignmentY = AlignmentY.center; - alignmentX: AlignmentX = AlignmentX.center; - transform: Transform = null; - relativeTransform: Transform = null; - opacity: number = 1; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ImageBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ImageBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ImageBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ImageBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ImageBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function ImageBrush.populatePropertyInfo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`ImageBrush::addEventListener: ${name}`); - switch (name) { - case "imagefailed": // ExceptionRoutedEventHandler - case "imageopened": // RoutedEventHandler - break; - } - - } - } - export class ImageSource implements IDependencyObject, IDependencyObject2, IImageSource { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ImageSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ImageSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ImageSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ImageSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ImageSource.unregisterPropertyChangedCallback'); - } - - } - export namespace Imaging { - export enum BitmapCreateOptions { - none, - ignoreImageCache = 8, - } - export class BitmapImage implements IDependencyObject, IDependencyObject2, IImageSource, IBitmapSource, IBitmapImage, IBitmapImage2, IBitmapImage3 { - // constructor(uriSource: Foundation.Uri); - // constructor(); - constructor(uriSource: Foundation.Uri) {} - - uriSource: Foundation.Uri; - decodePixelWidth: number = 0; - decodePixelHeight: number = 0; - createOptions: BitmapCreateOptions = BitmapCreateOptions.none; - decodePixelType: DecodePixelType = DecodePixelType.physical; - autoPlay: Boolean = true; - isAnimatedBitmap: Boolean = false; - isPlaying: Boolean = false; - static createOptionsProperty: DependencyProperty = null; - static decodePixelHeightProperty: DependencyProperty = null; - static decodePixelWidthProperty: DependencyProperty = null; - static uriSourceProperty: DependencyProperty = null; - static decodePixelTypeProperty: DependencyProperty = null; - static autoPlayProperty: DependencyProperty = null; - static isAnimatedBitmapProperty: DependencyProperty = null; - static isPlayingProperty: DependencyProperty = null; - pixelHeight: number = 0; - pixelWidth: number = 0; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapImage.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BitmapImage.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BitmapImage.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapImage.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapImage.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BitmapImage.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BitmapImage.unregisterPropertyChangedCallback'); - } - - setSource(streamSource: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function BitmapImage.setSource'); - } - - setSourceAsync(streamSource: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function BitmapImage.setSourceAsync'); - } - - play(): void { - console.warn('shimmed function BitmapImage.play'); - } - - stop(): void { - console.warn('shimmed function BitmapImage.stop'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`BitmapImage::addEventListener: ${name}`); - switch (name) { - case "downloadprogress": // DownloadProgressEventHandler - case "imagefailed": // ExceptionRoutedEventHandler - case "imageopened": // RoutedEventHandler - break; - } - - } - } - export class BitmapSource implements IDependencyObject, IDependencyObject2, IImageSource, IBitmapSource { - pixelHeight: number; - pixelWidth: number; - static pixelHeightProperty: DependencyProperty = null; - static pixelWidthProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function BitmapSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function BitmapSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function BitmapSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function BitmapSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function BitmapSource.unregisterPropertyChangedCallback'); - } - - setSource(streamSource: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function BitmapSource.setSource'); - } - - setSourceAsync(streamSource: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function BitmapSource.setSourceAsync'); - } - - } - export enum DecodePixelType { - physical, - logical, - } - export class DownloadProgressEventArgs implements IDownloadProgressEventArgs { - progress: number; - - } - export type DownloadProgressEventHandler = (e: DownloadProgressEventArgs) => void; - export class RenderTargetBitmap implements IDependencyObject, IDependencyObject2, IImageSource, IRenderTargetBitmap { - // constructor(); - pixelHeight: number; - pixelWidth: number; - static pixelHeightProperty: DependencyProperty; - static pixelWidthProperty: DependencyProperty; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RenderTargetBitmap.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RenderTargetBitmap.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RenderTargetBitmap.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RenderTargetBitmap.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RenderTargetBitmap.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RenderTargetBitmap.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RenderTargetBitmap.unregisterPropertyChangedCallback'); - } - - renderAsync(element: UIElement): Foundation.IAsyncAction { - throw new Error('shimmed function RenderTargetBitmap.renderAsync'); - } - - renderAsync_1(element: UIElement, scaledWidth: number, scaledHeight: number): Foundation.IAsyncAction { - throw new Error('shimmed function RenderTargetBitmap.renderAsync_1'); - } - - getPixelsAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function RenderTargetBitmap.getPixelsAsync'); - } - - } - export class SoftwareBitmapSource implements IDependencyObject, IDependencyObject2, IImageSource, ISoftwareBitmapSource, Foundation.IClosable { - // constructor(); - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SoftwareBitmapSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SoftwareBitmapSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SoftwareBitmapSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SoftwareBitmapSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SoftwareBitmapSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SoftwareBitmapSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SoftwareBitmapSource.unregisterPropertyChangedCallback'); - } - - setBitmapAsync(softwareBitmap: Graphics.Imaging.SoftwareBitmap): Foundation.IAsyncAction { - throw new Error('shimmed function SoftwareBitmapSource.setBitmapAsync'); - } - - close(): void { - console.warn('shimmed function SoftwareBitmapSource.close'); - } - - } - export class SurfaceImageSource implements IDependencyObject, IDependencyObject2, IImageSource, ISurfaceImageSource { - // constructor(pixelWidth: number, pixelHeight: number); - // constructor(pixelWidth: number, pixelHeight: number, isOpaque: Boolean); - constructor(pixelWidth: number, pixelHeight: number, isOpaque: Boolean) {} - - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SurfaceImageSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SurfaceImageSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SurfaceImageSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SurfaceImageSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SurfaceImageSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SurfaceImageSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SurfaceImageSource.unregisterPropertyChangedCallback'); - } - - } - export class SvgImageSource implements IDependencyObject, IDependencyObject2, IImageSource, ISvgImageSource { - // constructor(); - // constructor(uriSource: Foundation.Uri); - constructor(uriSource: Foundation.Uri) {} - - uriSource: Foundation.Uri; - rasterizePixelWidth: number = ∞; - rasterizePixelHeight: number = ∞; - static rasterizePixelHeightProperty: DependencyProperty = null; - static rasterizePixelWidthProperty: DependencyProperty = null; - static uriSourceProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SvgImageSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SvgImageSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SvgImageSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SvgImageSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SvgImageSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SvgImageSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SvgImageSource.unregisterPropertyChangedCallback'); - } - - setSourceAsync(streamSource: Storage.Streams.IRandomAccessStream): Foundation.IAsyncOperation { - throw new Error('shimmed function SvgImageSource.setSourceAsync'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`SvgImageSource::addEventListener: ${name}`); - switch (name) { - case "openfailed": // Foundation.TypedEventHandler - case "opened": // Foundation.TypedEventHandler - break; - } - - } - } - export class SvgImageSourceFailedEventArgs implements ISvgImageSourceFailedEventArgs { - status: SvgImageSourceLoadStatus; - - } - export enum SvgImageSourceLoadStatus { - success, - networkError, - invalidFormat, - other, - } - export class SvgImageSourceOpenedEventArgs implements ISvgImageSourceOpenedEventArgs { - } - export class VirtualSurfaceImageSource implements IDependencyObject, IDependencyObject2, IImageSource, ISurfaceImageSource, IVirtualSurfaceImageSource { - // constructor(pixelWidth: number, pixelHeight: number); - // constructor(pixelWidth: number, pixelHeight: number, isOpaque: Boolean); - constructor(pixelWidth: number, pixelHeight: number, isOpaque: Boolean) {} - - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualSurfaceImageSource.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VirtualSurfaceImageSource.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VirtualSurfaceImageSource.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualSurfaceImageSource.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VirtualSurfaceImageSource.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VirtualSurfaceImageSource.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VirtualSurfaceImageSource.unregisterPropertyChangedCallback'); - } - - } - export class WriteableBitmap implements IDependencyObject, IDependencyObject2, IImageSource, IBitmapSource, IWriteableBitmap { - // constructor(pixelWidth: number, pixelHeight: number); - constructor(pixelWidth: number, pixelHeight: number) {} - - pixelBuffer: Storage.Streams.IBuffer; - pixelHeight: number; - pixelWidth: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function WriteableBitmap.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function WriteableBitmap.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function WriteableBitmap.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function WriteableBitmap.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function WriteableBitmap.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function WriteableBitmap.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function WriteableBitmap.unregisterPropertyChangedCallback'); - } - - setSource(streamSource: Storage.Streams.IRandomAccessStream): void { - console.warn('shimmed function WriteableBitmap.setSource'); - } - - setSourceAsync(streamSource: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function WriteableBitmap.setSourceAsync'); - } - - invalidate(): void { - console.warn('shimmed function WriteableBitmap.invalidate'); - } - - } - export class XamlRenderingBackgroundTask implements IXamlRenderingBackgroundTask, IXamlRenderingBackgroundTaskOverrides { - onRun(taskInstance: ApplicationModel.Background.IBackgroundTaskInstance): void { - console.warn('shimmed function XamlRenderingBackgroundTask.onRun'); - } - - } - } - export class LinearGradientBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, IGradientBrush, ILinearGradientBrush { - // constructor(gradientStopCollection: GradientStopCollection, angle: number); - // constructor(); - constructor(gradientStopCollection: GradientStopCollection, angle: number) {} - - startPoint: Foundation.Point = null; - endPoint: Foundation.Point = null; - static endPointProperty: DependencyProperty = null; - static startPointProperty: DependencyProperty = null; - spreadMethod: GradientSpreadMethod = GradientSpreadMethod.pad; - mappingMode: BrushMappingMode = BrushMappingMode.relativeToBoundingBox; - gradientStops: GradientStopCollection = [ ]; - colorInterpolationMode: ColorInterpolationMode = ColorInterpolationMode.srgbLinearInterpolation; - transform: Transform = null; - relativeTransform: Transform = null; - opacity: number = 1; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearGradientBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LinearGradientBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LinearGradientBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearGradientBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LinearGradientBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LinearGradientBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LinearGradientBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LinearGradientBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function LinearGradientBrush.populatePropertyInfo'); - } - - } - export class LineGeometry implements IDependencyObject, IDependencyObject2, IGeometry, ILineGeometry { - // constructor(); - startPoint: Foundation.Point = null; - endPoint: Foundation.Point = null; - static endPointProperty: DependencyProperty = null; - static startPointProperty: DependencyProperty = null; - transform: Transform; - bounds: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineGeometry.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LineGeometry.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LineGeometry.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineGeometry.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineGeometry.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LineGeometry.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LineGeometry.unregisterPropertyChangedCallback'); - } - - } - export class LineSegment implements IDependencyObject, IDependencyObject2, IPathSegment, ILineSegment { - // constructor(); - point: Foundation.Point = null; - static pointProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function LineSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function LineSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function LineSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function LineSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function LineSegment.unregisterPropertyChangedCallback'); - } - - } - export class LoadedImageSourceLoadCompletedEventArgs implements ILoadedImageSourceLoadCompletedEventArgs { - status: LoadedImageSourceLoadStatus; - - } - export enum LoadedImageSourceLoadStatus { - success, - networkError, - invalidFormat, - other, - } - export class LoadedImageSurface implements ILoadedImageSurface, Foundation.IClosable, Composition.ICompositionSurface { - decodedPhysicalSize: Foundation.Size; - decodedSize: Foundation.Size; - naturalSize: Foundation.Size; - - close(): void { - console.warn('shimmed function LoadedImageSurface.close'); - } - - static startLoadFromUri(uri: Foundation.Uri, desiredMaxSize: Foundation.Size): LoadedImageSurface { - throw new Error('shimmed function LoadedImageSurface.startLoadFromUri'); - } - - static startLoadFromUri_1(uri: Foundation.Uri): LoadedImageSurface { - throw new Error('shimmed function LoadedImageSurface.startLoadFromUri_1'); - } - - static startLoadFromStream(stream: Storage.Streams.IRandomAccessStream, desiredMaxSize: Foundation.Size): LoadedImageSurface { - throw new Error('shimmed function LoadedImageSurface.startLoadFromStream'); - } - - static startLoadFromStream_1(stream: Storage.Streams.IRandomAccessStream): LoadedImageSurface { - throw new Error('shimmed function LoadedImageSurface.startLoadFromStream_1'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`LoadedImageSurface::addEventListener: ${name}`); - switch (name) { - case "loadcompleted": // Foundation.TypedEventHandler - break; - } - - } - } - export interface Matrix { - m11: number; - m12: number; - m21: number; - m22: number; - offsetX: number; - offsetY: number; - } - export class Matrix3DProjection implements IDependencyObject, IDependencyObject2, IProjection, IMatrix3DProjection { - // constructor(); - projectionMatrix: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any = null; - static projectionMatrixProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Matrix3DProjection.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Matrix3DProjection.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Matrix3DProjection.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Matrix3DProjection.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Matrix3DProjection.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Matrix3DProjection.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Matrix3DProjection.unregisterPropertyChangedCallback'); - } - - } - export class MatrixHelper implements IMatrixHelper { - static identity: /* Windows.UI.Xaml.Media.Matrix */ any = null; - - static fromElements(m11: number, m12: number, m21: number, m22: number, offsetX: number, offsetY: number): /* Windows.UI.Xaml.Media.Matrix */ any { - throw new Error('shimmed function MatrixHelper.fromElements'); - } - - static getIsIdentity(target: /* Windows.UI.Xaml.Media.Matrix */ any): Boolean { - throw new Error('shimmed function MatrixHelper.getIsIdentity'); - } - - static transform(target: /* Windows.UI.Xaml.Media.Matrix */ any, point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function MatrixHelper.transform'); - } - - } - export class MatrixTransform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform, IMatrixTransform { - // constructor(); - matrix: /* Windows.UI.Xaml.Media.Matrix */ any = null; - static matrixProperty: DependencyProperty = null; - inverse: GeneralTransform = null; - inverseCore: GeneralTransform = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function MatrixTransform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function MatrixTransform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function MatrixTransform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function MatrixTransform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function MatrixTransform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function MatrixTransform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function MatrixTransform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function MatrixTransform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function MatrixTransform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function MatrixTransform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function MatrixTransform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function MatrixTransform.transformBoundsCore'); - } - - } - export namespace Media3D { - export class CompositeTransform3D implements IDependencyObject, IDependencyObject2, ITransform3D, ICompositeTransform3D { - // constructor(); - translateZ: number = 0; - translateY: number = 0; - translateX: number = 0; - scaleZ: number = 1; - scaleY: number = 1; - scaleX: number = 1; - rotationZ: number = 0; - rotationY: number = 0; - rotationX: number = 0; - centerZ: number = 0; - centerY: number = 0; - centerX: number = 0; - static centerXProperty: DependencyProperty = null; - static centerYProperty: DependencyProperty = null; - static centerZProperty: DependencyProperty = null; - static rotationXProperty: DependencyProperty = null; - static rotationYProperty: DependencyProperty = null; - static rotationZProperty: DependencyProperty = null; - static scaleXProperty: DependencyProperty = null; - static scaleYProperty: DependencyProperty = null; - static scaleZProperty: DependencyProperty = null; - static translateXProperty: DependencyProperty = null; - static translateYProperty: DependencyProperty = null; - static translateZProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function CompositeTransform3D.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function CompositeTransform3D.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function CompositeTransform3D.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function CompositeTransform3D.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function CompositeTransform3D.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function CompositeTransform3D.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function CompositeTransform3D.unregisterPropertyChangedCallback'); - } - - } - export interface Matrix3D { - m11: number; - m12: number; - m13: number; - m14: number; - m21: number; - m22: number; - m23: number; - m24: number; - m31: number; - m32: number; - m33: number; - m34: number; - offsetX: number; - offsetY: number; - offsetZ: number; - m44: number; - } - export class Matrix3DHelper implements IMatrix3DHelper { - static identity: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any = null; - - static multiply(matrix1: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any, matrix2: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any): /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any { - throw new Error('shimmed function Matrix3DHelper.multiply'); - } - - static fromElements(m11: number, m12: number, m13: number, m14: number, m21: number, m22: number, m23: number, m24: number, m31: number, m32: number, m33: number, m34: number, offsetX: number, offsetY: number, offsetZ: number, m44: number): /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any { - throw new Error('shimmed function Matrix3DHelper.fromElements'); - } - - static getHasInverse(target: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any): Boolean { - throw new Error('shimmed function Matrix3DHelper.getHasInverse'); - } - - static getIsIdentity(target: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any): Boolean { - throw new Error('shimmed function Matrix3DHelper.getIsIdentity'); - } - - static invert(target: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any): /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any { - throw new Error('shimmed function Matrix3DHelper.invert'); - } - - } - export class PerspectiveTransform3D implements IDependencyObject, IDependencyObject2, ITransform3D, IPerspectiveTransform3D { - // constructor(); - offsetY: number = 0; - offsetX: number = 0; - depth: number = 1000; - static depthProperty: DependencyProperty = null; - static offsetXProperty: DependencyProperty = null; - static offsetYProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PerspectiveTransform3D.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PerspectiveTransform3D.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PerspectiveTransform3D.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PerspectiveTransform3D.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PerspectiveTransform3D.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PerspectiveTransform3D.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PerspectiveTransform3D.unregisterPropertyChangedCallback'); - } - - } - export class Transform3D implements IDependencyObject, IDependencyObject2, ITransform3D { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transform3D.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Transform3D.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Transform3D.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transform3D.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transform3D.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Transform3D.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Transform3D.unregisterPropertyChangedCallback'); - } - - } - } - export enum MediaCanPlayResponse { - notSupported, - maybe, - probably, - } - export enum MediaElementState { - closed, - opening, - buffering, - playing, - paused, - stopped, - } - export class MediaTransportControlsThumbnailRequestedEventArgs implements IMediaTransportControlsThumbnailRequestedEventArgs { - setThumbnailImage(source: Storage.Streams.IInputStream): void { - console.warn('shimmed function MediaTransportControlsThumbnailRequestedEventArgs.setThumbnailImage'); - } - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function MediaTransportControlsThumbnailRequestedEventArgs.getDeferral'); - } - - } - export class PartialMediaFailureDetectedEventArgs implements IPartialMediaFailureDetectedEventArgs, IPartialMediaFailureDetectedEventArgs2 { - // constructor(); - streamKind: Media.Playback.FailedMediaStreamKind = FailedMediaStreamKind.unknown; - extendedError: number; - - } - export class PathFigure implements IDependencyObject, IDependencyObject2, IPathFigure { - // constructor(); - startPoint: Foundation.Point = null; - segments: PathSegmentCollection = [ ]; - isFilled: Boolean = true; - isClosed: Boolean = false; - static isClosedProperty: DependencyProperty = null; - static isFilledProperty: DependencyProperty = null; - static segmentsProperty: DependencyProperty = null; - static startPointProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathFigure.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PathFigure.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PathFigure.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathFigure.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathFigure.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PathFigure.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PathFigure.unregisterPropertyChangedCallback'); - } - - } - export class PathFigureCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): PathFigure { - throw new Error('shimmed function PathFigureCollection.getAt'); - } - - getView(): PathFigure[] { - throw new Error('shimmed function PathFigureCollection.getView'); - } - - indexOf(value: PathFigure): { returnValue: Boolean, index: number } { - throw new Error('shimmed function PathFigureCollection.indexOf'); - } - - setAt(index: number, value: PathFigure): void { - console.warn('shimmed function PathFigureCollection.setAt'); - } - - insertAt(index: number, value: PathFigure): void { - console.warn('shimmed function PathFigureCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function PathFigureCollection.removeAt'); - } - - append(value: PathFigure): void { - console.warn('shimmed function PathFigureCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function PathFigureCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function PathFigureCollection.clear'); - } - - getMany(startIndex: number, items: PathFigure[]): number { - throw new Error('shimmed function PathFigureCollection.getMany'); - } - - replaceAll(items: PathFigure[]): void { - console.warn('shimmed function PathFigureCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PathFigureCollection.first'); - } - - } - export class PathGeometry implements IDependencyObject, IDependencyObject2, IGeometry, IPathGeometry { - // constructor(); - fillRule: FillRule = FillRule.evenOdd; - figures: PathFigureCollection = [ ]; - static figuresProperty: DependencyProperty = null; - static fillRuleProperty: DependencyProperty = null; - transform: Transform; - bounds: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathGeometry.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PathGeometry.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PathGeometry.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathGeometry.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathGeometry.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PathGeometry.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PathGeometry.unregisterPropertyChangedCallback'); - } - - } - export class PathSegment implements IDependencyObject, IDependencyObject2, IPathSegment { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PathSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PathSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PathSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PathSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PathSegment.unregisterPropertyChangedCallback'); - } - - } - export class PathSegmentCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): PathSegment { - throw new Error('shimmed function PathSegmentCollection.getAt'); - } - - getView(): PathSegment[] { - throw new Error('shimmed function PathSegmentCollection.getView'); - } - - indexOf(value: PathSegment): { returnValue: Boolean, index: number } { - throw new Error('shimmed function PathSegmentCollection.indexOf'); - } - - setAt(index: number, value: PathSegment): void { - console.warn('shimmed function PathSegmentCollection.setAt'); - } - - insertAt(index: number, value: PathSegment): void { - console.warn('shimmed function PathSegmentCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function PathSegmentCollection.removeAt'); - } - - append(value: PathSegment): void { - console.warn('shimmed function PathSegmentCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function PathSegmentCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function PathSegmentCollection.clear'); - } - - getMany(startIndex: number, items: PathSegment[]): number { - throw new Error('shimmed function PathSegmentCollection.getMany'); - } - - replaceAll(items: PathSegment[]): void { - console.warn('shimmed function PathSegmentCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PathSegmentCollection.first'); - } - - } - export enum PenLineCap { - flat, - square, - round, - triangle, - } - export enum PenLineJoin { - miter, - bevel, - round, - } - export class PlaneProjection implements IDependencyObject, IDependencyObject2, IProjection, IPlaneProjection { - // constructor(); - rotationZ: number = 0; - rotationY: number = 0; - rotationX: number = 0; - localOffsetZ: number = 0; - localOffsetY: number = 0; - localOffsetX: number = 0; - globalOffsetZ: number = 0; - globalOffsetY: number = 0; - globalOffsetX: number = 0; - centerOfRotationZ: number = 0; - centerOfRotationY: number = 0.5; - centerOfRotationX: number = 0.5; - projectionMatrix: /* Windows.UI.Xaml.Media.Media3D.Matrix3D */ any = null; - static centerOfRotationXProperty: DependencyProperty = null; - static centerOfRotationYProperty: DependencyProperty = null; - static centerOfRotationZProperty: DependencyProperty = null; - static globalOffsetXProperty: DependencyProperty = null; - static globalOffsetYProperty: DependencyProperty = null; - static globalOffsetZProperty: DependencyProperty = null; - static localOffsetXProperty: DependencyProperty = null; - static localOffsetYProperty: DependencyProperty = null; - static localOffsetZProperty: DependencyProperty = null; - static projectionMatrixProperty: DependencyProperty = null; - static rotationXProperty: DependencyProperty = null; - static rotationYProperty: DependencyProperty = null; - static rotationZProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PlaneProjection.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PlaneProjection.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PlaneProjection.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PlaneProjection.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PlaneProjection.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PlaneProjection.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PlaneProjection.unregisterPropertyChangedCallback'); - } - - } - export class PointCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): Foundation.Point { - throw new Error('shimmed function PointCollection.getAt'); - } - - getView(): Foundation.Point[] { - throw new Error('shimmed function PointCollection.getView'); - } - - indexOf(value: Foundation.Point): { returnValue: Boolean, index: number } { - throw new Error('shimmed function PointCollection.indexOf'); - } - - setAt(index: number, value: Foundation.Point): void { - console.warn('shimmed function PointCollection.setAt'); - } - - insertAt(index: number, value: Foundation.Point): void { - console.warn('shimmed function PointCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function PointCollection.removeAt'); - } - - append(value: Foundation.Point): void { - console.warn('shimmed function PointCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function PointCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function PointCollection.clear'); - } - - getMany(startIndex: number, items: Foundation.Point[]): number { - throw new Error('shimmed function PointCollection.getMany'); - } - - replaceAll(items: Foundation.Point[]): void { - console.warn('shimmed function PointCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function PointCollection.first'); - } - - } - export class PolyBezierSegment implements IDependencyObject, IDependencyObject2, IPathSegment, IPolyBezierSegment { - // constructor(); - points: PointCollection = [ ]; - static pointsProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyBezierSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PolyBezierSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PolyBezierSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyBezierSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyBezierSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PolyBezierSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PolyBezierSegment.unregisterPropertyChangedCallback'); - } - - } - export class PolyLineSegment implements IDependencyObject, IDependencyObject2, IPathSegment, IPolyLineSegment { - // constructor(); - points: PointCollection = [ ]; - static pointsProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyLineSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PolyLineSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PolyLineSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyLineSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyLineSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PolyLineSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PolyLineSegment.unregisterPropertyChangedCallback'); - } - - } - export class PolyQuadraticBezierSegment implements IDependencyObject, IDependencyObject2, IPathSegment, IPolyQuadraticBezierSegment { - // constructor(); - points: PointCollection = [ ]; - static pointsProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyQuadraticBezierSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PolyQuadraticBezierSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PolyQuadraticBezierSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyQuadraticBezierSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PolyQuadraticBezierSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PolyQuadraticBezierSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PolyQuadraticBezierSegment.unregisterPropertyChangedCallback'); - } - - } - export class Projection implements IDependencyObject, IDependencyObject2, IProjection { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Projection.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Projection.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Projection.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Projection.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Projection.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Projection.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Projection.unregisterPropertyChangedCallback'); - } - - } - export class QuadraticBezierSegment implements IDependencyObject, IDependencyObject2, IPathSegment, IQuadraticBezierSegment { - // constructor(); - point2: Foundation.Point = null; - point1: Foundation.Point = null; - static point1Property: DependencyProperty = null; - static point2Property: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuadraticBezierSegment.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function QuadraticBezierSegment.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function QuadraticBezierSegment.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuadraticBezierSegment.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function QuadraticBezierSegment.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function QuadraticBezierSegment.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function QuadraticBezierSegment.unregisterPropertyChangedCallback'); - } - - } - export class RateChangedRoutedEventArgs implements IRoutedEventArgs, IRateChangedRoutedEventArgs { - // constructor(); - originalSource: any; - - } - export type RateChangedRoutedEventHandler = (e: RateChangedRoutedEventArgs) => void; - export class RectangleGeometry implements IDependencyObject, IDependencyObject2, IGeometry, IRectangleGeometry { - // constructor(); - rect: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - static rectProperty: DependencyProperty = null; - transform: Transform; - bounds: Foundation.Rect = { x: 0, y: 0, width: 0, height: 0 }; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RectangleGeometry.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RectangleGeometry.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RectangleGeometry.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RectangleGeometry.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RectangleGeometry.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RectangleGeometry.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RectangleGeometry.unregisterPropertyChangedCallback'); - } - - } - export class RenderedEventArgs implements IRenderedEventArgs { - frameDuration: number; - - } - export class RenderingEventArgs implements IRenderingEventArgs { - renderingTime: number; - - } - export class RevealBackgroundBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, IXamlCompositionBrushBase, IXamlCompositionBrushBaseProtected, IXamlCompositionBrushBaseOverrides, IRevealBrush, IRevealBackgroundBrush { - // constructor(); - targetTheme: ApplicationTheme = ApplicationTheme.light; - color: Color = { a: 0, r: 255, g: 255, b: 255 }; - alwaysUseFallback: Boolean = false; - fallbackColor: Color = { a: 0, r: 255, g: 255, b: 255 }; - compositionBrush: Composition.CompositionBrush; - transform: Transform = null; - relativeTransform: Transform = null; - opacity: number = 1; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBackgroundBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RevealBackgroundBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RevealBackgroundBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBackgroundBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBackgroundBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RevealBackgroundBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RevealBackgroundBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RevealBackgroundBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RevealBackgroundBrush.populatePropertyInfo'); - } - - onConnected(): void { - console.warn('shimmed function RevealBackgroundBrush.onConnected'); - } - - onDisconnected(): void { - console.warn('shimmed function RevealBackgroundBrush.onDisconnected'); - } - - } - export class RevealBorderBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, IXamlCompositionBrushBase, IXamlCompositionBrushBaseProtected, IXamlCompositionBrushBaseOverrides, IRevealBrush, IRevealBorderBrush { - // constructor(); - targetTheme: ApplicationTheme = ApplicationTheme.light; - color: Color = { a: 0, r: 255, g: 255, b: 255 }; - alwaysUseFallback: Boolean = false; - fallbackColor: Color = { a: 0, r: 255, g: 255, b: 255 }; - compositionBrush: Composition.CompositionBrush; - transform: Transform = null; - relativeTransform: Transform = null; - opacity: number = 1; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBorderBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RevealBorderBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RevealBorderBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBorderBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBorderBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RevealBorderBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RevealBorderBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RevealBorderBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RevealBorderBrush.populatePropertyInfo'); - } - - onConnected(): void { - console.warn('shimmed function RevealBorderBrush.onConnected'); - } - - onDisconnected(): void { - console.warn('shimmed function RevealBorderBrush.onDisconnected'); - } - - } - export class RevealBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, IXamlCompositionBrushBase, IXamlCompositionBrushBaseProtected, IXamlCompositionBrushBaseOverrides, IRevealBrush { - targetTheme: ApplicationTheme; - color: Color; - alwaysUseFallback: Boolean; - static alwaysUseFallbackProperty: DependencyProperty = null; - static colorProperty: DependencyProperty = null; - static stateProperty: DependencyProperty = null; - static targetThemeProperty: DependencyProperty = null; - fallbackColor: Color; - compositionBrush: Composition.CompositionBrush; - transform: Transform; - relativeTransform: Transform; - opacity: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RevealBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RevealBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RevealBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RevealBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RevealBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RevealBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function RevealBrush.populatePropertyInfo'); - } - - onConnected(): void { - console.warn('shimmed function RevealBrush.onConnected'); - } - - onDisconnected(): void { - console.warn('shimmed function RevealBrush.onDisconnected'); - } - - static setState(element: UIElement, value: RevealBrushState): void { - console.warn('shimmed function RevealBrush.setState'); - } - - static getState(element: UIElement): RevealBrushState { - throw new Error('shimmed function RevealBrush.getState'); - } - - } - export enum RevealBrushState { - normal, - pointerOver, - pressed, - } - export class RotateTransform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform, IRotateTransform { - // constructor(); - centerY: number = 0; - centerX: number = 0; - angle: number = 0; - static angleProperty: DependencyProperty = null; - static centerXProperty: DependencyProperty = null; - static centerYProperty: DependencyProperty = null; - inverse: GeneralTransform = null; - inverseCore: GeneralTransform = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function RotateTransform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function RotateTransform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function RotateTransform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function RotateTransform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function RotateTransform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function RotateTransform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function RotateTransform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function RotateTransform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function RotateTransform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function RotateTransform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function RotateTransform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function RotateTransform.transformBoundsCore'); - } - - } - export class ScaleTransform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform, IScaleTransform { - // constructor(); - scaleY: number = 1; - scaleX: number = 1; - centerY: number = 0; - centerX: number = 0; - static centerXProperty: DependencyProperty = null; - static centerYProperty: DependencyProperty = null; - static scaleXProperty: DependencyProperty = null; - static scaleYProperty: DependencyProperty = null; - inverse: GeneralTransform = null; - inverseCore: GeneralTransform = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScaleTransform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ScaleTransform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ScaleTransform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScaleTransform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ScaleTransform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ScaleTransform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ScaleTransform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function ScaleTransform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function ScaleTransform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function ScaleTransform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function ScaleTransform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function ScaleTransform.transformBoundsCore'); - } - - } - export class Shadow implements IDependencyObject, IDependencyObject2, IShadow { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Shadow.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Shadow.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Shadow.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Shadow.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Shadow.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Shadow.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Shadow.unregisterPropertyChangedCallback'); - } - - } - export class SkewTransform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform, ISkewTransform { - // constructor(); - centerY: number = 0; - centerX: number = 0; - angleY: number = 0; - angleX: number = 0; - static angleXProperty: DependencyProperty = null; - static angleYProperty: DependencyProperty = null; - static centerXProperty: DependencyProperty = null; - static centerYProperty: DependencyProperty = null; - inverse: GeneralTransform = null; - inverseCore: GeneralTransform = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SkewTransform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SkewTransform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SkewTransform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SkewTransform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SkewTransform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SkewTransform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SkewTransform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function SkewTransform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function SkewTransform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function SkewTransform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function SkewTransform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function SkewTransform.transformBoundsCore'); - } - - } - export class SolidColorBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, ISolidColorBrush { - // constructor(color: Color); - // constructor(); - constructor(color: Color) {} - - color: Color = { a: 0, r: 0, g: 0, b: 0 }; - static colorProperty: DependencyProperty = null; - transform: Transform = null; - relativeTransform: Transform = null; - opacity: number = 1; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SolidColorBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SolidColorBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SolidColorBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SolidColorBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SolidColorBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SolidColorBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SolidColorBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SolidColorBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function SolidColorBrush.populatePropertyInfo'); - } - - } - export enum Stereo3DVideoPackingMode { - none, - sideBySide, - topBottom, - } - export enum Stereo3DVideoRenderMode { - mono, - stereo, - } - export enum Stretch { - none, - fill, - uniform, - uniformToFill, - } - export enum StyleSimulations { - none, - boldSimulation, - italicSimulation, - boldItalicSimulation, - } - export enum SweepDirection { - counterclockwise, - clockwise, - } - export class ThemeShadow implements IDependencyObject, IDependencyObject2, IShadow, IThemeShadow { - // constructor(); - receivers: UIElementWeakCollection = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ThemeShadow.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ThemeShadow.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ThemeShadow.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ThemeShadow.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ThemeShadow.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ThemeShadow.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ThemeShadow.unregisterPropertyChangedCallback'); - } - - } - export class TileBrush implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, ITileBrush { - stretch: Stretch; - alignmentY: AlignmentY; - alignmentX: AlignmentX; - static alignmentXProperty: DependencyProperty = null; - static alignmentYProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - transform: Transform; - relativeTransform: Transform; - opacity: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TileBrush.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TileBrush.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TileBrush.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TileBrush.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TileBrush.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TileBrush.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TileBrush.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TileBrush.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function TileBrush.populatePropertyInfo'); - } - - } - export class TimelineMarker implements IDependencyObject, IDependencyObject2, ITimelineMarker { - // constructor(); - type: string = ''; - time: number = 0; - text: string = ''; - static textProperty: DependencyProperty = null; - static timeProperty: DependencyProperty = null; - static typeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimelineMarker.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TimelineMarker.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TimelineMarker.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimelineMarker.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TimelineMarker.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TimelineMarker.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TimelineMarker.unregisterPropertyChangedCallback'); - } - - } - export class TimelineMarkerCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): TimelineMarker { - throw new Error('shimmed function TimelineMarkerCollection.getAt'); - } - - getView(): TimelineMarker[] { - throw new Error('shimmed function TimelineMarkerCollection.getView'); - } - - indexOf(value: TimelineMarker): { returnValue: Boolean, index: number } { - throw new Error('shimmed function TimelineMarkerCollection.indexOf'); - } - - setAt(index: number, value: TimelineMarker): void { - console.warn('shimmed function TimelineMarkerCollection.setAt'); - } - - insertAt(index: number, value: TimelineMarker): void { - console.warn('shimmed function TimelineMarkerCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function TimelineMarkerCollection.removeAt'); - } - - append(value: TimelineMarker): void { - console.warn('shimmed function TimelineMarkerCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function TimelineMarkerCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function TimelineMarkerCollection.clear'); - } - - getMany(startIndex: number, items: TimelineMarker[]): number { - throw new Error('shimmed function TimelineMarkerCollection.getMany'); - } - - replaceAll(items: TimelineMarker[]): void { - console.warn('shimmed function TimelineMarkerCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function TimelineMarkerCollection.first'); - } - - } - export class TimelineMarkerRoutedEventArgs implements IRoutedEventArgs, ITimelineMarkerRoutedEventArgs { - // constructor(); - marker: TimelineMarker; - originalSource: any; - - } - export type TimelineMarkerRoutedEventHandler = (e: TimelineMarkerRoutedEventArgs) => void; - export class Transform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform { - inverse: GeneralTransform; - inverseCore: GeneralTransform; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Transform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Transform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Transform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Transform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Transform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function Transform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function Transform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function Transform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function Transform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function Transform.transformBoundsCore'); - } - - } - export class TransformCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): Transform { - throw new Error('shimmed function TransformCollection.getAt'); - } - - getView(): Transform[] { - throw new Error('shimmed function TransformCollection.getView'); - } - - indexOf(value: Transform): { returnValue: Boolean, index: number } { - throw new Error('shimmed function TransformCollection.indexOf'); - } - - setAt(index: number, value: Transform): void { - console.warn('shimmed function TransformCollection.setAt'); - } - - insertAt(index: number, value: Transform): void { - console.warn('shimmed function TransformCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function TransformCollection.removeAt'); - } - - append(value: Transform): void { - console.warn('shimmed function TransformCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function TransformCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function TransformCollection.clear'); - } - - getMany(startIndex: number, items: Transform[]): number { - throw new Error('shimmed function TransformCollection.getMany'); - } - - replaceAll(items: Transform[]): void { - console.warn('shimmed function TransformCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function TransformCollection.first'); - } - - } - export class TransformGroup implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform, ITransformGroup { - // constructor(); - children: TransformCollection = [ ]; - value: /* Windows.UI.Xaml.Media.Matrix */ any = null; - static childrenProperty: DependencyProperty = null; - inverse: GeneralTransform = null; - inverseCore: GeneralTransform = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TransformGroup.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TransformGroup.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TransformGroup.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TransformGroup.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TransformGroup.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TransformGroup.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TransformGroup.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function TransformGroup.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function TransformGroup.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function TransformGroup.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function TransformGroup.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function TransformGroup.transformBoundsCore'); - } - - } - export class TranslateTransform implements IDependencyObject, IDependencyObject2, IGeneralTransform, IGeneralTransformOverrides, ITransform, ITranslateTransform { - // constructor(); - y: number = 0; - x: number = 0; - static xproperty: DependencyProperty = null; - static yproperty: DependencyProperty = null; - inverse: GeneralTransform = null; - inverseCore: GeneralTransform = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TranslateTransform.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TranslateTransform.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TranslateTransform.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TranslateTransform.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TranslateTransform.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TranslateTransform.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TranslateTransform.unregisterPropertyChangedCallback'); - } - - transformPoint(point: Foundation.Point): Foundation.Point { - throw new Error('shimmed function TranslateTransform.transformPoint'); - } - - tryTransform(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function TranslateTransform.tryTransform'); - } - - transformBounds(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function TranslateTransform.transformBounds'); - } - - tryTransformCore(inPoint: Foundation.Point): { returnValue: Boolean, outPoint: Foundation.Point } { - throw new Error('shimmed function TranslateTransform.tryTransformCore'); - } - - transformBoundsCore(rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function TranslateTransform.transformBoundsCore'); - } - - } - export class VisualTreeHelper implements IVisualTreeHelper { - static getOpenPopupsForXamlRoot(xamlRoot: XamlRoot): Controls.Primitives.Popup[] { - throw new Error('shimmed function VisualTreeHelper.getOpenPopupsForXamlRoot'); - } - - static getOpenPopups(window: Window): Controls.Primitives.Popup[] { - throw new Error('shimmed function VisualTreeHelper.getOpenPopups'); - } - - static findElementsInHostCoordinates(intersectingPoint: Foundation.Point, subtree: UIElement): Foundation.Collections.IIterable { - throw new Error('shimmed function VisualTreeHelper.findElementsInHostCoordinates'); - } - - static findElementsInHostCoordinates_1(intersectingRect: Foundation.Rect, subtree: UIElement): Foundation.Collections.IIterable { - throw new Error('shimmed function VisualTreeHelper.findElementsInHostCoordinates_1'); - } - - static findElementsInHostCoordinates_2(intersectingPoint: Foundation.Point, subtree: UIElement, includeAllElements: Boolean): Foundation.Collections.IIterable { - throw new Error('shimmed function VisualTreeHelper.findElementsInHostCoordinates_2'); - } - - static findElementsInHostCoordinates_3(intersectingRect: Foundation.Rect, subtree: UIElement, includeAllElements: Boolean): Foundation.Collections.IIterable { - throw new Error('shimmed function VisualTreeHelper.findElementsInHostCoordinates_3'); - } - - static getChild(reference: DependencyObject, childIndex: number): DependencyObject { - throw new Error('shimmed function VisualTreeHelper.getChild'); - } - - static getChildrenCount(reference: DependencyObject): number { - throw new Error('shimmed function VisualTreeHelper.getChildrenCount'); - } - - static getParent(reference: DependencyObject): DependencyObject { - throw new Error('shimmed function VisualTreeHelper.getParent'); - } - - static disconnectChildrenRecursive(element: UIElement): void { - console.warn('shimmed function VisualTreeHelper.disconnectChildrenRecursive'); - } - - } - export class XamlCompositionBrushBase implements IDependencyObject, IDependencyObject2, IBrush, IBrushOverrides2, Composition.IAnimationObject, IXamlCompositionBrushBase, IXamlCompositionBrushBaseProtected, IXamlCompositionBrushBaseOverrides { - fallbackColor: Color; - compositionBrush: Composition.CompositionBrush; - static fallbackColorProperty: DependencyProperty = null; - transform: Transform; - relativeTransform: Transform; - opacity: number; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlCompositionBrushBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function XamlCompositionBrushBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function XamlCompositionBrushBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlCompositionBrushBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlCompositionBrushBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function XamlCompositionBrushBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function XamlCompositionBrushBase.unregisterPropertyChangedCallback'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function XamlCompositionBrushBase.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function XamlCompositionBrushBase.populatePropertyInfo'); - } - - onConnected(): void { - console.warn('shimmed function XamlCompositionBrushBase.onConnected'); - } - - onDisconnected(): void { - console.warn('shimmed function XamlCompositionBrushBase.onDisconnected'); - } - - } - export class XamlLight implements IDependencyObject, IDependencyObject2, IXamlLight, IXamlLightProtected, IXamlLightOverrides { - // constructor(); - compositionLight: Composition.CompositionLight; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlLight.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function XamlLight.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function XamlLight.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlLight.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function XamlLight.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function XamlLight.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function XamlLight.unregisterPropertyChangedCallback'); - } - - getId(): string { - throw new Error('shimmed function XamlLight.getId'); - } - - onConnected(newElement: UIElement): void { - console.warn('shimmed function XamlLight.onConnected'); - } - - onDisconnected(oldElement: UIElement): void { - console.warn('shimmed function XamlLight.onDisconnected'); - } - - static addTargetElement(lightId: string, element: UIElement): void { - console.warn('shimmed function XamlLight.addTargetElement'); - } - - static removeTargetElement(lightId: string, element: UIElement): void { - console.warn('shimmed function XamlLight.removeTargetElement'); - } - - static addTargetBrush(lightId: string, brush: Brush): void { - console.warn('shimmed function XamlLight.addTargetBrush'); - } - - static removeTargetBrush(lightId: string, brush: Brush): void { - console.warn('shimmed function XamlLight.removeTargetBrush'); - } - - } - } - export class MediaFailedRoutedEventArgs implements IRoutedEventArgs, IExceptionRoutedEventArgs, IMediaFailedRoutedEventArgs { - errorTrace: string; - errorMessage: string; - originalSource: any; - - } - export namespace Navigation { - export class FrameNavigationOptions implements IFrameNavigationOptions { - // constructor(); - transitionInfoOverride: Media.Animation.NavigationTransitionInfo; - isNavigationStackEnabled: Boolean = false; - - } - export type LoadCompletedEventHandler = (e: NavigationEventArgs) => void; - export type NavigatedEventHandler = (e: NavigationEventArgs) => void; - export class NavigatingCancelEventArgs implements INavigatingCancelEventArgs, INavigatingCancelEventArgs2 { - cancel: Boolean; - navigationMode: NavigationMode; - sourcePageType: /* System.Type */ any; - navigationTransitionInfo: Media.Animation.NavigationTransitionInfo; - parameter: any; - - } - export type NavigatingCancelEventHandler = (e: NavigatingCancelEventArgs) => void; - export enum NavigationCacheMode { - disabled, - required, - enabled, - } - export class NavigationEventArgs implements INavigationEventArgs, INavigationEventArgs2 { - uri: Foundation.Uri; - content: any; - navigationMode: NavigationMode; - parameter: any; - sourcePageType: /* System.Type */ any; - navigationTransitionInfo: Media.Animation.NavigationTransitionInfo; - - } - export class NavigationFailedEventArgs implements INavigationFailedEventArgs { - handled: Boolean; - exception: number; - sourcePageType: /* System.Type */ any; - - } - export type NavigationFailedEventHandler = (e: NavigationFailedEventArgs) => void; - export enum NavigationMode { - new, - back, - forward, - refresh, - } - export type NavigationStoppedEventHandler = (e: NavigationEventArgs) => void; - export class PageStackEntry implements IDependencyObject, IDependencyObject2, IPageStackEntry { - // constructor(sourcePageType: /* System.Type */ any, parameter: any, navigationTransitionInfo: Media.Animation.NavigationTransitionInfo); - constructor(sourcePageType: /* System.Type */ any, parameter: any, navigationTransitionInfo: Media.Animation.NavigationTransitionInfo) {} - - navigationTransitionInfo: Media.Animation.NavigationTransitionInfo; - parameter: any; - sourcePageType: /* System.Type */ any; - static sourcePageTypeProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PageStackEntry.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PageStackEntry.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PageStackEntry.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PageStackEntry.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PageStackEntry.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PageStackEntry.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PageStackEntry.unregisterPropertyChangedCallback'); - } - - } - } - export enum OpticalMarginAlignment { - none, - trimSideBearings, - } - export class PointHelper implements IPointHelper { - static fromCoordinates(x: number, y: number): Foundation.Point { - throw new Error('shimmed function PointHelper.fromCoordinates'); - } - - } - export namespace Printing { - export class AddPagesEventArgs implements IAddPagesEventArgs { - // constructor(); - printTaskOptions: Graphics.Printing.PrintTaskOptions; - - } - export type AddPagesEventHandler = (e: AddPagesEventArgs) => void; - export class GetPreviewPageEventArgs implements IGetPreviewPageEventArgs { - // constructor(); - pageNumber: number = 0; - - } - export type GetPreviewPageEventHandler = (e: GetPreviewPageEventArgs) => void; - export class PaginateEventArgs implements IPaginateEventArgs { - // constructor(); - currentPreviewPageNumber: number = 0; - printTaskOptions: Graphics.Printing.PrintTaskOptions; - - } - export type PaginateEventHandler = (e: PaginateEventArgs) => void; - export enum PreviewPageCountType { - final, - intermediate, - } - export class PrintDocument implements IDependencyObject, IDependencyObject2, IPrintDocument { - // constructor(); - documentSource: Graphics.Printing.IPrintDocumentSource = null; - static documentSourceProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PrintDocument.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PrintDocument.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PrintDocument.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PrintDocument.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PrintDocument.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PrintDocument.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PrintDocument.unregisterPropertyChangedCallback'); - } - - addPage(pageVisual: UIElement): void { - console.warn('shimmed function PrintDocument.addPage'); - } - - addPagesComplete(): void { - console.warn('shimmed function PrintDocument.addPagesComplete'); - } - - setPreviewPageCount(count: number, type: PreviewPageCountType): void { - console.warn('shimmed function PrintDocument.setPreviewPageCount'); - } - - setPreviewPage(pageNumber: number, pageVisual: UIElement): void { - console.warn('shimmed function PrintDocument.setPreviewPage'); - } - - invalidatePreview(): void { - console.warn('shimmed function PrintDocument.invalidatePreview'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`PrintDocument::addEventListener: ${name}`); - switch (name) { - case "addpages": // AddPagesEventHandler - case "getpreviewpage": // GetPreviewPageEventHandler - case "paginate": // PaginateEventHandler - break; - } - - } - } - } - export type PropertyChangedCallback = (e: DependencyPropertyChangedEventArgs) => void; - export class PropertyMetadata implements IPropertyMetadata { - // constructor(defaultValue: any); - // constructor(defaultValue: any, propertyChangedCallback: PropertyChangedCallback); - constructor(defaultValue: any, propertyChangedCallback: PropertyChangedCallback) {} - - createDefaultValueCallback: CreateDefaultValueCallback; - defaultValue: any; - - static create(defaultValue: any): PropertyMetadata { - throw new Error('shimmed function PropertyMetadata.create'); - } - - static create_1(defaultValue: any, propertyChangedCallback: PropertyChangedCallback): PropertyMetadata { - throw new Error('shimmed function PropertyMetadata.create_1'); - } - - static create_2(createDefaultValueCallback: CreateDefaultValueCallback): PropertyMetadata { - throw new Error('shimmed function PropertyMetadata.create_2'); - } - - static create_3(createDefaultValueCallback: CreateDefaultValueCallback, propertyChangedCallback: PropertyChangedCallback): PropertyMetadata { - throw new Error('shimmed function PropertyMetadata.create_3'); - } - - } - export class PropertyPath implements IDependencyObject, IDependencyObject2, IPropertyPath { - // constructor(path: string); - constructor(path: string) {} - - path: string; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function PropertyPath.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function PropertyPath.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function PropertyPath.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function PropertyPath.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function PropertyPath.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function PropertyPath.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function PropertyPath.unregisterPropertyChangedCallback'); - } - - } - export class RectHelper implements IRectHelper { - static empty: Foundation.Rect = { x: ∞, y: ∞, width: -∞, height: -∞ }; - - static fromCoordinatesAndDimensions(x: number, y: number, width: number, height: number): Foundation.Rect { - throw new Error('shimmed function RectHelper.fromCoordinatesAndDimensions'); - } - - static fromPoints(point1: Foundation.Point, point2: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function RectHelper.fromPoints'); - } - - static fromLocationAndSize(location: Foundation.Point, size: Foundation.Size): Foundation.Rect { - throw new Error('shimmed function RectHelper.fromLocationAndSize'); - } - - static getIsEmpty(target: Foundation.Rect): Boolean { - throw new Error('shimmed function RectHelper.getIsEmpty'); - } - - static getBottom(target: Foundation.Rect): number { - throw new Error('shimmed function RectHelper.getBottom'); - } - - static getLeft(target: Foundation.Rect): number { - throw new Error('shimmed function RectHelper.getLeft'); - } - - static getRight(target: Foundation.Rect): number { - throw new Error('shimmed function RectHelper.getRight'); - } - - static getTop(target: Foundation.Rect): number { - throw new Error('shimmed function RectHelper.getTop'); - } - - static contains(target: Foundation.Rect, point: Foundation.Point): Boolean { - throw new Error('shimmed function RectHelper.contains'); - } - - static intersect(target: Foundation.Rect, rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function RectHelper.intersect'); - } - - static union(target: Foundation.Rect, point: Foundation.Point): Foundation.Rect { - throw new Error('shimmed function RectHelper.union'); - } - - static union_1(target: Foundation.Rect, rect: Foundation.Rect): Foundation.Rect { - throw new Error('shimmed function RectHelper.union_1'); - } - - } - export class ResourceDictionary implements IDependencyObject, IDependencyObject2, IResourceDictionary, Foundation.Collections.IMap, Foundation.Collections.IIterable> { - // constructor(); - size: number; - source: Foundation.Uri; - mergedDictionaries: ResourceDictionary[] = [ ]; - themeDictionaries: any[] = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function ResourceDictionary.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function ResourceDictionary.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function ResourceDictionary.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function ResourceDictionary.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function ResourceDictionary.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function ResourceDictionary.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function ResourceDictionary.unregisterPropertyChangedCallback'); - } - - lookup(key: any): any { - throw new Error('shimmed function ResourceDictionary.lookup'); - } - - hasKey(key: any): Boolean { - throw new Error('shimmed function ResourceDictionary.hasKey'); - } - - getView(): any[] { - throw new Error('shimmed function ResourceDictionary.getView'); - } - - insert(key: any, value: any): Boolean { - throw new Error('shimmed function ResourceDictionary.insert'); - } - - clear(): void { - console.warn('shimmed function ResourceDictionary.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function ResourceDictionary.first'); - } - - } - export namespace Resources { - export class CustomXamlResourceLoader implements ICustomXamlResourceLoader, ICustomXamlResourceLoaderOverrides { - // constructor(); - static current: CustomXamlResourceLoader; - - getResource(resourceId: string, objectType: string, propertyName: string, propertyType: string): any { - throw new Error('shimmed function CustomXamlResourceLoader.getResource'); - } - - } - } - export class RoutedEvent implements IRoutedEvent { - } - export class RoutedEventArgs implements IRoutedEventArgs { - // constructor(); - originalSource: any; - - } - export type RoutedEventHandler = (e: RoutedEventArgs) => void; - export class ScalarTransition implements IScalarTransition { - // constructor(); - duration: number = 300; - - } - export class Setter implements IDependencyObject, IDependencyObject2, ISetterBase, ISetter, ISetter2 { - // constructor(targetProperty: DependencyProperty, value: any); - // constructor(); - constructor(targetProperty: DependencyProperty, value: any) {} - - value: any; - property: DependencyProperty; - target: TargetPropertyPath; - isSealed: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Setter.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Setter.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Setter.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Setter.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Setter.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Setter.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Setter.unregisterPropertyChangedCallback'); - } - - } - export class SetterBase implements IDependencyObject, IDependencyObject2, ISetterBase { - isSealed: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function SetterBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function SetterBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function SetterBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function SetterBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function SetterBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function SetterBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function SetterBase.unregisterPropertyChangedCallback'); - } - - } - export class SetterBaseCollection implements ISetterBaseCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - isSealed: Boolean = false; - - getAt(index: number): SetterBase { - throw new Error('shimmed function SetterBaseCollection.getAt'); - } - - getView(): SetterBase[] { - throw new Error('shimmed function SetterBaseCollection.getView'); - } - - indexOf(value: SetterBase): { returnValue: Boolean, index: number } { - throw new Error('shimmed function SetterBaseCollection.indexOf'); - } - - setAt(index: number, value: SetterBase): void { - console.warn('shimmed function SetterBaseCollection.setAt'); - } - - insertAt(index: number, value: SetterBase): void { - console.warn('shimmed function SetterBaseCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function SetterBaseCollection.removeAt'); - } - - append(value: SetterBase): void { - console.warn('shimmed function SetterBaseCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function SetterBaseCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function SetterBaseCollection.clear'); - } - - getMany(startIndex: number, items: SetterBase[]): number { - throw new Error('shimmed function SetterBaseCollection.getMany'); - } - - replaceAll(items: SetterBase[]): void { - console.warn('shimmed function SetterBaseCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function SetterBaseCollection.first'); - } - - } - export namespace Shapes { - export class Ellipse implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IShape, IShape2, IEllipse { - // constructor(); - strokeThickness: number = 1; - strokeStartLineCap: Media.PenLineCap = PenLineCap.flat; - strokeMiterLimit: number = 10; - strokeLineJoin: Media.PenLineJoin = PenLineJoin.miter; - strokeEndLineCap: Media.PenLineCap = PenLineCap.flat; - strokeDashOffset: number = 0; - strokeDashCap: Media.PenLineCap = PenLineCap.flat; - strokeDashArray: Media.DoubleCollection = [ ]; - stroke: Media.Brush; - stretch: Media.Stretch = Stretch.fill; - fill: Media.Brush; - geometryTransform: Media.Transform = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Ellipse.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Ellipse.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Ellipse.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Ellipse.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Ellipse.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Ellipse.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Ellipse.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Ellipse.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Ellipse.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Ellipse.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Ellipse.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Ellipse.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Ellipse.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Ellipse.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Ellipse.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Ellipse.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Ellipse.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Ellipse.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Ellipse.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Ellipse.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Ellipse.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Ellipse.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Ellipse.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Ellipse.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Ellipse.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Ellipse.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Ellipse.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Ellipse.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Ellipse.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Ellipse.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Ellipse.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Ellipse.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Ellipse.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Ellipse.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Ellipse.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Ellipse.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Ellipse.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Ellipse.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Ellipse.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Ellipse.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Ellipse.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Ellipse.goToElementStateCore'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Ellipse.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Ellipse::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Line implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IShape, IShape2, ILine { - // constructor(); - y2: number = 0; - y1: number = 0; - x2: number = 0; - x1: number = 0; - static x1Property: DependencyProperty = null; - static x2Property: DependencyProperty = null; - static y1Property: DependencyProperty = null; - static y2Property: DependencyProperty = null; - strokeThickness: number = 1; - strokeStartLineCap: Media.PenLineCap = PenLineCap.flat; - strokeMiterLimit: number = 10; - strokeLineJoin: Media.PenLineJoin = PenLineJoin.miter; - strokeEndLineCap: Media.PenLineCap = PenLineCap.flat; - strokeDashOffset: number = 0; - strokeDashCap: Media.PenLineCap = PenLineCap.flat; - strokeDashArray: Media.DoubleCollection = [ ]; - stroke: Media.Brush; - stretch: Media.Stretch = Stretch.none; - fill: Media.Brush; - geometryTransform: Media.Transform = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Line.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Line.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Line.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Line.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Line.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Line.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Line.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Line.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Line.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Line.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Line.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Line.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Line.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Line.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Line.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Line.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Line.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Line.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Line.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Line.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Line.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Line.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Line.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Line.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Line.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Line.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Line.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Line.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Line.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Line.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Line.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Line.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Line.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Line.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Line.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Line.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Line.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Line.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Line.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Line.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Line.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Line.goToElementStateCore'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Line.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Line::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Path implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IShape, IShape2, IPath { - // constructor(); - data: Media.Geometry; - static dataProperty: DependencyProperty = null; - strokeThickness: number = 1; - strokeStartLineCap: Media.PenLineCap = PenLineCap.flat; - strokeMiterLimit: number = 10; - strokeLineJoin: Media.PenLineJoin = PenLineJoin.miter; - strokeEndLineCap: Media.PenLineCap = PenLineCap.flat; - strokeDashOffset: number = 0; - strokeDashCap: Media.PenLineCap = PenLineCap.flat; - strokeDashArray: Media.DoubleCollection = [ ]; - stroke: Media.Brush; - stretch: Media.Stretch = Stretch.none; - fill: Media.Brush; - geometryTransform: Media.Transform = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Path.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Path.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Path.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Path.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Path.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Path.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Path.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Path.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Path.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Path.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Path.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Path.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Path.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Path.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Path.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Path.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Path.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Path.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Path.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Path.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Path.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Path.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Path.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Path.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Path.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Path.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Path.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Path.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Path.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Path.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Path.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Path.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Path.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Path.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Path.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Path.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Path.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Path.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Path.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Path.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Path.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Path.goToElementStateCore'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Path.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Path::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Polygon implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IShape, IShape2, IPolygon { - // constructor(); - points: Media.PointCollection = [ ]; - fillRule: Media.FillRule = FillRule.evenOdd; - static fillRuleProperty: DependencyProperty = null; - static pointsProperty: DependencyProperty = null; - strokeThickness: number = 1; - strokeStartLineCap: Media.PenLineCap = PenLineCap.flat; - strokeMiterLimit: number = 10; - strokeLineJoin: Media.PenLineJoin = PenLineJoin.miter; - strokeEndLineCap: Media.PenLineCap = PenLineCap.flat; - strokeDashOffset: number = 0; - strokeDashCap: Media.PenLineCap = PenLineCap.flat; - strokeDashArray: Media.DoubleCollection = [ ]; - stroke: Media.Brush; - stretch: Media.Stretch = Stretch.none; - fill: Media.Brush; - geometryTransform: Media.Transform = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Polygon.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Polygon.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Polygon.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Polygon.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Polygon.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Polygon.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Polygon.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Polygon.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Polygon.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Polygon.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Polygon.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Polygon.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Polygon.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Polygon.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Polygon.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Polygon.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Polygon.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Polygon.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Polygon.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Polygon.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Polygon.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Polygon.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Polygon.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Polygon.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Polygon.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Polygon.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Polygon.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Polygon.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Polygon.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Polygon.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Polygon.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Polygon.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Polygon.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Polygon.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Polygon.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Polygon.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Polygon.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Polygon.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Polygon.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Polygon.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Polygon.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Polygon.goToElementStateCore'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Polygon.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Polygon::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Polyline implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IShape, IShape2, IPolyline { - // constructor(); - points: Media.PointCollection = [ ]; - fillRule: Media.FillRule = FillRule.evenOdd; - static fillRuleProperty: DependencyProperty = null; - static pointsProperty: DependencyProperty = null; - strokeThickness: number = 1; - strokeStartLineCap: Media.PenLineCap = PenLineCap.flat; - strokeMiterLimit: number = 10; - strokeLineJoin: Media.PenLineJoin = PenLineJoin.miter; - strokeEndLineCap: Media.PenLineCap = PenLineCap.flat; - strokeDashOffset: number = 0; - strokeDashCap: Media.PenLineCap = PenLineCap.flat; - strokeDashArray: Media.DoubleCollection = [ ]; - stroke: Media.Brush; - stretch: Media.Stretch = Stretch.none; - fill: Media.Brush; - geometryTransform: Media.Transform = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Polyline.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Polyline.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Polyline.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Polyline.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Polyline.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Polyline.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Polyline.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Polyline.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Polyline.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Polyline.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Polyline.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Polyline.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Polyline.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Polyline.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Polyline.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Polyline.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Polyline.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Polyline.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Polyline.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Polyline.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Polyline.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Polyline.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Polyline.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Polyline.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Polyline.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Polyline.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Polyline.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Polyline.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Polyline.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Polyline.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Polyline.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Polyline.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Polyline.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Polyline.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Polyline.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Polyline.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Polyline.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Polyline.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Polyline.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Polyline.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Polyline.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Polyline.goToElementStateCore'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Polyline.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Polyline::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Rectangle implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IShape, IShape2, IRectangle { - // constructor(); - radiusY: number = 0; - radiusX: number = 0; - static radiusXProperty: DependencyProperty = null; - static radiusYProperty: DependencyProperty = null; - strokeThickness: number = 1; - strokeStartLineCap: Media.PenLineCap = PenLineCap.flat; - strokeMiterLimit: number = 10; - strokeLineJoin: Media.PenLineJoin = PenLineJoin.miter; - strokeEndLineCap: Media.PenLineCap = PenLineCap.flat; - strokeDashOffset: number = 0; - strokeDashCap: Media.PenLineCap = PenLineCap.flat; - strokeDashArray: Media.DoubleCollection = [ ]; - stroke: Media.Brush; - stretch: Media.Stretch = Stretch.fill; - fill: Media.Brush; - geometryTransform: Media.Transform = null; - width: number = NaN; - verticalAlignment: VerticalAlignment = VerticalAlignment.stretch; - tag: any; - style: Style; - resources: ResourceDictionary = [ ]; - name: string = ''; - minWidth: number = 0; - minHeight: number = 0; - maxWidth: number = ∞; - maxHeight: number = ∞; - margin: Thickness = null; - language: string = 'en-GB'; - horizontalAlignment: HorizontalAlignment = HorizontalAlignment.stretch; - height: number = NaN; - flowDirection: FlowDirection = FlowDirection.leftToRight; - dataContext: any; - actualHeight: number = 0; - actualWidth: number = 0; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection = [ ]; - requestedTheme: ElementTheme = ElementTheme.default; - focusVisualSecondaryThickness: Thickness = null; - focusVisualSecondaryBrush: Media.Brush = null; - focusVisualPrimaryThickness: Thickness = null; - focusVisualPrimaryBrush: Media.Brush = null; - focusVisualMargin: Thickness = null; - allowFocusWhenDisabled: Boolean = false; - allowFocusOnInteraction: Boolean = true; - actualTheme: ElementTheme = ElementTheme.dark; - isLoaded: Boolean = false; - transitions: Media.Animation.TransitionCollection = [ ]; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point = null; - opacity: number = 1; - manipulationMode: Input.ManipulationModes = ManipulationModes.system; - isTapEnabled: Boolean = true; - isRightTapEnabled: Boolean = true; - isHoldingEnabled: Boolean = true; - isHitTestVisible: Boolean = true; - isDoubleTapEnabled: Boolean = true; - allowDrop: Boolean = false; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean = true; - renderTransform: Media.Transform = null; - visibility: Visibility = Visibility.visible; - desiredSize: Foundation.Size = { 0, height: 0 }; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size = { 0, height: 0 }; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3 = null; - actualSize: Foundation.Numerics.Vector2 = null; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode = ElementCompositeMode.inherit; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean = false; - isAccessKeyScope: Boolean = false; - exitDisplayModeOnAccessKeyInvoked: Boolean = true; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string = ''; - keyTipHorizontalOffset: number = 0; - highContrastAdjustment: ElementHighContrastAdjustment = ElementHighContrastAdjustment.application; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode = XYFocusKeyboardNavigationMode.auto; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - tabFocusNavigation: Input.KeyboardNavigationMode = KeyboardNavigationMode.local; - keyTipVerticalOffset: number = 0; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - keyTipPlacementMode: Input.KeyTipPlacementMode = KeyTipPlacementMode.auto; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy = XYFocusNavigationStrategy.auto; - lights: Media.XamlLight[] = [ ]; - keyboardAccelerators: Input.KeyboardAccelerator[] = [ ]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode = KeyboardAcceleratorPlacementMode.auto; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3 = null; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3 = null; - transformMatrix: Foundation.Numerics.Matrix4x4 = null; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3 = null; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3 = null; - rotation: number = 0; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean = false; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Rectangle.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Rectangle.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Rectangle.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Rectangle.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Rectangle.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Rectangle.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Rectangle.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Rectangle.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Rectangle.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Rectangle.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Rectangle.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Rectangle.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Rectangle.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Rectangle.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Rectangle.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Rectangle.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Rectangle.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Rectangle.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Rectangle.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Rectangle.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Rectangle.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Rectangle.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Rectangle.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Rectangle.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Rectangle.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Rectangle.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Rectangle.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Rectangle.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Rectangle.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Rectangle.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Rectangle.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Rectangle.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Rectangle.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Rectangle.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Rectangle.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Rectangle.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Rectangle.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Rectangle.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Rectangle.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Rectangle.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Rectangle.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Rectangle.goToElementStateCore'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Rectangle.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Rectangle::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class Shape implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement, IFrameworkElement, IFrameworkElement2, IFrameworkElement3, IFrameworkElement4, IFrameworkElement6, IFrameworkElement7, IFrameworkElementProtected7, IFrameworkElementOverrides, IFrameworkElementOverrides2, IShape, IShape2 { - strokeThickness: number; - strokeStartLineCap: Media.PenLineCap; - strokeMiterLimit: number; - strokeLineJoin: Media.PenLineJoin; - strokeEndLineCap: Media.PenLineCap; - strokeDashOffset: number; - strokeDashCap: Media.PenLineCap; - strokeDashArray: Media.DoubleCollection; - stroke: Media.Brush; - stretch: Media.Stretch; - fill: Media.Brush; - geometryTransform: Media.Transform; - static fillProperty: DependencyProperty = null; - static stretchProperty: DependencyProperty = null; - static strokeDashArrayProperty: DependencyProperty = null; - static strokeDashCapProperty: DependencyProperty = null; - static strokeDashOffsetProperty: DependencyProperty = null; - static strokeEndLineCapProperty: DependencyProperty = null; - static strokeLineJoinProperty: DependencyProperty = null; - static strokeMiterLimitProperty: DependencyProperty = null; - static strokeProperty: DependencyProperty = null; - static strokeStartLineCapProperty: DependencyProperty = null; - static strokeThicknessProperty: DependencyProperty = null; - width: number; - verticalAlignment: VerticalAlignment; - tag: any; - style: Style; - resources: ResourceDictionary; - name: string; - minWidth: number; - minHeight: number; - maxWidth: number; - maxHeight: number; - margin: Thickness; - language: string; - horizontalAlignment: HorizontalAlignment; - height: number; - flowDirection: FlowDirection; - dataContext: any; - actualHeight: number; - actualWidth: number; - baseUri: Foundation.Uri; - parent: DependencyObject; - triggers: TriggerCollection; - requestedTheme: ElementTheme; - focusVisualSecondaryThickness: Thickness; - focusVisualSecondaryBrush: Media.Brush; - focusVisualPrimaryThickness: Thickness; - focusVisualPrimaryBrush: Media.Brush; - focusVisualMargin: Thickness; - allowFocusWhenDisabled: Boolean; - allowFocusOnInteraction: Boolean; - actualTheme: ElementTheme; - isLoaded: Boolean; - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Shape.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Shape.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Shape.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Shape.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Shape.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Shape.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Shape.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function Shape.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function Shape.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function Shape.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function Shape.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function Shape.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function Shape.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function Shape.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function Shape.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function Shape.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function Shape.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function Shape.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function Shape.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function Shape.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function Shape.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function Shape.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Shape.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Shape.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function Shape.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function Shape.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function Shape.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function Shape.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function Shape.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function Shape.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function Shape.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function Shape.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Shape.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function Shape.populatePropertyInfo'); - } - - findName(name: string): any { - throw new Error('shimmed function Shape.findName'); - } - - setBinding(dp: DependencyProperty, binding: Data.BindingBase): void { - console.warn('shimmed function Shape.setBinding'); - } - - getBindingExpression(dp: DependencyProperty): Data.BindingExpression { - throw new Error('shimmed function Shape.getBindingExpression'); - } - - invalidateViewport(): void { - console.warn('shimmed function Shape.invalidateViewport'); - } - - measureOverride(availableSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Shape.measureOverride'); - } - - arrangeOverride(finalSize: Foundation.Size): Foundation.Size { - throw new Error('shimmed function Shape.arrangeOverride'); - } - - onApplyTemplate(): void { - console.warn('shimmed function Shape.onApplyTemplate'); - } - - goToElementStateCore(stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function Shape.goToElementStateCore'); - } - - getAlphaMask(): Composition.CompositionBrush { - throw new Error('shimmed function Shape.getAlphaMask'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Shape::addEventListener: ${name}`); - switch (name) { - case "layoutupdated": // /* System.EventHandler`1[[System.Object, System.Private.CoreLib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e]] */ any - case "loaded": // RoutedEventHandler - case "sizechanged": // SizeChangedEventHandler - case "unloaded": // RoutedEventHandler - case "datacontextchanged": // Foundation.TypedEventHandler - case "loading": // Foundation.TypedEventHandler - case "actualthemechanged": // Foundation.TypedEventHandler - case "effectiveviewportchanged": // Foundation.TypedEventHandler - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - } - export class SizeChangedEventArgs implements IRoutedEventArgs, ISizeChangedEventArgs { - newSize: Foundation.Size; - previousSize: Foundation.Size; - originalSource: any; - - } - export type SizeChangedEventHandler = (e: SizeChangedEventArgs) => void; - export class SizeHelper implements ISizeHelper { - static empty: Foundation.Size = { -∞, height: -∞ }; - - static fromDimensions(width: number, height: number): Foundation.Size { - throw new Error('shimmed function SizeHelper.fromDimensions'); - } - - static getIsEmpty(target: Foundation.Size): Boolean { - throw new Error('shimmed function SizeHelper.getIsEmpty'); - } - - } - export class StateTrigger implements IDependencyObject, IDependencyObject2, IStateTriggerBase, IStateTriggerBaseProtected, IStateTrigger { - // constructor(); - isActive: Boolean = false; - static isActiveProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function StateTrigger.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function StateTrigger.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function StateTrigger.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function StateTrigger.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function StateTrigger.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function StateTrigger.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function StateTrigger.unregisterPropertyChangedCallback'); - } - - setActive(isActive: Boolean): void { - console.warn('shimmed function StateTrigger.setActive'); - } - - } - export class StateTriggerBase implements IDependencyObject, IDependencyObject2, IStateTriggerBase, IStateTriggerBaseProtected { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function StateTriggerBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function StateTriggerBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function StateTriggerBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function StateTriggerBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function StateTriggerBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function StateTriggerBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function StateTriggerBase.unregisterPropertyChangedCallback'); - } - - setActive(isActive: Boolean): void { - console.warn('shimmed function StateTriggerBase.setActive'); - } - - } - export class Style implements IDependencyObject, IDependencyObject2, IStyle { - // constructor(targetType: /* System.Type */ any); - // constructor(); - constructor(targetType: /* System.Type */ any) {} - - targetType: /* System.Type */ any; - basedOn: Style; - isSealed: Boolean = false; - setters: SetterBaseCollection = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function Style.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function Style.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function Style.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function Style.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function Style.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function Style.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function Style.unregisterPropertyChangedCallback'); - } - - seal(): void { - console.warn('shimmed function Style.seal'); - } - - } - export class StyleTypedPropertyAttribute { - // constructor(); - typeId: any; - - property: string; - styleTargetType: /* System.Type */ any; - match(obj: any): Boolean { - throw new Error('shimmed function StyleTypedPropertyAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function StyleTypedPropertyAttribute.isDefaultAttribute'); - } - - } - export type SuspendingEventHandler = (e: ApplicationModel.SuspendingEventArgs) => void; - export class TargetPropertyPath implements ITargetPropertyPath { - // constructor(targetProperty: DependencyProperty); - // constructor(); - constructor(targetProperty: DependencyProperty) {} - - target: any; - path: PropertyPath; - - } - export class TemplatePartAttribute { - // constructor(); - typeId: any; - - name: string; - type: /* System.Type */ any; - match(obj: any): Boolean { - throw new Error('shimmed function TemplatePartAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function TemplatePartAttribute.isDefaultAttribute'); - } - - } - export class TemplateVisualStateAttribute { - // constructor(); - typeId: any; - - name: string; - groupName: string; - match(obj: any): Boolean { - throw new Error('shimmed function TemplateVisualStateAttribute.match'); - } - - isDefaultAttribute(): Boolean { - throw new Error('shimmed function TemplateVisualStateAttribute.isDefaultAttribute'); - } - - } - export enum TextAlignment { - center, - left, - start = 1, - right, - end = 2, - justify, - detectFromContent, - } - export enum TextLineBounds { - full, - trimToCapHeight, - trimToBaseline, - tight, - } - export enum TextReadingOrder { - default, - useFlowDirection = 0, - detectFromContent, - } - export enum TextTrimming { - none, - characterEllipsis, - wordEllipsis, - clip, - } - export enum TextWrapping { - noWrap = 1, - wrap, - wrapWholeWords, - } - export interface Thickness { - left: number; - top: number; - right: number; - bottom: number; - } - export class ThicknessHelper implements IThicknessHelper { - static fromLengths(left: number, top: number, right: number, bottom: number): Thickness { - throw new Error('shimmed function ThicknessHelper.fromLengths'); - } - - static fromUniformLength(uniformLength: number): Thickness { - throw new Error('shimmed function ThicknessHelper.fromUniformLength'); - } - - } - export class TriggerAction implements IDependencyObject, IDependencyObject2, ITriggerAction { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TriggerAction.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TriggerAction.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TriggerAction.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TriggerAction.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TriggerAction.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TriggerAction.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TriggerAction.unregisterPropertyChangedCallback'); - } - - } - export class TriggerActionCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): TriggerAction { - throw new Error('shimmed function TriggerActionCollection.getAt'); - } - - getView(): TriggerAction[] { - throw new Error('shimmed function TriggerActionCollection.getView'); - } - - indexOf(value: TriggerAction): { returnValue: Boolean, index: number } { - throw new Error('shimmed function TriggerActionCollection.indexOf'); - } - - setAt(index: number, value: TriggerAction): void { - console.warn('shimmed function TriggerActionCollection.setAt'); - } - - insertAt(index: number, value: TriggerAction): void { - console.warn('shimmed function TriggerActionCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function TriggerActionCollection.removeAt'); - } - - append(value: TriggerAction): void { - console.warn('shimmed function TriggerActionCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function TriggerActionCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function TriggerActionCollection.clear'); - } - - getMany(startIndex: number, items: TriggerAction[]): number { - throw new Error('shimmed function TriggerActionCollection.getMany'); - } - - replaceAll(items: TriggerAction[]): void { - console.warn('shimmed function TriggerActionCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function TriggerActionCollection.first'); - } - - } - export class TriggerBase implements IDependencyObject, IDependencyObject2, ITriggerBase { - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function TriggerBase.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function TriggerBase.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function TriggerBase.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function TriggerBase.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function TriggerBase.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function TriggerBase.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function TriggerBase.unregisterPropertyChangedCallback'); - } - - } - export class TriggerCollection implements Foundation.Collections.IVector, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): TriggerBase { - throw new Error('shimmed function TriggerCollection.getAt'); - } - - getView(): TriggerBase[] { - throw new Error('shimmed function TriggerCollection.getView'); - } - - indexOf(value: TriggerBase): { returnValue: Boolean, index: number } { - throw new Error('shimmed function TriggerCollection.indexOf'); - } - - setAt(index: number, value: TriggerBase): void { - console.warn('shimmed function TriggerCollection.setAt'); - } - - insertAt(index: number, value: TriggerBase): void { - console.warn('shimmed function TriggerCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function TriggerCollection.removeAt'); - } - - append(value: TriggerBase): void { - console.warn('shimmed function TriggerCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function TriggerCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function TriggerCollection.clear'); - } - - getMany(startIndex: number, items: TriggerBase[]): number { - throw new Error('shimmed function TriggerCollection.getMany'); - } - - replaceAll(items: TriggerBase[]): void { - console.warn('shimmed function TriggerCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function TriggerCollection.first'); - } - - } - export class UIElement implements IDependencyObject, IDependencyObject2, IUIElement, IUIElement2, IUIElement3, IUIElement4, IUIElement5, IUIElement7, IUIElement8, IUIElement9, IUIElement10, IUIElementOverrides, IUIElementOverrides7, IUIElementOverrides8, IUIElementOverrides9, Composition.IAnimationObject, Composition.IVisualElement { - transitions: Media.Animation.TransitionCollection; - projection: Media.Projection; - renderTransformOrigin: Foundation.Point; - opacity: number; - manipulationMode: Input.ManipulationModes; - isTapEnabled: Boolean; - isRightTapEnabled: Boolean; - isHoldingEnabled: Boolean; - isHitTestVisible: Boolean; - isDoubleTapEnabled: Boolean; - allowDrop: Boolean; - clip: Media.RectangleGeometry; - cacheMode: Media.CacheMode; - useLayoutRounding: Boolean; - renderTransform: Media.Transform; - visibility: Visibility; - desiredSize: Foundation.Size; - pointerCaptures: Input.Pointer[]; - renderSize: Foundation.Size; - shadow: Media.Shadow; - xamlRoot: XamlRoot; - actualOffset: Foundation.Numerics.Vector3; - actualSize: Foundation.Numerics.Vector2; - uicontext: UIContext; - compositeMode: Media.ElementCompositeMode; - transform3D: Media.Media3D.Transform3D; - canDrag: Boolean; - isAccessKeyScope: Boolean; - exitDisplayModeOnAccessKeyInvoked: Boolean; - contextFlyout: Controls.Primitives.FlyoutBase; - accessKeyScopeOwner: DependencyObject; - accessKey: string; - keyTipHorizontalOffset: number; - highContrastAdjustment: ElementHighContrastAdjustment; - xyfocusRightNavigationStrategy: Input.XYFocusNavigationStrategy; - xyfocusKeyboardNavigation: Input.XYFocusKeyboardNavigationMode; - xyfocusDownNavigationStrategy: Input.XYFocusNavigationStrategy; - tabFocusNavigation: Input.KeyboardNavigationMode; - keyTipVerticalOffset: number; - xyfocusUpNavigationStrategy: Input.XYFocusNavigationStrategy; - keyTipPlacementMode: Input.KeyTipPlacementMode; - xyfocusLeftNavigationStrategy: Input.XYFocusNavigationStrategy; - lights: Media.XamlLight[]; - keyboardAccelerators: Input.KeyboardAccelerator[]; - keyboardAcceleratorPlacementTarget: DependencyObject; - keyboardAcceleratorPlacementMode: Input.KeyboardAcceleratorPlacementMode; - keyTipTarget: DependencyObject; - centerPoint: Foundation.Numerics.Vector3; - translationTransition: Vector3Transition; - translation: Foundation.Numerics.Vector3; - transformMatrix: Foundation.Numerics.Matrix4x4; - scaleTransition: Vector3Transition; - scale: Foundation.Numerics.Vector3; - rotationTransition: ScalarTransition; - rotationAxis: Foundation.Numerics.Vector3; - rotation: number; - opacityTransition: ScalarTransition; - canBeScrollAnchor: Boolean; - static holdingEvent: RoutedEvent = null; - static isDoubleTapEnabledProperty: DependencyProperty = null; - static isHitTestVisibleProperty: DependencyProperty = null; - static isHoldingEnabledProperty: DependencyProperty = null; - static isRightTapEnabledProperty: DependencyProperty = null; - static keyDownEvent: RoutedEvent = null; - static keyUpEvent: RoutedEvent = null; - static manipulationCompletedEvent: RoutedEvent = null; - static manipulationDeltaEvent: RoutedEvent = null; - static isTapEnabledProperty: DependencyProperty = null; - static manipulationInertiaStartingEvent: RoutedEvent = null; - static manipulationModeProperty: DependencyProperty = null; - static manipulationStartedEvent: RoutedEvent = null; - static manipulationStartingEvent: RoutedEvent = null; - static opacityProperty: DependencyProperty = null; - static pointerCanceledEvent: RoutedEvent = null; - static pointerCaptureLostEvent: RoutedEvent = null; - static pointerCapturesProperty: DependencyProperty = null; - static pointerEnteredEvent: RoutedEvent = null; - static pointerExitedEvent: RoutedEvent = null; - static pointerMovedEvent: RoutedEvent = null; - static pointerPressedEvent: RoutedEvent = null; - static pointerWheelChangedEvent: RoutedEvent = null; - static projectionProperty: DependencyProperty = null; - static renderTransformOriginProperty: DependencyProperty = null; - static renderTransformProperty: DependencyProperty = null; - static rightTappedEvent: RoutedEvent = null; - static dragEnterEvent: RoutedEvent = null; - static tappedEvent: RoutedEvent = null; - static transitionsProperty: DependencyProperty = null; - static useLayoutRoundingProperty: DependencyProperty = null; - static visibilityProperty: DependencyProperty = null; - static allowDropProperty: DependencyProperty = null; - static cacheModeProperty: DependencyProperty = null; - static clipProperty: DependencyProperty = null; - static doubleTappedEvent: RoutedEvent = null; - static pointerReleasedEvent: RoutedEvent = null; - static dragLeaveEvent: RoutedEvent = null; - static dragOverEvent: RoutedEvent = null; - static dropEvent: RoutedEvent = null; - static shadowProperty: DependencyProperty = null; - static compositeModeProperty: DependencyProperty = null; - static canDragProperty: DependencyProperty = null; - static transform3DProperty: DependencyProperty = null; - static accessKeyProperty: DependencyProperty = null; - static accessKeyScopeOwnerProperty: DependencyProperty = null; - static contextFlyoutProperty: DependencyProperty = null; - static isAccessKeyScopeProperty: DependencyProperty = null; - static exitDisplayModeOnAccessKeyInvokedProperty: DependencyProperty = null; - static highContrastAdjustmentProperty: DependencyProperty = null; - static keyTipHorizontalOffsetProperty: DependencyProperty = null; - static keyTipPlacementModeProperty: DependencyProperty = null; - static keyTipVerticalOffsetProperty: DependencyProperty = null; - static lightsProperty: DependencyProperty = null; - static xyfocusDownNavigationStrategyProperty: DependencyProperty = null; - static xyfocusKeyboardNavigationProperty: DependencyProperty = null; - static xyfocusLeftNavigationStrategyProperty: DependencyProperty = null; - static xyfocusRightNavigationStrategyProperty: DependencyProperty = null; - static xyfocusUpNavigationStrategyProperty: DependencyProperty = null; - static tabFocusNavigationProperty: DependencyProperty = null; - static gettingFocusEvent: RoutedEvent = null; - static losingFocusEvent: RoutedEvent = null; - static noFocusCandidateFoundEvent: RoutedEvent = null; - static characterReceivedEvent: RoutedEvent = null; - static previewKeyDownEvent: RoutedEvent = null; - static previewKeyUpEvent: RoutedEvent = null; - static bringIntoViewRequestedEvent: RoutedEvent = null; - static contextRequestedEvent: RoutedEvent = null; - static keyTipTargetProperty: DependencyProperty = null; - static keyboardAcceleratorPlacementModeProperty: DependencyProperty = null; - static keyboardAcceleratorPlacementTargetProperty: DependencyProperty = null; - static canBeScrollAnchorProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function UIElement.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function UIElement.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function UIElement.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function UIElement.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function UIElement.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function UIElement.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function UIElement.unregisterPropertyChangedCallback'); - } - - measure(availableSize: Foundation.Size): void { - console.warn('shimmed function UIElement.measure'); - } - - arrange(finalRect: Foundation.Rect): void { - console.warn('shimmed function UIElement.arrange'); - } - - capturePointer(value: Input.Pointer): Boolean { - throw new Error('shimmed function UIElement.capturePointer'); - } - - releasePointerCapture(value: Input.Pointer): void { - console.warn('shimmed function UIElement.releasePointerCapture'); - } - - releasePointerCaptures(): void { - console.warn('shimmed function UIElement.releasePointerCaptures'); - } - - addHandler(routedEvent: RoutedEvent, handler: any, handledEventsToo: Boolean): void { - console.warn('shimmed function UIElement.addHandler'); - } - - removeHandler(routedEvent: RoutedEvent, handler: any): void { - console.warn('shimmed function UIElement.removeHandler'); - } - - transformToVisual(visual: UIElement): Media.GeneralTransform { - throw new Error('shimmed function UIElement.transformToVisual'); - } - - invalidateMeasure(): void { - console.warn('shimmed function UIElement.invalidateMeasure'); - } - - invalidateArrange(): void { - console.warn('shimmed function UIElement.invalidateArrange'); - } - - updateLayout(): void { - console.warn('shimmed function UIElement.updateLayout'); - } - - cancelDirectManipulations(): Boolean { - throw new Error('shimmed function UIElement.cancelDirectManipulations'); - } - - startDragAsync(pointerPoint: Input.PointerPoint): Foundation.IAsyncOperation { - throw new Error('shimmed function UIElement.startDragAsync'); - } - - startBringIntoView(): void { - console.warn('shimmed function UIElement.startBringIntoView'); - } - - startBringIntoView_1(options: BringIntoViewOptions): void { - console.warn('shimmed function UIElement.startBringIntoView_1'); - } - - tryInvokeKeyboardAccelerator(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function UIElement.tryInvokeKeyboardAccelerator'); - } - - startAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function UIElement.startAnimation'); - } - - stopAnimation(animation: Composition.ICompositionAnimationBase): void { - console.warn('shimmed function UIElement.stopAnimation'); - } - - onCreateAutomationPeer(): Automation.Peers.AutomationPeer { - throw new Error('shimmed function UIElement.onCreateAutomationPeer'); - } - - onDisconnectVisualChildren(): void { - console.warn('shimmed function UIElement.onDisconnectVisualChildren'); - } - - findSubElementsForTouchTargeting(point: Foundation.Point, boundingRect: Foundation.Rect): Foundation.Collections.IIterable> { - throw new Error('shimmed function UIElement.findSubElementsForTouchTargeting'); - } - - getChildrenInTabFocusOrder(): Foundation.Collections.IIterable { - throw new Error('shimmed function UIElement.getChildrenInTabFocusOrder'); - } - - onProcessKeyboardAccelerators(args: Input.ProcessKeyboardAcceleratorEventArgs): void { - console.warn('shimmed function UIElement.onProcessKeyboardAccelerators'); - } - - onKeyboardAcceleratorInvoked(args: Input.KeyboardAcceleratorInvokedEventArgs): void { - console.warn('shimmed function UIElement.onKeyboardAcceleratorInvoked'); - } - - onBringIntoViewRequested(e: BringIntoViewRequestedEventArgs): void { - console.warn('shimmed function UIElement.onBringIntoViewRequested'); - } - - populatePropertyInfoOverride(propertyName: string, animationPropertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function UIElement.populatePropertyInfoOverride'); - } - - populatePropertyInfo(propertyName: string, propertyInfo: Composition.AnimationPropertyInfo): void { - console.warn('shimmed function UIElement.populatePropertyInfo'); - } - - static registerAsScrollPort(element: UIElement): void { - console.warn('shimmed function UIElement.registerAsScrollPort'); - } - - static tryStartDirectManipulation(value: Input.Pointer): Boolean { - throw new Error('shimmed function UIElement.tryStartDirectManipulation'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`UIElement::addEventListener: ${name}`); - switch (name) { - case "doubletapped": // Input.DoubleTappedEventHandler - case "dragenter": // DragEventHandler - case "dragleave": // DragEventHandler - case "dragover": // DragEventHandler - case "drop": // DragEventHandler - case "gotfocus": // RoutedEventHandler - case "holding": // Input.HoldingEventHandler - case "keydown": // Input.KeyEventHandler - case "keyup": // Input.KeyEventHandler - case "lostfocus": // RoutedEventHandler - case "manipulationcompleted": // Input.ManipulationCompletedEventHandler - case "manipulationdelta": // Input.ManipulationDeltaEventHandler - case "manipulationinertiastarting": // Input.ManipulationInertiaStartingEventHandler - case "manipulationstarted": // Input.ManipulationStartedEventHandler - case "manipulationstarting": // Input.ManipulationStartingEventHandler - case "pointercanceled": // Input.PointerEventHandler - case "pointercapturelost": // Input.PointerEventHandler - case "pointerentered": // Input.PointerEventHandler - case "pointerexited": // Input.PointerEventHandler - case "pointermoved": // Input.PointerEventHandler - case "pointerpressed": // Input.PointerEventHandler - case "pointerreleased": // Input.PointerEventHandler - case "pointerwheelchanged": // Input.PointerEventHandler - case "righttapped": // Input.RightTappedEventHandler - case "tapped": // Input.TappedEventHandler - case "dragstarting": // Foundation.TypedEventHandler - case "dropcompleted": // Foundation.TypedEventHandler - case "accesskeydisplaydismissed": // Foundation.TypedEventHandler - case "accesskeydisplayrequested": // Foundation.TypedEventHandler - case "accesskeyinvoked": // Foundation.TypedEventHandler - case "contextcanceled": // Foundation.TypedEventHandler - case "contextrequested": // Foundation.TypedEventHandler - case "gettingfocus": // Foundation.TypedEventHandler - case "losingfocus": // Foundation.TypedEventHandler - case "nofocuscandidatefound": // Foundation.TypedEventHandler - case "characterreceived": // Foundation.TypedEventHandler - case "previewkeydown": // Input.KeyEventHandler - case "previewkeyup": // Input.KeyEventHandler - case "processkeyboardaccelerators": // Foundation.TypedEventHandler - case "bringintoviewrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class UIElementWeakCollection implements IUIElementWeakCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable { - // constructor(); - size: number; - - getAt(index: number): UIElement { - throw new Error('shimmed function UIElementWeakCollection.getAt'); - } - - getView(): UIElement[] { - throw new Error('shimmed function UIElementWeakCollection.getView'); - } - - indexOf(value: UIElement): { returnValue: Boolean, index: number } { - throw new Error('shimmed function UIElementWeakCollection.indexOf'); - } - - setAt(index: number, value: UIElement): void { - console.warn('shimmed function UIElementWeakCollection.setAt'); - } - - insertAt(index: number, value: UIElement): void { - console.warn('shimmed function UIElementWeakCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function UIElementWeakCollection.removeAt'); - } - - append(value: UIElement): void { - console.warn('shimmed function UIElementWeakCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function UIElementWeakCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function UIElementWeakCollection.clear'); - } - - getMany(startIndex: number, items: UIElement[]): number { - throw new Error('shimmed function UIElementWeakCollection.getMany'); - } - - replaceAll(items: UIElement[]): void { - console.warn('shimmed function UIElementWeakCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function UIElementWeakCollection.first'); - } - - } - export class UnhandledExceptionEventArgs implements IUnhandledExceptionEventArgs { - handled: Boolean; - exception: number; - message: string; - - } - export type UnhandledExceptionEventHandler = (e: UnhandledExceptionEventArgs) => void; - export class Vector3Transition implements IVector3Transition { - // constructor(); - duration: number = 300; - components: Vector3TransitionComponents = X, Y, Z; - - } - export enum Vector3TransitionComponents { - x = 1, - y, - z = 4, - } - export enum VerticalAlignment { - top, - center, - bottom, - stretch, - } - export enum Visibility { - visible, - collapsed, - } - export class VisualState implements IDependencyObject, IDependencyObject2, IVisualState, IVisualState2 { - // constructor(); - storyboard: Media.Animation.Storyboard; - name: string = ''; - setters: SetterBaseCollection = [ ]; - stateTriggers: StateTriggerBase[] = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualState.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VisualState.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VisualState.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualState.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualState.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VisualState.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VisualState.unregisterPropertyChangedCallback'); - } - - } - export class VisualStateChangedEventArgs implements IVisualStateChangedEventArgs { - // constructor(); - oldState: VisualState; - newState: VisualState; - control: Controls.Control; - - } - export type VisualStateChangedEventHandler = (e: VisualStateChangedEventArgs) => void; - export class VisualStateGroup implements IDependencyObject, IDependencyObject2, IVisualStateGroup { - // constructor(); - currentState: VisualState; - name: string = ''; - states: VisualState[] = [ ]; - transitions: VisualTransition[] = [ ]; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualStateGroup.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VisualStateGroup.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VisualStateGroup.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualStateGroup.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualStateGroup.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VisualStateGroup.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VisualStateGroup.unregisterPropertyChangedCallback'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`VisualStateGroup::addEventListener: ${name}`); - switch (name) { - case "currentstatechanged": // VisualStateChangedEventHandler - case "currentstatechanging": // VisualStateChangedEventHandler - break; - } - - } - } - export class VisualStateManager implements IDependencyObject, IDependencyObject2, IVisualStateManager, IVisualStateManagerProtected, IVisualStateManagerOverrides { - // constructor(); - static customVisualStateManagerProperty: DependencyProperty = null; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualStateManager.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VisualStateManager.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VisualStateManager.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualStateManager.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualStateManager.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VisualStateManager.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VisualStateManager.unregisterPropertyChangedCallback'); - } - - raiseCurrentStateChanging(stateGroup: VisualStateGroup, oldState: VisualState, newState: VisualState, control: Controls.Control): void { - console.warn('shimmed function VisualStateManager.raiseCurrentStateChanging'); - } - - raiseCurrentStateChanged(stateGroup: VisualStateGroup, oldState: VisualState, newState: VisualState, control: Controls.Control): void { - console.warn('shimmed function VisualStateManager.raiseCurrentStateChanged'); - } - - goToStateCore(control: Controls.Control, templateRoot: FrameworkElement, stateName: string, group: VisualStateGroup, state: VisualState, useTransitions: Boolean): Boolean { - throw new Error('shimmed function VisualStateManager.goToStateCore'); - } - - static getVisualStateGroups(obj: FrameworkElement): VisualStateGroup[] { - throw new Error('shimmed function VisualStateManager.getVisualStateGroups'); - } - - static getCustomVisualStateManager(obj: FrameworkElement): VisualStateManager { - throw new Error('shimmed function VisualStateManager.getCustomVisualStateManager'); - } - - static setCustomVisualStateManager(obj: FrameworkElement, value: VisualStateManager): void { - console.warn('shimmed function VisualStateManager.setCustomVisualStateManager'); - } - - static goToState(control: Controls.Control, stateName: string, useTransitions: Boolean): Boolean { - throw new Error('shimmed function VisualStateManager.goToState'); - } - - } - export class VisualTransition implements IDependencyObject, IDependencyObject2, IVisualTransition { - // constructor(); - to: string = ''; - storyboard: Media.Animation.Storyboard; - generatedEasingFunction: Media.Animation.EasingFunctionBase; - generatedDuration: /* Windows.UI.Xaml.Duration */ any = null; - from: string = ''; - dispatcher: Core.CoreDispatcher = null; - - getValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualTransition.getValue'); - } - - setValue(dp: DependencyProperty, value: any): void { - console.warn('shimmed function VisualTransition.setValue'); - } - - clearValue(dp: DependencyProperty): void { - console.warn('shimmed function VisualTransition.clearValue'); - } - - readLocalValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualTransition.readLocalValue'); - } - - getAnimationBaseValue(dp: DependencyProperty): any { - throw new Error('shimmed function VisualTransition.getAnimationBaseValue'); - } - - registerPropertyChangedCallback(dp: DependencyProperty, callback: DependencyPropertyChangedCallback): number { - throw new Error('shimmed function VisualTransition.registerPropertyChangedCallback'); - } - - unregisterPropertyChangedCallback(dp: DependencyProperty, token: number): void { - console.warn('shimmed function VisualTransition.unregisterPropertyChangedCallback'); - } - - } - export class Window implements IWindow, IWindow2, IWindow3, IWindow4 { - content: UIElement; - bounds: Foundation.Rect; - coreWindow: Core.CoreWindow; - dispatcher: Core.CoreDispatcher; - visible: Boolean; - compositor: Composition.Compositor; - uicontext: UIContext; - static current: Window = null; - - activate(): void { - console.warn('shimmed function Window.activate'); - } - - close(): void { - console.warn('shimmed function Window.close'); - } - - setTitleBar(value: UIElement): void { - console.warn('shimmed function Window.setTitleBar'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`Window::addEventListener: ${name}`); - switch (name) { - case "activated": // WindowActivatedEventHandler - case "closed": // WindowClosedEventHandler - case "sizechanged": // WindowSizeChangedEventHandler - case "visibilitychanged": // WindowVisibilityChangedEventHandler - break; - } - - } - } - export type WindowActivatedEventHandler = (e: Core.WindowActivatedEventArgs) => void; - export type WindowClosedEventHandler = (e: Core.CoreWindowEventArgs) => void; - export class WindowCreatedEventArgs implements IWindowCreatedEventArgs { - window: Window; - - } - export type WindowSizeChangedEventHandler = (e: Core.WindowSizeChangedEventArgs) => void; - export type WindowVisibilityChangedEventHandler = (e: Core.VisibilityChangedEventArgs) => void; - export class XamlRoot implements IXamlRoot { - content: UIElement; - isHostVisible: Boolean; - rasterizationScale: number; - size: Foundation.Size; - uicontext: UIContext; - - addEventListener(name: string, handler: Function) { - console.warn(`XamlRoot::addEventListener: ${name}`); - switch (name) { - case "changed": // Foundation.TypedEventHandler - break; - } - - } - } - export class XamlRootChangedEventArgs implements IXamlRootChangedEventArgs { - } - } - } - export namespace Web { - export namespace AtomPub { - export class AtomPubClient implements IAtomPubClient, Syndication.ISyndicationClient { - // constructor(serverCredential: Security.Credentials.PasswordCredential); - // constructor(); - constructor(serverCredential: Security.Credentials.PasswordCredential) {} - - timeout: number = 30000; - serverCredential: Security.Credentials.PasswordCredential; - proxyCredential: Security.Credentials.PasswordCredential; - maxResponseBufferSize: number = 4294967295; - bypassCacheOnRetrieve: Boolean = false; - - retrieveServiceDocumentAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function AtomPubClient.retrieveServiceDocumentAsync'); - } - - retrieveMediaResourceAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function AtomPubClient.retrieveMediaResourceAsync'); - } - - retrieveResourceAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function AtomPubClient.retrieveResourceAsync'); - } - - createResourceAsync(uri: Foundation.Uri, description: string, item: Syndication.SyndicationItem): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function AtomPubClient.createResourceAsync'); - } - - createMediaResourceAsync(uri: Foundation.Uri, mediaType: string, description: string, mediaStream: Storage.Streams.IInputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function AtomPubClient.createMediaResourceAsync'); - } - - updateMediaResourceAsync(uri: Foundation.Uri, mediaType: string, mediaStream: Storage.Streams.IInputStream): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function AtomPubClient.updateMediaResourceAsync'); - } - - updateResourceAsync(uri: Foundation.Uri, item: Syndication.SyndicationItem): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function AtomPubClient.updateResourceAsync'); - } - - updateResourceItemAsync(item: Syndication.SyndicationItem): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function AtomPubClient.updateResourceItemAsync'); - } - - deleteResourceAsync(uri: Foundation.Uri): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function AtomPubClient.deleteResourceAsync'); - } - - deleteResourceItemAsync(item: Syndication.SyndicationItem): Foundation.IAsyncActionWithProgress { - throw new Error('shimmed function AtomPubClient.deleteResourceItemAsync'); - } - - cancelAsyncOperations(): void { - console.warn('shimmed function AtomPubClient.cancelAsyncOperations'); - } - - setRequestHeader(name: string, value: string): void { - console.warn('shimmed function AtomPubClient.setRequestHeader'); - } - - retrieveFeedAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function AtomPubClient.retrieveFeedAsync'); - } - - } - export class ResourceCollection implements IResourceCollection, Syndication.ISyndicationNode { - accepts: string[]; - categories: Syndication.SyndicationCategory[]; - title: Syndication.ISyndicationText; - uri: Foundation.Uri; - baseUri: Foundation.Uri; - nodeValue: string; - nodeNamespace: string; - nodeName: string; - language: string; - attributeExtensions: Syndication.SyndicationAttribute[]; - elementExtensions: Syndication.ISyndicationNode[]; - - getXmlDocument(format: Syndication.SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function ResourceCollection.getXmlDocument'); - } - - } - export class ServiceDocument implements IServiceDocument, Syndication.ISyndicationNode { - workspaces: Workspace[]; - nodeValue: string; - nodeNamespace: string; - nodeName: string; - language: string; - baseUri: Foundation.Uri; - attributeExtensions: Syndication.SyndicationAttribute[]; - elementExtensions: Syndication.ISyndicationNode[]; - - getXmlDocument(format: Syndication.SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function ServiceDocument.getXmlDocument'); - } - - } - export class Workspace implements IWorkspace, Syndication.ISyndicationNode { - collections: ResourceCollection[]; - title: Syndication.ISyndicationText; - nodeValue: string; - nodeNamespace: string; - nodeName: string; - language: string; - baseUri: Foundation.Uri; - attributeExtensions: Syndication.SyndicationAttribute[]; - elementExtensions: Syndication.ISyndicationNode[]; - - getXmlDocument(format: Syndication.SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function Workspace.getXmlDocument'); - } - - } - } - export namespace Http { - export namespace Diagnostics { - export class HttpDiagnosticProvider implements IHttpDiagnosticProvider { - start(): void { - console.warn('shimmed function HttpDiagnosticProvider.start'); - } - - stop(): void { - console.warn('shimmed function HttpDiagnosticProvider.stop'); - } - - static createFromProcessDiagnosticInfo(processDiagnosticInfo: System.Diagnostics.ProcessDiagnosticInfo): HttpDiagnosticProvider { - throw new Error('shimmed function HttpDiagnosticProvider.createFromProcessDiagnosticInfo'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HttpDiagnosticProvider::addEventListener: ${name}`); - switch (name) { - case "requestresponsecompleted": // Foundation.TypedEventHandler - case "requestsent": // Foundation.TypedEventHandler - case "responsereceived": // Foundation.TypedEventHandler - break; - } - - } - } - export class HttpDiagnosticProviderRequestResponseCompletedEventArgs implements IHttpDiagnosticProviderRequestResponseCompletedEventArgs { - activityId: string; - initiator: HttpDiagnosticRequestInitiator; - processId: number; - requestedUri: Foundation.Uri; - sourceLocations: HttpDiagnosticSourceLocation[]; - threadId: number; - timestamps: HttpDiagnosticProviderRequestResponseTimestamps; - - } - export class HttpDiagnosticProviderRequestResponseTimestamps implements IHttpDiagnosticProviderRequestResponseTimestamps { - cacheCheckedTimestamp: Date | null; - connectionCompletedTimestamp: Date | null; - connectionInitiatedTimestamp: Date | null; - nameResolvedTimestamp: Date | null; - requestCompletedTimestamp: Date | null; - requestSentTimestamp: Date | null; - responseCompletedTimestamp: Date | null; - responseReceivedTimestamp: Date | null; - sslNegotiatedTimestamp: Date | null; - - } - export class HttpDiagnosticProviderRequestSentEventArgs implements IHttpDiagnosticProviderRequestSentEventArgs { - activityId: string; - initiator: HttpDiagnosticRequestInitiator; - message: HttpRequestMessage; - processId: number; - sourceLocations: HttpDiagnosticSourceLocation[]; - threadId: number; - timestamp: Date; - - } - export class HttpDiagnosticProviderResponseReceivedEventArgs implements IHttpDiagnosticProviderResponseReceivedEventArgs { - activityId: string; - message: HttpResponseMessage; - timestamp: Date; - - } - export enum HttpDiagnosticRequestInitiator { - parsedElement, - script, - image, - link, - style, - xmlHttpRequest, - media, - htmlDownload, - prefetch, - other, - crossOriginPreFlight, - fetch, - beacon, - } - export interface HttpDiagnosticsContract { - } - export class HttpDiagnosticSourceLocation implements IHttpDiagnosticSourceLocation { - columnNumber: number; - lineNumber: number; - sourceUri: Foundation.Uri; - - } - } - export namespace Filters { - export class HttpBaseProtocolFilter implements IHttpBaseProtocolFilter, IHttpBaseProtocolFilter2, IHttpBaseProtocolFilter3, IHttpBaseProtocolFilter4, IHttpBaseProtocolFilter5, IHttpFilter, Foundation.IClosable { - // constructor(); - useProxy: Boolean = true; - serverCredential: Security.Credentials.PasswordCredential; - proxyCredential: Security.Credentials.PasswordCredential; - maxConnectionsPerServer: number = 6; - clientCertificate: Security.Cryptography.Certificates.Certificate; - automaticDecompression: Boolean = true; - allowUI: Boolean = true; - allowAutoRedirect: Boolean = true; - cacheControl: HttpCacheControl = null; - cookieManager: HttpCookieManager = null; - ignorableServerCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[] = [ ]; - maxVersion: HttpVersion = HttpVersion.http20; - cookieUsageBehavior: HttpCookieUsageBehavior = HttpCookieUsageBehavior.default; - user: System.User; - - clearAuthenticationCache(): void { - console.warn('shimmed function HttpBaseProtocolFilter.clearAuthenticationCache'); - } - - sendRequestAsync(request: HttpRequestMessage): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpBaseProtocolFilter.sendRequestAsync'); - } - - close(): void { - console.warn('shimmed function HttpBaseProtocolFilter.close'); - } - - static createForUser(user: System.User): HttpBaseProtocolFilter { - throw new Error('shimmed function HttpBaseProtocolFilter.createForUser'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`HttpBaseProtocolFilter::addEventListener: ${name}`); - switch (name) { - case "servercustomvalidationrequested": // Foundation.TypedEventHandler - break; - } - - } - } - export class HttpCacheControl implements IHttpCacheControl { - writeBehavior: HttpCacheWriteBehavior; - readBehavior: HttpCacheReadBehavior; - - } - export enum HttpCacheReadBehavior { - default, - mostRecent, - onlyFromCache, - noCache, - } - export enum HttpCacheWriteBehavior { - default, - noCache, - } - export enum HttpCookieUsageBehavior { - default, - noCookies, - } - export class HttpServerCustomValidationRequestedEventArgs implements IHttpServerCustomValidationRequestedEventArgs { - requestMessage: HttpRequestMessage; - serverCertificate: Security.Cryptography.Certificates.Certificate; - serverCertificateErrorSeverity: Networking.Sockets.SocketSslErrorSeverity; - serverCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serverIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - - reject(): void { - console.warn('shimmed function HttpServerCustomValidationRequestedEventArgs.reject'); - } - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function HttpServerCustomValidationRequestedEventArgs.getDeferral'); - } - - } - export interface IHttpFilter extends Foundation.IClosable { - sendRequestAsync(request: HttpRequestMessage): Foundation.IAsyncOperationWithProgress; - } - } - export namespace Headers { - export class HttpCacheDirectiveHeaderValueCollection implements IHttpCacheDirectiveHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - sharedMaxAge: number | null; - minFresh: number | null; - maxStale: number | null; - maxAge: number | null; - - parseAdd(input: string): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpCacheDirectiveHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpNameValueHeaderValue { - throw new Error('shimmed function HttpCacheDirectiveHeaderValueCollection.getAt'); - } - - getView(): HttpNameValueHeaderValue[] { - throw new Error('shimmed function HttpCacheDirectiveHeaderValueCollection.getView'); - } - - indexOf(value: HttpNameValueHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpCacheDirectiveHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpNameValueHeaderValue): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpNameValueHeaderValue): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.removeAt'); - } - - append(value: HttpNameValueHeaderValue): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpNameValueHeaderValue[]): number { - throw new Error('shimmed function HttpCacheDirectiveHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpNameValueHeaderValue[]): void { - console.warn('shimmed function HttpCacheDirectiveHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpCacheDirectiveHeaderValueCollection.first'); - } - - } - export class HttpChallengeHeaderValue implements IHttpChallengeHeaderValue, Foundation.IStringable { - // constructor(scheme: string); - // constructor(scheme: string, token: string); - constructor(scheme: string, token: string) {} - - parameters: HttpNameValueHeaderValue[]; - scheme: string; - token: string; - - static parse(input: string): HttpChallengeHeaderValue { - throw new Error('shimmed function HttpChallengeHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, challengeHeaderValue: HttpChallengeHeaderValue } { - throw new Error('shimmed function HttpChallengeHeaderValue.tryParse'); - } - - } - export class HttpChallengeHeaderValueCollection implements IHttpChallengeHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpChallengeHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpChallengeHeaderValue { - throw new Error('shimmed function HttpChallengeHeaderValueCollection.getAt'); - } - - getView(): HttpChallengeHeaderValue[] { - throw new Error('shimmed function HttpChallengeHeaderValueCollection.getView'); - } - - indexOf(value: HttpChallengeHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpChallengeHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpChallengeHeaderValue): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpChallengeHeaderValue): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.removeAt'); - } - - append(value: HttpChallengeHeaderValue): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpChallengeHeaderValue[]): number { - throw new Error('shimmed function HttpChallengeHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpChallengeHeaderValue[]): void { - console.warn('shimmed function HttpChallengeHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpChallengeHeaderValueCollection.first'); - } - - } - export class HttpConnectionOptionHeaderValue implements IHttpConnectionOptionHeaderValue, Foundation.IStringable { - // constructor(token: string); - constructor(token: string) {} - - token: string; - - static parse(input: string): HttpConnectionOptionHeaderValue { - throw new Error('shimmed function HttpConnectionOptionHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, connectionOptionHeaderValue: HttpConnectionOptionHeaderValue } { - throw new Error('shimmed function HttpConnectionOptionHeaderValue.tryParse'); - } - - } - export class HttpConnectionOptionHeaderValueCollection implements IHttpConnectionOptionHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpConnectionOptionHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpConnectionOptionHeaderValue { - throw new Error('shimmed function HttpConnectionOptionHeaderValueCollection.getAt'); - } - - getView(): HttpConnectionOptionHeaderValue[] { - throw new Error('shimmed function HttpConnectionOptionHeaderValueCollection.getView'); - } - - indexOf(value: HttpConnectionOptionHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpConnectionOptionHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpConnectionOptionHeaderValue): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpConnectionOptionHeaderValue): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.removeAt'); - } - - append(value: HttpConnectionOptionHeaderValue): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpConnectionOptionHeaderValue[]): number { - throw new Error('shimmed function HttpConnectionOptionHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpConnectionOptionHeaderValue[]): void { - console.warn('shimmed function HttpConnectionOptionHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpConnectionOptionHeaderValueCollection.first'); - } - - } - export class HttpContentCodingHeaderValue implements IHttpContentCodingHeaderValue, Foundation.IStringable { - // constructor(contentCoding: string); - constructor(contentCoding: string) {} - - contentCoding: string; - - static parse(input: string): HttpContentCodingHeaderValue { - throw new Error('shimmed function HttpContentCodingHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, contentCodingHeaderValue: HttpContentCodingHeaderValue } { - throw new Error('shimmed function HttpContentCodingHeaderValue.tryParse'); - } - - } - export class HttpContentCodingHeaderValueCollection implements IHttpContentCodingHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpContentCodingHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpContentCodingHeaderValue { - throw new Error('shimmed function HttpContentCodingHeaderValueCollection.getAt'); - } - - getView(): HttpContentCodingHeaderValue[] { - throw new Error('shimmed function HttpContentCodingHeaderValueCollection.getView'); - } - - indexOf(value: HttpContentCodingHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpContentCodingHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpContentCodingHeaderValue): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpContentCodingHeaderValue): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.removeAt'); - } - - append(value: HttpContentCodingHeaderValue): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpContentCodingHeaderValue[]): number { - throw new Error('shimmed function HttpContentCodingHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpContentCodingHeaderValue[]): void { - console.warn('shimmed function HttpContentCodingHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpContentCodingHeaderValueCollection.first'); - } - - } - export class HttpContentCodingWithQualityHeaderValue implements IHttpContentCodingWithQualityHeaderValue, Foundation.IStringable { - // constructor(contentCoding: string); - // constructor(contentCoding: string, quality: number); - constructor(contentCoding: string, quality: number) {} - - contentCoding: string; - quality: number | null; - - static parse(input: string): HttpContentCodingWithQualityHeaderValue { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, contentCodingWithQualityHeaderValue: HttpContentCodingWithQualityHeaderValue } { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValue.tryParse'); - } - - } - export class HttpContentCodingWithQualityHeaderValueCollection implements IHttpContentCodingWithQualityHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpContentCodingWithQualityHeaderValue { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValueCollection.getAt'); - } - - getView(): HttpContentCodingWithQualityHeaderValue[] { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValueCollection.getView'); - } - - indexOf(value: HttpContentCodingWithQualityHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpContentCodingWithQualityHeaderValue): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpContentCodingWithQualityHeaderValue): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.removeAt'); - } - - append(value: HttpContentCodingWithQualityHeaderValue): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpContentCodingWithQualityHeaderValue[]): number { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpContentCodingWithQualityHeaderValue[]): void { - console.warn('shimmed function HttpContentCodingWithQualityHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpContentCodingWithQualityHeaderValueCollection.first'); - } - - } - export class HttpContentDispositionHeaderValue implements IHttpContentDispositionHeaderValue, Foundation.IStringable { - // constructor(dispositionType: string); - constructor(dispositionType: string) {} - - size: number | null; - name: string; - fileNameStar: string; - fileName: string; - dispositionType: string; - parameters: HttpNameValueHeaderValue[]; - - static parse(input: string): HttpContentDispositionHeaderValue { - throw new Error('shimmed function HttpContentDispositionHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, contentDispositionHeaderValue: HttpContentDispositionHeaderValue } { - throw new Error('shimmed function HttpContentDispositionHeaderValue.tryParse'); - } - - } - export class HttpContentHeaderCollection implements IHttpContentHeaderCollection, Foundation.Collections.IMap, Foundation.Collections.IIterable>, Foundation.IStringable { - // constructor(); - size: number; - lastModified: Date | null; - expires: Date | null; - contentType: HttpMediaTypeHeaderValue; - contentRange: HttpContentRangeHeaderValue; - contentMD5: Storage.Streams.IBuffer; - contentLocation: Foundation.Uri; - contentLength: number | null; - contentDisposition: HttpContentDispositionHeaderValue; - contentEncoding: HttpContentCodingHeaderValueCollection = [ ]; - contentLanguage: HttpLanguageHeaderValueCollection = [ ]; - - append(name: string, value: string): void { - console.warn('shimmed function HttpContentHeaderCollection.append'); - } - - tryAppendWithoutValidation(name: string, value: string): Boolean { - throw new Error('shimmed function HttpContentHeaderCollection.tryAppendWithoutValidation'); - } - - lookup(key: string): string { - throw new Error('shimmed function HttpContentHeaderCollection.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function HttpContentHeaderCollection.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function HttpContentHeaderCollection.getView'); - } - - insert(key: string, value: string): Boolean { - throw new Error('shimmed function HttpContentHeaderCollection.insert'); - } - - clear(): void { - console.warn('shimmed function HttpContentHeaderCollection.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function HttpContentHeaderCollection.first'); - } - - } - export class HttpContentRangeHeaderValue implements IHttpContentRangeHeaderValue, Foundation.IStringable { - // constructor(length: number); - // constructor(from: number, to: number); - // constructor(from: number, to: number, length: number); - constructor(length: number, from: number, to: number) {} - - unit: string; - firstBytePosition: number | null; - lastBytePosition: number | null; - length: number | null; - - static parse(input: string): HttpContentRangeHeaderValue { - throw new Error('shimmed function HttpContentRangeHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, contentRangeHeaderValue: HttpContentRangeHeaderValue } { - throw new Error('shimmed function HttpContentRangeHeaderValue.tryParse'); - } - - } - export class HttpCookiePairHeaderValue implements IHttpCookiePairHeaderValue, Foundation.IStringable { - // constructor(name: string); - // constructor(name: string, value: string); - constructor(name: string, value: string) {} - - value: string; - name: string; - - static parse(input: string): HttpCookiePairHeaderValue { - throw new Error('shimmed function HttpCookiePairHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, cookiePairHeaderValue: HttpCookiePairHeaderValue } { - throw new Error('shimmed function HttpCookiePairHeaderValue.tryParse'); - } - - } - export class HttpCookiePairHeaderValueCollection implements IHttpCookiePairHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpCookiePairHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpCookiePairHeaderValue { - throw new Error('shimmed function HttpCookiePairHeaderValueCollection.getAt'); - } - - getView(): HttpCookiePairHeaderValue[] { - throw new Error('shimmed function HttpCookiePairHeaderValueCollection.getView'); - } - - indexOf(value: HttpCookiePairHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpCookiePairHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpCookiePairHeaderValue): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpCookiePairHeaderValue): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.removeAt'); - } - - append(value: HttpCookiePairHeaderValue): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpCookiePairHeaderValue[]): number { - throw new Error('shimmed function HttpCookiePairHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpCookiePairHeaderValue[]): void { - console.warn('shimmed function HttpCookiePairHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpCookiePairHeaderValueCollection.first'); - } - - } - export class HttpCredentialsHeaderValue implements IHttpCredentialsHeaderValue, Foundation.IStringable { - // constructor(scheme: string); - // constructor(scheme: string, token: string); - constructor(scheme: string, token: string) {} - - parameters: HttpNameValueHeaderValue[]; - scheme: string; - token: string; - - static parse(input: string): HttpCredentialsHeaderValue { - throw new Error('shimmed function HttpCredentialsHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, credentialsHeaderValue: HttpCredentialsHeaderValue } { - throw new Error('shimmed function HttpCredentialsHeaderValue.tryParse'); - } - - } - export class HttpDateOrDeltaHeaderValue implements IHttpDateOrDeltaHeaderValue, Foundation.IStringable { - date: Date | null; - delta: number | null; - - static parse(input: string): HttpDateOrDeltaHeaderValue { - throw new Error('shimmed function HttpDateOrDeltaHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, dateOrDeltaHeaderValue: HttpDateOrDeltaHeaderValue } { - throw new Error('shimmed function HttpDateOrDeltaHeaderValue.tryParse'); - } - - } - export class HttpExpectationHeaderValue implements IHttpExpectationHeaderValue, Foundation.IStringable { - // constructor(name: string); - // constructor(name: string, value: string); - constructor(name: string, value: string) {} - - value: string; - name: string; - parameters: HttpNameValueHeaderValue[]; - - static parse(input: string): HttpExpectationHeaderValue { - throw new Error('shimmed function HttpExpectationHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, expectationHeaderValue: HttpExpectationHeaderValue } { - throw new Error('shimmed function HttpExpectationHeaderValue.tryParse'); - } - - } - export class HttpExpectationHeaderValueCollection implements IHttpExpectationHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpExpectationHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpExpectationHeaderValue { - throw new Error('shimmed function HttpExpectationHeaderValueCollection.getAt'); - } - - getView(): HttpExpectationHeaderValue[] { - throw new Error('shimmed function HttpExpectationHeaderValueCollection.getView'); - } - - indexOf(value: HttpExpectationHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpExpectationHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpExpectationHeaderValue): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpExpectationHeaderValue): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.removeAt'); - } - - append(value: HttpExpectationHeaderValue): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpExpectationHeaderValue[]): number { - throw new Error('shimmed function HttpExpectationHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpExpectationHeaderValue[]): void { - console.warn('shimmed function HttpExpectationHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpExpectationHeaderValueCollection.first'); - } - - } - export class HttpLanguageHeaderValueCollection implements IHttpLanguageHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpLanguageHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): Globalization.Language { - throw new Error('shimmed function HttpLanguageHeaderValueCollection.getAt'); - } - - getView(): Globalization.Language[] { - throw new Error('shimmed function HttpLanguageHeaderValueCollection.getView'); - } - - indexOf(value: Globalization.Language): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpLanguageHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: Globalization.Language): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: Globalization.Language): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.removeAt'); - } - - append(value: Globalization.Language): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: Globalization.Language[]): number { - throw new Error('shimmed function HttpLanguageHeaderValueCollection.getMany'); - } - - replaceAll(items: Globalization.Language[]): void { - console.warn('shimmed function HttpLanguageHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpLanguageHeaderValueCollection.first'); - } - - } - export class HttpLanguageRangeWithQualityHeaderValue implements IHttpLanguageRangeWithQualityHeaderValue, Foundation.IStringable { - // constructor(languageRange: string); - // constructor(languageRange: string, quality: number); - constructor(languageRange: string, quality: number) {} - - languageRange: string; - quality: number | null; - - static parse(input: string): HttpLanguageRangeWithQualityHeaderValue { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, languageRangeWithQualityHeaderValue: HttpLanguageRangeWithQualityHeaderValue } { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValue.tryParse'); - } - - } - export class HttpLanguageRangeWithQualityHeaderValueCollection implements IHttpLanguageRangeWithQualityHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpLanguageRangeWithQualityHeaderValue { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.getAt'); - } - - getView(): HttpLanguageRangeWithQualityHeaderValue[] { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.getView'); - } - - indexOf(value: HttpLanguageRangeWithQualityHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpLanguageRangeWithQualityHeaderValue): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpLanguageRangeWithQualityHeaderValue): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.removeAt'); - } - - append(value: HttpLanguageRangeWithQualityHeaderValue): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpLanguageRangeWithQualityHeaderValue[]): number { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpLanguageRangeWithQualityHeaderValue[]): void { - console.warn('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpLanguageRangeWithQualityHeaderValueCollection.first'); - } - - } - export class HttpMediaTypeHeaderValue implements IHttpMediaTypeHeaderValue, Foundation.IStringable { - // constructor(mediaType: string); - constructor(mediaType: string) {} - - mediaType: string; - charSet: string; - parameters: HttpNameValueHeaderValue[]; - - static parse(input: string): HttpMediaTypeHeaderValue { - throw new Error('shimmed function HttpMediaTypeHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, mediaTypeHeaderValue: HttpMediaTypeHeaderValue } { - throw new Error('shimmed function HttpMediaTypeHeaderValue.tryParse'); - } - - } - export class HttpMediaTypeWithQualityHeaderValue implements IHttpMediaTypeWithQualityHeaderValue, Foundation.IStringable { - // constructor(mediaType: string); - // constructor(mediaType: string, quality: number); - constructor(mediaType: string, quality: number) {} - - quality: number | null; - mediaType: string; - charSet: string; - parameters: HttpNameValueHeaderValue[]; - - static parse(input: string): HttpMediaTypeWithQualityHeaderValue { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, mediaTypeWithQualityHeaderValue: HttpMediaTypeWithQualityHeaderValue } { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValue.tryParse'); - } - - } - export class HttpMediaTypeWithQualityHeaderValueCollection implements IHttpMediaTypeWithQualityHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpMediaTypeWithQualityHeaderValue { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.getAt'); - } - - getView(): HttpMediaTypeWithQualityHeaderValue[] { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.getView'); - } - - indexOf(value: HttpMediaTypeWithQualityHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpMediaTypeWithQualityHeaderValue): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpMediaTypeWithQualityHeaderValue): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.removeAt'); - } - - append(value: HttpMediaTypeWithQualityHeaderValue): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpMediaTypeWithQualityHeaderValue[]): number { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpMediaTypeWithQualityHeaderValue[]): void { - console.warn('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpMediaTypeWithQualityHeaderValueCollection.first'); - } - - } - export class HttpMethodHeaderValueCollection implements IHttpMethodHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpMethodHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpMethod { - throw new Error('shimmed function HttpMethodHeaderValueCollection.getAt'); - } - - getView(): HttpMethod[] { - throw new Error('shimmed function HttpMethodHeaderValueCollection.getView'); - } - - indexOf(value: HttpMethod): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpMethodHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpMethod): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpMethod): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.removeAt'); - } - - append(value: HttpMethod): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpMethod[]): number { - throw new Error('shimmed function HttpMethodHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpMethod[]): void { - console.warn('shimmed function HttpMethodHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpMethodHeaderValueCollection.first'); - } - - } - export class HttpNameValueHeaderValue implements IHttpNameValueHeaderValue, Foundation.IStringable { - // constructor(name: string); - // constructor(name: string, value: string); - constructor(name: string, value: string) {} - - value: string; - name: string; - - static parse(input: string): HttpNameValueHeaderValue { - throw new Error('shimmed function HttpNameValueHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, nameValueHeaderValue: HttpNameValueHeaderValue } { - throw new Error('shimmed function HttpNameValueHeaderValue.tryParse'); - } - - } - export class HttpProductHeaderValue implements IHttpProductHeaderValue, Foundation.IStringable { - // constructor(productName: string); - // constructor(productName: string, productVersion: string); - constructor(productName: string, productVersion: string) {} - - name: string; - version: string; - - static parse(input: string): HttpProductHeaderValue { - throw new Error('shimmed function HttpProductHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, productHeaderValue: HttpProductHeaderValue } { - throw new Error('shimmed function HttpProductHeaderValue.tryParse'); - } - - } - export class HttpProductInfoHeaderValue implements IHttpProductInfoHeaderValue, Foundation.IStringable { - // constructor(productComment: string); - // constructor(productName: string, productVersion: string); - constructor(productComment: string, productName: string, productVersion: string) {} - - comment: string; - product: HttpProductHeaderValue; - - static parse(input: string): HttpProductInfoHeaderValue { - throw new Error('shimmed function HttpProductInfoHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, productInfoHeaderValue: HttpProductInfoHeaderValue } { - throw new Error('shimmed function HttpProductInfoHeaderValue.tryParse'); - } - - } - export class HttpProductInfoHeaderValueCollection implements IHttpProductInfoHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpProductInfoHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpProductInfoHeaderValue { - throw new Error('shimmed function HttpProductInfoHeaderValueCollection.getAt'); - } - - getView(): HttpProductInfoHeaderValue[] { - throw new Error('shimmed function HttpProductInfoHeaderValueCollection.getView'); - } - - indexOf(value: HttpProductInfoHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpProductInfoHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpProductInfoHeaderValue): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpProductInfoHeaderValue): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.removeAt'); - } - - append(value: HttpProductInfoHeaderValue): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpProductInfoHeaderValue[]): number { - throw new Error('shimmed function HttpProductInfoHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpProductInfoHeaderValue[]): void { - console.warn('shimmed function HttpProductInfoHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpProductInfoHeaderValueCollection.first'); - } - - } - export class HttpRequestHeaderCollection implements IHttpRequestHeaderCollection, Foundation.Collections.IMap, Foundation.Collections.IIterable>, Foundation.IStringable { - size: number; - referer: Foundation.Uri; - proxyAuthorization: HttpCredentialsHeaderValue; - maxForwards: number | null; - ifUnmodifiedSince: Date | null; - ifModifiedSince: Date | null; - host: Networking.HostName; - from: string; - date: Date | null; - authorization: HttpCredentialsHeaderValue; - accept: HttpMediaTypeWithQualityHeaderValueCollection; - acceptEncoding: HttpContentCodingWithQualityHeaderValueCollection; - acceptLanguage: HttpLanguageRangeWithQualityHeaderValueCollection; - cacheControl: HttpCacheDirectiveHeaderValueCollection; - connection: HttpConnectionOptionHeaderValueCollection; - cookie: HttpCookiePairHeaderValueCollection; - expect: HttpExpectationHeaderValueCollection; - transferEncoding: HttpTransferCodingHeaderValueCollection; - userAgent: HttpProductInfoHeaderValueCollection; - - append(name: string, value: string): void { - console.warn('shimmed function HttpRequestHeaderCollection.append'); - } - - tryAppendWithoutValidation(name: string, value: string): Boolean { - throw new Error('shimmed function HttpRequestHeaderCollection.tryAppendWithoutValidation'); - } - - lookup(key: string): string { - throw new Error('shimmed function HttpRequestHeaderCollection.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function HttpRequestHeaderCollection.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function HttpRequestHeaderCollection.getView'); - } - - insert(key: string, value: string): Boolean { - throw new Error('shimmed function HttpRequestHeaderCollection.insert'); - } - - clear(): void { - console.warn('shimmed function HttpRequestHeaderCollection.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function HttpRequestHeaderCollection.first'); - } - - } - export class HttpResponseHeaderCollection implements IHttpResponseHeaderCollection, Foundation.Collections.IMap, Foundation.Collections.IIterable>, Foundation.IStringable { - size: number; - retryAfter: HttpDateOrDeltaHeaderValue; - location: Foundation.Uri; - date: Date | null; - age: number | null; - allow: HttpMethodHeaderValueCollection; - cacheControl: HttpCacheDirectiveHeaderValueCollection; - connection: HttpConnectionOptionHeaderValueCollection; - proxyAuthenticate: HttpChallengeHeaderValueCollection; - transferEncoding: HttpTransferCodingHeaderValueCollection; - wwwAuthenticate: HttpChallengeHeaderValueCollection; - - append(name: string, value: string): void { - console.warn('shimmed function HttpResponseHeaderCollection.append'); - } - - tryAppendWithoutValidation(name: string, value: string): Boolean { - throw new Error('shimmed function HttpResponseHeaderCollection.tryAppendWithoutValidation'); - } - - lookup(key: string): string { - throw new Error('shimmed function HttpResponseHeaderCollection.lookup'); - } - - hasKey(key: string): Boolean { - throw new Error('shimmed function HttpResponseHeaderCollection.hasKey'); - } - - getView(): string[] { - throw new Error('shimmed function HttpResponseHeaderCollection.getView'); - } - - insert(key: string, value: string): Boolean { - throw new Error('shimmed function HttpResponseHeaderCollection.insert'); - } - - clear(): void { - console.warn('shimmed function HttpResponseHeaderCollection.clear'); - } - - first(): Foundation.Collections.IIterator> { - throw new Error('shimmed function HttpResponseHeaderCollection.first'); - } - - } - export class HttpTransferCodingHeaderValue implements IHttpTransferCodingHeaderValue, Foundation.IStringable { - // constructor(input: string); - constructor(input: string) {} - - parameters: HttpNameValueHeaderValue[]; - value: string; - - static parse(input: string): HttpTransferCodingHeaderValue { - throw new Error('shimmed function HttpTransferCodingHeaderValue.parse'); - } - - static tryParse(input: string): { returnValue: Boolean, transferCodingHeaderValue: HttpTransferCodingHeaderValue } { - throw new Error('shimmed function HttpTransferCodingHeaderValue.tryParse'); - } - - } - export class HttpTransferCodingHeaderValueCollection implements IHttpTransferCodingHeaderValueCollection, Foundation.Collections.IVector, Foundation.Collections.IIterable, Foundation.IStringable { - size: number; - - parseAdd(input: string): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.parseAdd'); - } - - tryParseAdd(input: string): Boolean { - throw new Error('shimmed function HttpTransferCodingHeaderValueCollection.tryParseAdd'); - } - - getAt(index: number): HttpTransferCodingHeaderValue { - throw new Error('shimmed function HttpTransferCodingHeaderValueCollection.getAt'); - } - - getView(): HttpTransferCodingHeaderValue[] { - throw new Error('shimmed function HttpTransferCodingHeaderValueCollection.getView'); - } - - indexOf(value: HttpTransferCodingHeaderValue): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpTransferCodingHeaderValueCollection.indexOf'); - } - - setAt(index: number, value: HttpTransferCodingHeaderValue): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.setAt'); - } - - insertAt(index: number, value: HttpTransferCodingHeaderValue): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.insertAt'); - } - - removeAt(index: number): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.removeAt'); - } - - append(value: HttpTransferCodingHeaderValue): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.append'); - } - - removeAtEnd(): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.removeAtEnd'); - } - - clear(): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.clear'); - } - - getMany(startIndex: number, items: HttpTransferCodingHeaderValue[]): number { - throw new Error('shimmed function HttpTransferCodingHeaderValueCollection.getMany'); - } - - replaceAll(items: HttpTransferCodingHeaderValue[]): void { - console.warn('shimmed function HttpTransferCodingHeaderValueCollection.replaceAll'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpTransferCodingHeaderValueCollection.first'); - } - - } - } - export class HttpBufferContent implements IHttpContent, Foundation.IClosable, Foundation.IStringable { - // constructor(content: Storage.Streams.IBuffer); - // constructor(content: Storage.Streams.IBuffer, offset: number, count: number); - constructor(content: Storage.Streams.IBuffer, offset: number, count: number) {} - - headers: Headers.HttpContentHeaderCollection; - - bufferAllAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpBufferContent.bufferAllAsync'); - } - - readAsBufferAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpBufferContent.readAsBufferAsync'); - } - - readAsInputStreamAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpBufferContent.readAsInputStreamAsync'); - } - - readAsStringAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpBufferContent.readAsStringAsync'); - } - - tryComputeLength(): { returnValue: Boolean, length: number } { - throw new Error('shimmed function HttpBufferContent.tryComputeLength'); - } - - writeToStreamAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpBufferContent.writeToStreamAsync'); - } - - close(): void { - console.warn('shimmed function HttpBufferContent.close'); - } - - } - export class HttpClient implements IHttpClient, IHttpClient2, Foundation.IClosable, Foundation.IStringable { - // constructor(filter: Filters.IHttpFilter); - // constructor(); - constructor(filter: Filters.IHttpFilter) {} - - defaultRequestHeaders: Headers.HttpRequestHeaderCollection = [ ]; - - deleteAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.deleteAsync'); - } - - getAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.getAsync'); - } - - getAsync_1(uri: Foundation.Uri, completionOption: HttpCompletionOption): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.getAsync_1'); - } - - getBufferAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.getBufferAsync'); - } - - getInputStreamAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.getInputStreamAsync'); - } - - getStringAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.getStringAsync'); - } - - postAsync(uri: Foundation.Uri, content: IHttpContent): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.postAsync'); - } - - putAsync(uri: Foundation.Uri, content: IHttpContent): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.putAsync'); - } - - sendRequestAsync(request: HttpRequestMessage): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.sendRequestAsync'); - } - - sendRequestAsync_1(request: HttpRequestMessage, completionOption: HttpCompletionOption): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.sendRequestAsync_1'); - } - - tryDeleteAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryDeleteAsync'); - } - - tryGetAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryGetAsync'); - } - - tryGetAsync_1(uri: Foundation.Uri, completionOption: HttpCompletionOption): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryGetAsync_1'); - } - - tryGetBufferAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryGetBufferAsync'); - } - - tryGetInputStreamAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryGetInputStreamAsync'); - } - - tryGetStringAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryGetStringAsync'); - } - - tryPostAsync(uri: Foundation.Uri, content: IHttpContent): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryPostAsync'); - } - - tryPutAsync(uri: Foundation.Uri, content: IHttpContent): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.tryPutAsync'); - } - - trySendRequestAsync(request: HttpRequestMessage): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.trySendRequestAsync'); - } - - trySendRequestAsync_1(request: HttpRequestMessage, completionOption: HttpCompletionOption): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpClient.trySendRequestAsync_1'); - } - - close(): void { - console.warn('shimmed function HttpClient.close'); - } - - } - export enum HttpCompletionOption { - responseContentRead, - responseHeadersRead, - } - export class HttpCookie implements IHttpCookie, Foundation.IStringable { - // constructor(name: string, domain: string, path: string); - constructor(name: string, domain: string, path: string) {} - - value: string; - secure: Boolean; - httpOnly: Boolean; - expires: Date | null; - domain: string; - name: string; - path: string; - - } - export class HttpCookieCollection implements Foundation.Collections.IVectorView, Foundation.Collections.IIterable { - size: number; - - getAt(index: number): HttpCookie { - throw new Error('shimmed function HttpCookieCollection.getAt'); - } - - indexOf(value: HttpCookie): { returnValue: Boolean, index: number } { - throw new Error('shimmed function HttpCookieCollection.indexOf'); - } - - getMany(startIndex: number, items: HttpCookie[]): number { - throw new Error('shimmed function HttpCookieCollection.getMany'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpCookieCollection.first'); - } - - } - export class HttpCookieManager implements IHttpCookieManager { - setCookie(cookie: HttpCookie): Boolean { - throw new Error('shimmed function HttpCookieManager.setCookie'); - } - - setCookie_1(cookie: HttpCookie, thirdParty: Boolean): Boolean { - throw new Error('shimmed function HttpCookieManager.setCookie_1'); - } - - deleteCookie(cookie: HttpCookie): void { - console.warn('shimmed function HttpCookieManager.deleteCookie'); - } - - getCookies(uri: Foundation.Uri): HttpCookieCollection { - throw new Error('shimmed function HttpCookieManager.getCookies'); - } - - } - export class HttpFormUrlEncodedContent implements IHttpContent, Foundation.IClosable, Foundation.IStringable { - // constructor(content: Foundation.Collections.IIterable>); - constructor(content: Foundation.Collections.IIterable>) {} - - headers: Headers.HttpContentHeaderCollection; - - bufferAllAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpFormUrlEncodedContent.bufferAllAsync'); - } - - readAsBufferAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpFormUrlEncodedContent.readAsBufferAsync'); - } - - readAsInputStreamAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpFormUrlEncodedContent.readAsInputStreamAsync'); - } - - readAsStringAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpFormUrlEncodedContent.readAsStringAsync'); - } - - tryComputeLength(): { returnValue: Boolean, length: number } { - throw new Error('shimmed function HttpFormUrlEncodedContent.tryComputeLength'); - } - - writeToStreamAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpFormUrlEncodedContent.writeToStreamAsync'); - } - - close(): void { - console.warn('shimmed function HttpFormUrlEncodedContent.close'); - } - - } - export class HttpGetBufferResult implements IHttpGetBufferResult, Foundation.IClosable, Foundation.IStringable { - extendedError: number; - requestMessage: HttpRequestMessage; - responseMessage: HttpResponseMessage; - succeeded: Boolean; - value: Storage.Streams.IBuffer; - - close(): void { - console.warn('shimmed function HttpGetBufferResult.close'); - } - - } - export class HttpGetInputStreamResult implements IHttpGetInputStreamResult, Foundation.IClosable, Foundation.IStringable { - extendedError: number; - requestMessage: HttpRequestMessage; - responseMessage: HttpResponseMessage; - succeeded: Boolean; - value: Storage.Streams.IInputStream; - - close(): void { - console.warn('shimmed function HttpGetInputStreamResult.close'); - } - - } - export class HttpGetStringResult implements IHttpGetStringResult, Foundation.IClosable, Foundation.IStringable { - extendedError: number; - requestMessage: HttpRequestMessage; - responseMessage: HttpResponseMessage; - succeeded: Boolean; - value: string; - - close(): void { - console.warn('shimmed function HttpGetStringResult.close'); - } - - } - export class HttpMethod implements IHttpMethod, Foundation.IStringable { - // constructor(method: string); - constructor(method: string) {} - - method: string; - static delete: HttpMethod = null; - static get: HttpMethod = null; - static head: HttpMethod = null; - static options: HttpMethod = null; - static patch: HttpMethod = null; - static post: HttpMethod = null; - static put: HttpMethod = null; - - } - export class HttpMultipartContent implements IHttpMultipartContent, IHttpContent, Foundation.IClosable, Foundation.Collections.IIterable, Foundation.IStringable { - // constructor(subtype: string); - // constructor(subtype: string, boundary: string); - // constructor(); - constructor(subtype: string, boundary: string) {} - - headers: Headers.HttpContentHeaderCollection = [ null ]; - - add(content: IHttpContent): void { - console.warn('shimmed function HttpMultipartContent.add'); - } - - bufferAllAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartContent.bufferAllAsync'); - } - - readAsBufferAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartContent.readAsBufferAsync'); - } - - readAsInputStreamAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartContent.readAsInputStreamAsync'); - } - - readAsStringAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartContent.readAsStringAsync'); - } - - tryComputeLength(): { returnValue: Boolean, length: number } { - throw new Error('shimmed function HttpMultipartContent.tryComputeLength'); - } - - writeToStreamAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartContent.writeToStreamAsync'); - } - - close(): void { - console.warn('shimmed function HttpMultipartContent.close'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpMultipartContent.first'); - } - - } - export class HttpMultipartFormDataContent implements IHttpMultipartFormDataContent, IHttpContent, Foundation.IClosable, Foundation.Collections.IIterable, Foundation.IStringable { - // constructor(boundary: string); - // constructor(); - constructor(boundary: string) {} - - headers: Headers.HttpContentHeaderCollection = [ null ]; - - add(content: IHttpContent): void { - console.warn('shimmed function HttpMultipartFormDataContent.add'); - } - - add_1(content: IHttpContent, name: string): void { - console.warn('shimmed function HttpMultipartFormDataContent.add_1'); - } - - add_2(content: IHttpContent, name: string, fileName: string): void { - console.warn('shimmed function HttpMultipartFormDataContent.add_2'); - } - - bufferAllAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartFormDataContent.bufferAllAsync'); - } - - readAsBufferAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartFormDataContent.readAsBufferAsync'); - } - - readAsInputStreamAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartFormDataContent.readAsInputStreamAsync'); - } - - readAsStringAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartFormDataContent.readAsStringAsync'); - } - - tryComputeLength(): { returnValue: Boolean, length: number } { - throw new Error('shimmed function HttpMultipartFormDataContent.tryComputeLength'); - } - - writeToStreamAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpMultipartFormDataContent.writeToStreamAsync'); - } - - close(): void { - console.warn('shimmed function HttpMultipartFormDataContent.close'); - } - - first(): Foundation.Collections.IIterator { - throw new Error('shimmed function HttpMultipartFormDataContent.first'); - } - - } - export interface HttpProgress { - stage: HttpProgressStage; - bytesSent: number; - totalBytesToSend: number | null; - bytesReceived: number; - totalBytesToReceive: number | null; - retries: number; - } - export enum HttpProgressStage { - none, - detectingProxy = 10, - resolvingName = 20, - connectingToServer = 30, - negotiatingSsl = 40, - sendingHeaders = 50, - sendingContent = 60, - waitingForResponse = 70, - receivingHeaders = 80, - receivingContent = 90, - } - export class HttpRequestMessage implements IHttpRequestMessage, Foundation.IClosable, Foundation.IStringable { - // constructor(method: HttpMethod, uri: Foundation.Uri); - // constructor(); - constructor(method: HttpMethod, uri: Foundation.Uri) {} - - requestUri: Foundation.Uri; - method: HttpMethod = null; - content: IHttpContent; - headers: Headers.HttpRequestHeaderCollection = [ ]; - properties: string[] = [ ]; - transportInformation: HttpTransportInformation = null; - - close(): void { - console.warn('shimmed function HttpRequestMessage.close'); - } - - } - export class HttpRequestResult implements IHttpRequestResult, Foundation.IClosable, Foundation.IStringable { - extendedError: number; - requestMessage: HttpRequestMessage; - responseMessage: HttpResponseMessage; - succeeded: Boolean; - - close(): void { - console.warn('shimmed function HttpRequestResult.close'); - } - - } - export class HttpResponseMessage implements IHttpResponseMessage, Foundation.IClosable, Foundation.IStringable { - // constructor(statusCode: HttpStatusCode); - // constructor(); - constructor(statusCode: HttpStatusCode) {} - - version: HttpVersion = HttpVersion.none; - statusCode: HttpStatusCode = HttpStatusCode.ok; - source: HttpResponseMessageSource = HttpResponseMessageSource.none; - requestMessage: HttpRequestMessage; - reasonPhrase: string = ''; - content: IHttpContent; - headers: Headers.HttpResponseHeaderCollection = [ ]; - isSuccessStatusCode: Boolean = true; - - ensureSuccessStatusCode(): HttpResponseMessage { - throw new Error('shimmed function HttpResponseMessage.ensureSuccessStatusCode'); - } - - close(): void { - console.warn('shimmed function HttpResponseMessage.close'); - } - - } - export enum HttpResponseMessageSource { - none, - cache, - network, - } - export enum HttpStatusCode { - none, - continue = 100, - switchingProtocols, - processing, - ok = 200, - created, - accepted, - nonAuthoritativeInformation, - noContent, - resetContent, - partialContent, - multiStatus, - alreadyReported, - imused = 226, - multipleChoices = 300, - movedPermanently, - found, - seeOther, - notModified, - useProxy, - temporaryRedirect = 307, - permanentRedirect, - badRequest = 400, - unauthorized, - paymentRequired, - forbidden, - notFound, - methodNotAllowed, - notAcceptable, - proxyAuthenticationRequired, - requestTimeout, - conflict, - gone, - lengthRequired, - preconditionFailed, - requestEntityTooLarge, - requestUriTooLong, - unsupportedMediaType, - requestedRangeNotSatisfiable, - expectationFailed, - unprocessableEntity = 422, - locked, - failedDependency, - upgradeRequired = 426, - preconditionRequired = 428, - tooManyRequests, - requestHeaderFieldsTooLarge = 431, - internalServerError = 500, - notImplemented, - badGateway, - serviceUnavailable, - gatewayTimeout, - httpVersionNotSupported, - variantAlsoNegotiates, - insufficientStorage, - loopDetected, - notExtended = 510, - networkAuthenticationRequired, - } - export class HttpStreamContent implements IHttpContent, Foundation.IClosable, Foundation.IStringable { - // constructor(content: Storage.Streams.IInputStream); - constructor(content: Storage.Streams.IInputStream) {} - - headers: Headers.HttpContentHeaderCollection; - - bufferAllAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStreamContent.bufferAllAsync'); - } - - readAsBufferAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStreamContent.readAsBufferAsync'); - } - - readAsInputStreamAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStreamContent.readAsInputStreamAsync'); - } - - readAsStringAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStreamContent.readAsStringAsync'); - } - - tryComputeLength(): { returnValue: Boolean, length: number } { - throw new Error('shimmed function HttpStreamContent.tryComputeLength'); - } - - writeToStreamAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStreamContent.writeToStreamAsync'); - } - - close(): void { - console.warn('shimmed function HttpStreamContent.close'); - } - - } - export class HttpStringContent implements IHttpContent, Foundation.IClosable, Foundation.IStringable { - // constructor(content: string); - // constructor(content: string, encoding: Storage.Streams.UnicodeEncoding); - // constructor(content: string, encoding: Storage.Streams.UnicodeEncoding, mediaType: string); - constructor(content: string, encoding: Storage.Streams.UnicodeEncoding, mediaType: string) {} - - headers: Headers.HttpContentHeaderCollection; - - bufferAllAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStringContent.bufferAllAsync'); - } - - readAsBufferAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStringContent.readAsBufferAsync'); - } - - readAsInputStreamAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStringContent.readAsInputStreamAsync'); - } - - readAsStringAsync(): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStringContent.readAsStringAsync'); - } - - tryComputeLength(): { returnValue: Boolean, length: number } { - throw new Error('shimmed function HttpStringContent.tryComputeLength'); - } - - writeToStreamAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function HttpStringContent.writeToStreamAsync'); - } - - close(): void { - console.warn('shimmed function HttpStringContent.close'); - } - - } - export class HttpTransportInformation implements IHttpTransportInformation, Foundation.IStringable { - serverCertificate: Security.Cryptography.Certificates.Certificate; - serverCertificateErrorSeverity: Networking.Sockets.SocketSslErrorSeverity; - serverCertificateErrors: Security.Cryptography.Certificates.ChainValidationResult[]; - serverIntermediateCertificates: Security.Cryptography.Certificates.Certificate[]; - - } - export enum HttpVersion { - none, - http10, - http11, - http20, - } - export interface IHttpContent extends Foundation.IClosable { - headers: Headers.HttpContentHeaderCollection; - bufferAllAsync(): Foundation.IAsyncOperationWithProgress; - readAsBufferAsync(): Foundation.IAsyncOperationWithProgress; - readAsInputStreamAsync(): Foundation.IAsyncOperationWithProgress; - readAsStringAsync(): Foundation.IAsyncOperationWithProgress; - tryComputeLength(): { returnValue: Boolean, length: number }; - writeToStreamAsync(outputStream: Storage.Streams.IOutputStream): Foundation.IAsyncOperationWithProgress; - } - } - export interface IUriToStreamResolver { - uriToStreamAsync(uri: Foundation.Uri): Foundation.IAsyncOperation; - } - export namespace Syndication { - export interface ISyndicationClient { - bypassCacheOnRetrieve: Boolean; - maxResponseBufferSize: number; - proxyCredential: Security.Credentials.PasswordCredential; - serverCredential: Security.Credentials.PasswordCredential; - timeout: number; - setRequestHeader(name: string, value: string): void; - retrieveFeedAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress; - } - export interface ISyndicationNode { - attributeExtensions: SyndicationAttribute[]; - baseUri: Foundation.Uri; - elementExtensions: ISyndicationNode[]; - language: string; - nodeName: string; - nodeNamespace: string; - nodeValue: string; - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument; - } - export interface ISyndicationText extends ISyndicationNode { - text: string; - type: string; - xml: Data.Xml.Dom.XmlDocument; - } - export interface RetrievalProgress { - bytesRetrieved: number; - totalBytesToRetrieve: number; - } - export class SyndicationAttribute implements ISyndicationAttribute { - // constructor(attributeName: string, attributeNamespace: string, attributeValue: string); - // constructor(); - constructor(attributeName: string, attributeNamespace: string, attributeValue: string) {} - - value: string = ''; - namespace: string = ''; - name: string = ''; - - } - export class SyndicationCategory implements ISyndicationCategory, ISyndicationNode { - // constructor(term: string); - // constructor(term: string, scheme: string, label: string); - // constructor(); - constructor(term: string, scheme: string, label: string) {} - - term: string = ''; - scheme: string = ''; - label: string = ''; - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[] = [ ]; - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationCategory.getXmlDocument'); - } - - } - export class SyndicationClient implements ISyndicationClient { - // constructor(serverCredential: Security.Credentials.PasswordCredential); - // constructor(); - constructor(serverCredential: Security.Credentials.PasswordCredential) {} - - timeout: number = 30000; - serverCredential: Security.Credentials.PasswordCredential; - proxyCredential: Security.Credentials.PasswordCredential; - maxResponseBufferSize: number = 4294967295; - bypassCacheOnRetrieve: Boolean = false; - - setRequestHeader(name: string, value: string): void { - console.warn('shimmed function SyndicationClient.setRequestHeader'); - } - - retrieveFeedAsync(uri: Foundation.Uri): Foundation.IAsyncOperationWithProgress { - throw new Error('shimmed function SyndicationClient.retrieveFeedAsync'); - } - - } - export class SyndicationContent implements ISyndicationText, ISyndicationNode, ISyndicationContent { - // constructor(text: string, type: SyndicationTextType); - // constructor(sourceUri: Foundation.Uri); - // constructor(); - constructor(text: string, type: SyndicationTextType, sourceUri: Foundation.Uri) {} - - sourceUri: Foundation.Uri; - nodeValue: string = ''; - baseUri: Foundation.Uri; - language: string = ''; - nodeName: string = ''; - nodeNamespace: string = ''; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[]; - text: string = ''; - type: string = ''; - xml: Data.Xml.Dom.XmlDocument; - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationContent.getXmlDocument'); - } - - } - export class SyndicationError { - static getStatus(hresult: number): SyndicationErrorStatus { - throw new Error('shimmed function SyndicationError.getStatus'); - } - - } - export enum SyndicationErrorStatus { - unknown, - missingRequiredElement, - missingRequiredAttribute, - invalidXml, - unexpectedContent, - unsupportedFormat, - } - export class SyndicationFeed implements ISyndicationFeed, ISyndicationNode { - // constructor(title: string, subtitle: string, uri: Foundation.Uri); - // constructor(); - constructor(title: string, subtitle: string, uri: Foundation.Uri) {} - - title: ISyndicationText; - subtitle: ISyndicationText; - rights: ISyndicationText; - generator: SyndicationGenerator; - lastUpdatedTime: Date = new Date(-11644473600000); - imageUri: Foundation.Uri; - iconUri: Foundation.Uri; - id: string = ''; - firstUri: Foundation.Uri; - items: SyndicationItem[] = [ ]; - lastUri: Foundation.Uri; - links: SyndicationLink[] = [ ]; - nextUri: Foundation.Uri; - previousUri: Foundation.Uri; - categories: SyndicationCategory[] = [ ]; - sourceFormat: SyndicationFormat = SyndicationFormat.atom10; - contributors: SyndicationPerson[] = [ ]; - authors: SyndicationPerson[] = [ ]; - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[] = [ ]; - - load(feed: string): void { - console.warn('shimmed function SyndicationFeed.load'); - } - - loadFromXml(feedDocument: Data.Xml.Dom.XmlDocument): void { - console.warn('shimmed function SyndicationFeed.loadFromXml'); - } - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationFeed.getXmlDocument'); - } - - } - export enum SyndicationFormat { - atom10, - rss20, - rss10, - rss092, - rss091, - atom03, - } - export class SyndicationGenerator implements ISyndicationGenerator, ISyndicationNode { - // constructor(text: string); - // constructor(); - constructor(text: string) {} - - version: string = ''; - uri: Foundation.Uri; - text: string = ''; - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[]; - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationGenerator.getXmlDocument'); - } - - } - export class SyndicationItem implements ISyndicationItem, ISyndicationNode { - // constructor(title: string, content: SyndicationContent, uri: Foundation.Uri); - // constructor(); - constructor(title: string, content: SyndicationContent, uri: Foundation.Uri) {} - - title: ISyndicationText; - source: SyndicationFeed; - rights: ISyndicationText; - summary: ISyndicationText; - publishedDate: Date = new Date(-11644473600000); - commentsUri: Foundation.Uri; - id: string = ''; - lastUpdatedTime: Date = new Date(-11644473600000); - content: SyndicationContent; - editUri: Foundation.Uri; - links: SyndicationLink[] = [ ]; - authors: SyndicationPerson[] = [ ]; - categories: SyndicationCategory[] = [ ]; - contributors: SyndicationPerson[] = [ ]; - itemUri: Foundation.Uri; - etag: string = ''; - editMediaUri: Foundation.Uri; - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[] = [ ]; - - load(item: string): void { - console.warn('shimmed function SyndicationItem.load'); - } - - loadFromXml(itemDocument: Data.Xml.Dom.XmlDocument): void { - console.warn('shimmed function SyndicationItem.loadFromXml'); - } - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationItem.getXmlDocument'); - } - - } - export class SyndicationLink implements ISyndicationLink, ISyndicationNode { - // constructor(uri: Foundation.Uri); - // constructor(uri: Foundation.Uri, relationship: string, title: string, mediaType: string, length: number); - // constructor(); - constructor(uri: Foundation.Uri, relationship: string, title: string, mediaType: string, length: number) {} - - uri: Foundation.Uri; - title: string = ''; - resourceLanguage: string = ''; - relationship: string = ''; - mediaType: string = ''; - length: number = 0; - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[] = [ ]; - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationLink.getXmlDocument'); - } - - } - export class SyndicationNode implements ISyndicationNode { - // constructor(nodeName: string, nodeNamespace: string, nodeValue: string); - // constructor(); - constructor(nodeName: string, nodeNamespace: string, nodeValue: string) {} - - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[] = [ ]; - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationNode.getXmlDocument'); - } - - } - export class SyndicationPerson implements ISyndicationPerson, ISyndicationNode { - // constructor(name: string); - // constructor(name: string, email: string, uri: Foundation.Uri); - // constructor(); - constructor(name: string, email: string, uri: Foundation.Uri) {} - - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[] = [ ]; - uri: Foundation.Uri; - name: string = ''; - email: string = ''; - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationPerson.getXmlDocument'); - } - - } - export class SyndicationText implements ISyndicationText, ISyndicationNode { - // constructor(text: string); - // constructor(text: string, type: SyndicationTextType); - // constructor(); - constructor(text: string, type: SyndicationTextType) {} - - nodeValue: string = ''; - nodeNamespace: string = ''; - nodeName: string = ''; - language: string = ''; - baseUri: Foundation.Uri; - attributeExtensions: SyndicationAttribute[] = [ ]; - elementExtensions: ISyndicationNode[]; - xml: Data.Xml.Dom.XmlDocument; - type: string = ''; - text: string = ''; - - getXmlDocument(format: SyndicationFormat): Data.Xml.Dom.XmlDocument { - throw new Error('shimmed function SyndicationText.getXmlDocument'); - } - - } - export enum SyndicationTextType { - text, - html, - xhtml, - } - export interface TransferProgress { - bytesSent: number; - totalBytesToSend: number; - bytesRetrieved: number; - totalBytesToRetrieve: number; - } - } - export namespace UI { - export namespace Interop { - export class WebViewControl implements IWebViewControl, IWebViewControlSite, IWebViewControl2, IWebViewControlSite2 { - scale: number; - isVisible: Boolean; - bounds: Foundation.Rect; - process: WebViewControlProcess; - source: Foundation.Uri; - defaultBackgroundColor: UI.Color; - canGoBack: Boolean; - canGoForward: Boolean; - containsFullScreenElement: Boolean; - deferredPermissionRequests: WebViewControlDeferredPermissionRequest[]; - documentTitle: string; - settings: WebViewControlSettings; - - goForward(): void { - console.warn('shimmed function WebViewControl.goForward'); - } - - goBack(): void { - console.warn('shimmed function WebViewControl.goBack'); - } - - refresh(): void { - console.warn('shimmed function WebViewControl.refresh'); - } - - stop(): void { - console.warn('shimmed function WebViewControl.stop'); - } - - navigate(source: Foundation.Uri): void { - console.warn('shimmed function WebViewControl.navigate'); - } - - navigateToString(text: string): void { - console.warn('shimmed function WebViewControl.navigateToString'); - } - - navigateToLocalStreamUri(source: Foundation.Uri, streamResolver: IUriToStreamResolver): void { - console.warn('shimmed function WebViewControl.navigateToLocalStreamUri'); - } - - navigateWithHttpRequestMessage(requestMessage: Http.HttpRequestMessage): void { - console.warn('shimmed function WebViewControl.navigateWithHttpRequestMessage'); - } - - invokeScriptAsync(scriptName: string, __arguments: Foundation.Collections.IIterable): Foundation.IAsyncOperation { - throw new Error('shimmed function WebViewControl.invokeScriptAsync'); - } - - capturePreviewToStreamAsync(stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction { - throw new Error('shimmed function WebViewControl.capturePreviewToStreamAsync'); - } - - captureSelectedContentToDataPackageAsync(): Foundation.IAsyncOperation { - throw new Error('shimmed function WebViewControl.captureSelectedContentToDataPackageAsync'); - } - - buildLocalStreamUri(contentIdentifier: string, relativePath: string): Foundation.Uri { - throw new Error('shimmed function WebViewControl.buildLocalStreamUri'); - } - - getDeferredPermissionRequestById(id: number): WebViewControlDeferredPermissionRequest { - throw new Error('shimmed function WebViewControl.getDeferredPermissionRequestById'); - } - - close(): void { - console.warn('shimmed function WebViewControl.close'); - } - - moveFocus(reason: WebViewControlMoveFocusReason): void { - console.warn('shimmed function WebViewControl.moveFocus'); - } - - addInitializeScript(script: string): void { - console.warn('shimmed function WebViewControl.addInitializeScript'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WebViewControl::addEventListener: ${name}`); - switch (name) { - case "containsfullscreenelementchanged": // Foundation.TypedEventHandler - case "contentloading": // Foundation.TypedEventHandler - case "domcontentloaded": // Foundation.TypedEventHandler - case "framecontentloading": // Foundation.TypedEventHandler - case "framedomcontentloaded": // Foundation.TypedEventHandler - case "framenavigationcompleted": // Foundation.TypedEventHandler - case "framenavigationstarting": // Foundation.TypedEventHandler - case "longrunningscriptdetected": // Foundation.TypedEventHandler - case "navigationcompleted": // Foundation.TypedEventHandler - case "navigationstarting": // Foundation.TypedEventHandler - case "newwindowrequested": // Foundation.TypedEventHandler - case "permissionrequested": // Foundation.TypedEventHandler - case "scriptnotify": // Foundation.TypedEventHandler - case "unsafecontentwarningdisplaying": // Foundation.TypedEventHandler - case "unsupportedurischemeidentified": // Foundation.TypedEventHandler - case "unviewablecontentidentified": // Foundation.TypedEventHandler - case "webresourcerequested": // Foundation.TypedEventHandler - case "acceleratorkeypressed": // Foundation.TypedEventHandler - case "movefocusrequested": // Foundation.TypedEventHandler - case "gotfocus": // Foundation.TypedEventHandler - case "lostfocus": // Foundation.TypedEventHandler - break; - } - - } - } - export class WebViewControlAcceleratorKeyPressedEventArgs implements IWebViewControlAcceleratorKeyPressedEventArgs { - handled: Boolean; - eventType: UI.Core.CoreAcceleratorKeyEventType; - keyStatus: UI.Core.CorePhysicalKeyStatus; - routingStage: WebViewControlAcceleratorKeyRoutingStage; - virtualKey: System.VirtualKey; - - } - export enum WebViewControlAcceleratorKeyRoutingStage { - tunneling, - bubbling, - } - export enum WebViewControlMoveFocusReason { - programmatic, - next, - previous, - } - export class WebViewControlMoveFocusRequestedEventArgs implements IWebViewControlMoveFocusRequestedEventArgs { - reason: WebViewControlMoveFocusReason; - - } - export class WebViewControlProcess implements IWebViewControlProcess { - // constructor(processOptions: WebViewControlProcessOptions); - // constructor(); - constructor(processOptions: WebViewControlProcessOptions) {} - - enterpriseId: string; - isPrivateNetworkClientServerCapabilityEnabled: Boolean; - processId: number; - - createWebViewControlAsync(hostWindowHandle: number, bounds: Foundation.Rect): Foundation.IAsyncOperation { - throw new Error('shimmed function WebViewControlProcess.createWebViewControlAsync'); - } - - getWebViewControls(): WebViewControl[] { - throw new Error('shimmed function WebViewControlProcess.getWebViewControls'); - } - - terminate(): void { - console.warn('shimmed function WebViewControlProcess.terminate'); - } - - addEventListener(name: string, handler: Function) { - console.warn(`WebViewControlProcess::addEventListener: ${name}`); - switch (name) { - case "processexited": // Foundation.TypedEventHandler - break; - } - - } - } - export enum WebViewControlProcessCapabilityState { - default, - disabled, - enabled, - } - export class WebViewControlProcessOptions implements IWebViewControlProcessOptions { - // constructor(); - privateNetworkClientServerCapability: WebViewControlProcessCapabilityState; - enterpriseId: string; - - } - } - export interface IWebViewControl { - canGoBack: Boolean; - canGoForward: Boolean; - containsFullScreenElement: Boolean; - defaultBackgroundColor: UI.Color; - deferredPermissionRequests: WebViewControlDeferredPermissionRequest[]; - documentTitle: string; - settings: WebViewControlSettings; - source: Foundation.Uri; - goForward(): void; - goBack(): void; - refresh(): void; - stop(): void; - navigate(source: Foundation.Uri): void; - navigateToString(text: string): void; - navigateToLocalStreamUri(source: Foundation.Uri, streamResolver: IUriToStreamResolver): void; - navigateWithHttpRequestMessage(requestMessage: Http.HttpRequestMessage): void; - invokeScriptAsync(scriptName: string, __arguments: Foundation.Collections.IIterable): Foundation.IAsyncOperation; - capturePreviewToStreamAsync(stream: Storage.Streams.IRandomAccessStream): Foundation.IAsyncAction; - captureSelectedContentToDataPackageAsync(): Foundation.IAsyncOperation; - buildLocalStreamUri(contentIdentifier: string, relativePath: string): Foundation.Uri; - getDeferredPermissionRequestById(id: number): WebViewControlDeferredPermissionRequest; - } - export interface IWebViewControl2 { - addInitializeScript(script: string): void; - } - export class WebViewControlContentLoadingEventArgs implements IWebViewControlContentLoadingEventArgs { - uri: Foundation.Uri; - - } - export class WebViewControlDeferredPermissionRequest implements IWebViewControlDeferredPermissionRequest { - id: number; - permissionType: WebViewControlPermissionType; - uri: Foundation.Uri; - - allow(): void { - console.warn('shimmed function WebViewControlDeferredPermissionRequest.allow'); - } - - deny(): void { - console.warn('shimmed function WebViewControlDeferredPermissionRequest.deny'); - } - - } - export class WebViewControlDOMContentLoadedEventArgs implements IWebViewControlDOMContentLoadedEventArgs { - uri: Foundation.Uri; - - } - export class WebViewControlLongRunningScriptDetectedEventArgs implements IWebViewControlLongRunningScriptDetectedEventArgs { - stopPageScriptExecution: Boolean; - executionTime: number; - - } - export class WebViewControlNavigationCompletedEventArgs implements IWebViewControlNavigationCompletedEventArgs { - isSuccess: Boolean; - uri: Foundation.Uri; - webErrorStatus: WebErrorStatus; - - } - export class WebViewControlNavigationStartingEventArgs implements IWebViewControlNavigationStartingEventArgs { - cancel: Boolean; - uri: Foundation.Uri; - - } - export class WebViewControlNewWindowRequestedEventArgs implements IWebViewControlNewWindowRequestedEventArgs, IWebViewControlNewWindowRequestedEventArgs2 { - handled: Boolean; - referrer: Foundation.Uri; - uri: Foundation.Uri; - newWindow: IWebViewControl; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function WebViewControlNewWindowRequestedEventArgs.getDeferral'); - } - - } - export class WebViewControlPermissionRequest implements IWebViewControlPermissionRequest { - id: number; - permissionType: WebViewControlPermissionType; - state: WebViewControlPermissionState; - uri: Foundation.Uri; - - defer(): void { - console.warn('shimmed function WebViewControlPermissionRequest.defer'); - } - - allow(): void { - console.warn('shimmed function WebViewControlPermissionRequest.allow'); - } - - deny(): void { - console.warn('shimmed function WebViewControlPermissionRequest.deny'); - } - - } - export class WebViewControlPermissionRequestedEventArgs implements IWebViewControlPermissionRequestedEventArgs { - permissionRequest: WebViewControlPermissionRequest; - - } - export enum WebViewControlPermissionState { - unknown, - defer, - allow, - deny, - } - export enum WebViewControlPermissionType { - geolocation, - unlimitedIndexedDBQuota, - media, - pointerLock, - webNotifications, - screen, - immersiveView, - } - export class WebViewControlScriptNotifyEventArgs implements IWebViewControlScriptNotifyEventArgs { - uri: Foundation.Uri; - value: string; - - } - export class WebViewControlSettings implements IWebViewControlSettings { - isScriptNotifyAllowed: Boolean; - isJavaScriptEnabled: Boolean; - isIndexedDBEnabled: Boolean; - - } - export class WebViewControlUnsupportedUriSchemeIdentifiedEventArgs implements IWebViewControlUnsupportedUriSchemeIdentifiedEventArgs { - handled: Boolean; - uri: Foundation.Uri; - - } - export class WebViewControlUnviewableContentIdentifiedEventArgs implements IWebViewControlUnviewableContentIdentifiedEventArgs { - mediaType: string; - referrer: Foundation.Uri; - uri: Foundation.Uri; - - } - export class WebViewControlWebResourceRequestedEventArgs implements IWebViewControlWebResourceRequestedEventArgs { - response: Http.HttpResponseMessage; - request: Http.HttpRequestMessage; - - getDeferral(): Foundation.Deferral { - throw new Error('shimmed function WebViewControlWebResourceRequestedEventArgs.getDeferral'); - } - - } - } - export class WebError { - static getStatus(hresult: number): WebErrorStatus { - throw new Error('shimmed function WebError.getStatus'); - } - - } - export enum WebErrorStatus { - unknown, - certificateCommonNameIsIncorrect, - certificateExpired, - certificateContainsErrors, - certificateRevoked, - certificateIsInvalid, - serverUnreachable, - timeout, - errorHttpInvalidServerResponse, - connectionAborted, - connectionReset, - disconnected, - httpToHttpsOnRedirection, - httpsToHttpOnRedirection, - cannotConnect, - hostNameNotResolved, - operationCanceled, - redirectFailed, - unexpectedStatusCode, - unexpectedRedirection, - unexpectedClientError, - unexpectedServerError, - insufficientRangeSupport, - missingContentLengthSupport, - multipleChoices = 300, - movedPermanently, - found, - seeOther, - notModified, - useProxy, - temporaryRedirect = 307, - badRequest = 400, - unauthorized, - paymentRequired, - forbidden, - notFound, - methodNotAllowed, - notAcceptable, - proxyAuthenticationRequired, - requestTimeout, - conflict, - gone, - lengthRequired, - preconditionFailed, - requestEntityTooLarge, - requestUriTooLong, - unsupportedMediaType, - requestedRangeNotSatisfiable, - expectationFailed, - internalServerError = 500, - notImplemented, - badGateway, - serviceUnavailable, - gatewayTimeout, - httpVersionNotSupported, - } - } -} diff --git a/packages/zeptolabuklimited.cuttherope/AppxManifest.xml b/packages/zeptolabuklimited.cuttherope/AppxManifest.xml deleted file mode 100644 index f6178afa..00000000 --- a/packages/zeptolabuklimited.cuttherope/AppxManifest.xml +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - Cut The Rope - ZeptoLab UK Limited - images\storelogo.png - - - 6.3.0 - 6.3.0 - - - - - - - - - - - - - images\logo.png - Cut the Rope - - - - - - - - - - - - - - - - - - - - Microsoft.Xbox.dll - - - - - - Microsoft.Xbox.dll - - - - - - - - - - - - - - - - - - - - - - - - - - CLRHost.dll - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/audio/bouncer.m4a b/packages/zeptolabuklimited.cuttherope/audio/bouncer.m4a deleted file mode 100644 index 959cedb3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/bouncer.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/bubble.m4a b/packages/zeptolabuklimited.cuttherope/audio/bubble.m4a deleted file mode 100644 index f87c3515..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/bubble.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/bubble_break.m4a b/packages/zeptolabuklimited.cuttherope/audio/bubble_break.m4a deleted file mode 100644 index d4d56874..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/bubble_break.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/button.m4a b/packages/zeptolabuklimited.cuttherope/audio/button.m4a deleted file mode 100644 index cddd38e6..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/button.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/buzz.m4a b/packages/zeptolabuklimited.cuttherope/audio/buzz.m4a deleted file mode 100644 index cfee0cbb..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/buzz.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/candy_break.m4a b/packages/zeptolabuklimited.cuttherope/audio/candy_break.m4a deleted file mode 100644 index 38fe7262..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/candy_break.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/candy_link.m4a b/packages/zeptolabuklimited.cuttherope/audio/candy_link.m4a deleted file mode 100644 index 23f31794..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/candy_link.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/electric.m4a b/packages/zeptolabuklimited.cuttherope/audio/electric.m4a deleted file mode 100644 index 37c138f4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/electric.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/game_music.m4a b/packages/zeptolabuklimited.cuttherope/audio/game_music.m4a deleted file mode 100644 index db5b9bc0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/game_music.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/game_music2.m4a b/packages/zeptolabuklimited.cuttherope/audio/game_music2.m4a deleted file mode 100644 index 0e401718..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/game_music2.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/gravity_off.m4a b/packages/zeptolabuklimited.cuttherope/audio/gravity_off.m4a deleted file mode 100644 index e72361a6..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/gravity_off.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/gravity_on.m4a b/packages/zeptolabuklimited.cuttherope/audio/gravity_on.m4a deleted file mode 100644 index 8adbfa27..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/gravity_on.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/menu_music.m4a b/packages/zeptolabuklimited.cuttherope/audio/menu_music.m4a deleted file mode 100644 index c4117635..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/menu_music.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/monster_chewing.m4a b/packages/zeptolabuklimited.cuttherope/audio/monster_chewing.m4a deleted file mode 100644 index 6ecd88bc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/monster_chewing.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/monster_close.m4a b/packages/zeptolabuklimited.cuttherope/audio/monster_close.m4a deleted file mode 100644 index 47f89713..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/monster_close.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/monster_open.m4a b/packages/zeptolabuklimited.cuttherope/audio/monster_open.m4a deleted file mode 100644 index 4a61a680..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/monster_open.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/monster_sad.m4a b/packages/zeptolabuklimited.cuttherope/audio/monster_sad.m4a deleted file mode 100644 index 951ea145..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/monster_sad.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/pump_1.m4a b/packages/zeptolabuklimited.cuttherope/audio/pump_1.m4a deleted file mode 100644 index e624ab9e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/pump_1.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/pump_2.m4a b/packages/zeptolabuklimited.cuttherope/audio/pump_2.m4a deleted file mode 100644 index c3574fef..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/pump_2.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/pump_3.m4a b/packages/zeptolabuklimited.cuttherope/audio/pump_3.m4a deleted file mode 100644 index 9e7b92f6..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/pump_3.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/pump_4.m4a b/packages/zeptolabuklimited.cuttherope/audio/pump_4.m4a deleted file mode 100644 index ff02be9f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/pump_4.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/ring.m4a b/packages/zeptolabuklimited.cuttherope/audio/ring.m4a deleted file mode 100644 index ecb2640c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/ring.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_1.m4a b/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_1.m4a deleted file mode 100644 index fb21161f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_1.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_2.m4a b/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_2.m4a deleted file mode 100644 index ab312462..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_2.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_3.m4a b/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_3.m4a deleted file mode 100644 index fa621874..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_3.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_4.m4a b/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_4.m4a deleted file mode 100644 index a705cf9b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/rope_bleak_4.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/rope_get.m4a b/packages/zeptolabuklimited.cuttherope/audio/rope_get.m4a deleted file mode 100644 index a49dace9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/rope_get.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/scratch_in.m4a b/packages/zeptolabuklimited.cuttherope/audio/scratch_in.m4a deleted file mode 100644 index 6cb2357f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/scratch_in.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/scratch_out.m4a b/packages/zeptolabuklimited.cuttherope/audio/scratch_out.m4a deleted file mode 100644 index 3effbd16..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/scratch_out.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/spider_activate.m4a b/packages/zeptolabuklimited.cuttherope/audio/spider_activate.m4a deleted file mode 100644 index 3408a1f2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/spider_activate.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/spider_fall.m4a b/packages/zeptolabuklimited.cuttherope/audio/spider_fall.m4a deleted file mode 100644 index e95633ad..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/spider_fall.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/spider_win.m4a b/packages/zeptolabuklimited.cuttherope/audio/spider_win.m4a deleted file mode 100644 index a9a79ec1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/spider_win.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/spike_rotate_in.m4a b/packages/zeptolabuklimited.cuttherope/audio/spike_rotate_in.m4a deleted file mode 100644 index 28b37b28..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/spike_rotate_in.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/spike_rotate_out.m4a b/packages/zeptolabuklimited.cuttherope/audio/spike_rotate_out.m4a deleted file mode 100644 index 1e520eee..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/spike_rotate_out.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/star_1.m4a b/packages/zeptolabuklimited.cuttherope/audio/star_1.m4a deleted file mode 100644 index 55874137..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/star_1.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/star_2.m4a b/packages/zeptolabuklimited.cuttherope/audio/star_2.m4a deleted file mode 100644 index 79f198f0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/star_2.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/star_3.m4a b/packages/zeptolabuklimited.cuttherope/audio/star_3.m4a deleted file mode 100644 index 14d23a90..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/star_3.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/tap.m4a b/packages/zeptolabuklimited.cuttherope/audio/tap.m4a deleted file mode 100644 index 56422139..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/tap.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/teleport.m4a b/packages/zeptolabuklimited.cuttherope/audio/teleport.m4a deleted file mode 100644 index c96994e4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/teleport.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/wheel.m4a b/packages/zeptolabuklimited.cuttherope/audio/wheel.m4a deleted file mode 100644 index 420b43a8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/wheel.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/audio/win.m4a b/packages/zeptolabuklimited.cuttherope/audio/win.m4a deleted file mode 100644 index 719310aa..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/audio/win.m4a and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/css/ctr.css b/packages/zeptolabuklimited.cuttherope/css/ctr.css deleted file mode 100644 index e5012174..00000000 --- a/packages/zeptolabuklimited.cuttherope/css/ctr.css +++ /dev/null @@ -1,5552 +0,0 @@ -html, -body, -div, -span, -applet, -object, -iframe, -h1, -h2, -h3, -h4, -h5, -h6, -p, -blockquote, -pre, -a, -abbr, -acronym, -address, -big, -cite, -code, -del, -dfn, -em, -img, -ins, -kbd, -q, -s, -samp, -small, -strike, -strong, -sub, -sup, -tt, -var, -b, -u, -i, -center, -dl, -dt, -dd, -ol, -ul, -li, -fieldset, -form, -label, -legend, -table, -caption, -tbody, -tfoot, -thead, -tr, -th, -td, -article, -aside, -canvas, -details, -embed, -figure, -figcaption, -footer, -header, -hgroup, -menu, -nav, -output, -ruby, -section, -summary, -time, -mark, -audio, -video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; - -ms-content-zooming: none -} - -article, -aside, -details, -figcaption, -figure, -footer, -header, -hgroup, -menu, -nav, -section { - display: block -} - -body { - line-height: 1 -} - -ol, -ul { - list-style: none -} - -blockquote, -q { - quotes: none -} - -blockquote:before, -blockquote:after, -q:before, -q:after { - content: ''; - content: none -} - -table { - border-collapse: collapse; - border-spacing: 0 -} - -a { - text-decoration: none; - color: inherit -} - -a:active, -a:focus { - outline: 0 -} - -#loaderWindow { - margin: 0; - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - font-family: gooddognum; - font-size: 88px; - color: #fff -} - -#loaderLogo { - display: none; - position: relative; - top: 200px; - left: 190px -} - -#loaderBubbles { - width: 800px; - height: 100%; - margin: 0 auto; - position: relative -} - -#loaderProgress { - position: absolute; - top: 50%; - left: 400px -} - -#loaderProgressBubble { - position: absolute; - left: -100px; - width: 218px; - height: 159px; - background-image: url(images/page/loader-bubble.png); - background-repeat: no-repeat; - text-align: center; - padding-top: 70px; - padding-left: 10px -} - -#loaderCanvasHost { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0 -} - -#loaderCanvas { - margin: 0; - padding: 0; - position: absolute; - top: 0 -} - -@font-face { - font-family: gooddogplain; - src: url(../fonts/gooddog-plain/GoodDog-webfont.eot); - src: url(../fonts/gooddog-plain/GoodDog-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/gooddog-plain/GoodDog-webfont.woff) format("woff"), url(../fonts/gooddog-plain/GoodDog-webfont.ttf) format("truetype"), url(../fonts/gooddog-plain/GoodDog-webfont.svg#GoodDogRegular) format("svg"); - font-weight: 400; - font-style: normal -} - -@font-face { - font-family: gooddognew; - src: url(../fonts/gooddog-new/gooddog_new-webfont.eot); - src: url(../fonts/gooddog-new/gooddog_new-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/gooddog-new/gooddog_new-webfont.woff) format("woff"), url(../fonts/gooddog-new/gooddog_new-webfont.ttf) format("truetype"), url(../fonts/gooddog-new/gooddog_new-webfont.svg#GoodDogNewRegular) format("svg"); - font-weight: 400; - font-style: normal -} - -body { - background-image: url(../images/page/tilebg.jpg); - background-repeat: repeat; - font-family: gooddognew; - font-size: 15px; - color: #19130c; - -webkit-user-select: none; - -khtml-user-select: none; - -moz-user-select: none; - -o-user-select: none; - -ms-user-select: none; - user-select: none; - -ms-touch-action: none -} - -#bg { - width: 100%; - height: 100%; - position: absolute; - top: 0; - left: 0; - display: none -} - -.ctrCursor { - cursor: url(/cursors/cursor.cur), url(/cursors/cursor.png), auto -} - -.ctrCursor a, -.ctrPointer { - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ctrCursorActive { - cursor: url(/cursors/cursorActive.cur), url(/cursors/cursorActive.png), auto -} - -footer .dot { - margin: -2px 8px 2px 8px -} - -footer .zeptoLogo { - position: relative; - top: 20px; - left: -4px -} - -#e { - position: absolute; - top: 0; - left: 0; - display: none; - background: rgba(0, 0, 0, .6) -} - -#d { - background: rgba(0, 0, 0, .5); - display: none -} - -#content { - width: 840px; - margin: 80px auto 10px; - font-family: sans-serif, Helvetica, Arial; - font-size: .8em; - line-height: 1.6em; - color: #3c2110 -} - -#content h1 { - font-family: gooddogplain; - font-size: 6em; - line-height: 1em; - margin-bottom: 20px -} - -#content h2 { - font-family: gooddogplain; - font-size: 3em; - line-height: 1em; - margin-bottom: 15px; - margin-top: 30px -} - -#content h3 { - font-family: gooddognew; - font-size: 2em; - line-height: 1em; - margin-bottom: 15px; - margin-top: 50px -} - -#content h4 { - font-family: gooddognew; - font-size: 1.5em; - line-height: 1em; - margin-bottom: 5px; - margin-top: 15px -} - -#content p { - margin-bottom: 15px -} - -#content a { - color: #c92817; - font-weight: 700 -} - -#content a:hover { - color: #c92817; - text-decoration: underline -} - -table { - margin-bottom: 30px; - width: 100% -} - -tbody tr:nth-child(odd) { - background-color: rgba(0, 0, 0, .1) -} - -td, -th { - padding: 4px -} - -th { - text-align: left; - font-weight: 700 -} - -#pagefooter { - margin: 100px auto 10px; - width: 840px -} - -#pagefooter div { - margin: 0 auto 10px -} - -.panel { - display: none; - position: absolute; - top: 0; - overflow: hidden -} - -#leaderboardsBtn { - position: relative -} - -.lb-score { - float: right -} - -#achievementsBtn { - position: relative -} - -.ui-1366 {} - -.ui-1366 #c { - position: relative; - width: 1366; - height: 768; - background-color: #000 -} - -.ui-1366 #e { - width: 1366; - height: 768 -} - -.ui-1366 #gameContainer { - position: relative; - margin: 40px auto 0; - width: 1366px; - height: 974px; - padding: 0 -} - -.ui-1366 #gameBorder { - top: -12px; - left: -16px; - position: absolute; - background-repeat: no-repeat; - width: 1397px; - height: 798px; - display: none -} - -.ui-1366 #gameArea { - margin: 0; - position: absolute; - top: 0; - left: 0; - width: 1366px; - height: 768px -} - -.ui-1366 .panel { - width: 1366px; - height: 768px -} - -.ui-1366 #startBackground { - display: none; - background: url(../images/1366/ui/startbg.jpg) -} - -.ui-1366 #menuBackground { - display: none; - background: url(../images/1366/ui/menubg.jpg) -} - -.ui-1366 .seethrough { - background: transparent -} - -.ui-1366 .panelContent { - position: absolute; - top: 0 -} - -.ui-1366 #shadowCanvas { - position: absolute; - top: 0; - width: 1366px; - height: 768px -} - -.ui-1366 .panelShadow img { - position: relative; - left: -400px; - position: relative; - top: -667px -} - -.ui-1366 .fBtnVBox { - width: 404px; - margin: 0 auto -} - -.ui-1366 .fBtn { - width: 404px; - height: 93px; - background-image: url(../images/1366/ui/fBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 13px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 .fBtn:hover { - background-position: left -95px -} - -.ui-1366 .fBtn.disabled { - background-position: 0 0; - cursor: inherit -} - -.ui-1366 .fBtn.disabled img, -.ui-1366 .fBtn.disabled div { - opacity: .6 -} - -.ui-1366 .fBtn img { - margin-top: 3px -} - -.ui-1366 .mBtn { - width: 313px; - height: 93px; - background-image: url(../images/1366/ui/mBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 13px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 .mBtn img { - margin-top: 3px -} - -.ui-1366 .mBtn:hover { - background-position: left -95px -} - -.ui-1366 .lBtn { - width: 564px; - height: 93px; - background-image: url(../images/1366/ui/lBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 13px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 .lBtn img { - margin-top: 3px -} - -.ui-1366 .lBtn:hover { - background-position: left -95px -} - -.ui-1366 .sBtn { - width: 228px; - height: 87px; - background-image: url(../images/1366/ui/sBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 13px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 .sBtn img { - margin-top: 3px -} - -.ui-1366 .sBtn:hover { - background-position: left -88px -} - -.ui-1366 .bBtn { - position: absolute; - top: 656px; - left: 19px; - width: 105px; - height: 100px; - background-image: url(../images/1366/ui/bBtn_bgd.png); - background-repeat: no-repeat; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 .bBtn:hover { - background-position: left -100px -} - -.ui-1366 .iconBtn { - position: absolute -} - -.ui-1366 #loadingPanel { - display: none -} - -.ui-1366 #loadingPanel img { - margin-top: 133px; - margin-left: 560px -} - -.ui-1366 #boxScore, -.ui-1366 #levelScore { - position: absolute; - top: 29px; - right: 49px; - height: 63px; - padding-right: 67px; - background-image: url(../images/1366/ui/star_result_small.png); - background-position: right top; - background-repeat: no-repeat -} - -.ui-1366 #boxes { - position: absolute; - top: 160px; - left: 415px -} - -.ui-1366 .boxOption { - width: 534px; - height: 534px -} - -.ui-1366 .boxCanvas { - position: absolute; - width: 534px; - height: 534px; - left: 0; - top: 0 -} - -.ui-1366 .boxOption .boxTitle { - position: absolute; - top: 20px; - left: 28px -} - -.ui-1366 .boxOmNom { - background-color: #2d2d35; - background-image: url(../images/1366/ui/box_omnom.png); - width: 400px; - height: 187px; - position: absolute; - top: 244px; - left: 21px; - background-position: 123px 53px; - background-repeat: no-repeat -} - -.ui-1366 #boxNavBack, -.ui-1366 #boxNavForward { - position: absolute; - top: 342px; - left: 273px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 #boxNavBack div, -.ui-1366 #boxNavForward div { - width: 79px; - height: 95px; - background-image: url(../images/1366/ui/box_nav_menu.png); - background-repeat: no-repeat -} - -.ui-1366 #boxNavBack .boxNavDisabled { - cursor: url(/cursors/cursor.cur), url(/cursors/cursor.png), auto; - background-position: left -95px; - opacity: .25 -} - -.ui-1366 #boxNavForward { - left: 1031px -} - -.ui-1366 #boxNavForward div { - background-position: -79px top -} - -.ui-1366 #boxNavForward .boxNavDisabled { - cursor: url(/cursors/cursor.cur), url(/cursors/cursor.png), auto; - background-position: -79px -95px; - opacity: .25 -} - -.ui-1366 .hideFromMouse { - pointer-events: none -} - -.ui-1366 #levelBackground { - display: none -} - -.ui-1366 .levelTape { - width: 69px; - height: 738px; - position: absolute; - left: 648px; - top: 13px; - background-image: url(../images/1366/ui/leveltape.png); - background-repeat: no-repeat; - display: none -} - -.ui-1366 #levelOptions { - position: absolute; - top: 84px; - left: 400px; - width: 10px; - height: 10px -} - -.ui-1366 #levelPanel .option { - position: absolute; - width: 161px; - height: 188px -} - -.ui-1366 #levelPanel .option .txt { - margin-top: 29px; - width: 161px; - text-align: center -} - -.ui-1366 #levelPanel .stars0, -.ui-1366 #levelPanel .stars1, -.ui-1366 #levelPanel .stars2, -.ui-1366 #levelPanel .stars3 { - position: absolute; - top: 108px; - left: 45px; - width: 117px; - height: 64px; - background-image: url(../images/1366/ui/options_stars_bgd.png); - background-repeat: no-repeat -} - -.ui-1366 #levelPanel .stars1 { - background-position: left -64px -} - -.ui-1366 #levelPanel .stars2 { - background-position: left -128px -} - -.ui-1366 #levelPanel .stars3 { - background-position: left -192px -} - -.ui-1366 #levelPanel .open { - background-image: url(../images/1366/ui/level_bgd.png); - background-repeat: no-repeat -} - -.ui-1366 #levelPanel .locked { - background-image: url(../images/1366/ui/level_bgd.png); - background-position: left -188px; - background-repeat: no-repeat -} - -.ui-1366 #levelPanel .purchase { - opacity: .4 -} - -.ui-1366 #levelPanel .option-small .stars0, -.ui-1366 #levelPanel .option-small .stars1, -.ui-1366 #levelPanel .option-small .stars2, -.ui-1366 #levelPanel .option-small .stars3 { - position: absolute; - top: 71px; - left: 29px; - width: 77px; - height: 40px; - background-image: url(../images/1366/ui/options_stars_bgd_small.png); - background-repeat: no-repeat -} - -.ui-1366 #levelPanel .option-small .stars1 { - background-position: left -43px -} - -.ui-1366 #levelPanel .option-small .stars2 { - background-position: left -85px -} - -.ui-1366 #levelPanel .option-small .stars3 { - background-position: left -128px -} - -.ui-1366 #levelPanel .option.option-small { - position: absolute; - width: 107px; - height: 113px; - margin-top: 20px; - text-align: center -} - -.ui-1366 #levelPanel .open.option-small { - background-image: url(../images/1366/ui/level_bgd_small.png); - background-repeat: no-repeat -} - -.ui-1366 #levelPanel .locked.option-small { - background-image: url(../images/1366/ui/level_bgd_small.png); - background-position: left -124px; - background-repeat: no-repeat -} - -.ui-1366 #levelPanel .option.option-small .txt { - margin-top: 9px; - width: 111px; - text-align: center -} - -.ui-1366 #gameBtnTray { - display: none; - position: absolute; - width: 240px; - height: 56px; - right: 0; - top: 5px -} - -.ui-1366 #gameBtnTray>div { - opacity: .7 -} - -.ui-1366 #gameBtnTray>div:hover { - opacity: 1 -} - -.ui-1366 #gameRestartBtn { - width: 56px; - height: 56px; - background: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -133px 0; - position: absolute; - top: 0; - left: 59px -} - -.ui-1366 #gameMenuBtn { - position: absolute; - width: 117px; - height: 56px; - background: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: 0 0; - top: 0; - left: 117px -} - -.ui-1366 #gameSound { - width: 56px; - height: 56px; - background: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - position: absolute; - top: 0; - left: 0 -} - -.ui-1366 #gameSound.allSound { - background-position: -800px 0 -} - -.ui-1366 #gameSound.effectsOnly { - background-position: -934px 0 -} - -.ui-1366 #gameSound.noSound { - background-position: -1067px 0 -} - -.ui-1366 #gameMsg { - width: 534px; - height: 37px; - position: absolute; - right: 253px; - top: -16px; - display: none; - text-align: right -} - -.ui-1366 #levelMenu { - position: absolute; - top: 0; - width: 1366px; - height: 595px; - background-color: rgba(0, 0, 0, .6); - display: none; - text-align: center; - padding-top: 173px -} - -.ui-1366 #levelResults { - display: none; - width: 760px; - height: 603px; - margin: 80px auto 0; - text-align: center; - font-family: gooddogplain; - font-size: 43px; - color: #3c2110; - position: relative -} - -.ui-1366 #resultStatus { - position: absolute; - width: 760px; - top: 40px; - left: 0; - text-align: center -} - -.ui-1366 #levelResults .starCase { - width: 375px; - height: 124px; - margin: 0 auto; - position: relative; - top: 127px -} - -.ui-1366 #resultTicker { - position: absolute; - top: 267px; - left: 0; - width: 760px; - text-align: center -} - -.ui-1366 #resultTickerLabel { - display: none -} - -.ui-1366 #resultTickerValue { - padding-left: 20px; - display: none -} - -.ui-1366 #resultTickerMessage { - display: none -} - -.ui-1366 #levelResults .star, -.ui-1366 #levelResults .starEmpty { - float: left; - width: 124px; - height: 124px; - background-image: url(../images/1366/ui/star_result.png); - background-repeat: no-repeat -} - -.ui-1366 #levelResults .starEmpty { - background-position: left -124px -} - -.ui-1366 #levelResults .line { - position: absolute; - top: 334px; - left: 133px; - width: 492px; - height: 9px; - background-image: url(../images/1366/ui/result_line.png); - background-repeat: no-repeat -} - -.ui-1366 #resultScore { - font-size: 80px; - position: absolute; - top: 334px; - width: 760px; - display: none -} - -.ui-1366 #levelResults .btnCase { - width: 734px; - height: 100px; - position: absolute; - top: 467px; - left: 13px -} - -.ui-1366 #resultImproved { - width: 156px; - height: 156px; - background-repeat: no-repeat; - position: absolute; - top: 253px; - left: 547px; - display: none -} - -.ui-1366 #levelResults .btnCase .sBtn { - float: left -} - -.ui-1366 #lrMenuBtn { - margin: 0 20px -} - -.ui-1366 #boxCutter { - background-image: url(../images/1366/ui/boxcutter.png); - background-repeat: no-repeat; - display: none; - position: absolute; - top: 375px; - left: 237px; - width: 452px; - height: 428px -} - -.ui-1366 #tapeRoll { - background-image: url(../images/1366/ui/taperoll.png); - background-repeat: no-repeat; - display: none; - position: absolute; - top: -19px; - left: 582px; - width: 173px; - height: 233px -} - -.ui-1366 #gameCompletePanel { - background-image: url(../images/1366/ui/gamecomplete.jpg); - background-repeat: no-repeat -} - -.ui-1366 #finalShareBtn { - position: absolute; - top: 574px; - left: 213px -} - -.ui-1366 #finalShareBtn img { - position: relative; - left: 13px; - top: 9px -} - -.ui-1366 #ffb { - position: absolute; - top: -11px; - left: -33px; - width: 111px; - height: 111px; - background: url(../images/1366/ui/fb.png); - background-repeat: no-repeat -} - -.ui-1366 #gameBorder.gameComplete { - top: -37px; - left: -44px; - position: absolute; - background-repeat: no-repeat; - width: 1454px; - height: 847px; - display: none; - background-image: url(../images/1366/ui/gamecomplete_border.png); - background-repeat: no-repeat -} - -.ui-1366 #finalScore { - position: absolute; - top: 454px; - height: 63px; - width: 1366px -} - -.ui-1366 #finalScore img { - margin: 0 auto; - display: block -} - -.ui-1366 #finalFunBtn { - position: absolute; - top: 574px; - left: 614px; - display: block -} - -.ui-1366 #finalFunBtn img { - position: relative; - left: 20px; - top: 9px -} - -.ui-1366 #funOmNom { - width: 136px; - height: 135px; - background-image: url(../images/1366/ui/fun-omnom.png); - background-repeat: no-repeat; - position: absolute; - top: -29px; - left: -40px -} - -.ui-1366 #congrats { - position: absolute; - top: 133px; - left: 0; - width: 100%; - text-align: center -} - -.ui-1366 #optionsPanel { - padding-top: 27px -} - -.ui-1366 #optionsTitle { - position: relative; - width: 671px; - left: -133px; - height: 93px -} - -.ui-1366 #optionsTitle img { - margin: 0 auto; - display: block -} - -.ui-1366 #creditsBtn { - display: none -} - -.ui-1366 .mini-button { - background-image: url(../images/1366/ui/menu-options.png); - background-repeat: no-repeat; - width: 191px; - height: 91px; - display: inline-block; - margin-bottom: 11px; - margin-right: 7px; - text-align: center; - position: relative -} - -.ui-1366 .mini-button:hover { - background-position: 0 -93px -} - -.ui-1366 .options-x { - background-image: url(../images/1366/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -201px -93px; - width: 40px; - height: 40px -} - -.ui-1366 .options-check { - background-image: url(../images/1366/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -104px -201px; - width: 47px; - height: 47px -} - -.ui-1366 .options-check-disabled { - background-image: url(../images/1366/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -200px -136px; - width: 47px; - height: 47px -} - -.ui-1366 #options-speaker { - background-image: url(../images/1366/ui/menu-options.png); - background-repeat: no-repeat; - background-position: 0 -187px; - width: 87px; - height: 76px; - position: absolute; - left: 53px; - top: 8px -} - -.ui-1366 #soundBtn .options-x { - position: absolute; - bottom: 7px; - left: 93px; - display: none -} - -.ui-1366 #soundBtn.disabled #options-speaker { - opacity: .6 -} - -.ui-1366 #soundBtn.disabled .options-x { - display: block -} - -.ui-1366 #options-note { - background-image: url(../images/1366/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -200px 0; - width: 73px; - height: 83px; - position: absolute; - left: 60px; - top: 3px -} - -.ui-1366 #musicBtn .options-x { - position: absolute; - bottom: 5px; - left: 96px; - display: none -} - -.ui-1366 #musicBtn.disabled #options-note { - opacity: .6 -} - -.ui-1366 #musicBtn.disabled .options-x { - display: block -} - -.ui-1366 #dragBtn, -.ui-1366 #cutBtn { - background-image: url(../images/1366/ui/menu-options.png); - background-repeat: no-repeat; - width: 120px; - height: 267px; - display: inline-block; - position: relative; - margin-left: 51px -} - -.ui-1366 #dragBtn { - background-position: 0 -264px; - background-repeat: no-repeat -} - -.ui-1366 #dragBtn .options-check-disabled { - position: absolute; - bottom: 23px; - left: 37px -} - -.ui-1366 #cutBtn { - background-position: -140px -264px -} - -.ui-1366 #cutBtn .options-check { - position: absolute; - bottom: 20px; - left: 41px -} - -.ui-1366 #cutBtn.disabled .options-check { - display: none -} - -.ui-1366 #dragText, -.ui-1366 #cutText { - margin-top: 153px; - margin-left: -31px -} - -.ui-1366 #vid { - display: none; - width: 1366px; - height: 768px; - position: absolute; - top: 0; - left: 0; - background: transparent -} - -.ui-1366 #fadeToBlack { - display: none; - width: 1366px; - height: 768px; - position: absolute; - top: 0; - left: 0; - background: #000 -} - -.ui-1366 #menuLogo { - position: absolute; - left: 431px; - top: 53px; - width: 452px; - height: 402px; - background-image: url(../images/1366/ui/ph_logo.png); - background-repeat: no-repeat -} - -.ui-1366 #menuBtnVbox { - position: absolute; - left: 478px; - top: 480px -} - -.ui-1366 #dmsg { - display: block; - position: relative; - margin: 40px auto 0 -} - -.ui-1366 #dframe { - position: relative; - width: 400px; - height: 522px; - background-image: url(../images/1366/ui/drawing-bg.png); - background-repeat: no-repeat; - margin: -13px auto 0 auto -} - -.ui-1366 #dpic { - position: absolute; - width: 319px; - height: 448px; - top: 32px; - left: 37px -} - -.ui-1366 .drawing1 { - background: url(../images/1366/ui/drawing1.jpg) no-repeat -} - -.ui-1366 .drawing2 { - background: url(../images/1366/ui/drawing2.jpg) no-repeat -} - -.ui-1366 .drawing3 { - background: url(../images/1366/ui/drawing3.jpg) no-repeat -} - -.ui-1366 #dshareBtn { - position: relative; - margin: 5px auto 0 -} - -.ui-1366 #dfb { - position: absolute; - top: -11px; - left: -7px; - width: 111px; - height: 111px; - background-image: url(../images/1366/ui/fb.png); - background-repeat: no-repeat -} - -.ui-1366 #gameFooterContainer { - width: 1366px -} - -.ui-1366 #miniOptionsMenu { - width: 534px; - height: 67px; - position: absolute; - left: 20px; - top: 694px -} - -.ui-1366 #optionHd.activeResolution { - background: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -400px -67px; - opacity: .8 -} - -.ui-1366 #optionHd.inActiveResolution { - background: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -400px 0; - opacity: .6; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 #optionHd.inActiveResolution:hover { - opacity: .8 -} - -.ui-1366 #optionSd.activeResolution { - background: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -267px -67px; - opacity: .8 -} - -.ui-1366 #optionSd.inActiveResolution { - background: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -267px 0; - opacity: .6; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1366 #optionSd.inActiveResolution:hover { - opacity: .8 -} - -.ui-1366 #optionSound { - width: 56px; - height: 56px; - background-image: url(../images/1366/ui/buttonsprite.png); - background-repeat: no-repeat; - position: absolute; - left: 0; - opacity: .6 -} - -.ui-1366 #optionSound.allSound { - background-position: -800px 0 -} - -.ui-1366 #optionSound.effectsOnly { - background-position: -934px 0 -} - -.ui-1366 #optionSound.noSound { - background-position: -1067px 0 -} - -.ui-1366 #optionSound:hover { - opacity: .7 -} - -.ui-1366 #optionMsg { - width: 280px; - height: 37px; - position: absolute; - left: 180px; - top: -16px; - display: none -} - -.ui-1366 #popupWindow { - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - display: none; - background-color: rgba(0, 0, 0, .4); - z-index: 2 -} - -.ui-1366 #popupWindow .popupOuterFrame { - margin: 98px auto 0; - background-image: url(../images/1366/ui/popupouter.png); - background-repeat: no-repeat; - width: 850px; - height: 616px; - position: relative -} - -.ui-1366 #popupWindow .popupInnerFrame { - position: absolute; - background-image: url(../images/1366/ui/popupinner.jpg); - background-repeat: no-repeat; - width: 770px; - height: 486px; - left: 24px; - top: 31px; - display: none -} - -.ui-1366 #popupWindow .bottomright { - position: absolute; - bottom: 13px; - right: 13px -} - -.ui-1366 #popupWindow #slowComputer { - background-image: url(../images/1366/ui/popupinner-slow.jpg); - background-repeat: no-repeat -} - -.ui-1366 #slowComputerBtn { - position: absolute; - bottom: 13px; - left: 67px -} - -.ui-1366 #slowComputerBtn img { - margin-top: 11px -} - -.ui-1366 #resetGame { - text-align: center -} - -.ui-1366 #resetText { - margin-top: 33px -} - -.ui-1366 #resetYesBtn { - position: absolute; - bottom: 127px; - left: 67px -} - -.ui-1366 #resetNoBtn { - position: absolute; - bottom: 127px; - left: 387px -} - -.ui-1366 #resetHoldYes { - position: absolute; - bottom: 27px; - width: 774px; - text-align: center -} - -.ui-1366 #missingStars { - text-align: center -} - -.ui-1366 #missingLine1 { - margin-top: 27px -} - -.ui-1366 #missingStar { - background-image: url(../images/1366/ui/star_result_small.png); - background-repeat: no-repeat; - width: 68px; - height: 63px; - display: inline-block; - vertical-align: top; - margin-top: 4px -} - -.ui-1366 #missingOkBtn { - display: inline-block -} - -.ui-1366 #flag { - background-image: url(../images/1366/ui/flags.png); - background-repeat: no-repeat; - background-position: 0 0; - display: inline-block; - width: 67px; - height: 51px; - position: relative; - top: -16px; - margin-left: 13px -} - -.ui-1366 #resultImproved { - background-image: url(../images/1366/ui/menu_result_en.png); - background-repeat: no-repeat -} - -.ui-1366 .lang-fr #resultImproved { - background-image: url(../images/1366/ui/menu_result_fr.png) -} - -.ui-1366 .lang-fr #flag { - background-position: 0 -53px -} - -.ui-1366 .lang-de #resultImproved { - background-image: url(../images/1366/ui/menu_result_gr.png) -} - -.ui-1366 .lang-de #flag { - background-position: 0 -107px -} - -.ui-1366 .lang-de #gameMenuBtn { - background-position: -1141px 0 -} - -.ui-1366 .lang-ru #resultImproved { - background-image: url(../images/1366/ui/menu_result_ru.png) -} - -.ui-1366 .lang-ru #flag { - background-position: 0 -160px -} - -.ui-1366 .lang-ru #gameMenuBtn { - background-position: -1334px 0 -} - -.ui-1366 #menuLogo { - margin-top: 0 -} - -.ui-1366 #menuBtnVbox { - margin-top: 57px; - top: 391px -} - -.ui-1366 #gameContainer { - margin: 0; - padding: 0; - height: 768px -} - -.ui-1366 #finalShareBtn { - left: 523px -} - -.ui-1366 #optionsBtn { - background: url(../images/1366/ui/btn-options.png) no-repeat 100% 0; - position: absolute; - bottom: 0; - right: 21px -} - -.ui-1366 #optionsBtn img { - position: absolute; - margin: 0; - padding: 0; - display: block; - right: 92px; - top: 7px -} - -.ui-1366 #optionsBtn:hover { - background: url(../images/1366/ui/btn-options.png) no-repeat 100% -107px -} - -.ui-1366 #optionMsg { - left: 64px -} - -.ui-1366 #boxUpgradePrompt { - position: absolute; - top: 36px; - left: 249px -} - -.ui-1366 #boxUpgradePlate { - position: absolute; - top: 391px; - left: 505px; - width: 363px; - height: 184px; - background-image: url(../images/1366/ui/buy-button.png); - background-repeat: no-repeat; - text-align: center -} - -.ui-1366 #boxUpgradePlate:hover { - background-position: 0 -184px -} - -.ui-1366 #boxUpgradePlate>img { - margin-top: 65px -} - -.ui-1366 #boxUpgradeButton { - position: absolute; - top: 512px; - left: 491px -} - -.ui-1366 #boxUpgradeButton>img { - margin-top: 18px -} - -.ui-1366 #payDialog { - text-align: center -} - -.ui-1366 #payMessage { - position: relative; - top: -7px -} - -.ui-1366 #payImg { - position: relative; - top: -14px; - width: 356px; - height: 356px; - margin: 0 auto; - background-image: url(../images/1366/ui/box-purchase.png); - background-repeat: no-repeat; - background-size: contain -} - -.ui-1366 #payBtn { - display: inline-block; - position: relative; - top: -137px -} - -.ui-1366 #payBtn>img { - margin-top: 18px -} - -.ui-1366 #payClose { - position: absolute; - top: 20px; - right: 20px -} - -.ui-1366 .scrollable { - position: relative; - overflow: hidden; - width: 996px; - height: 569px -} - -.ui-1366 .scrollable .content { - background: rgba(0, 0, 0, 0); - position: absolute; - overflow: scroll; - overflow-x: hidden; - top: 0; - bottom: 0; - left: 0; - right: -1423px; - padding: 14px; - padding-right: 1487px -} - -.ui-1366 .scrollable .content::-webkit-scrollbar { - visibility: hidden -} - -.ui-1366 .has-scrollbar .content::-webkit-scrollbar { - visibility: visible -} - -.ui-1366 .scrollable>.pane { - background: rgba(0, 0, 0, 0); - position: absolute; - width: 78px; - right: 0; - top: 0; - bottom: 0; - -webkit-transition: .2s; - -moz-transition: .2s; - -o-transition: .2s; - transition: .2s; - background: url(../images/1366/leaderboard/scrollbar-track.png) no-repeat 28px 0; - background-size: 21px 100% -} - -.ui-1366 .scrollable>.pane>.slider { - width: 78px; - position: relative; - margin: 0 1px; - background: url(../images/1366/leaderboard/scrollbar-thumb.png); - background-repeat: no-repeat -} - -.ui-1366 #leaderboardIcon { - position: absolute; - width: 98px; - height: 99px; - background: url(../images/1366/leaderboard/icon-leaderboard.png) no-repeat; - top: 0; - left: -32px -} - -.ui-1366 #leaderboardsBtn img { - position: relative; - left: 7px; - top: 11px -} - -.ui-1366 #leaderboardPanel { - width: 1366px; - height: 768px -} - -.ui-1366 .list-content { - position: relative; - margin-right: auto; - margin-left: auto; - width: 854px; - color: #2E2110; - font-size: 38px; - font-family: gooddogplain -} - -.ui-1366 .list-selector { - position: relative; - top: 14px; - height: 89px -} - -.ui-1366 .list-left-arrow { - position: absolute; - top: 0; - left: 0; - width: 78px; - height: 89px; - background-image: url(../images/1366/ui/box_nav_menu.png); - background-repeat: no-repeat -} - -.ui-1366 .list-left-arrow:active { - background: url(../images/1366/ui/box_nav_menu.png) 0 92px -} - -.ui-1366 .list-right-arrow { - position: absolute; - top: 0; - right: 0; - width: 78px; - height: 89px; - background: url(../images/1366/ui/box_nav_menu.png) -78px 0; - background-repeat: no-repeat -} - -.ui-1366 .list-right-arrow:active { - background: url(../images/1366/ui/box_nav_menu.png) -78px 92px -} - -.ui-1366 #leaderboardLeft.disabled, -.ui-1366 #leaderboardRight.disabled { - opacity: .25 -} - -.ui-1366 .list-title { - padding-top: 7px; - color: #fff; - text-align: center; - text-shadow: 4px 6px 0 #000; - font-size: 63px -} - -.ui-1366 .list-header { - box-sizing: border-box; - margin-top: 28px; - padding: 4px 28px; - width: 569px; - height: 71px; - background: url(../images/1366/leaderboard/list-header.png); - background-size: 100% 100%; - background-repeat: no-repeat -} - -.ui-1366 #lb-name, -.ui-1366 #lb-score { - position: relative; - top: -14px -} - -.ui-1366 #lb-name { - float: left -} - -.ui-1366 #lb-score { - float: right -} - -.ui-1366 .list-scrollable { - position: relative; - left: 36px; - width: 711px; - height: 462px -} - -.ui-1366 .lb-row { - padding-right: 36px; - padding-left: 28px; - width: 555px; - height: 50px -} - -.ui-1366 .lb-row .lb-place { - display: inline-block; - width: 36px -} - -.ui-1366 .lb-name { - display: inline-block; - width: 384px -} - -.ui-1366 .lb-row.selected { - padding-top: 14px; - height: 64px; - background: url(../images/1366/leaderboard/list-select.png); - background-size: 100% 100%; - background-repeat: no-repeat -} - -.ui-1366 #leaderboardLoading { - width: 181px; - height: 181px; - background: url(../images/1366/leaderboard/menu_processing_hd.png); - background-repeat: no-repeat; - z-index: 1000; - margin: 0 auto -} - -.ui-1366 #leaderboardLoading.show { - transition: all 200000ms linear; - transform: rotate(72000deg) -} - -.ui-1366 #signInControl { - width: 391px; - height: 91px; - position: absolute; - top: 21px; - right: 21px; - background-image: url(../images/1366/profile/profile-bg.png); - background-size: cover; - background-repeat: no-repeat -} - -.ui-1366 #gamerPicture { - position: absolute; - top: 22px; - left: 21px; - width: 46px; - height: 46px; - background-color: #C3BDC1; - background-size: cover -} - -.ui-1366 #gamerPictureBorder { - position: absolute; - top: 15px; - left: 14px; - width: 60px; - height: 60px; - background-image: url(../images/1366/profile/profile-avatarbg.png); - background-repeat: no-repeat -} - -.ui-1366 #signInInfo { - position: absolute; - top: 13px; - left: 82px; - width: 213px; - height: 75px; - background: rgba(0, 0, 0, 0) -} - -.ui-1366 #signInMessage { - height: 21px; - color: #40260A; - margin-right: 7px -} - -.ui-1366 #signInMessage>img { - position: relative; - top: -13px -} - -.ui-1366 #signInButton, -.ui-1366 #signOutButton { - background-image: url(../images/1366/profile/profile-btn.png); - background-repeat: no-repeat; - padding: 4px 11px 3px; - position: absolute; - bottom: 11px; - left: 0; - width: 145px; - height: 38px; - text-align: center; - font-size: 26px; - color: #9f663b; - box-sizing: border-box -} - -.ui-1366 #signInButton:hover, -.ui-1366 #signOutButton:hover { - background: url(../images/1366/profile/profile-btn.png) 0 -70px -} - -.ui-1366 #signInButton.pending { - color: #9f663b -} - -.ui-1366 #signInButton>img, -.ui-1366 #signOutButton>img { - position: relative; - top: -11px -} - -.ui-1366 #xboxLiveBtn { - width: 126px; - height: 90px; - background: transparent; - position: absolute; - top: 0; - right: 0 -} - -.ui-1366 #xboxLiveBtn:hover { - background: url(../images/1366/profile/profile-xbox-over.png) 0 1px; - background-repeat: no-repeat -} - -.ui-1366 #achievementsIcon { - position: absolute; - width: 106px; - height: 120px; - background: url(../images/1366/achievements/icon-achievements.png) no-repeat; - top: -18px; - left: -32px -} - -.ui-1366 #achievementsBtn img { - position: relative; - left: 7px; - top: 11px -} - -.ui-1366 #achievementsPanel { - width: 1366px; - height: 768px -} - -.ui-1366 #ach-list { - position: relative; - top: 71px; - height: 605px -} - -.ui-1366 .ach-row { - position: relative; - height: 164px -} - -.ui-1366 .ach-img { - position: absolute; - top: 10px; - left: 0; - width: 115px; - height: 136px; - background: url(../images/1366/achievements/empty_achievement.png) no-repeat 0 7px -} - -.ui-1366 .ach-name { - position: absolute; - top: 4px; - left: 135px; - color: #fff; - text-shadow: 4px 6px 0 #000; - font-size: 57px -} - -.ui-1366 .ach-desc { - position: absolute; - top: 53px; - left: 135px -} - -.ui-1366 .ach-0.unlocked { - background-image: url(../images/1366/achievements/achievement_bronze_scissors.png) -} - -.ui-1366 .ach-1.unlocked { - background-image: url(../images/1366/achievements/achievement_silver_scissors.png) -} - -.ui-1366 .ach-2.unlocked { - background-image: url(../images/1366/achievements/achievement_golden_scissors.png) -} - -.ui-1366 .ach-3.unlocked { - background-image: url(../images/1366/achievements/achievement_rope_cutter.png) -} - -.ui-1366 .ach-4.unlocked { - background-image: url(../images/1366/achievements/achievement_rope_cutter_maniac.png) -} - -.ui-1366 .ach-5.unlocked { - background-image: url(../images/1366/achievements/achievement_ultimate_rope_cutter.png) -} - -.ui-1366 .ach-6.unlocked { - background-image: url(../images/1366/achievements/achievement_bubble_popper.png) -} - -.ui-1366 .ach-7.unlocked { - background-image: url(../images/1366/achievements/achievement_bubble_master.png) -} - -.ui-1366 .ach-8.unlocked { - background-image: url(../images/1366/achievements/achievement_spider_buster.png) -} - -.ui-1366 .ach-9.unlocked { - background-image: url(../images/1366/achievements/achievement_spider_tamer.png) -} - -.ui-1366 .ach-10.unlocked { - background-image: url(../images/1366/achievements/achievement_spider_lover.png) -} - -.ui-1366 .ach-11.unlocked { - background-image: url(../images/1366/achievements/achievement_weight_loser.png) -} - -.ui-1366 .ach-12.unlocked { - background-image: url(../images/1366/achievements/achievement_calorie_minimizer.png) -} - -.ui-1366 .ach-13.unlocked { - background-image: url(../images/1366/achievements/achievement_quick_finger.png) -} - -.ui-1366 .ach-14.unlocked { - background-image: url(../images/1366/achievements/achievement_master_finger.png) -} - -.ui-1366 .ach-15.unlocked { - background-image: url(../images/1366/achievements/achievement_tummy_teaser.png) -} - -.ui-1366 .ach-16.unlocked { - background-image: url(../images/1366/achievements/achievement_candy_juggler.png) -} - -.ui-1366 .ach-17.unlocked { - background-image: url(../images/1366/achievements/achievement_romantic_soul.png) -} - -.ui-1366 .ach-18.unlocked { - background-image: url(../images/1366/achievements/achievement_magician.png) -} - -.ui-1600 {} - -.ui-1600 #c { - position: relative; - width: 1601; - height: 900; - background-color: #000 -} - -.ui-1600 #e { - width: 1601; - height: 900 -} - -.ui-1600 #gameContainer { - position: relative; - margin: 40px auto 0; - width: 1601px; - height: 1141px; - padding: 0 -} - -.ui-1600 #gameBorder { - top: -14px; - left: -19px; - position: absolute; - background-repeat: no-repeat; - width: 1636px; - height: 935px; - display: none -} - -.ui-1600 #gameArea { - margin: 0; - position: absolute; - top: 0; - left: 0; - width: 1601px; - height: 900px -} - -.ui-1600 .panel { - width: 1601px; - height: 900px -} - -.ui-1600 #startBackground { - display: none; - background: url(../images/1600/ui/startbg.jpg) -} - -.ui-1600 #menuBackground { - display: none; - background: url(../images/1600/ui/menubg.jpg) -} - -.ui-1600 .seethrough { - background: transparent -} - -.ui-1600 .panelContent { - position: absolute; - top: 0 -} - -.ui-1600 #shadowCanvas { - position: absolute; - top: 0; - width: 1601px; - height: 900px -} - -.ui-1600 .panelShadow img { - position: relative; - left: -469px; - position: relative; - top: -782px -} - -.ui-1600 .fBtnVBox { - width: 474px; - margin: 0 auto -} - -.ui-1600 .fBtn { - width: 474px; - height: 109px; - background-image: url(../images/1600/ui/fBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 16px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 .fBtn:hover { - background-position: left -111px -} - -.ui-1600 .fBtn.disabled { - background-position: 0 0; - cursor: inherit -} - -.ui-1600 .fBtn.disabled img, -.ui-1600 .fBtn.disabled div { - opacity: .6 -} - -.ui-1600 .fBtn img { - margin-top: 3px -} - -.ui-1600 .mBtn { - width: 367px; - height: 109px; - background-image: url(../images/1600/ui/mBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 16px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 .mBtn img { - margin-top: 3px -} - -.ui-1600 .mBtn:hover { - background-position: left -111px -} - -.ui-1600 .lBtn { - width: 661px; - height: 109px; - background-image: url(../images/1600/ui/lBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 16px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 .lBtn img { - margin-top: 3px -} - -.ui-1600 .lBtn:hover { - background-position: left -111px -} - -.ui-1600 .sBtn { - width: 267px; - height: 102px; - background-image: url(../images/1600/ui/sBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 16px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 .sBtn img { - margin-top: 3px -} - -.ui-1600 .sBtn:hover { - background-position: left -103px -} - -.ui-1600 .bBtn { - position: absolute; - top: 769px; - left: 22px; - width: 123px; - height: 117px; - background-image: url(../images/1600/ui/bBtn_bgd.png); - background-repeat: no-repeat; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 .bBtn:hover { - background-position: left -117px -} - -.ui-1600 .iconBtn { - position: absolute -} - -.ui-1600 #loadingPanel { - display: none -} - -.ui-1600 #loadingPanel img { - margin-top: 156px; - margin-left: 656px -} - -.ui-1600 #boxScore, -.ui-1600 #levelScore { - position: absolute; - top: 34px; - right: 58px; - height: 73px; - padding-right: 78px; - background-image: url(../images/1600/ui/star_result_small.png); - background-position: right top; - background-repeat: no-repeat -} - -.ui-1600 #boxes { - position: absolute; - top: 188px; - left: 486px -} - -.ui-1600 .boxOption { - width: 625px; - height: 625px -} - -.ui-1600 .boxCanvas { - position: absolute; - width: 625px; - height: 625px; - left: 0; - top: 0 -} - -.ui-1600 .boxOption .boxTitle { - position: absolute; - top: 20px; - left: 28px -} - -.ui-1600 .boxOmNom { - background-color: #2d2d35; - background-image: url(../images/1600/ui/box_omnom.png); - width: 469px; - height: 219px; - position: absolute; - top: 286px; - left: 25px; - background-position: 144px 63px; - background-repeat: no-repeat -} - -.ui-1600 #boxNavBack, -.ui-1600 #boxNavForward { - position: absolute; - top: 400px; - left: 320px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 #boxNavBack div, -.ui-1600 #boxNavForward div { - width: 92px; - height: 111px; - background-image: url(../images/1600/ui/box_nav_menu.png); - background-repeat: no-repeat -} - -.ui-1600 #boxNavBack .boxNavDisabled { - cursor: url(/cursors/cursor.cur), url(/cursors/cursor.png), auto; - background-position: left -111px; - opacity: .25 -} - -.ui-1600 #boxNavForward { - left: 1208px -} - -.ui-1600 #boxNavForward div { - background-position: -92px top -} - -.ui-1600 #boxNavForward .boxNavDisabled { - cursor: url(/cursors/cursor.cur), url(/cursors/cursor.png), auto; - background-position: -92px -111px; - opacity: .25 -} - -.ui-1600 .hideFromMouse { - pointer-events: none -} - -.ui-1600 #levelBackground { - display: none -} - -.ui-1600 .levelTape { - width: 81px; - height: 864px; - position: absolute; - left: 760px; - top: 16px; - background-image: url(../images/1600/ui/leveltape.png); - background-repeat: no-repeat; - display: none -} - -.ui-1600 #levelOptions { - position: absolute; - top: 98px; - left: 469px; - width: 10px; - height: 10px -} - -.ui-1600 #levelPanel .option { - position: absolute; - width: 189px; - height: 220px -} - -.ui-1600 #levelPanel .option .txt { - margin-top: 34px; - width: 189px; - text-align: center -} - -.ui-1600 #levelPanel .stars0, -.ui-1600 #levelPanel .stars1, -.ui-1600 #levelPanel .stars2, -.ui-1600 #levelPanel .stars3 { - position: absolute; - top: 127px; - left: 53px; - width: 138px; - height: 75px; - background-image: url(../images/1600/ui/options_stars_bgd.png); - background-repeat: no-repeat -} - -.ui-1600 #levelPanel .stars1 { - background-position: left -75px -} - -.ui-1600 #levelPanel .stars2 { - background-position: left -150px -} - -.ui-1600 #levelPanel .stars3 { - background-position: left -225px -} - -.ui-1600 #levelPanel .open { - background-image: url(../images/1600/ui/level_bgd.png); - background-repeat: no-repeat -} - -.ui-1600 #levelPanel .locked { - background-image: url(../images/1600/ui/level_bgd.png); - background-position: left -220px; - background-repeat: no-repeat -} - -.ui-1600 #levelPanel .purchase { - opacity: .4 -} - -.ui-1600 #levelPanel .option-small .stars0, -.ui-1600 #levelPanel .option-small .stars1, -.ui-1600 #levelPanel .option-small .stars2, -.ui-1600 #levelPanel .option-small .stars3 { - position: absolute; - top: 83px; - left: 34px; - width: 91px; - height: 47px; - background-image: url(../images/1600/ui/options_stars_bgd_small.png); - background-repeat: no-repeat -} - -.ui-1600 #levelPanel .option-small .stars1 { - background-position: left -50px -} - -.ui-1600 #levelPanel .option-small .stars2 { - background-position: left -100px -} - -.ui-1600 #levelPanel .option-small .stars3 { - background-position: left -150px -} - -.ui-1600 #levelPanel .option.option-small { - position: absolute; - width: 125px; - height: 133px; - margin-top: 23px; - text-align: center -} - -.ui-1600 #levelPanel .open.option-small { - background-image: url(../images/1600/ui/level_bgd_small.png); - background-repeat: no-repeat -} - -.ui-1600 #levelPanel .locked.option-small { - background-image: url(../images/1600/ui/level_bgd_small.png); - background-position: left -145px; - background-repeat: no-repeat -} - -.ui-1600 #levelPanel .option.option-small .txt { - margin-top: 11px; - width: 130px; - text-align: center -} - -.ui-1600 #gameBtnTray { - display: none; - position: absolute; - width: 281px; - height: 66px; - right: 0; - top: 6px -} - -.ui-1600 #gameBtnTray>div { - opacity: .7 -} - -.ui-1600 #gameBtnTray>div:hover { - opacity: 1 -} - -.ui-1600 #gameRestartBtn { - width: 66px; - height: 66px; - background: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -156px 0; - position: absolute; - top: 0; - left: 69px -} - -.ui-1600 #gameMenuBtn { - position: absolute; - width: 138px; - height: 66px; - background: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: 0 0; - top: 0; - left: 138px -} - -.ui-1600 #gameSound { - width: 66px; - height: 66px; - background: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - position: absolute; - top: 0; - left: 0 -} - -.ui-1600 #gameSound.allSound { - background-position: -938px 0 -} - -.ui-1600 #gameSound.effectsOnly { - background-position: -1094px 0 -} - -.ui-1600 #gameSound.noSound { - background-position: -1250px 0 -} - -.ui-1600 #gameMsg { - width: 625px; - height: 44px; - position: absolute; - right: 297px; - top: -19px; - display: none; - text-align: right -} - -.ui-1600 #levelMenu { - position: absolute; - top: 0; - width: 1601px; - height: 697px; - background-color: rgba(0, 0, 0, .6); - display: none; - text-align: center; - padding-top: 203px -} - -.ui-1600 #levelResults { - display: none; - width: 891px; - height: 706px; - margin: 94px auto 0; - text-align: center; - font-family: gooddogplain; - font-size: 50px; - color: #3c2110; - position: relative -} - -.ui-1600 #resultStatus { - position: absolute; - width: 891px; - top: 47px; - left: 0; - text-align: center -} - -.ui-1600 #levelResults .starCase { - width: 439px; - height: 145px; - margin: 0 auto; - position: relative; - top: 148px -} - -.ui-1600 #resultTicker { - position: absolute; - top: 313px; - left: 0; - width: 891px; - text-align: center -} - -.ui-1600 #resultTickerLabel { - display: none -} - -.ui-1600 #resultTickerValue { - padding-left: 20px; - display: none -} - -.ui-1600 #resultTickerMessage { - display: none -} - -.ui-1600 #levelResults .star, -.ui-1600 #levelResults .starEmpty { - float: left; - width: 145px; - height: 145px; - background-image: url(../images/1600/ui/star_result.png); - background-repeat: no-repeat -} - -.ui-1600 #levelResults .starEmpty { - background-position: left -145px -} - -.ui-1600 #levelResults .line { - position: absolute; - top: 391px; - left: 156px; - width: 577px; - height: 11px; - background-image: url(../images/1600/ui/result_line.png); - background-repeat: no-repeat -} - -.ui-1600 #resultScore { - font-size: 94px; - position: absolute; - top: 391px; - width: 891px; - display: none -} - -.ui-1600 #levelResults .btnCase { - width: 860px; - height: 117px; - position: absolute; - top: 547px; - left: 16px -} - -.ui-1600 #resultImproved { - width: 183px; - height: 183px; - background-repeat: no-repeat; - position: absolute; - top: 297px; - left: 641px; - display: none -} - -.ui-1600 #levelResults .btnCase .sBtn { - float: left -} - -.ui-1600 #lrMenuBtn { - margin: 0 23px -} - -.ui-1600 #boxCutter { - background-image: url(../images/1600/ui/boxcutter.png); - background-repeat: no-repeat; - display: none; - position: absolute; - top: 439px; - left: 278px; - width: 530px; - height: 502px -} - -.ui-1600 #tapeRoll { - background-image: url(../images/1600/ui/taperoll.png); - background-repeat: no-repeat; - display: none; - position: absolute; - top: -22px; - left: 681px; - width: 203px; - height: 274px -} - -.ui-1600 #gameCompletePanel { - background-image: url(../images/1600/ui/gamecomplete.jpg); - background-repeat: no-repeat -} - -.ui-1600 #finalShareBtn { - position: absolute; - top: 672px; - left: 250px -} - -.ui-1600 #finalShareBtn img { - position: relative; - left: 16px; - top: 11px -} - -.ui-1600 #ffb { - position: absolute; - top: -13px; - left: -39px; - width: 130px; - height: 130px; - background: url(../images/1600/ui/fb.png); - background-repeat: no-repeat -} - -.ui-1600 #gameBorder.gameComplete { - top: -44px; - left: -52px; - position: absolute; - background-repeat: no-repeat; - width: 1704px; - height: 993px; - display: none; - background-image: url(../images/1600/ui/gamecomplete_border.png); - background-repeat: no-repeat -} - -.ui-1600 #finalScore { - position: absolute; - top: 531px; - height: 73px; - width: 1601px -} - -.ui-1600 #finalScore img { - margin: 0 auto; - display: block -} - -.ui-1600 #finalFunBtn { - position: absolute; - top: 672px; - left: 719px; - display: block -} - -.ui-1600 #finalFunBtn img { - position: relative; - left: 23px; - top: 11px -} - -.ui-1600 #funOmNom { - width: 159px; - height: 158px; - background-image: url(../images/1600/ui/fun-omnom.png); - background-repeat: no-repeat; - position: absolute; - top: -34px; - left: -47px -} - -.ui-1600 #congrats { - position: absolute; - top: 156px; - left: 0; - width: 100%; - text-align: center -} - -.ui-1600 #optionsPanel { - padding-top: 31px -} - -.ui-1600 #optionsTitle { - position: relative; - width: 786px; - left: -156px; - height: 109px -} - -.ui-1600 #optionsTitle img { - margin: 0 auto; - display: block -} - -.ui-1600 #creditsBtn { - display: none -} - -.ui-1600 .mini-button { - background-image: url(../images/1600/ui/menu-options.png); - background-repeat: no-repeat; - width: 224px; - height: 106px; - display: inline-block; - margin-bottom: 13px; - margin-right: 8px; - text-align: center; - position: relative -} - -.ui-1600 .mini-button:hover { - background-position: 0 -109px -} - -.ui-1600 .options-x { - background-image: url(../images/1600/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -236px -109px; - width: 47px; - height: 47px -} - -.ui-1600 .options-check { - background-image: url(../images/1600/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -122px -236px; - width: 55px; - height: 55px -} - -.ui-1600 .options-check-disabled { - background-image: url(../images/1600/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -234px -159px; - width: 55px; - height: 55px -} - -.ui-1600 #options-speaker { - background-image: url(../images/1600/ui/menu-options.png); - background-repeat: no-repeat; - background-position: 0 -219px; - width: 102px; - height: 89px; - position: absolute; - left: 63px; - top: 9px -} - -.ui-1600 #soundBtn .options-x { - position: absolute; - bottom: 8px; - left: 109px; - display: none -} - -.ui-1600 #soundBtn.disabled #options-speaker { - opacity: .6 -} - -.ui-1600 #soundBtn.disabled .options-x { - display: block -} - -.ui-1600 #options-note { - background-image: url(../images/1600/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -234px 0; - width: 86px; - height: 97px; - position: absolute; - left: 70px; - top: 3px -} - -.ui-1600 #musicBtn .options-x { - position: absolute; - bottom: 6px; - left: 113px; - display: none -} - -.ui-1600 #musicBtn.disabled #options-note { - opacity: .6 -} - -.ui-1600 #musicBtn.disabled .options-x { - display: block -} - -.ui-1600 #dragBtn, -.ui-1600 #cutBtn { - background-image: url(../images/1600/ui/menu-options.png); - background-repeat: no-repeat; - width: 141px; - height: 313px; - display: inline-block; - position: relative; - margin-left: 59px -} - -.ui-1600 #dragBtn { - background-position: 0 -309px; - background-repeat: no-repeat -} - -.ui-1600 #dragBtn .options-check-disabled { - position: absolute; - bottom: 27px; - left: 44px -} - -.ui-1600 #cutBtn { - background-position: -164px -309px -} - -.ui-1600 #cutBtn .options-check { - position: absolute; - bottom: 23px; - left: 48px -} - -.ui-1600 #cutBtn.disabled .options-check { - display: none -} - -.ui-1600 #dragText, -.ui-1600 #cutText { - margin-top: 180px; - margin-left: -36px -} - -.ui-1600 #vid { - display: none; - width: 1601px; - height: 900px; - position: absolute; - top: 0; - left: 0; - background: transparent -} - -.ui-1600 #fadeToBlack { - display: none; - width: 1601px; - height: 900px; - position: absolute; - top: 0; - left: 0; - background: #000 -} - -.ui-1600 #menuLogo { - position: absolute; - left: 505px; - top: 63px; - width: 530px; - height: 470px; - background-image: url(../images/1600/ui/ph_logo.png); - background-repeat: no-repeat -} - -.ui-1600 #menuBtnVbox { - position: absolute; - left: 560px; - top: 563px -} - -.ui-1600 #dmsg { - display: block; - position: relative; - margin: 47px auto 0 -} - -.ui-1600 #dframe { - position: relative; - width: 469px; - height: 611px; - background-image: url(../images/1600/ui/drawing-bg.png); - background-repeat: no-repeat; - margin: -16px auto 0 auto -} - -.ui-1600 #dpic { - position: absolute; - width: 374px; - height: 525px; - top: 38px; - left: 44px -} - -.ui-1600 .drawing1 { - background: url(../images/1600/ui/drawing1.jpg) no-repeat -} - -.ui-1600 .drawing2 { - background: url(../images/1600/ui/drawing2.jpg) no-repeat -} - -.ui-1600 .drawing3 { - background: url(../images/1600/ui/drawing3.jpg) no-repeat -} - -.ui-1600 #dshareBtn { - position: relative; - margin: 5px auto 0 -} - -.ui-1600 #dfb { - position: absolute; - top: -13px; - left: -8px; - width: 130px; - height: 130px; - background-image: url(../images/1600/ui/fb.png); - background-repeat: no-repeat -} - -.ui-1600 #gameFooterContainer { - width: 1601px -} - -.ui-1600 #miniOptionsMenu { - width: 625px; - height: 78px; - position: absolute; - left: 23px; - top: 813px -} - -.ui-1600 #optionHd.activeResolution { - background: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -469px -78px; - opacity: .8 -} - -.ui-1600 #optionHd.inActiveResolution { - background: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -469px 0; - opacity: .6; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 #optionHd.inActiveResolution:hover { - opacity: .8 -} - -.ui-1600 #optionSd.activeResolution { - background: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -313px -78px; - opacity: .8 -} - -.ui-1600 #optionSd.inActiveResolution { - background: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -313px 0; - opacity: .6; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1600 #optionSd.inActiveResolution:hover { - opacity: .8 -} - -.ui-1600 #optionSound { - width: 66px; - height: 66px; - background-image: url(../images/1600/ui/buttonsprite.png); - background-repeat: no-repeat; - position: absolute; - left: 0; - opacity: .6 -} - -.ui-1600 #optionSound.allSound { - background-position: -938px 0 -} - -.ui-1600 #optionSound.effectsOnly { - background-position: -1094px 0 -} - -.ui-1600 #optionSound.noSound { - background-position: -1250px 0 -} - -.ui-1600 #optionSound:hover { - opacity: .7 -} - -.ui-1600 #optionMsg { - width: 328px; - height: 44px; - position: absolute; - left: 211px; - top: -19px; - display: none -} - -.ui-1600 #popupWindow { - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - display: none; - background-color: rgba(0, 0, 0, .4); - z-index: 2 -} - -.ui-1600 #popupWindow .popupOuterFrame { - margin: 98px auto 0; - background-image: url(../images/1600/ui/popupouter.png); - background-repeat: no-repeat; - width: 996px; - height: 722px; - position: relative -} - -.ui-1600 #popupWindow .popupInnerFrame { - position: absolute; - background-image: url(../images/1600/ui/popupinner.jpg); - background-repeat: no-repeat; - width: 902px; - height: 569px; - left: 28px; - top: 36px; - display: none -} - -.ui-1600 #popupWindow .bottomright { - position: absolute; - bottom: 16px; - right: 16px -} - -.ui-1600 #popupWindow #slowComputer { - background-image: url(../images/1600/ui/popupinner-slow.jpg); - background-repeat: no-repeat -} - -.ui-1600 #slowComputerBtn { - position: absolute; - bottom: 16px; - left: 78px -} - -.ui-1600 #slowComputerBtn img { - margin-top: 13px -} - -.ui-1600 #resetGame { - text-align: center -} - -.ui-1600 #resetText { - margin-top: 39px -} - -.ui-1600 #resetYesBtn { - position: absolute; - bottom: 148px; - left: 78px -} - -.ui-1600 #resetNoBtn { - position: absolute; - bottom: 148px; - left: 453px -} - -.ui-1600 #resetHoldYes { - position: absolute; - bottom: 31px; - width: 907px; - text-align: center -} - -.ui-1600 #missingStars { - text-align: center -} - -.ui-1600 #missingLine1 { - margin-top: 31px -} - -.ui-1600 #missingStar { - background-image: url(../images/1600/ui/star_result_small.png); - background-repeat: no-repeat; - width: 80px; - height: 73px; - display: inline-block; - vertical-align: top; - margin-top: 5px -} - -.ui-1600 #missingOkBtn { - display: inline-block -} - -.ui-1600 #flag { - background-image: url(../images/1600/ui/flags.png); - background-repeat: no-repeat; - background-position: 0 0; - display: inline-block; - width: 78px; - height: 59px; - position: relative; - top: -19px; - margin-left: 16px -} - -.ui-1600 #resultImproved { - background-image: url(../images/1600/ui/menu_result_en.png); - background-repeat: no-repeat -} - -.ui-1600 .lang-fr #resultImproved { - background-image: url(../images/1600/ui/menu_result_fr.png) -} - -.ui-1600 .lang-fr #flag { - background-position: 0 -63px -} - -.ui-1600 .lang-de #resultImproved { - background-image: url(../images/1600/ui/menu_result_gr.png) -} - -.ui-1600 .lang-de #flag { - background-position: 0 -125px -} - -.ui-1600 .lang-de #gameMenuBtn { - background-position: -1336px 0 -} - -.ui-1600 .lang-ru #resultImproved { - background-image: url(../images/1600/ui/menu_result_ru.png) -} - -.ui-1600 .lang-ru #flag { - background-position: 0 -188px -} - -.ui-1600 .lang-ru #gameMenuBtn { - background-position: -1563px 0 -} - -.ui-1600 #menuLogo { - margin-top: 0 -} - -.ui-1600 #menuBtnVbox { - margin-top: 67px; - top: 458px -} - -.ui-1600 #gameContainer { - margin: 0; - padding: 0; - height: 900px -} - -.ui-1600 #finalShareBtn { - left: 612px -} - -.ui-1600 #optionsBtn { - background: url(../images/1600/ui/btn-options.png) no-repeat 100% 0; - position: absolute; - bottom: 0; - right: 25px -} - -.ui-1600 #optionsBtn img { - position: absolute; - margin: 0; - padding: 0; - display: block; - right: 108px; - top: 8px -} - -.ui-1600 #optionsBtn:hover { - background: url(../images/1600/ui/btn-options.png) no-repeat 100% -125px -} - -.ui-1600 #optionMsg { - left: 75px -} - -.ui-1600 #boxUpgradePrompt { - position: absolute; - top: 42px; - left: 292px -} - -.ui-1600 #boxUpgradePlate { - position: absolute; - top: 458px; - left: 592px; - width: 425px; - height: 216px; - background-image: url(../images/1600/ui/buy-button.png); - background-repeat: no-repeat; - text-align: center -} - -.ui-1600 #boxUpgradePlate:hover { - background-position: 0 -216px -} - -.ui-1600 #boxUpgradePlate>img { - margin-top: 77px -} - -.ui-1600 #boxUpgradeButton { - position: absolute; - top: 600px; - left: 575px -} - -.ui-1600 #boxUpgradeButton>img { - margin-top: 21px -} - -.ui-1600 #payDialog { - text-align: center -} - -.ui-1600 #payMessage { - position: relative; - top: -8px -} - -.ui-1600 #payImg { - position: relative; - top: -17px; - width: 417px; - height: 417px; - margin: 0 auto; - background-image: url(../images/1600/ui/box-purchase.png); - background-repeat: no-repeat; - background-size: contain -} - -.ui-1600 #payBtn { - display: inline-block; - position: relative; - top: -160px -} - -.ui-1600 #payBtn>img { - margin-top: 22px -} - -.ui-1600 #payClose { - position: absolute; - top: 20px; - right: 20px -} - -.ui-1600 .scrollable { - position: relative; - overflow: hidden; - width: 1166px; - height: 667px -} - -.ui-1600 .scrollable .content { - background: rgba(0, 0, 0, 0); - position: absolute; - overflow: scroll; - overflow-x: hidden; - top: 0; - bottom: 0; - left: 0; - right: -1666px; - padding: 17px; - padding-right: 1741px -} - -.ui-1600 .scrollable .content::-webkit-scrollbar { - visibility: hidden -} - -.ui-1600 .has-scrollbar .content::-webkit-scrollbar { - visibility: visible -} - -.ui-1600 .scrollable>.pane { - background: rgba(0, 0, 0, 0); - position: absolute; - width: 92px; - right: 0; - top: 0; - bottom: 0; - -webkit-transition: .2s; - -moz-transition: .2s; - -o-transition: .2s; - transition: .2s; - background: url(../images/1600/leaderboard/scrollbar-track.png) no-repeat 33px 0; - background-size: 25px 100% -} - -.ui-1600 .scrollable>.pane>.slider { - width: 92px; - position: relative; - margin: 0 1px; - background: url(../images/1600/leaderboard/scrollbar-thumb.png); - background-repeat: no-repeat -} - -.ui-1600 #leaderboardIcon { - position: absolute; - width: 115px; - height: 116px; - background: url(../images/1600/leaderboard/icon-leaderboard.png) no-repeat; - top: 0; - left: -37px -} - -.ui-1600 #leaderboardsBtn img { - position: relative; - left: 8px; - top: 12px -} - -.ui-1600 #leaderboardPanel { - width: 1600px; - height: 900px -} - -.ui-1600 .list-content { - position: relative; - margin-right: auto; - margin-left: auto; - width: 1000px; - color: #2E2110; - font-size: 45px; - font-family: gooddogplain -} - -.ui-1600 .list-selector { - position: relative; - top: 17px; - height: 104px -} - -.ui-1600 .list-left-arrow { - position: absolute; - top: 0; - left: 0; - width: 92px; - height: 104px; - background-image: url(../images/1600/ui/box_nav_menu.png); - background-repeat: no-repeat -} - -.ui-1600 .list-left-arrow:active { - background: url(../images/1600/ui/box_nav_menu.png) 0 108px -} - -.ui-1600 .list-right-arrow { - position: absolute; - top: 0; - right: 0; - width: 92px; - height: 104px; - background: url(../images/1600/ui/box_nav_menu.png) -92px 0; - background-repeat: no-repeat -} - -.ui-1600 .list-right-arrow:active { - background: url(../images/1600/ui/box_nav_menu.png) -92px 108px -} - -.ui-1600 #leaderboardLeft.disabled, -.ui-1600 #leaderboardRight.disabled { - opacity: .25 -} - -.ui-1600 .list-title { - padding-top: 8px; - color: #fff; - text-align: center; - text-shadow: 4px 6px 0 #000; - font-size: 73px -} - -.ui-1600 .list-header { - box-sizing: border-box; - margin-top: 33px; - padding: 4px 33px; - width: 667px; - height: 83px; - background: url(../images/1600/leaderboard/list-header.png); - background-size: 100% 100%; - background-repeat: no-repeat -} - -.ui-1600 #lb-name, -.ui-1600 #lb-score { - position: relative; - top: -17px -} - -.ui-1600 #lb-name { - float: left -} - -.ui-1600 #lb-score { - float: right -} - -.ui-1600 .list-scrollable { - position: relative; - left: 42px; - width: 833px; - height: 542px -} - -.ui-1600 .lb-row { - padding-right: 42px; - padding-left: 33px; - width: 650px; - height: 58px -} - -.ui-1600 .lb-row .lb-place { - display: inline-block; - width: 42px -} - -.ui-1600 .lb-name { - display: inline-block; - width: 450px -} - -.ui-1600 .lb-row.selected { - padding-top: 17px; - height: 75px; - background: url(../images/1600/leaderboard/list-select.png); - background-size: 100% 100%; - background-repeat: no-repeat -} - -.ui-1600 #leaderboardLoading { - width: 212px; - height: 212px; - background: url(../images/1600/leaderboard/menu_processing_hd.png); - background-repeat: no-repeat; - z-index: 1000; - margin: 0 auto -} - -.ui-1600 #leaderboardLoading.show { - transition: all 200000ms linear; - transform: rotate(72000deg) -} - -.ui-1600 #signInControl { - width: 458px; - height: 107px; - position: absolute; - top: 25px; - right: 25px; - background-image: url(../images/1600/profile/profile-bg.png); - background-size: cover; - background-repeat: no-repeat -} - -.ui-1600 #gamerPicture { - position: absolute; - top: 26px; - left: 25px; - width: 53px; - height: 53px; - background-color: #C3BDC1; - background-size: cover -} - -.ui-1600 #gamerPictureBorder { - position: absolute; - top: 17px; - left: 17px; - width: 70px; - height: 70px; - background-image: url(../images/1600/profile/profile-avatarbg.png); - background-repeat: no-repeat -} - -.ui-1600 #signInInfo { - position: absolute; - top: 15px; - left: 96px; - width: 250px; - height: 87px; - background: rgba(0, 0, 0, 0) -} - -.ui-1600 #signInMessage { - height: 25px; - color: #40260A; - margin-right: 8px -} - -.ui-1600 #signInMessage>img { - position: relative; - top: -15px -} - -.ui-1600 #signInButton, -.ui-1600 #signOutButton { - background-image: url(../images/1600/profile/profile-btn.png); - background-repeat: no-repeat; - padding: 5px 12px 3px; - position: absolute; - bottom: 13px; - left: 0; - width: 170px; - height: 44px; - text-align: center; - font-size: 30px; - color: #9f663b; - box-sizing: border-box -} - -.ui-1600 #signInButton:hover, -.ui-1600 #signOutButton:hover { - background: url(../images/1600/profile/profile-btn.png) 0 -82px -} - -.ui-1600 #signInButton.pending { - color: #9f663b -} - -.ui-1600 #signInButton>img, -.ui-1600 #signOutButton>img { - position: relative; - top: -12px -} - -.ui-1600 #xboxLiveBtn { - width: 147px; - height: 106px; - background: transparent; - position: absolute; - top: 0; - right: 0 -} - -.ui-1600 #xboxLiveBtn:hover { - background: url(../images/1600/profile/profile-xbox-over.png) 0 1px; - background-repeat: no-repeat -} - -.ui-1600 #achievementsIcon { - position: absolute; - width: 124px; - height: 140px; - background: url(../images/1600/achievements/icon-achievements.png) no-repeat; - top: -21px; - left: -37px -} - -.ui-1600 #achievementsBtn img { - position: relative; - left: 8px; - top: 12px -} - -.ui-1600 #achievementsPanel { - width: 1600px; - height: 900px -} - -.ui-1600 #ach-list { - position: relative; - top: 83px; - height: 708px -} - -.ui-1600 .ach-row { - position: relative; - height: 192px -} - -.ui-1600 .ach-img { - position: absolute; - top: 10px; - left: 0; - width: 134px; - height: 159px; - background: url(../images/1600/achievements/empty_achievement.png) no-repeat 0 8px -} - -.ui-1600 .ach-name { - position: absolute; - top: 4px; - left: 158px; - color: #fff; - text-shadow: 4px 6px 0 #000; - font-size: 67px -} - -.ui-1600 .ach-desc { - position: absolute; - top: 62px; - left: 158px -} - -.ui-1600 .ach-0.unlocked { - background-image: url(../images/1600/achievements/achievement_bronze_scissors.png) -} - -.ui-1600 .ach-1.unlocked { - background-image: url(../images/1600/achievements/achievement_silver_scissors.png) -} - -.ui-1600 .ach-2.unlocked { - background-image: url(../images/1600/achievements/achievement_golden_scissors.png) -} - -.ui-1600 .ach-3.unlocked { - background-image: url(../images/1600/achievements/achievement_rope_cutter.png) -} - -.ui-1600 .ach-4.unlocked { - background-image: url(../images/1600/achievements/achievement_rope_cutter_maniac.png) -} - -.ui-1600 .ach-5.unlocked { - background-image: url(../images/1600/achievements/achievement_ultimate_rope_cutter.png) -} - -.ui-1600 .ach-6.unlocked { - background-image: url(../images/1600/achievements/achievement_bubble_popper.png) -} - -.ui-1600 .ach-7.unlocked { - background-image: url(../images/1600/achievements/achievement_bubble_master.png) -} - -.ui-1600 .ach-8.unlocked { - background-image: url(../images/1600/achievements/achievement_spider_buster.png) -} - -.ui-1600 .ach-9.unlocked { - background-image: url(../images/1600/achievements/achievement_spider_tamer.png) -} - -.ui-1600 .ach-10.unlocked { - background-image: url(../images/1600/achievements/achievement_spider_lover.png) -} - -.ui-1600 .ach-11.unlocked { - background-image: url(../images/1600/achievements/achievement_weight_loser.png) -} - -.ui-1600 .ach-12.unlocked { - background-image: url(../images/1600/achievements/achievement_calorie_minimizer.png) -} - -.ui-1600 .ach-13.unlocked { - background-image: url(../images/1600/achievements/achievement_quick_finger.png) -} - -.ui-1600 .ach-14.unlocked { - background-image: url(../images/1600/achievements/achievement_master_finger.png) -} - -.ui-1600 .ach-15.unlocked { - background-image: url(../images/1600/achievements/achievement_tummy_teaser.png) -} - -.ui-1600 .ach-16.unlocked { - background-image: url(../images/1600/achievements/achievement_candy_juggler.png) -} - -.ui-1600 .ach-17.unlocked { - background-image: url(../images/1600/achievements/achievement_romantic_soul.png) -} - -.ui-1600 .ach-18.unlocked { - background-image: url(../images/1600/achievements/achievement_magician.png) -} - -.ui-1600 #xboxLiveBtn:hover { - background-position: 3px 1px -} - -.ui-1920 {} - -.ui-1920 #c { - position: relative; - width: 1920; - height: 1080; - background-color: #000 -} - -.ui-1920 #e { - width: 1920; - height: 1080 -} - -.ui-1920 #gameContainer { - position: relative; - margin: 40px auto 0; - width: 1920px; - height: 1369px; - padding: 0 -} - -.ui-1920 #gameBorder { - top: -17px; - left: -23px; - position: absolute; - background-repeat: no-repeat; - width: 1963px; - height: 1121px; - display: none -} - -.ui-1920 #gameArea { - margin: 0; - position: absolute; - top: 0; - left: 0; - width: 1920px; - height: 1080px -} - -.ui-1920 .panel { - width: 1920px; - height: 1080px -} - -.ui-1920 #startBackground { - display: none; - background: url(../images/1920/ui/startbg.jpg) -} - -.ui-1920 #menuBackground { - display: none; - background: url(../images/1920/ui/menubg.jpg) -} - -.ui-1920 .seethrough { - background: transparent -} - -.ui-1920 .panelContent { - position: absolute; - top: 0 -} - -.ui-1920 #shadowCanvas { - position: absolute; - top: 0; - width: 1920px; - height: 1080px -} - -.ui-1920 .panelShadow img { - position: relative; - left: -563px; - position: relative; - top: -938px -} - -.ui-1920 .fBtnVBox { - width: 568px; - margin: 0 auto -} - -.ui-1920 .fBtn { - width: 568px; - height: 131px; - background-image: url(../images/1920/ui/fBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 19px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 .fBtn:hover { - background-position: left -133px -} - -.ui-1920 .fBtn.disabled { - background-position: 0 0; - cursor: inherit -} - -.ui-1920 .fBtn.disabled img, -.ui-1920 .fBtn.disabled div { - opacity: .6 -} - -.ui-1920 .fBtn img { - margin-top: 4px -} - -.ui-1920 .mBtn { - width: 441px; - height: 131px; - background-image: url(../images/1920/ui/mBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 19px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 .mBtn img { - margin-top: 4px -} - -.ui-1920 .mBtn:hover { - background-position: left -133px -} - -.ui-1920 .lBtn { - width: 793px; - height: 131px; - background-image: url(../images/1920/ui/lBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 19px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 .lBtn img { - margin-top: 4px -} - -.ui-1920 .lBtn:hover { - background-position: left -133px -} - -.ui-1920 .sBtn { - width: 321px; - height: 122px; - background-image: url(../images/1920/ui/sBtn_bgd.png); - background-repeat: no-repeat; - text-align: center; - margin-bottom: 19px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 .sBtn img { - margin-top: 4px -} - -.ui-1920 .sBtn:hover { - background-position: left -124px -} - -.ui-1920 .bBtn { - position: absolute; - top: 923px; - left: 26px; - width: 148px; - height: 141px; - background-image: url(../images/1920/ui/bBtn_bgd.png); - background-repeat: no-repeat; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 .bBtn:hover { - background-position: left -141px -} - -.ui-1920 .iconBtn { - position: absolute -} - -.ui-1920 #loadingPanel { - display: none -} - -.ui-1920 #loadingPanel img { - margin-top: 188px; - margin-left: 788px -} - -.ui-1920 #boxScore, -.ui-1920 #levelScore { - position: absolute; - top: 41px; - right: 69px; - height: 88px; - padding-right: 94px; - background-image: url(../images/1920/ui/star_result_small.png); - background-position: right top; - background-repeat: no-repeat -} - -.ui-1920 #boxes { - position: absolute; - top: 225px; - left: 583px -} - -.ui-1920 .boxOption { - width: 750px; - height: 750px -} - -.ui-1920 .boxCanvas { - position: absolute; - width: 750px; - height: 750px; - left: 0; - top: 0 -} - -.ui-1920 .boxOption .boxTitle { - position: absolute; - top: 20px; - left: 28px -} - -.ui-1920 .boxOmNom { - background-color: #2d2d35; - background-image: url(../images/1920/ui/box_omnom.png); - width: 563px; - height: 263px; - position: absolute; - top: 343px; - left: 30px; - background-position: 173px 75px; - background-repeat: no-repeat -} - -.ui-1920 #boxNavBack, -.ui-1920 #boxNavForward { - position: absolute; - top: 480px; - left: 384px; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 #boxNavBack div, -.ui-1920 #boxNavForward div { - width: 111px; - height: 133px; - background-image: url(../images/1920/ui/box_nav_menu.png); - background-repeat: no-repeat -} - -.ui-1920 #boxNavBack .boxNavDisabled { - cursor: url(/cursors/cursor.cur), url(/cursors/cursor.png), auto; - background-position: left -133px; - opacity: .25 -} - -.ui-1920 #boxNavForward { - left: 1449px -} - -.ui-1920 #boxNavForward div { - background-position: -111px top -} - -.ui-1920 #boxNavForward .boxNavDisabled { - cursor: url(/cursors/cursor.cur), url(/cursors/cursor.png), auto; - background-position: -111px -133px; - opacity: .25 -} - -.ui-1920 .hideFromMouse { - pointer-events: none -} - -.ui-1920 #levelBackground { - display: none -} - -.ui-1920 .levelTape { - width: 98px; - height: 1037px; - position: absolute; - left: 911px; - top: 19px; - background-image: url(../images/1920/ui/leveltape.png); - background-repeat: no-repeat; - display: none -} - -.ui-1920 #levelOptions { - position: absolute; - top: 118px; - left: 563px; - width: 10px; - height: 10px -} - -.ui-1920 #levelPanel .option { - position: absolute; - width: 227px; - height: 264px -} - -.ui-1920 #levelPanel .option .txt { - margin-top: 41px; - width: 227px; - text-align: center -} - -.ui-1920 #levelPanel .stars0, -.ui-1920 #levelPanel .stars1, -.ui-1920 #levelPanel .stars2, -.ui-1920 #levelPanel .stars3 { - position: absolute; - top: 152px; - left: 64px; - width: 165px; - height: 90px; - background-image: url(../images/1920/ui/options_stars_bgd.png); - background-repeat: no-repeat -} - -.ui-1920 #levelPanel .stars1 { - background-position: left -90px -} - -.ui-1920 #levelPanel .stars2 { - background-position: left -180px -} - -.ui-1920 #levelPanel .stars3 { - background-position: left -270px -} - -.ui-1920 #levelPanel .open { - background-image: url(../images/1920/ui/level_bgd.png); - background-repeat: no-repeat -} - -.ui-1920 #levelPanel .locked { - background-image: url(../images/1920/ui/level_bgd.png); - background-position: left -264px; - background-repeat: no-repeat -} - -.ui-1920 #levelPanel .purchase { - opacity: .4 -} - -.ui-1920 #levelPanel .option-small .stars0, -.ui-1920 #levelPanel .option-small .stars1, -.ui-1920 #levelPanel .option-small .stars2, -.ui-1920 #levelPanel .option-small .stars3 { - position: absolute; - top: 99px; - left: 41px; - width: 109px; - height: 56px; - background-image: url(../images/1920/ui/options_stars_bgd_small.png); - background-repeat: no-repeat -} - -.ui-1920 #levelPanel .option-small .stars1 { - background-position: left -60px -} - -.ui-1920 #levelPanel .option-small .stars2 { - background-position: left -120px -} - -.ui-1920 #levelPanel .option-small .stars3 { - background-position: left -180px -} - -.ui-1920 #levelPanel .option.option-small { - position: absolute; - width: 150px; - height: 159px; - margin-top: 28px; - text-align: center -} - -.ui-1920 #levelPanel .open.option-small { - background-image: url(../images/1920/ui/level_bgd_small.png); - background-repeat: no-repeat -} - -.ui-1920 #levelPanel .locked.option-small { - background-image: url(../images/1920/ui/level_bgd_small.png); - background-position: left -174px; - background-repeat: no-repeat -} - -.ui-1920 #levelPanel .option.option-small .txt { - margin-top: 13px; - width: 156px; - text-align: center -} - -.ui-1920 #gameBtnTray { - display: none; - position: absolute; - width: 338px; - height: 79px; - right: 0; - top: 8px -} - -.ui-1920 #gameBtnTray>div { - opacity: .7 -} - -.ui-1920 #gameBtnTray>div:hover { - opacity: 1 -} - -.ui-1920 #gameRestartBtn { - width: 79px; - height: 79px; - background: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -188px 0; - position: absolute; - top: 0; - left: 83px -} - -.ui-1920 #gameMenuBtn { - position: absolute; - width: 165px; - height: 79px; - background: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: 0 0; - top: 0; - left: 165px -} - -.ui-1920 #gameSound { - width: 79px; - height: 79px; - background: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - position: absolute; - top: 0; - left: 0 -} - -.ui-1920 #gameSound.allSound { - background-position: -1125px 0 -} - -.ui-1920 #gameSound.effectsOnly { - background-position: -1313px 0 -} - -.ui-1920 #gameSound.noSound { - background-position: -1500px 0 -} - -.ui-1920 #gameMsg { - width: 750px; - height: 53px; - position: absolute; - right: 356px; - top: -23px; - display: none; - text-align: right -} - -.ui-1920 #levelMenu { - position: absolute; - top: 0; - width: 1920px; - height: 836px; - background-color: rgba(0, 0, 0, .6); - display: none; - text-align: center; - padding-top: 244px -} - -.ui-1920 #levelResults { - display: none; - width: 1069px; - height: 848px; - margin: 113px auto 0; - text-align: center; - font-family: gooddogplain; - font-size: 60px; - color: #3c2110; - position: relative -} - -.ui-1920 #resultStatus { - position: absolute; - width: 1069px; - top: 56px; - left: 0; - text-align: center -} - -.ui-1920 #levelResults .starCase { - width: 527px; - height: 174px; - margin: 0 auto; - position: relative; - top: 178px -} - -.ui-1920 #resultTicker { - position: absolute; - top: 375px; - left: 0; - width: 1069px; - text-align: center -} - -.ui-1920 #resultTickerLabel { - display: none -} - -.ui-1920 #resultTickerValue { - padding-left: 20px; - display: none -} - -.ui-1920 #resultTickerMessage { - display: none -} - -.ui-1920 #levelResults .star, -.ui-1920 #levelResults .starEmpty { - float: left; - width: 174px; - height: 174px; - background-image: url(../images/1920/ui/star_result.png); - background-repeat: no-repeat -} - -.ui-1920 #levelResults .starEmpty { - background-position: left -174px -} - -.ui-1920 #levelResults .line { - position: absolute; - top: 469px; - left: 188px; - width: 692px; - height: 13px; - background-image: url(../images/1920/ui/result_line.png); - background-repeat: no-repeat -} - -.ui-1920 #resultScore { - font-size: 113px; - position: absolute; - top: 469px; - width: 1069px; - display: none -} - -.ui-1920 #levelResults .btnCase { - width: 1031px; - height: 141px; - position: absolute; - top: 656px; - left: 19px -} - -.ui-1920 #resultImproved { - width: 219px; - height: 219px; - background-repeat: no-repeat; - position: absolute; - top: 356px; - left: 769px; - display: none -} - -.ui-1920 #levelResults .btnCase .sBtn { - float: left -} - -.ui-1920 #lrMenuBtn { - margin: 0 28px -} - -.ui-1920 #boxCutter { - background-image: url(../images/1920/ui/boxcutter.png); - background-repeat: no-repeat; - display: none; - position: absolute; - top: 527px; - left: 334px; - width: 636px; - height: 602px -} - -.ui-1920 #tapeRoll { - background-image: url(../images/1920/ui/taperoll.png); - background-repeat: no-repeat; - display: none; - position: absolute; - top: -26px; - left: 818px; - width: 244px; - height: 328px -} - -.ui-1920 #gameCompletePanel { - background-image: url(../images/1920/ui/gamecomplete.jpg); - background-repeat: no-repeat -} - -.ui-1920 #finalShareBtn { - position: absolute; - top: 806px; - left: 300px -} - -.ui-1920 #finalShareBtn img { - position: relative; - left: 19px; - top: 13px -} - -.ui-1920 #ffb { - position: absolute; - top: -15px; - left: -47px; - width: 156px; - height: 156px; - background: url(../images/1920/ui/fb.png); - background-repeat: no-repeat -} - -.ui-1920 #gameBorder.gameComplete { - top: -53px; - left: -62px; - position: absolute; - background-repeat: no-repeat; - width: 2044px; - height: 1191px; - display: none; - background-image: url(../images/1920/ui/gamecomplete_border.png); - background-repeat: no-repeat -} - -.ui-1920 #finalScore { - position: absolute; - top: 638px; - height: 88px; - width: 1920px -} - -.ui-1920 #finalScore img { - margin: 0 auto; - display: block -} - -.ui-1920 #finalFunBtn { - position: absolute; - top: 806px; - left: 863px; - display: block -} - -.ui-1920 #finalFunBtn img { - position: relative; - left: 28px; - top: 13px -} - -.ui-1920 #funOmNom { - width: 191px; - height: 189px; - background-image: url(../images/1920/ui/fun-omnom.png); - background-repeat: no-repeat; - position: absolute; - top: -41px; - left: -56px -} - -.ui-1920 #congrats { - position: absolute; - top: 188px; - left: 0; - width: 100%; - text-align: center -} - -.ui-1920 #optionsPanel { - padding-top: 38px -} - -.ui-1920 #optionsTitle { - position: relative; - width: 943px; - left: -188px; - height: 131px -} - -.ui-1920 #optionsTitle img { - margin: 0 auto; - display: block -} - -.ui-1920 #creditsBtn { - display: none -} - -.ui-1920 .mini-button { - background-image: url(../images/1920/ui/menu-options.png); - background-repeat: no-repeat; - width: 268px; - height: 128px; - display: inline-block; - margin-bottom: 15px; - margin-right: 9px; - text-align: center; - position: relative -} - -.ui-1920 .mini-button:hover { - background-position: 0 -131px -} - -.ui-1920 .options-x { - background-image: url(../images/1920/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -283px -131px; - width: 56px; - height: 56px -} - -.ui-1920 .options-check { - background-image: url(../images/1920/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -146px -283px; - width: 66px; - height: 66px -} - -.ui-1920 .options-check-disabled { - background-image: url(../images/1920/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -281px -191px; - width: 66px; - height: 66px -} - -.ui-1920 #options-speaker { - background-image: url(../images/1920/ui/menu-options.png); - background-repeat: no-repeat; - background-position: 0 -263px; - width: 122px; - height: 107px; - position: absolute; - left: 75px; - top: 11px -} - -.ui-1920 #soundBtn .options-x { - position: absolute; - bottom: 9px; - left: 131px; - display: none -} - -.ui-1920 #soundBtn.disabled #options-speaker { - opacity: .6 -} - -.ui-1920 #soundBtn.disabled .options-x { - display: block -} - -.ui-1920 #options-note { - background-image: url(../images/1920/ui/menu-options.png); - background-repeat: no-repeat; - background-position: -281px 0; - width: 103px; - height: 116px; - position: absolute; - left: 84px; - top: 4px -} - -.ui-1920 #musicBtn .options-x { - position: absolute; - bottom: 8px; - left: 135px; - display: none -} - -.ui-1920 #musicBtn.disabled #options-note { - opacity: .6 -} - -.ui-1920 #musicBtn.disabled .options-x { - display: block -} - -.ui-1920 #dragBtn, -.ui-1920 #cutBtn { - background-image: url(../images/1920/ui/menu-options.png); - background-repeat: no-repeat; - width: 169px; - height: 375px; - display: inline-block; - position: relative; - margin-left: 71px -} - -.ui-1920 #dragBtn { - background-position: 0 -371px; - background-repeat: no-repeat -} - -.ui-1920 #dragBtn .options-check-disabled { - position: absolute; - bottom: 32px; - left: 53px -} - -.ui-1920 #cutBtn { - background-position: -197px -371px -} - -.ui-1920 #cutBtn .options-check { - position: absolute; - bottom: 28px; - left: 58px -} - -.ui-1920 #cutBtn.disabled .options-check { - display: none -} - -.ui-1920 #dragText, -.ui-1920 #cutText { - margin-top: 216px; - margin-left: -43px -} - -.ui-1920 #vid { - display: none; - width: 1920px; - height: 1080px; - position: absolute; - top: 0; - left: 0; - background: transparent -} - -.ui-1920 #fadeToBlack { - display: none; - width: 1920px; - height: 1080px; - position: absolute; - top: 0; - left: 0; - background: #000 -} - -.ui-1920 #menuLogo { - position: absolute; - left: 606px; - top: 75px; - width: 636px; - height: 564px; - background-image: url(../images/1920/ui/ph_logo.png); - background-repeat: no-repeat -} - -.ui-1920 #menuBtnVbox { - position: absolute; - left: 671px; - top: 675px -} - -.ui-1920 #dmsg { - display: block; - position: relative; - margin: 56px auto 0 -} - -.ui-1920 #dframe { - position: relative; - width: 563px; - height: 733px; - background-image: url(../images/1920/ui/drawing-bg.png); - background-repeat: no-repeat; - margin: -19px auto 0 auto -} - -.ui-1920 #dpic { - position: absolute; - width: 448px; - height: 630px; - top: 45px; - left: 53px -} - -.ui-1920 .drawing1 { - background: url(../images/1920/ui/drawing1.jpg) no-repeat -} - -.ui-1920 .drawing2 { - background: url(../images/1920/ui/drawing2.jpg) no-repeat -} - -.ui-1920 .drawing3 { - background: url(../images/1920/ui/drawing3.jpg) no-repeat -} - -.ui-1920 #dshareBtn { - position: relative; - margin: 5px auto 0 -} - -.ui-1920 #dfb { - position: absolute; - top: -15px; - left: -9px; - width: 156px; - height: 156px; - background-image: url(../images/1920/ui/fb.png); - background-repeat: no-repeat -} - -.ui-1920 #gameFooterContainer { - width: 1920px -} - -.ui-1920 #miniOptionsMenu { - width: 750px; - height: 94px; - position: absolute; - left: 28px; - top: 975px -} - -.ui-1920 #optionHd.activeResolution { - background: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -563px -94px; - opacity: .8 -} - -.ui-1920 #optionHd.inActiveResolution { - background: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -563px 0; - opacity: .6; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 #optionHd.inActiveResolution:hover { - opacity: .8 -} - -.ui-1920 #optionSd.activeResolution { - background: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -375px -94px; - opacity: .8 -} - -.ui-1920 #optionSd.inActiveResolution { - background: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - background-position: -375px 0; - opacity: .6; - cursor: url(/cursors/handcursor.cur), url(/cursors/handcursor.png), auto -} - -.ui-1920 #optionSd.inActiveResolution:hover { - opacity: .8 -} - -.ui-1920 #optionSound { - width: 79px; - height: 79px; - background-image: url(../images/1920/ui/buttonsprite.png); - background-repeat: no-repeat; - position: absolute; - left: 0; - opacity: .6 -} - -.ui-1920 #optionSound.allSound { - background-position: -1125px 0 -} - -.ui-1920 #optionSound.effectsOnly { - background-position: -1313px 0 -} - -.ui-1920 #optionSound.noSound { - background-position: -1500px 0 -} - -.ui-1920 #optionSound:hover { - opacity: .7 -} - -.ui-1920 #optionMsg { - width: 394px; - height: 53px; - position: absolute; - left: 253px; - top: -23px; - display: none -} - -.ui-1920 #popupWindow { - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - display: none; - background-color: rgba(0, 0, 0, .4); - z-index: 2 -} - -.ui-1920 #popupWindow .popupOuterFrame { - margin: 98px auto 0; - background-image: url(../images/1920/ui/popupouter.png); - background-repeat: no-repeat; - width: 1194px; - height: 866px; - position: relative -} - -.ui-1920 #popupWindow .popupInnerFrame { - position: absolute; - background-image: url(../images/1920/ui/popupinner.jpg); - background-repeat: no-repeat; - width: 1082px; - height: 683px; - left: 34px; - top: 43px; - display: none -} - -.ui-1920 #popupWindow .bottomright { - position: absolute; - bottom: 19px; - right: 19px -} - -.ui-1920 #popupWindow #slowComputer { - background-image: url(../images/1920/ui/popupinner-slow.jpg); - background-repeat: no-repeat -} - -.ui-1920 #slowComputerBtn { - position: absolute; - bottom: 19px; - left: 94px -} - -.ui-1920 #slowComputerBtn img { - margin-top: 15px -} - -.ui-1920 #resetGame { - text-align: center -} - -.ui-1920 #resetText { - margin-top: 47px -} - -.ui-1920 #resetYesBtn { - position: absolute; - bottom: 178px; - left: 94px -} - -.ui-1920 #resetNoBtn { - position: absolute; - bottom: 178px; - left: 544px -} - -.ui-1920 #resetHoldYes { - position: absolute; - bottom: 38px; - width: 1088px; - text-align: center -} - -.ui-1920 #missingStars { - text-align: center -} - -.ui-1920 #missingLine1 { - margin-top: 38px -} - -.ui-1920 #missingStar { - background-image: url(../images/1920/ui/star_result_small.png); - background-repeat: no-repeat; - width: 96px; - height: 88px; - display: inline-block; - vertical-align: top; - margin-top: 6px -} - -.ui-1920 #missingOkBtn { - display: inline-block -} - -.ui-1920 #flag { - background-image: url(../images/1920/ui/flags.png); - background-repeat: no-repeat; - background-position: 0 0; - display: inline-block; - width: 94px; - height: 71px; - position: relative; - top: -23px; - margin-left: 19px -} - -.ui-1920 #resultImproved { - background-image: url(../images/1920/ui/menu_result_en.png); - background-repeat: no-repeat -} - -.ui-1920 .lang-fr #resultImproved { - background-image: url(../images/1920/ui/menu_result_fr.png) -} - -.ui-1920 .lang-fr #flag { - background-position: 0 -75px -} - -.ui-1920 .lang-de #resultImproved { - background-image: url(../images/1920/ui/menu_result_gr.png) -} - -.ui-1920 .lang-de #flag { - background-position: 0 -150px -} - -.ui-1920 .lang-de #gameMenuBtn { - background-position: -1603px 0 -} - -.ui-1920 .lang-ru #resultImproved { - background-image: url(../images/1920/ui/menu_result_ru.png) -} - -.ui-1920 .lang-ru #flag { - background-position: 0 -225px -} - -.ui-1920 .lang-ru #gameMenuBtn { - background-position: -1875px 0 -} - -.ui-1920 #menuLogo { - margin-top: 0 -} - -.ui-1920 #menuBtnVbox { - margin-top: 80px; - top: 550px -} - -.ui-1920 #gameContainer { - margin: 0; - padding: 0; - height: 1080px -} - -.ui-1920 #finalShareBtn { - left: 735px -} - -.ui-1920 #optionsBtn { - background: url(../images/1920/ui/btn-options.png) no-repeat 100% 0; - position: absolute; - bottom: 0; - right: 30px -} - -.ui-1920 #optionsBtn img { - position: absolute; - margin: 0; - padding: 0; - display: block; - right: 130px; - top: 10px -} - -.ui-1920 #optionsBtn:hover { - background: url(../images/1920/ui/btn-options.png) no-repeat 100% -150px -} - -.ui-1920 #optionMsg { - left: 90px -} - -.ui-1920 #boxUpgradePrompt { - position: absolute; - top: 50px; - left: 350px -} - -.ui-1920 #boxUpgradePlate { - position: absolute; - top: 550px; - left: 710px; - width: 510px; - height: 259px; - background-image: url(../images/1920/ui/buy-button.png); - background-repeat: no-repeat; - text-align: center -} - -.ui-1920 #boxUpgradePlate:hover { - background-position: 0 -259px -} - -.ui-1920 #boxUpgradePlate>img { - margin-top: 92px -} - -.ui-1920 #boxUpgradeButton { - position: absolute; - top: 720px; - left: 690px -} - -.ui-1920 #boxUpgradeButton>img { - margin-top: 25px -} - -.ui-1920 #payDialog { - text-align: center -} - -.ui-1920 #payMessage { - position: relative; - top: -10px -} - -.ui-1920 #payImg { - position: relative; - top: -20px; - width: 500px; - height: 500px; - margin: 0 auto; - background-image: url(../images/1920/ui/box-purchase.png); - background-repeat: no-repeat; - background-size: contain -} - -.ui-1920 #payBtn { - display: inline-block; - position: relative; - top: -192px -} - -.ui-1920 #payBtn>img { - margin-top: 26px -} - -.ui-1920 #payClose { - position: absolute; - top: 20px; - right: 20px -} - -.ui-1920 .scrollable { - position: relative; - overflow: hidden; - width: 1400px; - height: 800px -} - -.ui-1920 .scrollable .content { - background: rgba(0, 0, 0, 0); - position: absolute; - overflow: scroll; - overflow-x: hidden; - top: 0; - bottom: 0; - left: 0; - right: -2000px; - padding: 20px; - padding-right: 2090px -} - -.ui-1920 .scrollable .content::-webkit-scrollbar { - visibility: hidden -} - -.ui-1920 .has-scrollbar .content::-webkit-scrollbar { - visibility: visible -} - -.ui-1920 .scrollable>.pane { - background: rgba(0, 0, 0, 0); - position: absolute; - width: 110px; - right: 0; - top: 0; - bottom: 0; - -webkit-transition: .2s; - -moz-transition: .2s; - -o-transition: .2s; - transition: .2s; - background: url(../images/1920/leaderboard/scrollbar-track.png) no-repeat 40px 0; - background-size: 30px 100% -} - -.ui-1920 .scrollable>.pane>.slider { - width: 110px; - position: relative; - margin: 0 1px; - background: url(../images/1920/leaderboard/scrollbar-thumb.png); - background-repeat: no-repeat -} - -.ui-1920 #leaderboardIcon { - position: absolute; - width: 138px; - height: 139px; - background: url(../images/1920/leaderboard/icon-leaderboard.png) no-repeat; - top: 0; - left: -45px -} - -.ui-1920 #leaderboardsBtn img { - position: relative; - left: 10px; - top: 15px -} - -.ui-1920 #leaderboardPanel { - width: 1920px; - height: 1080px -} - -.ui-1920 .list-content { - position: relative; - margin-right: auto; - margin-left: auto; - width: 1200px; - color: #2E2110; - font-size: 54px; - font-family: gooddogplain -} - -.ui-1920 .list-selector { - position: relative; - top: 20px; - height: 125px -} - -.ui-1920 .list-left-arrow { - position: absolute; - top: 0; - left: 0; - width: 110px; - height: 125px; - background-image: url(../images/1920/ui/box_nav_menu.png); - background-repeat: no-repeat -} - -.ui-1920 .list-left-arrow:active { - background: url(../images/1920/ui/box_nav_menu.png) 0 130px -} - -.ui-1920 .list-right-arrow { - position: absolute; - top: 0; - right: 0; - width: 110px; - height: 125px; - background: url(../images/1920/ui/box_nav_menu.png) -110px 0; - background-repeat: no-repeat -} - -.ui-1920 .list-right-arrow:active { - background: url(../images/1920/ui/box_nav_menu.png) -110px 130px -} - -.ui-1920 #leaderboardLeft.disabled, -.ui-1920 #leaderboardRight.disabled { - opacity: .25 -} - -.ui-1920 .list-title { - padding-top: 10px; - color: #fff; - text-align: center; - text-shadow: 4px 6px 0 #000; - font-size: 88px -} - -.ui-1920 .list-header { - box-sizing: border-box; - margin-top: 40px; - padding: 5px 40px; - width: 800px; - height: 100px; - background: url(../images/1920/leaderboard/list-header.png); - background-size: 100% 100%; - background-repeat: no-repeat -} - -.ui-1920 #lb-name, -.ui-1920 #lb-score { - position: relative; - top: -20px -} - -.ui-1920 #lb-name { - float: left -} - -.ui-1920 #lb-score { - float: right -} - -.ui-1920 .list-scrollable { - position: relative; - left: 50px; - width: 1000px; - height: 650px -} - -.ui-1920 .lb-row { - padding-right: 50px; - padding-left: 40px; - width: 780px; - height: 70px -} - -.ui-1920 .lb-row .lb-place { - display: inline-block; - width: 50px -} - -.ui-1920 .lb-name { - display: inline-block; - width: 540px -} - -.ui-1920 .lb-row.selected { - padding-top: 20px; - height: 90px; - background: url(../images/1920/leaderboard/list-select.png); - background-size: 100% 100%; - background-repeat: no-repeat -} - -.ui-1920 #leaderboardLoading { - width: 255px; - height: 255px; - background: url(../images/1920/leaderboard/menu_processing_hd.png); - background-repeat: no-repeat; - z-index: 1000; - margin: 0 auto -} - -.ui-1920 #leaderboardLoading.show { - transition: all 200000ms linear; - transform: rotate(72000deg) -} - -.ui-1920 #signInControl { - width: 550px; - height: 128px; - position: absolute; - top: 30px; - right: 30px; - background-image: url(../images/1920/profile/profile-bg.png); - background-size: cover; - background-repeat: no-repeat -} - -.ui-1920 #gamerPicture { - position: absolute; - top: 31px; - left: 30px; - width: 64px; - height: 64px; - background-color: #C3BDC1; - background-size: cover -} - -.ui-1920 #gamerPictureBorder { - position: absolute; - top: 21px; - left: 20px; - width: 84px; - height: 84px; - background-image: url(../images/1920/profile/profile-avatarbg.png); - background-repeat: no-repeat -} - -.ui-1920 #signInInfo { - position: absolute; - top: 18px; - left: 115px; - width: 300px; - height: 105px; - background: rgba(0, 0, 0, 0) -} - -.ui-1920 #signInMessage { - height: 30px; - color: #40260A; - margin-right: 10px -} - -.ui-1920 #signInMessage>img { - position: relative; - top: -18px -} - -.ui-1920 #signInButton, -.ui-1920 #signOutButton { - background-image: url(../images/1920/profile/profile-btn.png); - background-repeat: no-repeat; - padding: 6px 15px 4px; - position: absolute; - bottom: 16px; - left: 0; - width: 204px; - height: 53px; - text-align: center; - font-size: 36px; - color: #9f663b; - box-sizing: border-box -} - -.ui-1920 #signInButton:hover, -.ui-1920 #signOutButton:hover { - background: url(../images/1920/profile/profile-btn.png) 0 -99px -} - -.ui-1920 #signInButton.pending { - color: #9f663b -} - -.ui-1920 #signInButton>img, -.ui-1920 #signOutButton>img { - position: relative; - top: -15px -} - -.ui-1920 #xboxLiveBtn { - width: 177px; - height: 127px; - background: transparent; - position: absolute; - top: 0; - right: 0 -} - -.ui-1920 #xboxLiveBtn:hover { - background: url(../images/1920/profile/profile-xbox-over.png) 0 1px; - background-repeat: no-repeat -} - -.ui-1920 #achievementsIcon { - position: absolute; - width: 149px; - height: 168px; - background: url(../images/1920/achievements/icon-achievements.png) no-repeat; - top: -25px; - left: -45px -} - -.ui-1920 #achievementsBtn img { - position: relative; - left: 10px; - top: 15px -} - -.ui-1920 #achievementsPanel { - width: 1920px; - height: 1080px -} - -.ui-1920 #ach-list { - position: relative; - top: 100px; - height: 850px -} - -.ui-1920 .ach-row { - position: relative; - height: 230px -} - -.ui-1920 .ach-img { - position: absolute; - top: 10px; - left: 0; - width: 161px; - height: 191px; - background: url(../images/1920/achievements/empty_achievement.png) no-repeat 0 10px -} - -.ui-1920 .ach-name { - position: absolute; - top: 5px; - left: 190px; - color: #fff; - text-shadow: 4px 6px 0 #000; - font-size: 80px -} - -.ui-1920 .ach-desc { - position: absolute; - top: 75px; - left: 190px -} - -.ui-1920 .ach-0.unlocked { - background-image: url(../images/1920/achievements/achievement_bronze_scissors.png) -} - -.ui-1920 .ach-1.unlocked { - background-image: url(../images/1920/achievements/achievement_silver_scissors.png) -} - -.ui-1920 .ach-2.unlocked { - background-image: url(../images/1920/achievements/achievement_golden_scissors.png) -} - -.ui-1920 .ach-3.unlocked { - background-image: url(../images/1920/achievements/achievement_rope_cutter.png) -} - -.ui-1920 .ach-4.unlocked { - background-image: url(../images/1920/achievements/achievement_rope_cutter_maniac.png) -} - -.ui-1920 .ach-5.unlocked { - background-image: url(../images/1920/achievements/achievement_ultimate_rope_cutter.png) -} - -.ui-1920 .ach-6.unlocked { - background-image: url(../images/1920/achievements/achievement_bubble_popper.png) -} - -.ui-1920 .ach-7.unlocked { - background-image: url(../images/1920/achievements/achievement_bubble_master.png) -} - -.ui-1920 .ach-8.unlocked { - background-image: url(../images/1920/achievements/achievement_spider_buster.png) -} - -.ui-1920 .ach-9.unlocked { - background-image: url(../images/1920/achievements/achievement_spider_tamer.png) -} - -.ui-1920 .ach-10.unlocked { - background-image: url(../images/1920/achievements/achievement_spider_lover.png) -} - -.ui-1920 .ach-11.unlocked { - background-image: url(../images/1920/achievements/achievement_weight_loser.png) -} - -.ui-1920 .ach-12.unlocked { - background-image: url(../images/1920/achievements/achievement_calorie_minimizer.png) -} - -.ui-1920 .ach-13.unlocked { - background-image: url(../images/1920/achievements/achievement_quick_finger.png) -} - -.ui-1920 .ach-14.unlocked { - background-image: url(../images/1920/achievements/achievement_master_finger.png) -} - -.ui-1920 .ach-15.unlocked { - background-image: url(../images/1920/achievements/achievement_tummy_teaser.png) -} - -.ui-1920 .ach-16.unlocked { - background-image: url(../images/1920/achievements/achievement_candy_juggler.png) -} - -.ui-1920 .ach-17.unlocked { - background-image: url(../images/1920/achievements/achievement_romantic_soul.png) -} - -.ui-1920 .ach-18.unlocked { - background-image: url(../images/1920/achievements/achievement_magician.png) -} - -body { - background: #000; - overflow: hidden -} - -#dfb { - background-image: none!important -} - -#ffb { - background-image: none!important -} - -#menuBtnVbox .fBtn { - margin-bottom: 0 -} - -#gameContainer { - position: absolute!important; - top: 0; - left: 0 -} - -#popupWindow { - position: absolute!important -} \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/css/default.css b/packages/zeptolabuklimited.cuttherope/css/default.css deleted file mode 100644 index a3aa1b4e..00000000 --- a/packages/zeptolabuklimited.cuttherope/css/default.css +++ /dev/null @@ -1,136 +0,0 @@ -body -{ - -ms-grid-columns: 1fr; - -ms-grid-rows: 1fr; - display: -ms-grid; -} - -#snapLogo { - display:block; - margin:auto; - width:254px; - height:382px; -} - -.win-label { - color: white; -} - -#aboutContent { - text-align: center; - font-size: 18px; -} - -#aboutContent > p { - margin-top: 20px; -} - -#settingButtons label { - clear: right; - display: inline-block; - margin-top: 10px; -} - -#cutSettings { - margin:30px 0px 20px; -} - -#langLabel { - clear: both; - display: block; - margin-top: 30px; -} - -#langSelect { - clear: both; - display: block; - margin-top: 10px; -} - -#resetBtn { - clear: both; - display:block; - margin-top: 50px; -} - -#settingsDiv .win-backbutton { - background-color: transparent; - border-color: rgb(255, 255, 255); - color: rgb(255, 255, 255); -} - -#settingsDiv .win-backbutton:hover { - background-color: rgba(255, 255, 255, 0.13); - border-color: rgb(255, 255, 255); -} - -#settingsDiv .win-backbutton:hover:active { - background-color: rgb(255, 255, 255); - border-color: rgb(255, 255, 255); - color: #d43623; -} - -#settingsDiv .win-backbutton:disabled, .win-backbutton:disabled:active { - background-color: transparent; - border-color: rgba(255, 255, 255, 0.4); - color: rgba(255, 255, 255, 0.4); -} - -@media screen and (max-width: 480px) -{ - #snapView { - display:block; - position:fixed; - top:0; - left:0; - width:100%; - height:100%; - background: #d43623; - background-image: url(../images/cardboard.png); - color: white; - } - - #snapLogo { - position: absolute; - top: 100px; - left: 22px; - - } - - #gameContainer { - display: none; - } -} - -@media screen and (min-width: 480px) -{ - #snapView { - display: none; - } - - #gameContainer { - display: block; - } -} - -@media screen and (-ms-view-state: filled) -{ - #snapView { - display: none; - } - - #gameContainer { - display: block; - } -} - -@media screen and (-ms-view-state: fullscreen-portrait) -{ - #snapView { - display: none; - } - - #gameContainer { - display: block; - } -} diff --git a/packages/zeptolabuklimited.cuttherope/cursors/cursor.cur b/packages/zeptolabuklimited.cuttherope/cursors/cursor.cur deleted file mode 100644 index 73186829..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/cursors/cursor.cur and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/cursors/cursor.png b/packages/zeptolabuklimited.cuttherope/cursors/cursor.png deleted file mode 100644 index 9f891d77..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/cursors/cursor.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/cursors/cursorActive.cur b/packages/zeptolabuklimited.cuttherope/cursors/cursorActive.cur deleted file mode 100644 index d0716773..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/cursors/cursorActive.cur and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/cursors/cursorActive.png b/packages/zeptolabuklimited.cuttherope/cursors/cursorActive.png deleted file mode 100644 index 169afbaa..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/cursors/cursorActive.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/cursors/handcursor.cur b/packages/zeptolabuklimited.cuttherope/cursors/handcursor.cur deleted file mode 100644 index 213a5af5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/cursors/handcursor.cur and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/cursors/handcursor.png b/packages/zeptolabuklimited.cuttherope/cursors/handcursor.png deleted file mode 100644 index c676281b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/cursors/handcursor.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/data/in-app-purchase-simulator.xml b/packages/zeptolabuklimited.cuttherope/data/in-app-purchase-simulator.xml deleted file mode 100644 index fde784c5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/data/in-app-purchase-simulator.xml and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/default.html b/packages/zeptolabuklimited.cuttherope/default.html deleted file mode 100644 index e81ff822..00000000 --- a/packages/zeptolabuklimited.cuttherope/default.html +++ /dev/null @@ -1,255 +0,0 @@ - - - - - Cut the Rope - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -
-
- -
-
- -
- -
-
-
- -
- - -
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- - - -
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
-
- - -
-
- -
-
-
- -
Settings
-
-
- -
- - -
- -
-
- -
- - - - - -
-
-
-
- -
About
-
-
- ZeptoLab Logo -

Cut the Rope version

-

© 2012 ZeptoLab

-

All rights reserved. ZeptoLab, Cut the Rope, Om Nom and Feed with Candy are the trademarks of ZeptoLab.

-
-
-
- - diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.eot b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.eot deleted file mode 100644 index 1b9a374c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.eot and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.svg b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.svg deleted file mode 100644 index 7f4c7bdf..00000000 --- a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.svg +++ /dev/null @@ -1,648 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.ttf b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.ttf deleted file mode 100644 index 14a8daa8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.ttf and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.woff b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.woff deleted file mode 100644 index c8342ed3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-new/gooddog_new-webfont.woff and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.eot b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.eot deleted file mode 100644 index 05ebed66..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.eot and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.svg b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.svg deleted file mode 100644 index 9a983b20..00000000 --- a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.svg +++ /dev/null @@ -1,147 +0,0 @@ - - - - -This is a custom SVG webfont generated by Font Squirrel. -Copyright : Copyright c 1996 by Ethan Dunham Fonthead Design All rights reserved -Designer : Ethan Dunham -Foundry : Ethan Dunham Fonthead Design -Foundry URL : httpwwwfontheadcom - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.ttf b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.ttf deleted file mode 100644 index da5af27b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.ttf and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.woff b/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.woff deleted file mode 100644 index 342d974f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/fonts/gooddog-plain/GoodDog-webfont.woff and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bronze_scissors.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bronze_scissors.png deleted file mode 100644 index 50970aa1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bronze_scissors.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bubble_master.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bubble_master.png deleted file mode 100644 index 4fc7315e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bubble_master.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bubble_popper.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bubble_popper.png deleted file mode 100644 index 44f5a077..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_bubble_popper.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_calorie_minimizer.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_calorie_minimizer.png deleted file mode 100644 index 547ed3cd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_calorie_minimizer.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_candy_juggler.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_candy_juggler.png deleted file mode 100644 index ab9a25f1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_candy_juggler.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_golden_scissors.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_golden_scissors.png deleted file mode 100644 index 6b54eac2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_golden_scissors.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_magician.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_magician.png deleted file mode 100644 index 1949c888..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_magician.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_master_finger.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_master_finger.png deleted file mode 100644 index 746e6d2f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_master_finger.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_quick_finger.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_quick_finger.png deleted file mode 100644 index ee15a207..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_quick_finger.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_romantic_soul.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_romantic_soul.png deleted file mode 100644 index 82d27176..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_romantic_soul.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_rope_cutter.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_rope_cutter.png deleted file mode 100644 index 93b86fc0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_rope_cutter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_rope_cutter_maniac.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_rope_cutter_maniac.png deleted file mode 100644 index a82b02f7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_rope_cutter_maniac.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_silver_scissors.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_silver_scissors.png deleted file mode 100644 index 8415dd90..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_silver_scissors.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_buster.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_buster.png deleted file mode 100644 index cbd803dd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_buster.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_lover.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_lover.png deleted file mode 100644 index cd75506e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_lover.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_tamer.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_tamer.png deleted file mode 100644 index 66a640d7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_spider_tamer.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_tummy_teaser.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_tummy_teaser.png deleted file mode 100644 index 71312952..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_tummy_teaser.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_ultimate_rope_cutter.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_ultimate_rope_cutter.png deleted file mode 100644 index 7a70c2a2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_ultimate_rope_cutter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_weight_loser.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_weight_loser.png deleted file mode 100644 index df4b0695..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/achievement_weight_loser.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/empty_achievement.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/empty_achievement.png deleted file mode 100644 index fa9fad74..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/empty_achievement.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/icon-achievements.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/icon-achievements.png deleted file mode 100644 index bdae1421..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/icon-achievements.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/menu_notification.png b/packages/zeptolabuklimited.cuttherope/images/1366/achievements/menu_notification.png deleted file mode 100644 index 6165fa70..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/achievements/menu_notification.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_01_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_01_p1.jpg deleted file mode 100644 index 4bc80f75..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_01_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_01_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_01_p2.jpg deleted file mode 100644 index b02e60ce..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_01_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_02_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_02_p1.jpg deleted file mode 100644 index a4052ed4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_02_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_02_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_02_p2.jpg deleted file mode 100644 index 296edbdb..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_02_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_03_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_03_p1.jpg deleted file mode 100644 index 06f74b63..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_03_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_03_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_03_p2.jpg deleted file mode 100644 index 904c24cc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_03_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_04_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_04_p1.jpg deleted file mode 100644 index 7df9978e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_04_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_04_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_04_p2.jpg deleted file mode 100644 index d936f347..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_04_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_05_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_05_p1.jpg deleted file mode 100644 index 3df47ca5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_05_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_05_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_05_p2.jpg deleted file mode 100644 index 879f0f1d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_05_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_06_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_06_p1.jpg deleted file mode 100644 index b8c0c8a4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_06_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_06_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_06_p2.jpg deleted file mode 100644 index 0d4e7e84..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_06_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_07_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_07_p1.jpg deleted file mode 100644 index c0715a9d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_07_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_07_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_07_p2.jpg deleted file mode 100644 index 69044831..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_07_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_08_p1.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_08_p1.png deleted file mode 100644 index 038feb51..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_08_p1.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_08_p2.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_08_p2.png deleted file mode 100644 index 2c9836dd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_08_p2.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_09_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_09_p1.jpg deleted file mode 100644 index bbb0d650..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_09_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_09_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_09_p2.jpg deleted file mode 100644 index 16262899..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_09_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_10_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_10_p1.jpg deleted file mode 100644 index 13d7113a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_10_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_10_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_10_p2.jpg deleted file mode 100644 index a9172aad..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_10_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_11_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_11_p1.jpg deleted file mode 100644 index 4ff4068d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_11_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_11_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_11_p2.jpg deleted file mode 100644 index 219f74ae..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/bgr_11_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/big_font.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/big_font.png deleted file mode 100644 index e56b77c3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/big_font.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations.png deleted file mode 100644 index 5dd40c94..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations2.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations2.png deleted file mode 100644 index fdde4133..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations2.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations3.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations3.png deleted file mode 100644 index be030837..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_animations3.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_supports.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/char_supports.png deleted file mode 100644 index b8db5ee8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/char_supports.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/confetti_particles.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/confetti_particles.png deleted file mode 100644 index a50ded56..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/confetti_particles.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/font_numbers_big.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/font_numbers_big.png deleted file mode 100644 index bca55d35..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/font_numbers_big.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/hud_star.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/hud_star.png deleted file mode 100644 index 7493d2e9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/hud_star.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bee_hd.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bee_hd.png deleted file mode 100644 index 5e974ee9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bee_hd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bouncer_01.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bouncer_01.png deleted file mode 100644 index 9e45743d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bouncer_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bouncer_02.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bouncer_02.png deleted file mode 100644 index 887b026c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bouncer_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_attached.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_attached.png deleted file mode 100644 index f9167da8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_attached.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_flight.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_flight.png deleted file mode 100644 index 9d2ea144..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_flight.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_pop.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_pop.png deleted file mode 100644 index feb84696..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_bubble_pop.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_candy_01.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_candy_01.png deleted file mode 100644 index b6937e40..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_candy_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_drawing_hidden.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_drawing_hidden.png deleted file mode 100644 index 49818a85..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_drawing_hidden.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_electrodes.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_electrodes.png deleted file mode 100644 index eff516df..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_electrodes.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hat.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hat.png deleted file mode 100644 index 954355ea..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hat.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_01.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_01.png deleted file mode 100644 index 9059e12b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_02.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_02.png deleted file mode 100644 index d79371e8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_auto.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_auto.png deleted file mode 100644 index b2698f95..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_auto.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_movable.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_movable.png deleted file mode 100644 index 61d4049c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_movable.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_regulated.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_regulated.png deleted file mode 100644 index b1aa624a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_hook_regulated.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_pollen_hd.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_pollen_hd.png deleted file mode 100644 index c429a072..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_pollen_hd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_pump.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_pump.png deleted file mode 100644 index f92a1d2f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_pump.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_01.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_01.png deleted file mode 100644 index b7a09c33..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_02.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_02.png deleted file mode 100644 index 3d488a82..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_03.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_03.png deleted file mode 100644 index 36cbd518..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_03.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_04.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_04.png deleted file mode 100644 index 379fb7ec..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_04.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_button.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_button.png deleted file mode 100644 index f3e3e46d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_rotatable_spikes_button.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spider.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spider.png deleted file mode 100644 index 02ffae2f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spider.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_01.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_01.png deleted file mode 100644 index e1d44be6..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_02.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_02.png deleted file mode 100644 index 3932f7f8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_03.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_03.png deleted file mode 100644 index 269a1115..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_03.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_04.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_04.png deleted file mode 100644 index 0eafe47f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_spikes_04.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_star_disappear.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_star_disappear.png deleted file mode 100644 index 8435e1a6..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_star_disappear.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_star_idle.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_star_idle.png deleted file mode 100644 index 9c5777b1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_star_idle.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_vinil.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_vinil.png deleted file mode 100644 index a1c1c698..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/obj_vinil.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/small_font.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/small_font.png deleted file mode 100644 index 07325165..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/small_font.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/game/tutorial_signs.png b/packages/zeptolabuklimited.cuttherope/images/1366/game/tutorial_signs.png deleted file mode 100644 index 6d7eb62f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/game/tutorial_signs.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/icon-leaderboard.png b/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/icon-leaderboard.png deleted file mode 100644 index 4c78da3d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/icon-leaderboard.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/list-header.png b/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/list-header.png deleted file mode 100644 index 456280d7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/list-header.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/list-select.png b/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/list-select.png deleted file mode 100644 index 6f2f0af9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/list-select.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/menu_processing_hd.png b/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/menu_processing_hd.png deleted file mode 100644 index aff79bdc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/menu_processing_hd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/menu_scrollbar.png b/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/menu_scrollbar.png deleted file mode 100644 index e7b52d40..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/menu_scrollbar.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/scrollbar-thumb.png b/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/scrollbar-thumb.png deleted file mode 100644 index b9ab11e7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/scrollbar-thumb.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/scrollbar-track.png b/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/scrollbar-track.png deleted file mode 100644 index e7b52d40..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/leaderboard/scrollbar-track.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-avatarbg.png b/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-avatarbg.png deleted file mode 100644 index f947d43d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-avatarbg.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-bg.png b/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-bg.png deleted file mode 100644 index a84ee95d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-bg.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-btn.png b/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-btn.png deleted file mode 100644 index 40696170..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-btn.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-nosignin.png b/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-nosignin.png deleted file mode 100644 index 2a95d4b4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-nosignin.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-xbox-over.png b/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-xbox-over.png deleted file mode 100644 index f7a1c496..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/profile/profile-xbox-over.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/bBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/bBtn_bgd.png deleted file mode 100644 index 9ac43c97..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/bBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box-purchase.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box-purchase.png deleted file mode 100644 index 7162efa1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box-purchase.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box10_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box10_bgd.png deleted file mode 100644 index 7d53180d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box10_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box11_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box11_bgd.png deleted file mode 100644 index 20f56c4d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box11_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box1_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box1_bgd.png deleted file mode 100644 index b5d9d95f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box1_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box2_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box2_bgd.png deleted file mode 100644 index 519c1a07..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box2_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box3_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box3_bgd.png deleted file mode 100644 index b62d8a7b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box3_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box4_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box4_bgd.png deleted file mode 100644 index 42e43fe8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box4_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box5_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box5_bgd.png deleted file mode 100644 index 0c070224..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box5_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box6_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box6_bgd.png deleted file mode 100644 index 3a2e4f0a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box6_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box7_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box7_bgd.png deleted file mode 100644 index 3456e7ba..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box7_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box8_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box8_bgd.png deleted file mode 100644 index 2e1c69be..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box8_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box9_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box9_bgd.png deleted file mode 100644 index 0a0fe569..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box9_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_lock.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_lock.png deleted file mode 100644 index d002442e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_lock.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_nav_menu.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_nav_menu.png deleted file mode 100644 index a7f79009..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_nav_menu.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_omnom.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_omnom.png deleted file mode 100644 index aa5533b8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/box_omnom.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/boxcutter.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/boxcutter.png deleted file mode 100644 index f4f9f795..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/boxcutter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/boxmore_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/boxmore_bgd.png deleted file mode 100644 index 7db83409..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/boxmore_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/btn-options.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/btn-options.png deleted file mode 100644 index 09d41e28..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/btn-options.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/buttonsprite.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/buttonsprite.png deleted file mode 100644 index b8b589a5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/buttonsprite.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/buy-button.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/buy-button.png deleted file mode 100644 index d34e54f8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/buy-button.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing-bg.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing-bg.png deleted file mode 100644 index c244d54c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing-bg.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing1.jpg deleted file mode 100644 index 9fc23870..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing2.jpg deleted file mode 100644 index a6e14519..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing3.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing3.jpg deleted file mode 100644 index 89e51c2e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/drawing3.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/fBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/fBtn_bgd.png deleted file mode 100644 index 52e1f3e5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/fBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/fb.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/fb.png deleted file mode 100644 index 34160d60..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/fb.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/flags.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/flags.png deleted file mode 100644 index d1628492..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/flags.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/fun-omnom.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/fun-omnom.png deleted file mode 100644 index dad20b9e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/fun-omnom.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/gamecomplete.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/gamecomplete.jpg deleted file mode 100644 index eefb01d2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/gamecomplete.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/lBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/lBtn_bgd.png deleted file mode 100644 index b08b777f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/lBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/level_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/level_bgd.png deleted file mode 100644 index 41f90216..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/level_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/level_bgd_small.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/level_bgd_small.png deleted file mode 100644 index c2f82dbe..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/level_bgd_small.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg1.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg1.jpg deleted file mode 100644 index 5b2e4998..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg10.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg10.jpg deleted file mode 100644 index b8760a2a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg10.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg11.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg11.jpg deleted file mode 100644 index 0bed5dc4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg11.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg2.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg2.jpg deleted file mode 100644 index a7c0b103..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg3.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg3.jpg deleted file mode 100644 index ab72ba5d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg3.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg4.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg4.jpg deleted file mode 100644 index ca4cdd00..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg4.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg5.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg5.jpg deleted file mode 100644 index 2de3e757..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg5.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg6.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg6.jpg deleted file mode 100644 index e870bc25..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg6.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg7.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg7.jpg deleted file mode 100644 index 6f631188..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg7.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg8.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg8.jpg deleted file mode 100644 index 7f2ddb26..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg8.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg9.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg9.jpg deleted file mode 100644 index 4fd47e57..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/levelbg9.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape.png deleted file mode 100644 index 61ded257..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape_left.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape_left.png deleted file mode 100644 index 2b13f603..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape_left.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape_right.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape_right.png deleted file mode 100644 index 9444f4ca..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/leveltape_right.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/mBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/mBtn_bgd.png deleted file mode 100644 index e5dd7c34..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/mBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu-options.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu-options.png deleted file mode 100644 index a94c32cb..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu-options.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_en.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_en.png deleted file mode 100644 index ad8e2d2c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_en.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_fr.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_fr.png deleted file mode 100644 index a15b44bc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_fr.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_gr.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_gr.png deleted file mode 100644 index 2d623cbc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_gr.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_ru.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_ru.png deleted file mode 100644 index fb9e0f4e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menu_result_ru.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menubg.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/menubg.jpg deleted file mode 100644 index 276d3e8e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/menubg.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/options_stars_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/options_stars_bgd.png deleted file mode 100644 index 7ecde694..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/options_stars_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/options_stars_bgd_small.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/options_stars_bgd_small.png deleted file mode 100644 index 337dd283..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/options_stars_bgd_small.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/perfect_mark.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/perfect_mark.png deleted file mode 100644 index 76fe2653..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/perfect_mark.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/ph_logo.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/ph_logo.png deleted file mode 100644 index ed1075e7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/ph_logo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupinner-slow.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupinner-slow.jpg deleted file mode 100644 index 49dab371..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupinner-slow.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupinner.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupinner.jpg deleted file mode 100644 index 63be5e6b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupinner.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupouter.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupouter.png deleted file mode 100644 index 2f2cfa92..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/popupouter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/result_line.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/result_line.png deleted file mode 100644 index 70c57472..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/result_line.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/sBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/sBtn_bgd.png deleted file mode 100644 index 41752d39..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/sBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/shadow.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/shadow.png deleted file mode 100644 index 1ea8cac3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/shadow.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/star_result.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/star_result.png deleted file mode 100644 index 34e1e098..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/star_result.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/star_result_small.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/star_result_small.png deleted file mode 100644 index 822e1386..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/star_result_small.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/startbg.jpg b/packages/zeptolabuklimited.cuttherope/images/1366/ui/startbg.jpg deleted file mode 100644 index 444cd829..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/startbg.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1366/ui/taperoll.png b/packages/zeptolabuklimited.cuttherope/images/1366/ui/taperoll.png deleted file mode 100644 index fa658874..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1366/ui/taperoll.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bronze_scissors.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bronze_scissors.png deleted file mode 100644 index 259a9f9b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bronze_scissors.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bubble_master.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bubble_master.png deleted file mode 100644 index ae0546bd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bubble_master.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bubble_popper.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bubble_popper.png deleted file mode 100644 index 8c3b5d7b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_bubble_popper.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_calorie_minimizer.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_calorie_minimizer.png deleted file mode 100644 index 0b33d80f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_calorie_minimizer.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_candy_juggler.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_candy_juggler.png deleted file mode 100644 index 4c1cd5b7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_candy_juggler.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_golden_scissors.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_golden_scissors.png deleted file mode 100644 index 76a618fd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_golden_scissors.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_magician.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_magician.png deleted file mode 100644 index ae9c2969..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_magician.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_master_finger.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_master_finger.png deleted file mode 100644 index 4b4bd196..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_master_finger.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_quick_finger.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_quick_finger.png deleted file mode 100644 index 0336540c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_quick_finger.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_romantic_soul.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_romantic_soul.png deleted file mode 100644 index 197079e0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_romantic_soul.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_rope_cutter.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_rope_cutter.png deleted file mode 100644 index e1fe8933..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_rope_cutter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_rope_cutter_maniac.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_rope_cutter_maniac.png deleted file mode 100644 index 1ea9e5c1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_rope_cutter_maniac.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_silver_scissors.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_silver_scissors.png deleted file mode 100644 index acb350e7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_silver_scissors.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_buster.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_buster.png deleted file mode 100644 index 5cd800ea..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_buster.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_lover.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_lover.png deleted file mode 100644 index 53ed45ef..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_lover.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_tamer.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_tamer.png deleted file mode 100644 index 9111217b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_spider_tamer.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_tummy_teaser.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_tummy_teaser.png deleted file mode 100644 index ac79e42b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_tummy_teaser.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_ultimate_rope_cutter.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_ultimate_rope_cutter.png deleted file mode 100644 index 1b877b12..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_ultimate_rope_cutter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_weight_loser.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_weight_loser.png deleted file mode 100644 index 45df7617..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/achievement_weight_loser.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/empty_achievement.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/empty_achievement.png deleted file mode 100644 index d71d9370..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/empty_achievement.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/icon-achievements.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/icon-achievements.png deleted file mode 100644 index 62807526..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/icon-achievements.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/menu_notification.png b/packages/zeptolabuklimited.cuttherope/images/1920/achievements/menu_notification.png deleted file mode 100644 index 97b4d6a3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/achievements/menu_notification.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_01_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_01_p1.jpg deleted file mode 100644 index 03cf01a7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_01_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_01_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_01_p2.jpg deleted file mode 100644 index 974f987e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_01_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_02_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_02_p1.jpg deleted file mode 100644 index d74ad1a9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_02_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_02_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_02_p2.jpg deleted file mode 100644 index 59c53cab..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_02_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_03_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_03_p1.jpg deleted file mode 100644 index 149f9f14..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_03_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_03_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_03_p2.jpg deleted file mode 100644 index 504c455a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_03_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_04_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_04_p1.jpg deleted file mode 100644 index 78574f1c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_04_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_04_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_04_p2.jpg deleted file mode 100644 index 7287c525..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_04_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_05_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_05_p1.jpg deleted file mode 100644 index bd089fa7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_05_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_05_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_05_p2.jpg deleted file mode 100644 index 1e7024c2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_05_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_06_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_06_p1.jpg deleted file mode 100644 index 4c57f442..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_06_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_06_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_06_p2.jpg deleted file mode 100644 index 600573ab..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_06_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_07_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_07_p1.jpg deleted file mode 100644 index 0b8fb5e2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_07_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_07_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_07_p2.jpg deleted file mode 100644 index 359cb4a1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_07_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_08_p1.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_08_p1.png deleted file mode 100644 index 6b00a952..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_08_p1.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_08_p2.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_08_p2.png deleted file mode 100644 index 2b447b75..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_08_p2.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_09_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_09_p1.jpg deleted file mode 100644 index c88e2d8e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_09_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_09_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_09_p2.jpg deleted file mode 100644 index 100a36a2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_09_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_10_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_10_p1.jpg deleted file mode 100644 index a5d71ee4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_10_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_10_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_10_p2.jpg deleted file mode 100644 index 82c70de4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_10_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_11_p1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_11_p1.jpg deleted file mode 100644 index bea9e456..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_11_p1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_11_p2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_11_p2.jpg deleted file mode 100644 index b88c7683..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/bgr_11_p2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/big_font.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/big_font.png deleted file mode 100644 index 77446ea8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/big_font.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations.png deleted file mode 100644 index 716ce28d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations2.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations2.png deleted file mode 100644 index d6696134..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations2.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations3.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations3.png deleted file mode 100644 index aaffe87c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_animations3.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_supports.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/char_supports.png deleted file mode 100644 index f9e57824..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/char_supports.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/font_numbers_big.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/font_numbers_big.png deleted file mode 100644 index d1ea3771..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/font_numbers_big.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/hud_star.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/hud_star.png deleted file mode 100644 index 132e79b9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/hud_star.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bee_hd.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bee_hd.png deleted file mode 100644 index 53c6f8ed..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bee_hd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bouncer_01.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bouncer_01.png deleted file mode 100644 index 42106ba3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bouncer_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bouncer_02.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bouncer_02.png deleted file mode 100644 index ef371c97..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bouncer_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_attached.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_attached.png deleted file mode 100644 index c0f55fe1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_attached.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_flight.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_flight.png deleted file mode 100644 index 12003bc6..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_flight.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_pop.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_pop.png deleted file mode 100644 index a9973a46..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_bubble_pop.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_candy_01.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_candy_01.png deleted file mode 100644 index 7e32233f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_candy_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_drawing_hidden.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_drawing_hidden.png deleted file mode 100644 index 3364a3cc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_drawing_hidden.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_electrodes.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_electrodes.png deleted file mode 100644 index da6b4fd2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_electrodes.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hat.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hat.png deleted file mode 100644 index 5428eabd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hat.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_01.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_01.png deleted file mode 100644 index f6129a90..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_02.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_02.png deleted file mode 100644 index 23a26ac5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_auto.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_auto.png deleted file mode 100644 index 20ea48f1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_auto.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_movable.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_movable.png deleted file mode 100644 index e8540bf4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_movable.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_regulated.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_regulated.png deleted file mode 100644 index e932c588..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_hook_regulated.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_pollen_hd.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_pollen_hd.png deleted file mode 100644 index 377632b9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_pollen_hd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_pump.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_pump.png deleted file mode 100644 index c5809c1f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_pump.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_01.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_01.png deleted file mode 100644 index 25daf5d0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_02.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_02.png deleted file mode 100644 index 28e5d7f3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_03.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_03.png deleted file mode 100644 index 3cca2d28..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_03.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_04.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_04.png deleted file mode 100644 index a9ff15c9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_04.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_button.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_button.png deleted file mode 100644 index 6853bf94..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_rotatable_spikes_button.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spider.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spider.png deleted file mode 100644 index 79b60520..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spider.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_01.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_01.png deleted file mode 100644 index 94d74b2d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_01.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_02.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_02.png deleted file mode 100644 index 1619ebc2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_02.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_03.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_03.png deleted file mode 100644 index 1bb6be23..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_03.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_04.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_04.png deleted file mode 100644 index 9485508f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_spikes_04.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_star_disappear.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_star_disappear.png deleted file mode 100644 index 6ba6cda5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_star_disappear.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_star_idle.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_star_idle.png deleted file mode 100644 index 53247163..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_star_idle.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_vinil.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_vinil.png deleted file mode 100644 index 31a21dac..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/obj_vinil.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/small_font.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/small_font.png deleted file mode 100644 index bbfa654a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/small_font.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/game/tutorial_signs.png b/packages/zeptolabuklimited.cuttherope/images/1920/game/tutorial_signs.png deleted file mode 100644 index 7381e71d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/game/tutorial_signs.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/icon-leaderboard.png b/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/icon-leaderboard.png deleted file mode 100644 index 318195c4..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/icon-leaderboard.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/list-header.png b/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/list-header.png deleted file mode 100644 index aa1af431..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/list-header.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/list-select.png b/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/list-select.png deleted file mode 100644 index 69b17be3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/list-select.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/menu_processing_hd.png b/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/menu_processing_hd.png deleted file mode 100644 index 31b81e3b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/menu_processing_hd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/menu_scrollbar.png b/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/menu_scrollbar.png deleted file mode 100644 index 5a57dc5b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/menu_scrollbar.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/scrollbar-thumb.png b/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/scrollbar-thumb.png deleted file mode 100644 index cd8af1cb..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/scrollbar-thumb.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/scrollbar-track.png b/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/scrollbar-track.png deleted file mode 100644 index 94641ceb..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/leaderboard/scrollbar-track.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-avatarbg.png b/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-avatarbg.png deleted file mode 100644 index 3e39bd99..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-avatarbg.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-bg.png b/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-bg.png deleted file mode 100644 index 773efd40..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-bg.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-btn.png b/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-btn.png deleted file mode 100644 index 913effce..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-btn.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-nosignin.png b/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-nosignin.png deleted file mode 100644 index b6adcbff..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-nosignin.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-xbox-over.png b/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-xbox-over.png deleted file mode 100644 index e7d50faa..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/profile/profile-xbox-over.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/bBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/bBtn_bgd.png deleted file mode 100644 index 3127e697..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/bBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box-purchase.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box-purchase.png deleted file mode 100644 index 5b2fdc09..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box-purchase.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box10_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box10_bgd.png deleted file mode 100644 index ed94a20c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box10_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box11_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box11_bgd.png deleted file mode 100644 index 7fefeb24..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box11_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box1_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box1_bgd.png deleted file mode 100644 index 5eb7983f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box1_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box2_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box2_bgd.png deleted file mode 100644 index 47146ba1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box2_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box3_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box3_bgd.png deleted file mode 100644 index 0d0d4bd5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box3_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box4_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box4_bgd.png deleted file mode 100644 index dbedcc30..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box4_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box5_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box5_bgd.png deleted file mode 100644 index cc242eac..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box5_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box6_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box6_bgd.png deleted file mode 100644 index cebd6e2c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box6_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box7_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box7_bgd.png deleted file mode 100644 index 0dba3747..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box7_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box8_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box8_bgd.png deleted file mode 100644 index f36b5e44..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box8_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box9_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box9_bgd.png deleted file mode 100644 index ab767824..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box9_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_lock.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_lock.png deleted file mode 100644 index fa2ef1f1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_lock.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_nav_menu.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_nav_menu.png deleted file mode 100644 index 8ed55a3e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_nav_menu.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_omnom.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_omnom.png deleted file mode 100644 index ad604aed..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/box_omnom.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/boxcutter.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/boxcutter.png deleted file mode 100644 index 29c846a0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/boxcutter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/boxmore_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/boxmore_bgd.png deleted file mode 100644 index bb800f69..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/boxmore_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/btn-options.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/btn-options.png deleted file mode 100644 index c3933051..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/btn-options.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/buttonsprite.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/buttonsprite.png deleted file mode 100644 index 244b9aa2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/buttonsprite.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/buy-button.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/buy-button.png deleted file mode 100644 index 4cc15bf0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/buy-button.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing-bg.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing-bg.png deleted file mode 100644 index f727bd9b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing-bg.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing1.jpg deleted file mode 100644 index 7d502402..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing2.jpg deleted file mode 100644 index b9a2a969..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing3.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing3.jpg deleted file mode 100644 index 5de7890b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/drawing3.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/fBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/fBtn_bgd.png deleted file mode 100644 index 38aa5950..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/fBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/fb.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/fb.png deleted file mode 100644 index 7676b928..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/fb.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/flags.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/flags.png deleted file mode 100644 index 6a8d605a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/flags.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/fun-omnom.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/fun-omnom.png deleted file mode 100644 index 93539bee..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/fun-omnom.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/gamecomplete.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/gamecomplete.jpg deleted file mode 100644 index 590d6d0e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/gamecomplete.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/lBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/lBtn_bgd.png deleted file mode 100644 index 40c058ac..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/lBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/level_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/level_bgd.png deleted file mode 100644 index 93a7a91b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/level_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/level_bgd_small.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/level_bgd_small.png deleted file mode 100644 index 54ad765a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/level_bgd_small.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg1.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg1.jpg deleted file mode 100644 index 075cbfd3..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg1.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg10.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg10.jpg deleted file mode 100644 index 43777a0e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg10.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg11.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg11.jpg deleted file mode 100644 index 1e3fb443..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg11.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg2.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg2.jpg deleted file mode 100644 index 53a36e11..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg2.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg3.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg3.jpg deleted file mode 100644 index 898d5e8b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg3.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg4.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg4.jpg deleted file mode 100644 index a253fa2f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg4.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg5.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg5.jpg deleted file mode 100644 index df2110e0..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg5.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg6.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg6.jpg deleted file mode 100644 index cb089445..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg6.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg7.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg7.jpg deleted file mode 100644 index 421ef498..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg7.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg8.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg8.jpg deleted file mode 100644 index f65dcd4b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg8.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg9.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg9.jpg deleted file mode 100644 index 9a0affbb..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/levelbg9.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape.png deleted file mode 100644 index f00efe4e..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape_left.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape_left.png deleted file mode 100644 index 7a5946cd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape_left.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape_right.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape_right.png deleted file mode 100644 index 5705f04a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/leveltape_right.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/mBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/mBtn_bgd.png deleted file mode 100644 index 9162c865..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/mBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu-options.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu-options.png deleted file mode 100644 index 2742e0da..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu-options.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_en.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_en.png deleted file mode 100644 index 90ce67fd..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_en.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_fr.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_fr.png deleted file mode 100644 index 2b85eabc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_fr.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_gr.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_gr.png deleted file mode 100644 index caf40871..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_gr.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_ru.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_ru.png deleted file mode 100644 index 68da23e6..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menu_result_ru.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menubg.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/menubg.jpg deleted file mode 100644 index a11249af..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/menubg.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/options_stars_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/options_stars_bgd.png deleted file mode 100644 index f856711d..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/options_stars_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/options_stars_bgd_small.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/options_stars_bgd_small.png deleted file mode 100644 index 4bf86e87..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/options_stars_bgd_small.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/perfect_mark.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/perfect_mark.png deleted file mode 100644 index 0e8fd48b..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/perfect_mark.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/ph_logo.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/ph_logo.png deleted file mode 100644 index 0de964c2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/ph_logo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupinner-slow.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupinner-slow.jpg deleted file mode 100644 index 0514d162..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupinner-slow.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupinner.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupinner.jpg deleted file mode 100644 index 0907f9e1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupinner.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupouter.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupouter.png deleted file mode 100644 index ce070932..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/popupouter.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/result_line.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/result_line.png deleted file mode 100644 index 196bfa38..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/result_line.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/sBtn_bgd.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/sBtn_bgd.png deleted file mode 100644 index c18aaa01..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/sBtn_bgd.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/shadow.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/shadow.png deleted file mode 100644 index 31e361a9..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/shadow.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/star_result.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/star_result.png deleted file mode 100644 index 3340cae8..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/star_result.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/star_result_small.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/star_result_small.png deleted file mode 100644 index 6c91350c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/star_result_small.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/startbg.jpg b/packages/zeptolabuklimited.cuttherope/images/1920/ui/startbg.jpg deleted file mode 100644 index dafece9a..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/startbg.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/1920/ui/taperoll.png b/packages/zeptolabuklimited.cuttherope/images/1920/ui/taperoll.png deleted file mode 100644 index 0a18b9b1..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/1920/ui/taperoll.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/blanktile.png b/packages/zeptolabuklimited.cuttherope/images/blanktile.png deleted file mode 100644 index 021c5513..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/blanktile.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/cardboard.png b/packages/zeptolabuklimited.cuttherope/images/cardboard.png deleted file mode 100644 index 7f682503..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/cardboard.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/logo.png b/packages/zeptolabuklimited.cuttherope/images/logo.png deleted file mode 100644 index fafa391c..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/logo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/logowide.png b/packages/zeptolabuklimited.cuttherope/images/logowide.png deleted file mode 100644 index 91f38068..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/logowide.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/page/snap-logo.png b/packages/zeptolabuklimited.cuttherope/images/page/snap-logo.png deleted file mode 100644 index e58e83e5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/page/snap-logo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/page/tilebg.jpg b/packages/zeptolabuklimited.cuttherope/images/page/tilebg.jpg deleted file mode 100644 index a988e104..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/page/tilebg.jpg and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/page/zeptologo.png b/packages/zeptolabuklimited.cuttherope/images/page/zeptologo.png deleted file mode 100644 index a4d6e369..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/page/zeptologo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/promo.png b/packages/zeptolabuklimited.cuttherope/images/promo.png deleted file mode 100644 index ea214ff7..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/promo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/smalllogo.png b/packages/zeptolabuklimited.cuttherope/images/smalllogo.png deleted file mode 100644 index a21c55ff..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/smalllogo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/splashscreen.png b/packages/zeptolabuklimited.cuttherope/images/splashscreen.png deleted file mode 100644 index bfdf53c5..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/splashscreen.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/images/storelogo.png b/packages/zeptolabuklimited.cuttherope/images/storelogo.png deleted file mode 100644 index 7ee103fc..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/images/storelogo.png and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/js/MarkedUp.js b/packages/zeptolabuklimited.cuttherope/js/MarkedUp.js deleted file mode 100644 index 283091d8..00000000 --- a/packages/zeptolabuklimited.cuttherope/js/MarkedUp.js +++ /dev/null @@ -1,292 +0,0 @@ -/*! -* This file is meant to to be used within WinJS projects in order to ease the use of the MarkedUp SDK -**/ - -var MK = (function (mk) { - - "use strict"; - - var client = mk.AnalyticClient; - var navHandle = null; - - //error helper - function serializeError(error) { - - //create the log object - var ex = new mk.MKLog(); - - if (!error) { - - //we got a null error object - return null; - - } - - if (error && error.status && error.readyState) { - - //we probaly got a network request object - ex.message = "Network Request with HTTP code " + error.status; - ex.errorMessage = ex.message; - ex.errorStackTrace = JSON.stringify(error); - - return ex; - } - - if (error && error.detail && error.detail.errorMessage) { - - //we got something that looks like a structured error object - ex.errorMessage = error.detail.errorMessage; - ex.errorStackTrace = error.detail.errorStackTrace || error.detail.errorUrl; - - return ex; - } - - //we got an object of indeterminate origin - ex.message = error.message || "Recived a JavaScript Object (see stack trace for object JSON)"; - ex.errorMessage = error.message || JSON.stringify(error); - ex.errorStackTrace = JSON.stringify(error); - - return ex; - } - - //Log message helper - function createLog(level, message, error, state) { - - var log; - - if (error) { - - //use helper to create log - log = serializeError(error) || new mk.MKLog(); - log.level = level; - log.message = message; - - } else { - - //we'll do it manually - log = new mk.MKLog(); - log.level = level; - log.message = message; - } - - if (state !== null && state instanceof Windows.Foundation.Collections.PropertySet) { - log.state = state; - } - - return log; - - } - - //return object - return { - - initialize: function (apiKeys) { - - try { - if (!(apiKeys instanceof Array)) { - apiKeys = [apiKeys]; - } - client.initialize(apiKeys); - } catch (e) { - - } - - }, - - /* logging functions */ - - debug: function(message, error, state) { - - try { - var log = createLog(mk.LogLevel.debug, message, error, state); - client.log(log); - } catch (e) { - - } - - }, - - trace: function (message, error, state) { - - try { - var log = createLog(mk.LogLevel.trace, message, error, state); - client.log(log); - } catch (e) { - - } - - }, - - info: function (message, error, state) { - - try { - var log = createLog(mk.LogLevel.info, message, error, state); - client.log(log); - } catch (e) { - - } - - }, - - error: function (message, error, state) { - - try { - var log = createLog(mk.LogLevel.error, message, error, state); - client.log(log); - } catch (e) { - - } - - }, - - fatal: function (message, error, state) { - - try { - var log = createLog(mk.LogLevel.fatal, message, error, state); - client.log(log); - } catch (e) { - - } - - }, - - /* navigation */ - - enterPage: function (page) { - - try { - client.enterPage(page); - } catch (e) { - - } - - }, - - exitPage: function (page) { - - try { - client.exitPage(page); - } catch (e) { - - } - - }, - - //Internal method for handling automatic navigation events - _navigatedPage: function (navEvent) { - try { - if (navEvent && navEvent.detail && navEvent.detail.location) { - client.enterPage(navEvent.detail.location); - } - } - catch (e) { - - } - }, - - //Automatically capture page change events - registerNavigationFrame: function () { - try { - if (navHandle == null) { - var nav = WinJS.Navigation; - if (nav) { - navHandle = this._navigatedPage; - nav.addEventListener("navigated", navHandle); - } - } - } - catch (e) { - - } - }, - - - orientationChange: function (page, orientation) { - - try { - client.orientationChanged(page, orientation); - } catch (e) { - - } - - }, - - /* commerce */ - - //in-app purchase - - inAppPurchaseOfferCompleted: function (product) - { - try { - if (product instanceof mk.InAppPurchase) { - client.inAppPurchaseComplete(product); - } else if(typeof product === "string") { - console.log("This method is deprecated. Please see markedup.com/docs for updated commerce methods."); - } - } catch (e) { - - } - }, - - - //trial - - trialConversionOfferCompleted: function (product) - { - try { - if (typeof (product) !== "undefined") { - if (product instanceof mk.TrialConversion) { - client.trialConversionComplete(product); - } - } else { - console.log("This method is deprecated. Please see markedup.com/docs for updated commerce methods."); - } - - } catch (e) { - - } - }, - - /* custom session events */ - - sessionEvent: function (eventName, parameters) { - - try { - if (parameters !== null && parameters instanceof Windows.Foundation.Collections.PropertySet) - client.sessionEvent(eventName, parameters); - else { - client.sessionEvent(eventName); - } - } catch (e) { - - } - - }, - - /* last chance exception logging */ - - logLastChanceException: function (error) { - - try { - var log = createLog(mk.LogLevel.fatal, "An unhandled error occured in the app", error); - client.logLastChanceException(log); - } catch (e) { - - } - }, - - /* opt-out / opt-in - expects a boolean. - * if true, then the user will be opted-out of MarkedUp Analytics. - * if false, then the user will be able to opt-back-in to MarkedUp Analytics. - * users are opted-in by default. - */ - optOut: function(optOutPreference) { - try { - client.optOut(optOutPreference); - } catch(e) { - - } - } - }; - -}(MarkedUp)); \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/js/default.js b/packages/zeptolabuklimited.cuttherope/js/default.js deleted file mode 100644 index 6add57e1..00000000 --- a/packages/zeptolabuklimited.cuttherope/js/default.js +++ /dev/null @@ -1,457 +0,0 @@ - -(function () { - "use strict"; - - var app = WinJS.Application, - activation = Windows.ApplicationModel.Activation, - applicationData = Windows.Storage.ApplicationData.current, - roamingSettings = applicationData.roamingSettings, - OfferTokens = { - // enables all boxes (full version of game) - ENABLE_ALL_BOXES: 'EnableAllBoxes', - - // removes the star requirements for all boxes (not yet implemented) - UNLOCK_ALL_BOXES: 'UnlockAllBoxes' - }; - - WinJS.strictProcessing(); - - var IS_PAID_FULL_VERSION = true, - SHOW_EXCEPTION_DIALOG = false, - SIMULATE_PURCHASES = false, - MARKED_UP_APP_ID = SIMULATE_PURCHASES - ? '0c0dd811-03c6-464a-8ae8-9908cd8eb71c' // test account - : 'c31ea8d3-d7c8-434d-99a1-bb1dd1e8c10c', // production account - initPurchases = function () { - if (IS_PAID_FULL_VERSION) { - - // user purchased full version so mark all boxes as paid - ZeptoLab.ctr.setPaidBoxes(true); - - } else if (SIMULATE_PURCHASES) { - - ZeptoLab.ctr.setPaidBoxes(false); - Windows.ApplicationModel.Package.current.installedLocation.getFolderAsync("data").done( - function (folder) { - folder.getFileAsync("in-app-purchase-simulator.xml").done( - function (file) { - Windows.ApplicationModel.Store.CurrentAppSimulator.reloadSimulatorAsync(file).done(); - }); - }); - - } else { - var currentApp = getCurrentApp(), - licenseInfo = currentApp.licenseInformation, - enableAllBoxes = licenseInfo.productLicenses.lookup(OfferTokens.ENABLE_ALL_BOXES); - - // tell app if full version has been purchased (enable all boxes) - ZeptoLab.ctr.setPaidBoxes(enableAllBoxes.isActive); - } - }; - - if (SHOW_EXCEPTION_DIALOG) { - WinJS.Application.onerror = function (e) { - var title = 'Unhandled Exception', - content = 'File: ' + e.detail.errorUrl + '\r\n' + - 'Line: ' + e.detail.errorLine + ' ' + - 'Char: ' + e.detail.errorCharacter + '\r\n' + - 'Message: \r\n' + e.detail.errorMessage, - dialog = new Windows.UI.Popups.MessageDialog(content, title); - - dialog.showAsync().done(); - return true; - }; - } - - function getCurrentApp() { - - if (SIMULATE_PURCHASES) { - // testing - return Windows.ApplicationModel.Store.CurrentAppSimulator; - } else { - // production - return Windows.ApplicationModel.Store.CurrentApp; - } - } - - function getAppVersion() { - var p = Windows.ApplicationModel.Package.current.id.version; - return p.major + "." + p.minor + "." + p.build + "." + p.revision; - } - - var activated = false; - app.onactivated = function (eventObject) { - if (!activated) { - - // Populate settings pane and tie commands to settings flyouts. - WinJS.Application.onsettings = function (e) { - var getText = ZeptoLab.ctr.getMenuText, - MenuStringId = { // from js/resources/MenuStringId.js - SETTINGS: 200, - ABOUT: 7, - PRIVACY: 201 - }; - - // add standard div based setting panels - e.detail.applicationcommands = { - "settingsDiv": { title: getText(MenuStringId.SETTINGS) }, - "aboutDiv": { title: getText(MenuStringId.ABOUT) } - }; - WinJS.UI.SettingsFlyout.populateSettings(e); - - $("#settingsDiv")[0].winControl.onbeforeshow = function() { - ZeptoLab.ctr.refreshOptions(); - }; - - // set the current build's version in the about pane - var versionSpan = document.getElementById('version'); - if (versionSpan) { - versionSpan.innerHTML = getAppVersion(); - } - - // add special commands (ex: privacy opens a browser link) - var appCommands = e.detail.e.request.applicationCommands, - SettingsCommand = Windows.UI.ApplicationSettings.SettingsCommand; - appCommands.append(new SettingsCommand("privacy", getText(MenuStringId.PRIVACY), function () { - var uri = new Windows.Foundation.Uri("http://www.zeptolab.com/pp.htm"); - Windows.System.Launcher.launchUriAsync(uri); - })); - }; - - eventObject.setPromise(WinJS.UI.processAll().done(function () { - - ZeptoLab.ctr.setAchievementsProvider(ZL.Achievements); - ZeptoLab.ctr.setLeaderboardProvider(ZL.Leaderboards); - - // initialize xbox live user API - ZL.Player.init(); - - // attempt to sign-in - ZL.Player.signIn(); - })); - - // ctr-winjs-test MarkedUp account - //MK.initialize(MARKED_UP_APP_ID); - - activated = true; - } - - /* - if (eventObject.detail.kind === activation.ActivationKind.launch) { - if (eventObject.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) { - // newly launched - } else { - // TODO: This application has been reactivated from suspension. - // Restore application state here. - } - } - */ - - }; - - ZeptoLab.ctr.onAppRun(function () { - initPurchases(); - }); - - // called when the scrollable region needs to be updated - ZeptoLab.ctr.onUpdateCandyScroller(function (sliderHeight) { - $(".scrollable").nanoScroller({ - disableResize: true, - preventPageScrolling: true, - alwaysVisible: true, - sliderMinHeight: sliderHeight, - sliderMaxHeight: sliderHeight - }); - }); - - function getInstallationSource(callback) { - - function readCustomDataFile(file) { - Windows.Storage.FileIO.readTextAsync(file).done(function (text) { - callback(ZeptoLab.ctr.extractCustomDataSource(text)); - }, customDataError); - } - - function customDataError() { - // custom data file doesn't exist for standard non-OEM installs - callback('WindowsStore'); - } - - var installedLocation = Windows.ApplicationModel.Package.current.installedLocation; - if (SIMULATE_PURCHASES) { - installedLocation.getFolderAsync("data").done( - function (folder) { - folder.getFileAsync('sample-custom-data.xml') - .done(readCustomDataFile, customDataError); - }, customDataError); - } else { - installedLocation.getFileAsync("microsoft.system.package.metadata\\custom.data") - .done(readCustomDataFile, customDataError); - } - } - - ZeptoLab.ctr.promptPurchaseBoxes(function () { - // var currentApp = getCurrentApp(), - // licenseInfo = currentApp.licenseInformation, - // enableAllBoxes = licenseInfo.productLicenses.lookup(OfferTokens.ENABLE_ALL_BOXES); - - if (false) { - - getInstallationSource(function (source) { - var purchaseType = OfferTokens.ENABLE_ALL_BOXES + '-' + source, - PURCHASE_PAGE = 'Boxes'; - - // TODO: MarkedUp in-app purchases not working yet - //MK.inAppPurchaseOfferSelected(PURCHASE_PAGE, purchaseType); - - // prompt for purchase - currentApp.requestProductPurchaseAsync(OfferTokens.ENABLE_ALL_BOXES, true).then( - function (receiptXml) { - - // TODO: validate receipt. There is a MS server that can be - // queried to validate the receipt certificate. However, its - // not live yet, so we'll just verify that the receipt is not - // blank (unfortunately cancelling a purchase still calls the - // "success" function but with a blank receipt). - - var success = (receiptXml != null && receiptXml !== ''); - ZeptoLab.ctr.setPaidBoxes(success); - - if (success) { - - MK.sessionEvent(purchaseType); - - // TODO: add currency and amount from receipt xml - //MK.inAppPurchaseComplete(PURCHASE_PAGE, purchaseType); - } else { - //MK.inAppPurchaseCancelled(PURCHASE_PAGE, purchaseType); - } - }, - function (error) { - // The in-app purchase was not completed because - // the customer canceled it or there was an error. - //MK.inAppPurchaseCancelled(PURCHASE_PAGE, purchaseType); - - // TODO: log error - }); - }); - } else { - // The customer already owns this feature. - ZeptoLab.ctr.setPaidBoxes(true); - } - }); - - // create and register a roaming settings provider for CTR - ZeptoLab.ctr.setRoamingSettingProvider({ - get: function (key) { - return roamingSettings.values[key]; - }, - set: function (key, value) { - roamingSettings.values[key] = value; - - // TEST: simulate roaming by intentionally signaing change event - // applicationData.signalDataChanged(); - }, - remove: function (key) { - roamingSettings.values.remove(key); - } - }); - - // notify CTR when roaming data changes - applicationData.ondatachanged = function (eventArgs) { - ZeptoLab.ctr.onRoamingDataChanged(); - }; - - // register a handler for the CTR options button - ZeptoLab.ctr.onShowOptions(function () { - Windows.UI.ApplicationSettings.SettingsPane.show(); - }); - - // // listen for snap view related transitions - // var mq = msMatchMedia("all and (-ms-view-state: snapped)"); - // mq.addListener(function snapListener(mql) { - // if (mql.matches) { - // ZeptoLab.ctr.disable(); - // } - // else { - // ZeptoLab.ctr.enable(); - // } - // }); - - - $(document).ready(function () { - /* test score tile creation - setTimeout(function () { - //createScoreTile(8888); - }, 1000); - */ - - // xbox live games app button - $('#xboxLiveBtn').click(function () { - Microsoft.Xbox.XboxLIVEService.showGamesApplicationAsync( - Microsoft.Xbox.LaunchAction.showHome); - }); - }); - - - // returns a msapplication url that points to the tile image - function createScoreTile(score) { - - var TILE_FILENAME = "tile.png", - TILE_WIDTH = 434, - TILE_HEIGHT = 210; - - var Imaging = Windows.Graphics.Imaging, - imgData = null, - fileStream = null, - canvas = null; - - // tile image - var bgImg = new Image(); - bgImg.src = "images/blanktile.png"; - - // number image - var numberImg = ZeptoLab.ctr.getScoreImage(score, 170), - localFolder = Windows.Storage.ApplicationData.current.localFolder, - replaceExisting = Windows.Storage.CreationCollisionOption.replaceExisting, - notifications = Windows.UI.Notifications, - tileNotifier = notifications.TileUpdateManager.createTileUpdaterForApplication(); - - // clear any existing tile notifications - tileNotifier.clear(); - - localFolder.createFileAsync(TILE_FILENAME, replaceExisting) - .then(function (file) { - return file.openAsync(Windows.Storage.FileAccessMode.readWrite); - }) - .then(function (stream) { - - fileStream = stream; - - // create canvas - canvas = document.createElement("canvas"); - canvas.width = TILE_WIDTH; - canvas.height = TILE_HEIGHT; - - // create context - var context = canvas.getContext("2d"); - - // draw stuff - context.drawImage(bgImg, 0, 0, TILE_WIDTH, TILE_HEIGHT); - context.drawImage(numberImg, 265, 5); - - // get the sweet image data - imgData = context.getImageData(0, 0, canvas.width, canvas.height); - - return Imaging.BitmapEncoder.createAsync(Imaging.BitmapEncoder.pngEncoderId, fileStream); - - }).then(function (encoder) { - - // set pixel data - encoder.setPixelData(Imaging.BitmapPixelFormat.rgba8, Imaging.BitmapAlphaMode.straight, canvas.width, canvas.height, 96, 96, new Uint8Array(imgData.data)); - - // do the encoding - return encoder.flushAsync(); - - }).done(function () { - - // make sure to do this at the end - fileStream.close(); - - var Notifications = Windows.UI.Notifications; - - // get the wide image template xml and set the image url - var tileXml = Notifications.TileUpdateManager.getTemplateContent(Notifications.TileTemplateType.tileWideImage); - var wideTileImageAttributes = tileXml.getElementsByTagName("image"); - - wideTileImageAttributes[0].setAttribute("src", "ms-appdata:///local/" + TILE_FILENAME); - - // tiles can have a minature logo or text - we don't want either - var bindings = tileXml.getElementsByTagName("binding"); - for (var i = 0, len = bindings.length; i < len; i++) { - bindings[i].setAttribute("branding", "none"); - } - - // create a notification from xml and send it to the app - var tileNotification = new Notifications.TileNotification(tileXml); - - try { - tileNotifier.update(tileNotification); - } - catch (ex) { - // Rare, but sometimes a platform exception occurs when updating the - // tile. We'll send another tile notification when the user completes - // another level - } - }); - - } - - ZeptoLab.ctr.addStarUpdateListener(createScoreTile); - - ZeptoLab.ctr.onShare(function (title, description, imageUrl) { - // set the custom data - shareData.custom = { - title: title, - desc: description, - - // TODO: re-enable sharing image (we can use canvas to generate - // the final score image and then call canvas.msToBlob(); - //imageUrl: imageUrl - - imageUrl: "images\\promo.png" - }; - - // trigger the share sidebar - Windows.ApplicationModel.DataTransfer.DataTransferManager.showShareUI(); - }); - - var shareData = { - // the standard share info - standard: { - title: 'I\'m playing "Cut the Rope" on Windows 8!', - desc: 'Cut the Rope is a fun game where you feed candy to the curiously cute green monster Om-nom.', - imageUrl: "images\\promo.png" - }, - // custom share info (hidden drawing found or game won) - custom: null - }; - - var dataTransferManager = Windows.ApplicationModel.DataTransfer.DataTransferManager.getForCurrentView(); - dataTransferManager.addEventListener("datarequested", function (e) { - var data = shareData.custom ? shareData.custom : shareData.standard, - request = e.request, - link = new Windows.Foundation.Uri("http://www.cuttherope.net/"); - request.data.properties.title = data.title; - request.data.properties.description = data.desc; - request.data.setUri(link); - - if (data.imageUrl) { - var installedLocation = Windows.ApplicationModel.Package.current.installedLocation; - installedLocation.getFileAsync("images\\promo.png").then(function (shareThumbnail) { - var thumbnailStreamReference = Windows.Storage.Streams.RandomAccessStreamReference.createFromFile(shareThumbnail); - request.data.properties.thumbnail = thumbnailStreamReference; - var deferral = request.getDeferral(); - Windows.ApplicationModel.Package.current.installedLocation.getFileAsync(data.imageUrl).then(function (shareImage) { - var shareImageReference = Windows.Storage.Streams.RandomAccessStreamReference.createFromFile(shareImage); - request.data.setBitmap(shareImageReference); - deferral.complete(); - }); - }); - } - - // clear the custom data - shareData.custom = null; - }); - - app.oncheckpoint = function (eventObject) { - // TODO: This application is about to be suspended. Save any state - // that needs to persist across suspensions here. You might use the - // WinJS.Application.sessionState object, which is automatically - // saved and restored across suspension. If you need to complete an - // asynchronous operation before your application is suspended, call - // eventObject.setPromise(). - }; - - app.start(); -})(); \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/js/xbox/Achievements.js b/packages/zeptolabuklimited.cuttherope/js/xbox/Achievements.js deleted file mode 100644 index cdc72d85..00000000 --- a/packages/zeptolabuklimited.cuttherope/js/xbox/Achievements.js +++ /dev/null @@ -1,59 +0,0 @@ -(function () { - - var CTR_TITLE_ID = 0x5A511B59; - - WinJS.Namespace.define("ZL", { - Achievements: { - - getUnlockedIds: function (callback) { - - // user must be signed in to retrieve achievements - var user = ZL.Player.user; - if (!user) { - callback(null); - return; - } - - user.getAchievementsAsync(0, 20, false, null).then( - function recievedAchievementIds(achievements) { - var earnedIds = [], - len = achievements.totalRecords, - i, a; - - // extract the ids for achievements that have been earned - for (i = 0; i < len; i++) { - a = achievements.items.getAt(i); - if (a && a.isEarned) { - earnedIds.push(a.id); - } - } - - callback(earnedIds); - }, - function achievementError(error) { - callback(null); - }); - }, - - // Unlocks an achievement and executes a callback upon completion. - // The callback parameter will indicate whether the achievement was - // successfully unlocked - unlock: function (achievementId, callback) { - - // user must be signed in - var user = ZL.Player.user; - if (!user) { - callback(false); - } - - user.unlockAchievementAsync(achievementId).then( - function onSuccess() { - callback(true); - }, - function onError(error) { - callback(false); - }); - } - } - }); -})(); diff --git a/packages/zeptolabuklimited.cuttherope/js/xbox/Leaderboard.js b/packages/zeptolabuklimited.cuttherope/js/xbox/Leaderboard.js deleted file mode 100644 index 4a612a89..00000000 --- a/packages/zeptolabuklimited.cuttherope/js/xbox/Leaderboard.js +++ /dev/null @@ -1,84 +0,0 @@ -(function () { - - var CTR_TITLE_ID = 0x5A511B59; - - // leaderboard ids for each of the boxes in order (from xbl.spa.h) - var LeaderboardIds = [5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15]; - - // score column ids for each leaderboard in order (from xbl.spa.h) - var ScoreColumnIds = [22, 23, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102]; - - WinJS.Namespace.define("ZL", { - Leaderboards: { - getBoxScores: function (boxIndex, maxScores, callback) { - var service = new Microsoft.Xbox.Leaderboards.LeaderboardService(CTR_TITLE_ID); - service.getLeaderboardAsync( - 0, - maxScores, // maxItems - LeaderboardIds[boxIndex], - true, // title view - [65535, 65533, 65534], // rank, gamertag, score - null) // previous leaderboard - .then( - function (leaderboard) { - - var scores = [], - userList = leaderboard.userList, - numScores = userList.size, - score, i; - - // extract list of usernames and scores - for (i = 0; i < numScores; i++) { - score = userList.getAt(i); - scores.push({ - username: score.gamertag, - score: parseInt(score.rating, 10) - }); - } - - callback(scores); - }, - function (error) { - Debug.write(error); - callback(null); - }); - }, - getAllScores: function (callback) { - var numBoxes = LeaderboardIds.length, - remaining = 1, // TODO: re-enable all numBoxes, - allScores = [], - getSingleBox = function (boxIndex) { - ZL.Leaderboards.getBoxScores(boxIndex, function (scores) { - if (scores) { - allScores[boxIndex] = scores; - remaining--; - } - - if (remaining === 0) { - callback(allScores); - } - }); - } - - for (var i = 0; i < numBoxes; i++) { - getSingleBox(i); - } - }, - postScore: function (boxIndex, score) { - var service = new Microsoft.Xbox.Leaderboards.LeaderboardService(CTR_TITLE_ID); - service.postResultAsync( - LeaderboardIds[boxIndex], - Microsoft.Xbox.Leaderboards.LeaderboardAggregation.max, - score) - .then( - function onSuccess() { - Debug.write('posted box score: ' + score); - }, - function onError(error) { - Debug.write(error); - }); - } - } - }); - -})(); diff --git a/packages/zeptolabuklimited.cuttherope/js/xbox/Player.js b/packages/zeptolabuklimited.cuttherope/js/xbox/Player.js deleted file mode 100644 index 85de8a04..00000000 --- a/packages/zeptolabuklimited.cuttherope/js/xbox/Player.js +++ /dev/null @@ -1,97 +0,0 @@ -(function () { - - // cache sign-in related controls - var $message, $signIn, $signOut, $gamerPicture, - PENDING_CLASS = 'pending', - setMessage = ZeptoLab.ctr.setSignInMessage, - setGamertag = ZeptoLab.ctr.setSignInGamertag; - - WinJS.Namespace.define("ZL", { - Player: { - user: null, - identity: null, - profile: null, - init: function () { - - $message = $('#signInMessage'); - $signIn = $('#signInButton').click($.proxy(this.signIn, this)); - $signOut = $('#signOutButton').click($.proxy(this.signOut, this)).hide(); - $gamerPicture = $('#gamerPicture'); - - this.user = new Microsoft.Xbox.User(); - - Microsoft.Xbox.XboxLIVEService.serviceClient.addEventListener( - "signedout", - this.onSignedOut); - }, - signInPending: false, - signIn: function () { - if (this.signInPending) { - return; - } - - this.signInPending = true; - var signInCompleted = function () { - $signIn.removeClass(PENDING_CLASS); - this.signInPending = false; - }.bind(this); - - $signIn.addClass(PENDING_CLASS); - $signOut.hide(); - - setMessage(XboxStringId.SIGNING_IN); - - Microsoft.Xbox.XboxLIVEService.signInAsync().then( - function signInSucceeded(identity) { - this.identity = identity; - - // get user profile - this.user.getProfileAsync().then( - function getProfileSucceeded(profile) { - this.profile = profile; - - $gamerPicture.css('background-image', 'url(' + profile.gamerPictureUrl + ')'); - - // Test max length gamertag - //setGamertag('WWWWWMMMMMWWWWW'); - - setGamertag(profile.gamertag); - - $signIn.hide(); - $signOut.show(); - signInCompleted(); - ZeptoLab.ctr.onUserIdChanged(identity.xuid); - ZeptoLab.ctr.onSignIn(); - }.bind(this), - function getProfileFailed(e) { - setMessage(XboxStringId.PROFILE_NOT_FOUND); - signInCompleted(); - }.bind(this) - ); - }.bind(this), - function signInFailed(e) { - setMessage(XboxStringId.CANNOT_SIGN_IN); - signInCompleted(); - ZeptoLab.ctr.setPaidBoxes(true); - } - ); - }, - signOut: function () { - Microsoft.Xbox.XboxLIVEService.signOutAsync(); - this.onSignedOut(); - }, - onSignedOut: function () { - this.identity = null; - this.profile = null; - - // reset sign in controls - $gamerPicture.css('background-image', ''); - setMessage(XboxStringId.XBOX_LIVE); - $signIn.show(); - $signOut.hide(); - ZeptoLab.ctr.onUserIdChanged(null); - ZeptoLab.ctr.onSignOut(); - } - } - }); -}()); \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/js/xbox/Strings.js b/packages/zeptolabuklimited.cuttherope/js/xbox/Strings.js deleted file mode 100644 index bc252ba6..00000000 --- a/packages/zeptolabuklimited.cuttherope/js/xbox/Strings.js +++ /dev/null @@ -1,10 +0,0 @@ -// keep in sync with js/resources/XboxStringId.js -var XboxStringId = { - XBOX_LIVE: 0, - SIGN_OUT: 1, - SIGN_IN: 2, - SIGNING_IN: 3, - GETTING_PROFILE: 4, - PROFILE_NOT_FOUND: 5, - CANNOT_SIGN_IN: 6 -}; diff --git a/packages/zeptolabuklimited.cuttherope/js/xbox/XboxUtils.js b/packages/zeptolabuklimited.cuttherope/js/xbox/XboxUtils.js deleted file mode 100644 index 2479ec98..00000000 --- a/packages/zeptolabuklimited.cuttherope/js/xbox/XboxUtils.js +++ /dev/null @@ -1,52 +0,0 @@ -// Helper for common functions - -WinJS.Namespace.define("ZL", { - Util: { - - getErrorString: function (errorNumber) { - // Map the errorNumber to pre-defined and localized error strings if available - var errorString; - switch (errorNumber) { - case Microsoft.Xbox.Foundation.ErrorCode.spaFileError: - case Microsoft.Xbox.Foundation.ErrorCode.notSignedIn: - case Microsoft.Xbox.Foundation.ErrorCode.serverConnectionFailure: - case Microsoft.Xbox.Foundation.ErrorCode.windowsLiveUserChanged: - errorString = ""; - break; - - case Microsoft.Xbox.Foundation.ErrorCode.accountManagementRequired: - case Microsoft.Xbox.Foundation.ErrorCode.userBanned: - errorString = Microsoft.Xbox.ResourceLoader.getStringById(Microsoft.Xbox.StringId.errorAccountNeedsManagement); - break; - - case Microsoft.Xbox.Foundation.ErrorCode.windowsLiveSignInFailure: - case Microsoft.Xbox.Foundation.ErrorCode.xboxLIVESignInFailure: - case Microsoft.Xbox.Foundation.ErrorCode.noXboxLIVEAccount: - errorString = Microsoft.Xbox.ResourceLoader.getStringById(Microsoft.Xbox.StringId.errorSignInFailed); - break; - - case Microsoft.Xbox.Foundation.ErrorCode.appReceiptError: - case Microsoft.Xbox.Foundation.ErrorCode.noAppReceipt: - errorString = Microsoft.Xbox.ResourceLoader.getStringById(Microsoft.Xbox.StringId.errorProofOfPurchase); - break; - - case Microsoft.Xbox.Foundation.ErrorCode.serviceDeprecated: - case Microsoft.Xbox.Foundation.ErrorCode.xboxLIVENeedsUpdate: - errorString = Microsoft.Xbox.ResourceLoader.getStringById(Microsoft.Xbox.StringId.errorServiceVersionOld); - break; - - case Microsoft.Xbox.Foundation.ErrorCode.termsOfServiceError: - errorString = Microsoft.Xbox.ResourceLoader.getStringById(Microsoft.Xbox.StringId.errorTermsOfServiceUpdate); - break; - - case Microsoft.Xbox.Foundation.ErrorCode.operationCancelled: - errorString = Microsoft.Xbox.ResourceLoader.getStringById(Microsoft.Xbox.StringId.errorSignInOrConsentNotGranted); - break; - - default: - errorString = Microsoft.Xbox.ResourceLoader.getStringById(Microsoft.Xbox.StringId.errorUnknown); - break; - } - } - } -}); diff --git a/packages/zeptolabuklimited.cuttherope/raw/AppxBlockMap.xml b/packages/zeptolabuklimited.cuttherope/raw/AppxBlockMap.xml deleted file mode 100644 index 55074515..00000000 --- a/packages/zeptolabuklimited.cuttherope/raw/AppxBlockMap.xml +++ /dev/null @@ -1,2 +0,0 @@ - - \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/raw/MarkedUp.winmd b/packages/zeptolabuklimited.cuttherope/raw/MarkedUp.winmd deleted file mode 100644 index de8aa020..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/raw/MarkedUp.winmd and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/raw/Microsoft.Xbox.dll b/packages/zeptolabuklimited.cuttherope/raw/Microsoft.Xbox.dll deleted file mode 100644 index f7156b8f..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/raw/Microsoft.Xbox.dll and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/raw/Microsoft.Xbox.winmd b/packages/zeptolabuklimited.cuttherope/raw/Microsoft.Xbox.winmd deleted file mode 100644 index bad1e2e2..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/raw/Microsoft.Xbox.winmd and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/raw/Package.StoreAssociation.xml b/packages/zeptolabuklimited.cuttherope/raw/Package.StoreAssociation.xml deleted file mode 100644 index f80f4f1c..00000000 --- a/packages/zeptolabuklimited.cuttherope/raw/Package.StoreAssociation.xml +++ /dev/null @@ -1,370 +0,0 @@ - - - CN=9F84FC0F-E616-49FF-9410-D8AC6DAE95F7 - ZeptoLabUKLimited - ZeptoLab UK Limited - http://www.w3.org/2001/04/xmlenc#sha256 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ZeptoLabUKLimited.CutTheRope - - Cut The Rope - - - - - - 6.2.1.0 - arm - 1.1.0.33 - - - 6.2.1.0 - x86 - 1.1.0.33 - - - \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/raw/StoreManifest.xml b/packages/zeptolabuklimited.cuttherope/raw/StoreManifest.xml deleted file mode 100644 index 5343d7eb..00000000 --- a/packages/zeptolabuklimited.cuttherope/raw/StoreManifest.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - true - false - - \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/raw/resources.pri b/packages/zeptolabuklimited.cuttherope/raw/resources.pri deleted file mode 100644 index 849bec98..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/raw/resources.pri and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/raw/xbl.spa b/packages/zeptolabuklimited.cuttherope/raw/xbl.spa deleted file mode 100644 index 3d9ac633..00000000 Binary files a/packages/zeptolabuklimited.cuttherope/raw/xbl.spa and /dev/null differ diff --git a/packages/zeptolabuklimited.cuttherope/scripts/ctr.js b/packages/zeptolabuklimited.cuttherope/scripts/ctr.js deleted file mode 100644 index 56bccae1..00000000 --- a/packages/zeptolabuklimited.cuttherope/scripts/ctr.js +++ /dev/null @@ -1,42495 +0,0 @@ -(function() { - function da() { - return function() {} - } - - function ma(aa) { - return function(ea) { - this[aa] = ea - } - } - - function Da(aa) { - return function() { - return this[aa] - } - } - - function Ka(aa) { - return function() { - return aa - } - } - (function() { - var aa = function() { - var a; - (function() { - var d = !1, - c = /var xyz/.test(da()) ? /\b_super\b/ : /.*/; - a = da(); - a.extend = function(b) { - function a() { - !d && this.init && this.init.apply(this, arguments) - } - var e = this.prototype; - d = !0; - var g = new this; - d = !1; - for (var h in b) g[h] = "function" == typeof b[h] && "function" == typeof e[h] && c.test(b[h]) ? function(b, a) { - return function() { - var f = this.H; - this.H = e[b]; - var d = a.apply(this, arguments); - this.H = f; - return d - } - }(h, b[h]) : b[h]; - a.prototype = g; - a.extend = arguments.callee; - return a - } - })(); - return a - }(), - ea = function() { - function a(a, c, b, f) { - this.R = a; - this.T = c; - this.S = b; - this.O = f - } - a.prototype.Hi = function() { - return "rgba(" + (255 * this.R >> 0) + "," + (255 * this.T >> 0) + "," + (255 * this.S >> 0) + "," + this.O.toFixed(2) + ")" - }; - a.prototype.Xj = function(a) { - return this.R === a.R && this.T === a.T && this.S === a.S && this.O === a.O - }; - a.prototype.copy = function() { - return new a(this.R, this.T, this.S, this.O) - }; - a.prototype.Da = function(a) { - this.R = a.R; - this.T = a.T; - this.S = a.S; - this.O = a.O - }; - a.prototype.add = function(a) { - this.R += a.R; - this.T += a.T; - this.S += a.S; - this.O += a.O - }; - a.prototype.multiply = function(a) { - this.R *= a; - this.T *= a; - this.S *= a; - this.O *= a - }; - a.Vb = new a(0, 0, 0, 0); - a.Ab = new a(1, 1, 1, 1); - a.red = new a(1, 0, 0, 1); - a.blue = new a(0, 0, 1, 1); - a.green = new a(0, 1, 0, 1); - a.aE = new a(0, 0, 0, 1); - a.Qv = a.Ab; - a.el = { - Cj: "rgba(255,255,255,1)", - RD: "rgba(0,0,0,0)" - }; - return a - }(), - P = function() { - return { - B: 0, - Bb: 1, - oc: 2, - rg: 4, - Yb: 8, - tg: 16, - hg: 32, - da: 18, - parse: function(a) { - var d = this.B; - 0 < a.indexOf("LEFT") ? d = this.Bb : 0 < a.indexOf("HCENTER") || "CENTER" === a ? d = this.oc : 0 < a.indexOf("RIGHT") && (d = this.rg); - 0 < a.indexOf("TOP") ? d |= this.Yb : - 0 < a.indexOf("VCENTER") || "CENTER" === a ? d |= this.tg : 0 < a.indexOf("BOTTOM") && (d |= this.hg); - return d - } - } - }(), - R = function() { - function a(a, c) { - this.x = a; - this.y = c - } - a.prototype.add = function(a) { - this.x += a.x; - this.y += a.y - }; - a.prototype.qb = function(a) { - this.x -= a.x; - this.y -= a.y - }; - a.prototype.multiply = function(a) { - this.x *= a; - this.y *= a - }; - a.prototype.fo = function(a) { - this.x /= a; - this.y /= a - }; - a.prototype.Xa = function(a) { - var c = this.x - a.x; - a = this.y - a.y; - return Math.sqrt(c * c + a * a) - }; - a.prototype.Qd = function() { - return Math.sqrt(this.x * this.x + this.y * this.y) - }; - a.prototype.To = function() { - return 0 === this.x && 0 === this.y - }; - a.prototype.Xj = function(a) { - return this.x === a.x && this.y === a.y - }; - a.prototype.normalize = function() { - this.multiply(1 / this.Qd()) - }; - a.prototype.a = function() { - return Math.atan(this.y / this.x) - }; - a.prototype.Rg = function() { - return Math.atan2(this.y, this.x) - }; - a.prototype.copy = function() { - return new a(this.x, this.y) - }; - a.prototype.Da = function(a) { - this.x = a.x; - this.y = a.y - }; - a.prototype.round = function() { - this.x = Math.round(this.x); - this.y = Math.round(this.y) - }; - a.prototype.rotate = - function(a) { - var c = Math.cos(a); - a = Math.sin(a); - var b = this.x * a + this.y * c; - this.x = this.x * c - this.y * a; - this.y = b - }; - a.prototype.Ca = function(a, c, b) { - this.x -= c; - this.y -= b; - this.rotate(a); - this.x += c; - this.y += b - }; - a.prototype.toString = function() { - return "[" + this.x + ", " + this.y + "]" - }; - a.cb = function() { - return new a(0, 0) - }; - a.OF = new a(0, 0); - a.pi = function() { - return new a(2147483647, 2147483647) - }; - a.xC = a.pi(); - a.add = function(d, c) { - return new a(d.x + c.x, d.y + c.y) - }; - a.qb = function(d, c) { - return new a(d.x - c.x, d.y - c.y) - }; - a.multiply = function(d, c) { - return new a(d.x * - c, d.y * c) - }; - a.fo = function(d, c) { - return new a(d.x / c, d.y / c) - }; - a.Xa = function(a, c, b, f) { - a -= b; - c -= f; - return Math.sqrt(a * a + c * c) - }; - a.ju = function(d) { - return new a(-d.y, d.x) - }; - a.UA = function(d) { - return new a(d.y, -d.x) - }; - a.normalize = function(a) { - return this.multiply(a, 1 / a.Qd()) - }; - a.XE = function(d) { - return new a(-d.x, -d.y) - }; - a.vx = Array(64); - a.wx = Array(64); - a.Tx = function(d, c) { - var b = new a(0, 0); - a.Lu(d, c, b); - return b - }; - a.Lu = function(d, c, b) { - var f = d.length; - if (1 >= f) b.x = b.y = 0; - else { - for (var e = a.vx, g = a.wx, h = 1 - c, l = 0; l < f; l++) { - var n = d[l]; - e[l] = - n.x; - g[l] = n.y - } - for (d = f - 1; 0 < d; f--, d--) - for (l = 0, n = 1; l < d; l++, n++) e[l] = e[l] * h + e[n] * c, g[l] = g[l] * h + g[n] * c; - b.x = e[0]; - b.y = g[0] - } - }; - a.Iy = function(d) { - return new a(Math.cos(d), Math.sin(d)) - }; - return a - }(), - V = { - ud: 5, - Al: 0.15, - B: -1, - ig: 1E-6, - Dj: 1, - Uw: 80, - RC: 0.15, - DD: 10, - Vv: -2, - ng: 2147483647 - }, - Z = function(a) { - return { - yb: function(a) { - this.Ki(document.getElementById(a)) - }, - Ki: function(d) { - this.element = this.id = d; - this.context = this.element.getContext("2d"); - this.VB(a.Qv) - }, - VB: function(a) { - a = a.Hi(); - this.context.fillStyle = a; - this.context.strokeStyle = - a - }, - zF: function(a) { - this.context.fillStyle = a; - this.context.strokeStyle = a - }, - Hy: function(a, c) { - var b = this.context, - f = a[0]; - b.fillStyle = c; - b.beginPath(); - b.moveTo(f.x, f.y); - for (var e = 1, g = a.length; e < g; e += 2) f = a[e], b.lineTo(f.x, f.y); - for (e = a.length - 2; 0 <= e; e -= 2) f = a[e], b.lineTo(f.x, f.y); - b.fill() - } - } - }(ea), - ta = { - vj: "ACTION_SET_VISIBLE", - Nm: "ACTION_SET_TOUCHABLE", - Om: "ACTION_SET_UPDATEABLE", - uj: "ACTION_SET_DRAWQUAD", - Dm: "ACTION_PLAY_TIMELINE", - lr: "ACTION_PAUSE_TIMELINE", - kx: "ACTION_STOP_TIMELINE", - Hw: "ACTION_JUMP_TO_TIMELINE_FRAME" - }, - La = function() { - function a(a, b, f) { - this.ys = a; - this.zs = b; - this.Gh = f - } - - function d(a, b) { - this.yx = a; - this.data = b - } - d.create = function(c, b, f, e) { - return new d(c, new a(b, f, e)) - }; - return d - }(), - Ma = { - Ee: 0, - rf: 1, - qf: 2, - jf: 3, - fe: 4, - VC: 5 - }, - pa = function(a, d, c, b) { - function f() { - this.p = a.cb(); - this.scale = a.cb(); - this.fb = 0; - this.color = d.Ab.copy(); - this.tf = [] - } - - function e(a, b, f, c) { - this.dd = a; - this.Ri = b; - this.fh = f; - this.value = c - } - f.prototype.copy = function() { - var a = new f; - a.p = this.p.copy(); - a.scale = this.scale.copy(); - a.fb = this.fb; - a.color = this.color.copy(); - a.tf = - this.tf.slice(0); - return a - }; - e.prototype.copy = function() { - return new e(this.dd, this.Ri, this.fh, this.value.copy()) - }; - e.N = { - LINEAR: 0, - CD: 1, - ge: 2, - Xb: 3 - }; - e.dp = function() { - return new e(0, b.Ee, e.N.LINEAR, new f) - }; - e.ab = function(a, c, d, n) { - var q = new f; - q.p.x = a; - q.p.y = c; - return new e(n, b.Ee, d, q) - }; - e.pk = function(a, c, d, n) { - var q = new f; - q.scale.x = a; - q.scale.y = c; - return new e(n, b.rf, d, q) - }; - e.Ve = function(a, c, d) { - var n = new f; - n.fb = a; - return new e(d, b.qf, c, n) - }; - e.Ka = function(a, c, d) { - var n = new f; - n.color = a; - return new e(d, b.jf, c, n) - }; - e.ni = function(a, - c) { - var d = new f; - d.tf = a; - return new e(c, b.fe, e.N.LINEAR, d) - }; - e.Vz = function(a, d) { - var l = new f, - n = c.create(a, d, 0, 0); - l.tf = [n]; - return new e(0.04, b.fe, e.N.LINEAR, l) - }; - return e - }(R, ea, La, Ma), - ub = function(a, d, c, b) { - return a.extend({ - init: function(a, e) { - this.type = e; - this.state = 0; - this.Kk = !1; - this.Oe = this.startTime = 0; - this.ya = []; - this.Kb = a; - this.pa = b.B; - this.Ie = d.dp(); - this.Ph = d.dp(); - this.Wh = d.dp(); - this.zb = this.Oa = 0; - e === c.fe && (this.xx = []) - }, - Od: function() { - this.state = 0 - }, - M: function(a) { - this.Tk(a, this.ya.length) - }, - Tk: function(a, b) { - this.ya[b] = - a; - this.type === c.fe && this.xx.push(a.value.tf) - }, - to: function(a) { - for (var b = 0, c = 0; c <= a; c++) b += this.ya[c].dd; - return b - }, - HC: function() { - this.startTime = this.to(0); - this.Oe = this.to(this.ya.length - 1) - }, - Fv: function(a) { - 0 === this.state ? this.Kb.ce ? this.Kb.time + a < this.startTime || this.Kb.time > this.Oe || (1 < this.ya.length ? (this.state = 1, this.pa = this.ya.length - 1, this.zb = this.Oe - this.Kb.time, this.pa--, this.Lg(this.ya[this.pa + 1], this.ya[this.pa].dd)) : this.Lg(this.ya[0], 0)) : this.Kb.time - a > this.Oe || this.Kb.time < this.startTime || - (1 < this.ya.length ? (this.state = 1, this.pa = 0, this.zb = this.Kb.time - this.startTime, this.pa++, this.Lg(this.ya[this.pa - 1], this.ya[this.pa].dd)) : this.Lg(this.ya[0], 0)) : (this.Oa -= a, this.Oa <= b.ig && (this.Kb.qi && this.Kb.qi(this.Kb, this.ya[this.pa], this.pa), this.zb = -this.Oa, this.pa === this.ya.length - 1 ? (this.Yg(this.ya[this.pa]), this.state = 0) : 0 === this.pa ? (this.Yg(this.ya[this.pa]), this.state = 0) : this.Kb.ce ? (this.pa--, a = this.ya[this.pa + 1], this.Lg(a, a.dd)) : (this.pa++, this.Lg(this.ya[this.pa - 1], this.ya[this.pa].dd)))) - }, - Jv: function(a) { - var e = this.Kb, - g; - if (0 === this.state) e.time >= this.startTime && e.time <= this.Oe && (this.state = 1, e.ce ? (this.pa = this.ya.length - 1, this.zb = this.Oe - e.time, this.pa--, g = this.ya[this.pa + 1], this.fk(g, this.ya[this.pa], g.dd)) : (this.pa = 0, this.zb = e.time - this.startTime, this.pa++, g = this.ya[this.pa], this.fk(this.ya[this.pa - 1], g, g.dd))); - else { - this.Oa -= a; - g = this.ya[this.pa]; - if (g.fh === d.N.ge || g.fh === d.N.Xb) switch (this.type) { - case c.Ee: - var h = this.Ph.value.p; - g = h.x * a; - var h = h.y * a, - l = this.Ie.value.p, - n = l.x, - q = l.y; - l.x += - g; - l.y += h; - e.element.x += (n + g / 2) * a; - e.element.y += (q + h / 2) * a; - break; - case c.rf: - h = this.Ph.value.scale; - g = h.x * a; - h = h.y * a; - l = this.Ie.value.scale; - n = l.x; - q = l.y; - l.x += g; - l.y += h; - e.element.ia += (n + g / 2) * a; - e.element.ta += (q + h / 2) * a; - break; - case c.qf: - g = this.Ph.value.fb * a; - h = this.Ie.value.fb; - this.Ie.value.fb += g; - e.element.rotation += (h + g / 2) * a; - break; - case c.jf: - var m = this.Ie.value.color; - g = m.R; - var h = m.T, - l = m.S, - n = m.O, - p = this.Ph.value.color, - q = p.R * a, - u = p.T * a, - s = p.S * a, - p = p.O * a; - m.R += 2 * q; - m.T += 2 * u; - m.S += 2 * s; - m.O += 2 * p; - m = e.element.color; - m.R += (g + q / 2) * - a; - m.T += (h + u / 2) * a; - m.S += (l + s / 2) * a; - m.O += (n + p / 2) * a - } else if (g.fh === d.N.LINEAR) switch (g = e.element, h = this.Ie.value, this.type) { - case c.Ee: - g.x += h.p.x * a; - g.y += h.p.y * a; - break; - case c.rf: - g.ia += h.scale.x * a; - g.ta += h.scale.y * a; - break; - case c.qf: - g.fb += h.fb * a; - break; - case c.jf: - g.color.R += h.color.R * a, g.color.T += h.color.T * a, g.color.S += h.color.S * a, g.color.O += h.color.O * a - } - this.Oa <= b.ig && (e.qi && e.qi(e, this.ya[this.pa], this.pa), this.zb = -this.Oa, this.pa === this.ya.length - 1 ? (this.Yg(this.ya[this.pa]), this.state = 0) : 0 === this.pa ? (this.Yg(this.ya[this.pa]), - this.state = 0) : e.ce ? (this.pa--, g = this.ya[this.pa + 1], this.fk(g, this.ya[this.pa], g.dd)) : (this.pa++, g = this.ya[this.pa], this.fk(this.ya[this.pa - 1], g, g.dd))) - } - }, - Lg: function(a, b) { - this.Oa = b; - this.Yg(a); - 0 < this.zb && (this.Fv(this.zb), this.zb = 0) - }, - Yg: function(a) { - switch (this.type) { - case c.Ee: - var b = this.Kb.element; - a = a.value.p; - if (this.Kk) { - var d = this.Wh.value.p; - b.x = d.x + a.x; - b.y = d.y + a.y - } else b.x = a.x, b.y = a.y; - break; - case c.rf: - a = a.value.scale; - b = this.Kb.element; - this.Kk ? (d = this.Wh.value.scale, b.ia = d.x + a.x, b.ta = d.y + a.y) : (b.ia = - a.x, b.ta = a.y); - break; - case c.qf: - this.Kb.element.rotation = this.Kk ? this.Wh.value.fb + a.value.fb : a.value.fb; - break; - case c.jf: - b = this.Kb.element.color; - a = a.value.color; - this.Kk ? (d = this.Wh.value.color, b.R = d.R + a.R, b.T = d.T + a.T, b.S = d.S + a.S, b.O = d.O + a.O) : b.Da(a); - break; - case c.fe: - for (b = a.value.tf, a = 0, d = b.length; a < d; a++) { - var h = b[a]; - h.yx.ut(h.data) - } - } - }, - EB: function(a) { - a = a.value; - var b = this.Kb.element; - switch (this.type) { - case c.Ee: - a.p.x = b.x; - a.p.y = b.y; - break; - case c.rf: - a.scale.x = b.ia; - a.scale.y = b.ta; - break; - case c.qf: - a.fb = b.rotation; - break; - case c.jf: - a.color.Da(b.color) - } - }, - fk: function(a, b, g) { - this.Oa = g; - this.EB(this.Wh); - this.Yg(a); - g = this.Ie.value; - var h = this.Ph.value; - switch (this.type) { - case c.Ee: - var l = g.p, - n = b.value.p; - a = a.value.p; - l.x = (n.x - a.x) / this.Oa; - l.y = (n.y - a.y) / this.Oa; - break; - case c.rf: - l = g.scale; - n = b.value.scale; - a = a.value.scale; - l.x = (n.x - a.x) / this.Oa; - l.y = (n.y - a.y) / this.Oa; - break; - case c.qf: - g.fb = (b.value.fb - a.value.fb) / this.Oa; - break; - case c.jf: - l = g.color, n = b.value.color, a = a.value.color, l.R = (n.R - a.R) / this.Oa, l.T = (n.T - a.T) / this.Oa, l.S = (n.S - - a.S) / this.Oa, l.O = (n.O - a.O) / this.Oa - } - a = b.fh === d.N.ge; - b = b.fh == d.N.Xb; - if (a || b) switch (this.type) { - case c.Ee: - l = g.p; - b = h.p; - l.multiply(2); - b.x = l.x / this.Oa; - b.y = l.y / this.Oa; - a ? (l.x = 0, l.y = 0) : b.multiply(-1); - break; - case c.rf: - l = g.scale; - b = h.scale; - l.multiply(2); - b.x = l.x / this.Oa; - b.y = l.y / this.Oa; - a ? (l.x = 0, l.y = 0) : b.multiply(-1); - break; - case c.qf: - g.fb *= 2; - h.fb = g.fb / this.Oa; - a ? g.fb = 0 : h.fb *= -1; - break; - case c.jf: - l = g.color, b = h.color, l.multiply(2), b.R = l.R / this.Oa, b.T = l.T / this.Oa, b.S = l.S / this.Oa, b.O = l.O / this.Oa, a ? l.multiply(0) : b.multiply(-1) - } - 0 < - this.zb && (this.Jv(this.zb), this.zb = 0) - } - }) - }(aa, pa, Ma, V), - na = function(a, d, c, b) { - var f = a.extend({ - init: function() { - this.length = this.time = 0; - this.Of = b.B; - this.state = f.ka.Bh; - this.ok = f.xa.mb; - this.ed = []; - this.qi = this.rb = null; - this.ce = !1; - this.element = null - }, - M: function(a) { - var b = this.ed[a.Ri]; - this.Tk(a, null == b ? 0 : b.ya.length) - }, - Tk: function(a, b) { - var c = this.ed[a.Ri]; - c || (this.ed[a.Ri] = c = new d(this, a.Ri)); - c.Tk(a, b) - }, - tt: function(a) { - return this.ed[a] - }, - play: function() { - if (this.state !== f.ka.wh) { - this.time = 0; - this.ce = !1; - for (var a = - this.length = 0, b = this.ed.length; a < b; a++) { - var c = this.ed[a]; - c && (c.HC(), c.Oe > this.length && (this.length = c.Oe)) - } - } - this.state = f.ka.nr; - this.update(0) - }, - pause: function() { - this.state = f.ka.wh - }, - Ct: function(a, b) { - this.state === f.ka.Bh && (this.state = f.ka.wh); - this.update(this.ed[a].to(b) - this.time) - }, - stop: function() { - this.state = f.ka.Bh; - this.hy() - }, - hy: function() { - for (var a = 0, b = this.ed.length; a < b; a++) { - var c = this.ed[a]; - c && c.Od() - } - }, - update: function(a) { - if (this.state === f.ka.nr) { - this.time = this.ce ? this.time - a : this.time + a; - for (var d = - 0, h = this.ed.length; d < h; d++) { - var l = this.ed[d]; - null != l && (l.type === c.fe ? l.Fv(a) : l.Jv(a)) - } - switch (this.ok) { - case f.xa.mr: - !1 === this.ce && this.time >= this.length - b.ig ? (this.time = Math.max(0, this.length - (this.time - this.length)), this.ce = !0) : this.ce && this.time <= b.ig && (0 < this.Of && (this.Of--, 0 === this.Of && (this.stop(), this.rb && this.rb(this))), this.time = Math.min(-this.time, this.length), this.ce = !1); - break; - case f.xa.Lb: - this.time >= this.length - b.ig && (0 < this.Of && (this.Of--, 0 === this.Of && (this.stop(), this.rb && this.rb(this))), - this.time = Math.min(this.time - this.length, this.length)); - break; - case f.xa.mb: - this.time >= this.length - b.ig && (this.stop(), this.rb && this.rb(this)) - } - } - } - }); - f.xa = { - mb: 0, - Lb: 1, - mr: 2 - }; - f.ka = { - Bh: 0, - nr: 1, - wh: 2 - }; - return f - }(aa, ub, Ma, V), - ga = function() { - return { - kE: 6.283185307179586, - tc: function(a) { - return 0.017453292519943295 * a - }, - eh: function(a) { - return 57.29577951308232 * a - } - } - }(), - fa = function(a, d, c, b, f, e, g, h) { - return a.extend({ - init: function() { - this.parent = null; - this.Ti = this.mc = this.visible = !0; - this.name = null; - this.Xg = this.xe = this.rotation = - this.height = this.width = this.va = this.ua = this.y = this.x = 0; - this.ta = this.ia = 1; - this.color = d.Ab.copy(); - this.Bv = this.Av = 0; - this.anchor = c.Yb | c.Bb; - this.Ba = c.B; - this.xi = this.Xe = !0; - this.zk = !1; - this.children = []; - this.ef = []; - this.Bg = b.B; - this.Ob = null - }, - Jh: function() { - var a = this.Ba, - b = this.parent, - d = this.anchor; - a !== c.B ? (a & c.Bb ? this.ua = b.ua + this.x : a & c.oc ? this.ua = b.ua + this.x + b.width / 2 : a & c.rg && (this.ua = b.ua + this.x + b.width), a & c.Yb ? this.va = b.va + this.y : a & c.tg ? this.va = b.va + this.y + b.height / 2 : a & c.hg && (this.va = b.va + this.y + b.height)) : - (this.ua = this.x, this.va = this.y); - d & c.Yb || (d & c.tg ? this.va -= this.height / 2 : d & c.hg && (this.va -= this.height)); - d & c.Bb || (d & c.oc ? this.ua -= this.width / 2 : d & c.rg && (this.ua -= this.width)) - }, - Lc: function() { - this.Jh(); - var a = 0 !== this.ia && 0 !== this.ta && (1 !== this.ia || 1 !== this.ta), - b = 0 !== this.rotation, - c = 0 !== this.Av || 0 !== this.Bv, - d = f.context; - d.save(); - if (a || b) { - var e = this.ua + this.width / 2 + this.xe, - g = this.va + this.height / 2 + this.Xg, - s = 0 !== e || 0 !== g; - s && d.translate(e, g); - b && d.rotate(h.tc(this.rotation)); - a && d.scale(this.ia, this.ta); - s && d.translate(-e, - -g) - } - c && d.translate(this.Av, this.Bv); - this.Fk = d.globalAlpha; - 1 !== this.color.O && this.color.O !== this.Fk && (d.globalAlpha = this.color.O) - }, - L: function() { - this.Lc(); - this.Kc() - }, - Dg: function() { - var a = f.context; - a.strokeStyle = "red"; - a.strokeRect(this.ua, this.va, this.width, this.height) - }, - Kc: function() { - var a = f.context, - b = 1 !== this.color.O && this.color.O !== this.Fk; - if (this.oE) { - var c = this.ua + (this.width >> 1) + this.xe, - d = this.va + (this.height >> 1) + this.Xg; - a.save(); - a.lineWidth = 5; - a.strokeStyle = "#ff0000"; - a.beginPath(); - a.moveTo(c, d); - a.lineTo(c, d - 100); - a.closePath(); - a.stroke(); - a.restore() - } - this.Xe ? !this.xi && b && (f.context.globalAlpha = this.Fk) : (this.zt && this.Dg(), a.restore(), this.xi && b && (f.context.globalAlpha = this.color.O)); - for (var c = this.children, d = c.length, e = 0; e < d; e++) { - var g = c[e]; - g.visible && g.L() - } - this.Xe ? (this.zt && this.Dg(), a.restore()) : this.xi && b && (f.context.globalAlpha = this.Fk) - }, - update: function(a) { - for (var b = this.children, c = b.length, d = 0; d < c; d++) { - var f = b[d]; - f.Ti && f.update(a) - } - this.Ob && this.Ob.update(a) - }, - Sy: function(a) { - for (var b = - this.children, c = b.length, d = 0; d < c; d++) { - var f = b[d]; - if (f.name === a) return f; - f = f.Sy(a); - if (null !== f) return f - } - return null - }, - yF: function() { - this.Jh(); - for (var a = this.ua, b = this.va, c = this.ua + this.width, d = this.va + this.height, f = this.children, e = f.length, g = 0; g < e; g++) { - var h = f[g]; - h.Jh(); - h.ua < a && (a = h.ua); - h.va < b && (b = h.va); - var r = h.ua + h.width, - h = h.va + h.height; - r > c && (c = r); - h > d && (d = h) - } - this.width = c - a; - this.height = d - b - }, - ut: function(a) { - switch (a.ys) { - case e.vj: - this.visible = 0 !== a.Gh; - break; - case e.Om: - this.Ti = 0 !== a.Gh; - break; - case e.Nm: - this.mc = - 0 !== a.Gh; - break; - case e.Dm: - this.ea(a.Gh); - break; - case e.lr: - this.FA(); - break; - case e.kx: - this.lv(); - break; - case e.Hw: - this.Ob.Ct(a.zs, a.Gh); - break; - default: - return !1 - } - return !0 - }, - fa: function(a) { - this.children.push(a); - a.parent = this; - return this.children.length - 1 - }, - Ge: function(a, b) { - this.children[b] = a; - a.parent = this - }, - wu: function(a) { - this.children.splice(a, 1).parent = null - }, - vu: function() { - this.children = [] - }, - removeChild: function(a) { - for (var b = this.children, c = b.length, d = 0; d < c; d++) - if (a === b[d]) { - this.wu(d); - break - } - }, - tb: function(a) { - return this.children[a] - }, - hE: function() { - return this.children.length - }, - getChildren: Da("children"), - Ds: function(a) { - var b = this.ef.length; - this.Zb(a, b); - return b - }, - Zb: function(a, b) { - a.element = this; - this.ef[b] = a - }, - cB: function(a) { - this.Bg === a && this.lv(); - a < this.ef.length && this.ef.splice(a, 1) - }, - ea: function(a) { - this.Ob && this.Ob.state !== g.ka.Bh && this.Ob.stop(); - this.Bg = a; - this.Ob = this.ef[a]; - this.Ob.play() - }, - FA: function() { - this.Ob.pause() - }, - lv: function() { - this.Ob.stop(); - this.Ob = null; - this.Bg = b.B - }, - Fc: function(a) { - return this.ef[a] - }, - wk: function(a, b) { - for (var c = !1, d = this.children.length - 1; 0 <= d; d--) { - var f = this.children[d]; - if (f && f.mc && f.wk(a, b) && !1 === c && (c = !0, !this.zk)) break - } - return c - }, - xk: function(a, b) { - for (var c = !1, d = this.children.length - 1; 0 <= d; d--) { - var f = this.children[d]; - if (f && f.mc && f.xk(a, b) && !1 === c && (c = !0, !this.zk)) break - } - return c - }, - lp: function(a, b) { - for (var c = !1, d = this.children.length - 1; 0 <= d; d--) { - var f = this.children[d]; - if (f && f.mc && f.lp(a, b) && !1 === c && (c = !0, !this.zk)) break - } - return c - }, - au: function(a, b) { - for (var c = !1, d = this.children.length - 1; 0 <= d; d--) { - var f = this.children[d]; - if (f && f.mc && f.au(a, b) && !1 === c && (c = !0, !this.zk)) break - } - return c - }, - setEnabled: function(a) { - this.Ti = this.mc = this.visible = a - }, - isEnabled: function() { - return this.visible && this.mc && this.Ti - }, - show: function() { - for (var a = this.children, b = a.length, c = 0; c < b; c++) { - var d = a[c]; - d.visible && d.show() - } - }, - hide: function() { - for (var a = this.children, b = a.length, c = 0; c < b; c++) { - var d = a[c]; - d.visible && d.hide() - } - } - }) - }(aa, ea, P, V, Z, ta, na, ga), - S = function(a) { - function d(a, b, c, d) { - this.x = a; - this.y = b; - this.V = c; - this.ga = d - } - - function c(a, c, d, q, m) { - return (m.x < - a ? b : 0) + (m.x > d ? f : 0) + (m.y < c ? e : 0) + (m.y > q ? g : 0) - } - d.copy = function(a) { - return new d(a.x, a.y, a.V, a.ga) - }; - d.ye = function(a, b) { - return new d(a.x * b, a.y * b, a.V * b, a.ga * b) - }; - d.Ci = function(a, b, c, d, f, e, g, s) { - return !(a > g || c < f || b > s || d < e) - }; - d.uu = function(a, b, c, f, e, g, u, s) { - a = new d(e - a, g - b, u, s); - 0 > a.x && (a.V += a.x, a.x = 0); - a.x + a.V > c && (a.V = c - a.x); - 0 > a.y && (a.ga += a.y, a.y = 0); - a.y + a.ga > f && (a.ga = f - a.y); - return a - }; - d.Tb = function(a, b, c, d, f, e) { - return a >= c && a < c + f && b >= d && b < d + e - }; - var b = 1, - f = 2, - e = 4, - g = 8; - d.Nf = function(d, l, n, q, m, p, u, s) { - var v, r, z = new a(d, - l), - k = new a(n, q), - C; - u = m + u; - var D = p + s; - s = c(m, p, u, D, z); - for (v = c(m, p, u, D, k); s || v;) { - if (s & v) return !1; - s ? (r = s, C = z) : (r = v, C = k); - r & b ? (C.y += (l - q) * (m - C.x) / (d - n), C.x = m) : r & f && (C.y += (l - q) * (u - C.x) / (d - n), C.x = u); - r & e ? (C.x += (d - n) * (p - C.y) / (l - q), C.y = p) : r & g && (C.x += (d - n) * (D - C.y) / (l - q), C.y = D); - r == s ? s = c(m, p, u, D, z) : v = c(m, p, u, D, k) - } - return !0 - }; - return d - }(R), - Na = function(a, d, c, b) { - return a.extend({ - init: function(a) { - this.H(); - this.U = a; - this.vk = c.B; - this.$f = []; - this.ff = []; - this.wg = [] - }, - jb: function(a, b, c, d) { - this.$f[a] = b; - this.ff[a] = c; - this.wg[a] = null != - d ? d : 1 - }, - bB: function(a) { - this.$f.splice(a, 1); - this.ff.splice(a, 1); - this.wg.splice(a, 1) - }, - qk: function(a, c, d, h) { - this.$f[h] = b.copy(this.U.G[a]); - var l = this.U.J[a]; - a = this.U.G[a]; - this.ff[h] = new b(c + l.x, d + l.y, a.V, a.ga); - this.wg[h] = 1 - }, - ft: function(a) { - a > this.$f.length && (a = this.$f.length); - for (var b = d.context, c = 0; c < a; c++) { - var h = this.$f[c], - l = this.ff[c], - n = this.wg[c], - q = b.globalAlpha, - m = Math.ceil(h.V), - p = Math.ceil(h.ga); - if (0 !== m && 0 !== p) { - if (null == n) n = 1; - else if (0 >= n) continue; - else 1 > n && (b.globalAlpha = n); - var u = this.Wg && this.Wg.length > - c; - if (u) { - var s = this.Wg[c], - v = this.Qk[c], - r = 0 !== v.x || 0 !== v.y; - 0 !== s && (r && b.translate(v.x, v.y), b.rotate(s), r && b.translate(-v.x, -v.y)) - } - var z, k, C; - this.Sa ? (z = Math.round(l.x / this.Sa) * this.Sa, k = Math.round(l.y / this.Sa) * this.Sa, C = Math.round(l.V / this.Sa) * this.Sa, l = Math.round(l.ga / this.Sa) * this.Sa) : (z = Math.round(l.x), k = Math.round(l.y), C = Math.ceil(l.V), l = Math.ceil(l.ga)); - b.drawImage(this.U.Gc, h.x, h.y, m, p, z, k, C, l); - u && 0 !== s && (r && b.translate(v.x, v.y), b.rotate(-s), r && b.translate(-v.x, -v.y)); - 1 !== n && (b.globalAlpha = q) - } - } - }, - L: function() { - this.Lc(); - if (0 !== this.color.O) { - var a = d.context, - b = 0 !== this.ua || 0 !== this.va; - b && a.translate(this.ua, this.va); - this.ft(this.vk === c.B ? this.$f.length : this.vk); - b && a.translate(-this.ua, -this.va) - } - this.Kc() - } - }) - }(fa, Z, V, S), - x = { - hD: 0, - kD: 1, - fD: 2, - oD: 3, - jg: 4, - nh: 5, - tD: 6, - qa: 7, - PD: 8, - Sm: 9, - Rm: 10, - Qm: 11, - Tm: 12, - Xm: 13, - Zm: 14, - $m: 15, - an: 16, - Nr: 17, - dn: 18, - Or: 19, - Pr: 20, - Qr: 21, - en: 22, - mn: 23, - Rr: 24, - Sr: 25, - ie: 26, - bn: 27, - Lr: 28, - Mr: 29, - cn: 30, - jn: 31, - kn: 32, - ln: 33, - nn: 34, - pn: 35, - xj: 36, - yj: 37, - Um: 38, - Pm: 39, - lD: 40, - mD: 41, - xD: 42, - nD: 43, - uD: 44, - sD: 45, - vD: 46, - qD: 47, - rD: 48, - pD: 49, - iD: 50, - Rc: 51, - uh: 52, - gD: 53, - wD: 54, - yD: 55, - Dl: 56, - jD: 57, - zD: 58, - rm: 59, - sh: 60, - hm: 61, - lj: 62, - qm: 63, - jj: 64, - im: 65, - jm: 66, - rd: 67, - ij: 68, - pm: 69, - om: 70, - nm: 71, - lg: 73, - kj: 74, - nf: 75, - nj: 76, - sm: 77, - mg: 78, - fm: 79, - gm: 80, - Ac: 81, - gn: 82, - hn: 83, - wj: 84, - zh: 85, - Wm: 105, - Vm: 106, - ex: 107, - em: 108, - oj: 111, - km: 112, - lm: 113, - mm: 114, - th: 115, - rh: 116, - mj: 117, - zj: 118, - Aj: 119, - hj: 120, - Kl: 121, - Ll: 122, - Ml: 123, - Nl: 124, - Ol: 125, - Pl: 126, - Ql: 127, - Rl: 128, - Sl: 129, - Tl: 130, - Ul: 131, - Vl: 132, - Wl: 133, - Xl: 134, - gj: 135, - Yl: 136, - Zl: 137, - $l: 138, - am: 139, - bm: 140, - cm: 141, - dm: 142, - Uq: 143, - Vq: 144, - Wq: 145, - Xq: 146, - Yq: 147, - Zq: 148, - $q: 149, - gw: 150, - hw: 151, - iw: 152, - jw: 153, - mw: 154, - nw: 155, - ow: 156, - pw: 157, - qw: 158, - rw: 159, - sw: 160, - tw: 161, - uw: 162, - vw: 163, - ww: 164, - xw: 165, - yw: 166, - zw: 167, - Aw: 168, - Bw: 169, - Dw: 170, - Ew: 171, - Fw: 172, - Gw: 173, - Gr: 174, - Hr: 175, - Jr: 176, - Ir: 177, - Kr: 178, - Tr: 179, - Cw: 180, - zc: 72, - mf: 181, - qh: 182, - Ym: 183, - JD: 183 - }, - vb = [{ - id: x.jg, - Md: -1, - Ic: -42, - wc: 20, - wf: "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\u00a9\u00c0\u00e0\u00c2\u00e2\u00c6\u00e6\u00c7\u00e7\u00c8\u00e8\u00c9\u00e9\u00ca\u00ea\u00cb\u00eb\u00ce\u00ee\u00cf\u00ef\u00d4\u00f4\u0152\u0153\u00d9\u00f9\u00db\u00fb\u00dc\u00fc\u00ab\u00bb\u20ac\u00c4\u00e4\u00c9\u00e9\u00d6\u00f6\u00dc\u00fc\u00df\u201e\u201c\u201d\u00b0\u0410\u0411\u0412\u0413\u0414\u0415\u0401\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0451\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f", - Jf: {}, - G: [4, 4, 33, 156, 41, 4, 38, 156, 83, 4, 61, 156, 148, 4, 41, 156, 193, 4, 73, 156, 270, 4, 38, 156, 312, 4, 19, 156, 335, 4, 44, 156, 383, 4, 41, 156, 428, 4, 54, 156, 486, 4, 43, 156, 533, 4, 22, 156, 559, 4, 46, 156, 609, 4, 23, 156, 636, 4, 51, 156, 691, 4, 54, 156, 749, 4, 23, 156, 776, 4, 53, 156, 833, 4, 44, 156, 881, 4, 48, 156, 933, 4, 51, 156, 4, 164, 49, 156, 57, 164, 52, 156, 113, 164, 55, 156, 172, 164, 41, 156, 217, 164, 24, 156, 245, 164, 24, 156, 273, 164, 59, 156, 336, 164, 36, 156, 376, 164, 51, 156, 431, 164, 44, 156, 479, 164, 62, 156, 545, 164, 51, 156, 600, 164, 51, 156, 655, 164, 58, 156, 717, 164, 48, 156, 769, - 164, 46, 156, 819, 164, 45, 156, 868, 164, 50, 156, 922, 164, 49, 156, 975, 164, 24, 156, 4, 324, 45, 156, 53, 324, 45, 156, 102, 324, 54, 156, 160, 324, 73, 156, 237, 324, 43, 156, 284, 324, 63, 156, 351, 324, 59, 156, 414, 324, 54, 156, 472, 324, 51, 156, 527, 324, 57, 156, 588, 324, 56, 156, 648, 324, 59, 156, 711, 324, 52, 156, 767, 324, 74, 156, 845, 324, 63, 156, 912, 324, 47, 156, 4, 484, 67, 156, 75, 484, 65, 156, 144, 484, 54, 156, 202, 484, 56, 156, 262, 484, 40, 156, 306, 484, 74, 156, 384, 484, 24, 156, 412, 484, 45, 156, 461, 484, 51, 156, 516, 484, 49, 156, 569, 484, 48, 156, 621, 484, 43, 156, 668, 484, 47, 156, 719, - 484, 42, 156, 765, 484, 43, 156, 812, 484, 25, 156, 841, 484, 39, 156, 884, 484, 50, 156, 938, 484, 22, 156, 4, 644, 69, 156, 77, 644, 40, 156, 121, 644, 37, 156, 162, 644, 45, 156, 211, 644, 63, 156, 278, 644, 43, 156, 325, 644, 44, 156, 373, 644, 52, 156, 429, 644, 46, 156, 479, 644, 54, 156, 537, 644, 73, 156, 614, 644, 59, 156, 677, 644, 54, 156, 735, 644, 58, 156, 797, 644, 57, 156, 858, 644, 25, 156, 887, 644, 42, 156, 933, 644, 49, 156, 4, 804, 75, 156, 83, 804, 51, 156, 138, 804, 44, 156, 186, 804, 51, 156, 241, 804, 47, 156, 292, 804, 83, 156, 379, 804, 62, 156, 445, 804, 54, 156, 503, 804, 43, 156, 550, 804, 45, 156, 599, - 804, 45, 156, 648, 804, 45, 156, 697, 804, 45, 156, 746, 804, 45, 156, 795, 804, 45, 156, 844, 804, 45, 156, 893, 804, 45, 156, 942, 804, 41, 156, 4, 964, 41, 156, 49, 964, 33, 156, 86, 964, 34, 156, 124, 964, 63, 156, 191, 964, 48, 156, 243, 964, 82, 156, 329, 964, 61, 156, 394, 964, 53, 156, 451, 964, 44, 156, 499, 964, 53, 156, 556, 964, 43, 156, 603, 964, 53, 156, 660, 964, 43, 156, 707, 964, 53, 156, 764, 964, 59, 156, 827, 964, 65, 156, 896, 964, 51, 156, 951, 964, 44, 156, 4, 1124, 45, 156, 53, 1124, 45, 156, 102, 1124, 63, 156, 169, 1124, 48, 156, 221, 1124, 53, 156, 278, 1124, 43, 156, 325, 1124, 53, 156, 382, 1124, 43, - 156, 429, 1124, 43, 156, 476, 1124, 43, 156, 523, 1124, 40, 156, 567, 1124, 65, 156, 636, 1124, 47, 156, 687, 1124, 50, 156, 741, 1124, 49, 156, 794, 1124, 64, 156, 862, 1124, 46, 156, 912, 1124, 46, 156, 4, 1284, 73, 156, 81, 1284, 46, 156, 131, 1284, 54, 156, 189, 1284, 54, 156, 247, 1284, 62, 156, 313, 1284, 62, 156, 379, 1284, 64, 156, 447, 1284, 52, 156, 503, 1284, 59, 156, 566, 1284, 53, 156, 623, 1284, 48, 156, 675, 1284, 49, 156, 728, 1284, 59, 156, 791, 1284, 55, 156, 850, 1284, 59, 156, 913, 1284, 55, 156, 4, 1444, 58, 156, 66, 1444, 49, 156, 119, 1444, 72, 156, 195, 1444, 83, 156, 282, 1444, 62, 156, 348, 1444, - 58, 156, 410, 1444, 50, 156, 464, 1444, 48, 156, 516, 1444, 67, 156, 587, 1444, 51, 156, 642, 1444, 44, 156, 690, 1444, 41, 156, 735, 1444, 39, 156, 778, 1444, 37, 156, 819, 1444, 41, 156, 864, 1444, 40, 156, 908, 1444, 40, 156, 952, 1444, 61, 156, 4, 1604, 38, 156, 46, 1604, 43, 156, 93, 1604, 43, 156, 140, 1604, 44, 156, 188, 1604, 45, 156, 237, 1604, 62, 156, 303, 1604, 42, 156, 349, 1604, 40, 156, 393, 1604, 49, 156, 446, 1604, 46, 156, 496, 1604, 38, 156, 538, 1604, 69, 156, 611, 1604, 42, 156, 657, 1604, 61, 156, 722, 1604, 43, 156, 769, 1604, 45, 156, 818, 1604, 40, 156, 862, 1604, 63, 156, 929, 1604, 65, 156, 4, - 1764, 51, 156, 59, 1764, 51, 156, 114, 1764, 40, 156, 158, 1764, 39, 156, 201, 1764, 60, 156, 265, 1764, 40, 156, 309, 1764, 112, 156 - ] - }, { - id: x.nh, - Md: 2, - Ic: -90, - wc: 15, - wf: "!\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\u00a9\u00c0\u00e0\u00c2\u00e2\u00c6\u00e6\u00c7\u00e7\u00c8\u00e8\u00c9\u00e9\u00ca\u00ea\u00cb\u00eb\u00ce\u00ee\u00cf\u00ef\u00d4\u00f4\u0152\u0153\u00d9\u00f9\u00db\u00fb\u00dc\u00fc\u00ab\u00bb\u20ac\u00c4\u00e4\u00c9\u00e9\u00d6\u00f6\u00dc\u00fc\u00df\u201e\u201c\u201d\u00b0\u0410\u0411\u0412\u0413\u0414\u0415\u0401\u0416\u0417\u0418\u0419\u041a\u041b\u041c\u041d\u041e\u041f\u0420\u0421\u0422\u0423\u0424\u0425\u0426\u0427\u0428\u0429\u042a\u042b\u042c\u042d\u042e\u042f\u0430\u0431\u0432\u0433\u0434\u0435\u0451\u0436\u0437\u0438\u0439\u043a\u043b\u043c\u043d\u043e\u043f\u0440\u0441\u0442\u0443\u0444\u0445\u0446\u0447\u0448\u0449\u044a\u044b\u044c\u044d\u044e\u044f", - Jf: {}, - G: [4, 4, 16, 156, 24, 4, 19, 156, 47, 4, 35, 156, 86, 4, 21, 156, 111, 4, 43, 156, 158, 4, 19, 156, 181, 4, 7, 156, 192, 4, 24, 156, 220, 4, 23, 156, 247, 4, 30, 156, 281, 4, 24, 156, 309, 4, 9, 156, 322, 4, 25, 156, 351, 4, 10, 156, 365, 4, 28, 156, 397, 4, 31, 156, 432, 4, 10, 156, 446, 4, 29, 156, 479, 4, 24, 156, 507, 4, 26, 156, 537, 4, 29, 156, 570, 4, 28, 156, 602, 4, 29, 156, 635, 4, 31, 156, 670, 4, 21, 156, 695, 4, 10, 156, 709, 4, 10, 156, 723, 4, 33, 156, 760, 4, 19, 156, 783, 4, 28, 156, 815, 4, 24, 156, 843, 4, 36, 156, 883, 4, 28, 156, 915, 4, 28, 156, 947, 4, 32, 156, 983, 4, 27, 156, 4, 164, 25, 156, 33, 164, 24, 156, 61, 164, - 28, 156, 93, 164, 28, 156, 125, 164, 10, 156, 139, 164, 25, 156, 168, 164, 24, 156, 196, 164, 31, 156, 231, 164, 43, 156, 278, 164, 24, 156, 306, 164, 37, 156, 347, 164, 34, 156, 385, 164, 30, 156, 419, 164, 29, 156, 452, 164, 32, 156, 488, 164, 31, 156, 523, 164, 34, 156, 561, 164, 29, 156, 594, 164, 43, 156, 641, 164, 36, 156, 681, 164, 26, 156, 711, 164, 39, 156, 754, 164, 38, 156, 796, 164, 30, 156, 830, 164, 32, 156, 866, 164, 22, 156, 892, 164, 44, 156, 940, 164, 11, 156, 955, 164, 25, 156, 984, 164, 29, 156, 4, 324, 27, 156, 35, 324, 26, 156, 65, 324, 24, 156, 93, 324, 26, 156, 123, 324, 23, 156, 150, 324, 24, 156, 178, 324, - 11, 156, 193, 324, 20, 156, 217, 324, 28, 156, 249, 324, 9, 156, 262, 324, 41, 156, 307, 324, 21, 156, 332, 324, 20, 156, 356, 324, 25, 156, 385, 324, 36, 156, 425, 324, 22, 156, 451, 324, 24, 156, 479, 324, 29, 156, 512, 324, 26, 156, 542, 324, 31, 156, 577, 324, 43, 156, 624, 324, 34, 156, 662, 324, 30, 156, 696, 324, 33, 156, 733, 324, 32, 156, 769, 324, 12, 156, 785, 324, 22, 156, 811, 324, 27, 156, 842, 324, 45, 156, 891, 324, 29, 156, 924, 324, 24, 156, 952, 324, 29, 156, 985, 324, 26, 156, 4, 484, 49, 156, 57, 484, 36, 156, 97, 484, 30, 156, 131, 484, 23, 156, 158, 484, 24, 156, 186, 484, 24, 156, 214, 484, 24, 156, 242, - 484, 24, 156, 270, 484, 24, 156, 298, 484, 24, 156, 326, 484, 24, 156, 354, 484, 24, 156, 382, 484, 22, 156, 408, 484, 22, 156, 434, 484, 17, 156, 455, 484, 17, 156, 476, 484, 36, 156, 516, 484, 27, 156, 547, 484, 50, 156, 601, 484, 35, 156, 640, 484, 29, 156, 673, 484, 24, 156, 701, 484, 29, 156, 734, 484, 23, 156, 761, 484, 29, 156, 794, 484, 23, 156, 821, 484, 30, 156, 855, 484, 34, 156, 893, 484, 37, 156, 934, 484, 29, 156, 967, 484, 24, 156, 995, 484, 24, 156, 4, 644, 24, 156, 32, 644, 36, 156, 72, 644, 27, 156, 103, 644, 29, 156, 136, 644, 23, 156, 163, 644, 30, 156, 197, 644, 23, 156, 224, 644, 23, 156, 251, 644, 23, 156, - 278, 644, 22, 156, 304, 644, 38, 156, 346, 644, 26, 156, 376, 644, 28, 156, 408, 644, 28, 156, 440, 644, 38, 156, 482, 644, 25, 156, 511, 644, 25, 156, 540, 644, 44, 156, 588, 644, 26, 156, 618, 644, 30, 156, 652, 644, 30, 156, 686, 644, 37, 156, 727, 644, 36, 156, 767, 644, 37, 156, 808, 644, 29, 156, 841, 644, 34, 156, 879, 644, 30, 156, 913, 644, 28, 156, 945, 644, 27, 156, 976, 644, 34, 156, 4, 804, 31, 156, 39, 804, 34, 156, 77, 804, 31, 156, 112, 804, 33, 156, 149, 804, 28, 156, 181, 804, 43, 156, 228, 804, 51, 156, 283, 804, 36, 156, 323, 804, 33, 156, 360, 804, 28, 156, 392, 804, 27, 156, 423, 804, 40, 156, 467, 804, 29, - 156, 500, 804, 24, 156, 528, 804, 22, 156, 554, 804, 20, 156, 578, 804, 19, 156, 601, 804, 22, 156, 627, 804, 21, 156, 652, 804, 21, 156, 677, 804, 36, 156, 717, 804, 20, 156, 741, 804, 24, 156, 769, 804, 24, 156, 797, 804, 24, 156, 825, 804, 25, 156, 854, 804, 35, 156, 893, 804, 24, 156, 921, 804, 22, 156, 947, 804, 28, 156, 979, 804, 26, 156, 4, 964, 20, 156, 28, 964, 41, 156, 73, 964, 23, 156, 100, 964, 36, 156, 140, 964, 24, 156, 168, 964, 25, 156, 197, 964, 22, 156, 223, 964, 37, 156, 264, 964, 38, 156, 306, 964, 30, 156, 340, 964, 29, 156, 373, 964, 22, 156, 399, 964, 21, 156, 424, 964, 35, 156, 463, 964, 22, 156, 489, 964, - 112, 156 - ] - }, { - id: x.Rc, - Q: 393, - P: 418, - G: [2, 2, 218, 226, 224, 2, 151, 151, 2, 232, 157, 158, 224, 157, 98, 62, 326, 157, 48, 45, 379, 2, 49, 59, 432, 2, 55, 57, 379, 65, 53, 63, 163, 232, 146, 147, 2, 394, 153, 163, 2, 561, 153, 166, 2, 731, 156, 169, 2, 904, 163, 175, 169, 904, 159, 175, 159, 394, 159, 159, 313, 232, 150, 150, 322, 394, 144, 150, 159, 561, 138, 146, 2, 1083, 302, 303, 301, 561, 107, 158, 412, 561, 96, 157, 2, 1390, 252, 268, 2, 1662, 278, 305, 2, 1971, 371, 397, 2, 2372, 385, 396, 2, 2772, 377, 386], - J: [103, 130, 122, 133, 119, 131, 145, 176, 168, 182, 171, 177, 168, 182, 160, 176, 119, 128, 115, 115, 115, 112, - 115, 112, 115, 112, 119, 115, 122, 134, 131, 143, 137, 143, 140, 147, 47, 56, 143, 133, 155, 133, 69, 83, 50, 37, 6, -2, 0, -5, 8, 2 - ] - }, { - id: 52, - Q: 552, - P: 552, - G: [0, 0, 88, 85, 0, 85, 46, 152, 46, 85, 106, 149, 0, 237, 78, 162, 78, 237, 93, 155, 0, 399, 88, 158, 152, 85, 46, 152, 88, 399, 144, 145, 0, 557, 138, 141, 0, 698, 145, 145, 0, 843, 146, 141, 0, 984, 161, 140, 0, 1124, 130, 155], - J: [235, 190, 256, 121, 226, 124, 240, 111, 233, 118, 235, 115, 256, 121, 213, 220, 219, 232, 212, 220, 211, 232, 203, 178, 211, 273] - }, { - id: 56, - Md: 2, - Ic: 2, - wc: 10, - wf: "0123456789", - Jf: {}, - G: [5, 5, 49, 156, 59, 5, 16, 156, 80, 5, 48, 156, 133, - 5, 38, 156, 176, 5, 41, 156, 222, 5, 45, 156, 272, 5, 43, 156, 320, 5, 47, 156, 372, 5, 49, 156, 426, 5, 35, 156 - ] - }, { - id: 59, - Q: 552, - P: 552, - G: [0, 0, 246, 268, 0, 268, 334, 370, 246, 0, 205, 231, 0, 638, 308, 353, 0, 991, 387, 461, 0, 1452, 324, 399, 0, 1851, 335, 328, 0, 2179, 296, 266, 0, 2445, 240, 230, 296, 2179, 207, 217, 308, 638, 204, 205, 240, 2445, 200, 194, 308, 843, 195, 133], - J: [145, 116, 76, 38, 166, 132, 113, 56, 75, -2, 113, 34, 87, 82, 102, 114, 128, 124, 148, 130, 149, 134, 151, 138, 153, 141] - }, { - id: 60, - Q: 250, - P: 250, - G: [0, 0, 139, 170, 139, 0, 142, 169, 281, 0, 148, 163, 429, 0, 155, 155, 584, 0, 163, 148, 747, - 0, 169, 142, 584, 148, 171, 139, 584, 287, 169, 141, 755, 148, 165, 145, 755, 293, 159, 151, 429, 155, 153, 159, 281, 163, 147, 164, 139, 169, 141, 169, 0, 170, 139, 170 - ], - J: [55, 40, 54, 41, 51, 44, 47, 48, 43, 51, 40, 54, 39, 56, 40, 55, 42, 53, 46, 50, 48, 46, 51, 44, 54, 41, 55, 40] - }, { - id: 61, - Q: 449, - P: 446, - G: [0, 0, 308, 285, 0, 285, 302, 282, 0, 567, 297, 281, 0, 848, 296, 277, 0, 1125, 293, 274, 0, 1399, 293, 273, 0, 1672, 295, 271, 0, 1943, 297, 269, 0, 2212, 239, 226, 239, 2212, 241, 223, 0, 2438, 244, 221, 244, 2438, 249, 219], - J: [83, 82, 87, 84, 90, 86, 91, 90, 93, 94, 92, 99, 90, 104, 88, 111, 101, 119, 97, 128, 92, 138, - 86, 148 - ] - }, { - id: 62, - Q: 275, - P: 275, - G: [0, 0, 140, 144, 0, 144, 42, 37], - J: [69, 62, 117, 119] - }, { - id: 63, - Q: 833, - P: 250, - G: [0, 0, 566, 93], - J: [133, 76] - }, { - id: 64, - Q: 250, - P: 250, - G: [0, 0, 155, 154, 0, 154, 181, 210, 0, 364, 185, 180, 0, 544, 183, 178], - J: [47, 50, 32, 36, 35, 40, 35, 40] - }, { - id: 65, - Q: 275, - P: 275, - G: [0, 0, 125, 126, 0, 126, 37, 35], - J: [78, 76, 122, 121] - }, { - id: 66, - Q: 275, - P: 275, - G: [0, 0, 125, 126, 0, 126, 37, 35], - J: [75, 76, 119, 121] - }, { - id: 67, - Q: 552, - P: 552, - G: [2, 2, 234, 221, 240, 2, 77, 76, 240, 82, 70, 76, 321, 2, 64, 76, 321, 82, 58, 76, 389, 2, 51, 76, 389, 82, 46, 76, 444, 2, 40, 77, 444, 83, 34, 77, 488, 2, 28, - 78, 488, 84, 28, 78, 520, 2, 35, 77, 559, 2, 42, 77, 605, 2, 48, 77, 657, 2, 56, 77, 717, 2, 63, 77, 784, 2, 69, 77, 857, 2, 76, 77, 857, 83, 83, 78, 2, 227, 175, 175, 181, 227, 175, 175, 360, 227, 175, 175, 539, 227, 175, 175, 718, 227, 175, 175, 2, 406, 175, 175, 181, 406, 175, 175, 360, 406, 175, 175, 539, 406, 175, 175, 718, 406, 175, 175, 2, 585, 175, 175, 181, 585, 175, 175, 360, 585, 175, 175, 539, 585, 175, 175, 718, 585, 175, 175, 2, 764, 175, 175, 181, 764, 175, 175, 360, 764, 175, 175, 539, 764, 175, 175, 718, 764, 175, 175, 2, 943, 175, 175, 181, 943, 175, 175, 360, 943, 175, 175, 539, 943, 175, 175, 718, 943, 175, 175, - 2, 1122, 175, 175, 2, 1301, 175, 175, 2, 1480, 175, 175, 2, 1659, 175, 175, 2, 1838, 175, 175, 181, 1122, 175, 175, 360, 1122, 175, 175, 539, 1122, 175, 175, 718, 1122, 175, 175, 181, 1301, 175, 175, 181, 1480, 175, 175, 181, 1659, 175, 175, 360, 1301, 229, 231, 593, 1301, 229, 231, 360, 1536, 490, 492 - ], - J: [156, 156, 233, 231, 236, 231, 239, 231, 242, 231, 246, 231, 248, 231, 251, 231, 254, 231, 257, 231, 257, 231, 253, 231, 250, 231, 247, 231, 243, 231, 240, 231, 237, 231, 234, 231, 230, 230, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, - 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 184, 155, 159, 155, 159, 27, 21 - ] - }, { - id: x.ij, - Q: 100, - P: 100, - G: [0, 0, 84, 85, 84, 0, 58, 85, 142, 0, 32, 85, 174, 0, 12, 85, 186, 0, 28, 85, 214, 0, 44, 85, 258, 0, 60, 85, 318, 0, 70, 85, 388, 0, 78, 85, 466, 0, 84, 85, 550, 0, 84, 85], - J: [6, 5, 19, 5, 32, 5, 42, 5, 34, 5, 26, 5, 18, 5, 13, 5, 9, 5, 6, 5, 6, 5] - }, { - id: 69, - Q: 833, - P: 250, - G: [0, 0, 453, 93], - J: [191, 76] - }, { - id: 70, - Q: 833, - P: 250, - G: [0, 0, - 333, 93 - ], - J: [251, 79] - }, { - id: 71, - Q: 833, - P: 250, - G: [0, 0, 212, 93], - J: [310, 79] - }, { - id: 72, - Q: 640, - P: 640, - G: [0, 0, 291, 302, 291, 0, 363, 409, 654, 0, 383, 309, 1037, 0, 314, 335, 1351, 0, 326, 334, 1677, 0, 374, 330, 291, 409, 405, 492, 2051, 0, 350, 334, 0, 302, 201, 207, 0, 509, 201, 206, 0, 715, 201, 207, 0, 922, 201, 207, 0, 1129, 201, 206, 0, 1335, 201, 210, 0, 1545, 201, 213, 0, 1758, 201, 215, 0, 1973, 201, 219, 0, 2192, 201, 222, 0, 2414, 201, 223, 0, 2637, 201, 222, 0, 2859, 201, 224, 0, 3083, 201, 224, 0, 3307, 201, 224, 0, 3531, 201, 221, 0, 3752, 201, 218, 2401, 0, 201, 214, 2602, 0, 201, 211, 2803, 0, 222, 196, 2803, - 196, 210, 201, 3025, 0, 203, 209, 3228, 0, 197, 214, 3425, 0, 193, 217, 3618, 0, 194, 219, 3812, 0, 197, 210, 291, 901, 200, 202, 3812, 210, 204, 197, 291, 1103, 208, 199, 291, 1302, 212, 202, 291, 1504, 214, 205, 291, 1709, 216, 206, 291, 1915, 204, 226, 291, 2141, 203, 213, 495, 1915, 201, 210, 494, 2141, 201, 208, 291, 2354, 201, 203, 3025, 209, 201, 200, 491, 901, 201, 200, 492, 2354, 201, 200, 291, 2557, 201, 200, 291, 2757, 201, 207, 291, 2964, 201, 216, 492, 2557, 204, 194, 291, 3180, 221, 171, 291, 3351, 249, 197, 291, 3548, 225, 201, 291, 3749, 205, 205, 492, 2964, 202, 213, 696, 409, 201, 222, 897, 409, 201, - 222, 1098, 409, 205, 221, 1303, 409, 229, 213, 1532, 409, 243, 205, 0, 3970, 153, 86, 654, 309, 140, 89, 1775, 409, 212, 196, 1987, 409, 208, 209, 496, 3749, 197, 233, 696, 631, 186, 247, 882, 631, 181, 245, 1063, 631, 186, 243, 1249, 631, 194, 234, 1443, 631, 199, 230, 2195, 409, 199, 221, 1642, 631, 199, 223, 1841, 631, 199, 226, 2040, 631, 199, 228, 2239, 631, 199, 230, 2438, 631, 199, 230, 2637, 631, 199, 230, 2836, 631, 195, 234, 3031, 631, 190, 238, 3221, 631, 194, 231, 2394, 409, 201, 217, 2595, 409, 207, 209, 2802, 409, 218, 202, 3020, 409, 211, 206, 3231, 409, 206, 210, 3437, 409, 210, 213, 3647, 409, 215, - 218, 3415, 631, 220, 223, 3862, 409, 224, 216, 3635, 631, 219, 212, 492, 2757, 195, 205, 3854, 631, 195, 207, 696, 878, 195, 210, 891, 878, 217, 214, 891, 1092, 225, 215, 891, 1307, 219, 215, 696, 1088, 195, 215, 696, 1303, 195, 215, 696, 1518, 195, 215, 891, 1522, 217, 215, 891, 1737, 225, 215, 891, 1952, 223, 218, 891, 2170, 219, 222, 891, 2392, 215, 224, 891, 2616, 216, 216, 1108, 878, 210, 206, 1318, 878, 218, 202, 1536, 878, 205, 190, 1741, 878, 203, 194, 1944, 878, 202, 206, 2146, 878, 203, 214, 891, 2832, 204, 217, 891, 3049, 204, 216, 2349, 878, 204, 213, 2553, 878, 205, 204, 2758, 878, 205, 192, 2401, 214, - 201, 195, 2963, 878, 201, 206, 3164, 878, 204, 212, 3368, 878, 205, 214, 891, 3265, 207, 215, 891, 3480, 208, 216, 3573, 878, 205, 205, 3778, 878, 226, 202, 891, 3696, 212, 204, 696, 1733, 195, 210, 696, 1943, 189, 213, 696, 2156, 190, 218, 696, 2374, 193, 222, 1116, 1092, 198, 213, 1314, 1092, 203, 210, 1517, 1092, 207, 202, 1724, 1092, 211, 204, 1935, 1092, 214, 207, 2149, 1092, 216, 211, 2365, 1092, 216, 212, 2581, 1092, 216, 212, 2797, 1092, 216, 212, 3013, 1092, 216, 212, 3229, 1092, 216, 212, 3445, 1092, 216, 212, 3661, 1092, 216, 212, 3877, 1092, 216, 212, 1116, 1305, 216, 212, 1116, 1517, 212, 216, 1116, - 1733, 206, 222, 1116, 1955, 202, 225, 1116, 2180, 205, 222, 1116, 2402, 210, 213, 1116, 2615, 212, 208, 1116, 2823, 198, 223, 1116, 3046, 196, 232, 696, 2596, 195, 236, 1116, 3278, 198, 236, 1116, 3514, 206, 238, 1116, 3752, 211, 226, 1332, 1305, 217, 207, 891, 3900, 213, 195, 1549, 1305, 212, 179, 1761, 1305, 221, 178, 1982, 1305, 221, 181, 2203, 1305, 215, 180, 2418, 1305, 212, 179, 2630, 1305, 221, 177, 2851, 1305, 221, 180, 3072, 1305, 215, 180, 3287, 1305, 212, 179, 3499, 1305, 221, 177, 3720, 1305, 221, 180, 1332, 1512, 215, 180, 1332, 1692, 212, 179, 1547, 1512, 216, 176, 1332, 1871, 213, 175, 696, - 2832, 194, 205, 696, 3037, 188, 236, 696, 3273, 194, 233, 1332, 2046, 210, 202, 1332, 2248, 204, 194, 1332, 2442, 202, 204 - ], - J: [173, 274, 137, 156, 133, 207, 152, 237, 154, 244, 134, 240, 107, 104, 148, 242, 220, 227, 220, 227, 220, 227, 220, 227, 220, 227, 220, 224, 220, 221, 220, 218, 220, 215, 220, 212, 220, 211, 220, 211, 220, 210, 220, 210, 220, 210, 220, 213, 220, 216, 220, 220, 220, 223, 211, 238, 216, 233, 220, 225, 223, 220, 225, 217, 224, 215, 223, 224, 221, 232, 219, 237, 217, 235, 215, 232, 214, 229, 213, 228, 217, 208, 218, 221, 219, 224, 219, 226, 219, 231, 219, 234, 219, 234, 219, 234, 219, 234, 219, - 226, 219, 218, 218, 240, 210, 263, 192, 237, 204, 233, 217, 229, 220, 221, 220, 212, 220, 212, 217, 212, 202, 221, 195, 229, 240, 264, 249, 265, 215, 238, 217, 225, 223, 201, 228, 187, 231, 189, 228, 191, 223, 200, 220, 204, 220, 213, 220, 211, 220, 208, 220, 206, 220, 204, 220, 204, 220, 204, 222, 200, 225, 196, 223, 203, 220, 217, 216, 225, 211, 232, 216, 228, 218, 224, 212, 221, 208, 216, 205, 211, 202, 218, 208, 222, 232, 229, 232, 227, 232, 224, 210, 220, 202, 219, 208, 219, 232, 219, 232, 219, 232, 219, 210, 219, 202, 219, 202, 216, 205, 212, 207, 210, 208, 218, 217, 228, 211, 232, 216, 244, 218, 240, 219, 227, 220, - 219, 220, 216, 220, 217, 220, 221, 218, 230, 216, 242, 220, 239, 220, 228, 217, 222, 216, 220, 214, 219, 213, 218, 216, 229, 207, 232, 214, 230, 224, 224, 227, 221, 226, 216, 225, 212, 222, 220, 219, 224, 218, 231, 216, 229, 214, 226, 213, 222, 213, 221, 213, 221, 213, 221, 213, 221, 213, 221, 213, 221, 213, 221, 213, 221, 213, 221, 215, 217, 218, 211, 220, 208, 218, 212, 216, 221, 215, 226, 222, 210, 223, 201, 223, 197, 222, 197, 219, 195, 216, 206, 211, 225, 213, 238, 213, 254, 207, 255, 207, 252, 210, 253, 213, 254, 207, 256, 207, 253, 210, 253, 213, 254, 207, 256, 207, 253, 210, 253, 213, 254, 211, 257, 214, 258, 227, - 227, 230, 195, 226, 199, 215, 232, 218, 239, 220, 230 - ] - }, { - id: 73, - Q: 275, - P: 275, - G: [0, 0, 137, 139, 137, 0, 105, 100, 0, 139, 235, 235, 0, 374, 240, 246], - J: [65, 70, 84, 86, 18, 19, 13, 14] - }, { - id: 74, - Q: 833, - P: 250, - G: [0, 0, 507, 85, 0, 85, 507, 100, 0, 185, 507, 100, 0, 285, 507, 97, 0, 382, 507, 92], - J: [163, 82, 163, 73, 163, 71, 163, 70, 163, 75] - }, { - id: 75, - Q: 276, - P: 276, - G: [0, 0, 84, 128, 84, 0, 68, 109, 152, 0, 50, 109, 0, 128, 140, 121, 0, 249, 148, 147] - }, { - id: 76, - Q: 761, - P: 761, - G: [0, 0, 220, 239, 0, 239, 206, 290, 0, 529, 205, 290, 0, 819, 220, 246, 0, 1065, 237, 219, 0, 1284, 226, 231, 220, 0, 18, 17, 238, 0, 11, 11, 206, - 239, 38, 39 - ], - J: [271, 262, 286, 232, 287, 232, 271, 249, 262, 272, 268, 266, 382, 376, 385, 379, 372, 365] - }, { - id: 77, - Q: 998, - P: 1058, - G: [3, 3, 148, 12, 3, 21, 39, 187, 48, 21, 182, 150, 236, 21, 144, 130, 3, 214, 244, 233, 253, 214, 159, 143, 157, 3, 49, 9, 386, 21, 89, 84, 3, 453, 102, 148, 3, 607, 260, 315], - J: [585, 767, 160, 241, 412, 548, 307, 397, 184, 663, 530, 224, 676, 540, 540, 425, 351, 211, 684, 200] - }, { - id: 78, - Q: 431, - P: 431, - G: [0, 0, 294, 335, 294, 0, 297, 336, 0, 335, 291, 252, 591, 0, 307, 293, 0, 587, 276, 224], - J: [53, 6, 51, 3, 55, 78, 47, 57, 63, 98] - }, { - id: 79, - Q: 833, - P: 250, - G: [0, 0, 194, 127, 0, 127, 201, 103, - 0, 230, 204, 96, 0, 326, 193, 142, 0, 468, 194, 111 - ], - J: [319, 69, 316, 81, 314, 87, 319, 55, 319, 77] - }, { - id: 80, - Q: 833, - P: 250, - G: [0, 0, 302, 123, 302, 0, 319, 99, 621, 0, 322, 95, 302, 99, 292, 136, 0, 123, 302, 111], - J: [268, 70, 260, 85, 258, 87, 273, 58, 268, 77] - }, { - id: 108, - G: [0, 0, 198, 194, 0, 194, 198, 194, 0, 388, 198, 194] - }, { - id: 111, - G: [0, 0, 202, 81], - J: [316, 87], - Q: 833, - P: 250 - }, { - id: 112, - G: [0, 0, 319, 83], - J: [260, 87], - Q: 833, - P: 250 - }, { - id: 113, - G: [0, 0, 444, 86], - J: [195, 81], - Q: 833, - P: 250 - }, { - id: 114, - G: [0, 0, 559, 89], - J: [137, 77], - Q: 833, - P: 250 - }, { - id: 115, - G: [0, 0, 101, 102, 0, 102, 101, 102, 0, 204, 101, 102, - 0, 306, 101, 102 - ], - J: [219, 29, 218, 29, 219, 29, 219, 29], - Q: 534, - P: 160 - }, { - id: 116, - Q: 275, - P: 275, - G: [0, 0, 4, 4, 2, 2, 89, 116, 95, 2, 177, 37, 276, 2, 187, 77, 95, 43, 87, 61], - J: [143, 196, 93, 75, 50, 84, 45, 39, 95, 35] - }, { - id: 117, - Q: 25, - P: 25, - G: [0, 0, 25, 25] - }, { - id: x.hj, - G: [0, 0, 291, 302, 0, 302, 363, 409, 363, 302, 383, 309, 0, 711, 405, 492, 405, 711, 374, 330, 0, 1203, 350, 334, 0, 1537, 314, 335, 350, 1203, 326, 334, 291, 0, 339, 288, 630, 0, 275, 162, 350, 1537, 372, 317], - J: [173, 274, 137, 156, 133, 207, 107, 104, 134, 240, 148, 242, 152, 237, 154, 244, 145, 259, 181, 392, 123, 236], - Q: 640, - P: 640 - }, { - id: x.Ac, - G: [1, 1, 1064, 1064, 1067, 1, 532, 495, 1601, 1, 145, 286, 1601, 289, 38, 38, 1748, 1, 204, 174, 1748, 177, 183, 154], - J: [55, 154, 55, 686, 442, 543, 568, 667, 484, 1083, 493, 1093], - Q: 1174, - P: 1498 - }, { - id: x.zc, - Ha: 1, - G: [1, 1, 201, 207, 1, 210, 201, 205, 1, 417, 201, 206, 1, 625, 201, 207, 1, 834, 201, 207, 1, 1043, 201, 211, 1, 1256, 201, 214, 1, 1472, 201, 218, 1, 1692, 201, 220, 204, 1, 201, 222, 204, 225, 201, 224, 204, 451, 201, 224, 204, 677, 201, 225, 204, 904, 201, 226, 204, 1132, 201, 226, 407, 1, 201, 221, 610, 1, 201, 217, 813, 1, 201, 213, 1016, 1, 201, 210, 407, 225, 204, 225, 1219, 1, 203, 213, 1424, 1, 201, - 210, 1627, 1, 201, 207, 1830, 1, 201, 203, 204, 1360, 201, 200, 204, 1562, 201, 200, 204, 1764, 201, 200, 613, 225, 201, 200, 816, 225, 201, 208, 1019, 225, 201, 216, 1222, 225, 204, 193, 1428, 225, 221, 171, 1651, 225, 249, 196, 407, 452, 225, 197, 407, 651, 205, 204, 407, 857, 201, 216, 407, 1075, 202, 222, 407, 1299, 202, 225, 407, 1526, 205, 224, 407, 1752, 223, 213, 634, 452, 242, 203, 1, 1914, 153, 86, 1902, 225, 140, 89, 878, 452, 218, 201, 634, 657, 211, 205, 634, 864, 205, 210, 634, 1076, 211, 214, 847, 657, 214, 217, 847, 876, 220, 223, 1063, 657, 224, 216, 1289, 657, 219, 212, 634, 1292, 195, 206, 634, 1500, - 195, 207, 634, 1709, 195, 211, 1510, 657, 217, 214, 1729, 657, 225, 215, 847, 1101, 219, 215, 847, 1318, 195, 215, 847, 1535, 195, 215, 847, 1752, 195, 215, 1069, 876, 217, 215, 1288, 876, 225, 215, 1069, 1093, 224, 219, 1069, 1314, 219, 222, 1069, 1538, 215, 225, 1069, 1765, 215, 217, 1515, 876, 210, 205, 1098, 452, 218, 201, 1318, 452, 206, 193, 1526, 452, 201, 195, 1727, 876, 201, 206, 1295, 1093, 204, 212, 1295, 1307, 206, 214, 1503, 1307, 208, 215, 1503, 1524, 208, 216, 1501, 1093, 206, 205, 1729, 452, 206, 191, 1709, 1093, 204, 194, 1295, 1523, 202, 206, 1295, 1731, 202, 214, 1503, 1742, 203, 217, 1713, - 1524, 204, 216, 1713, 1307, 204, 212, 1713, 1742, 204, 204 - ], - J: [220, 227, 220, 228, 220, 228, 220, 227, 220, 227, 220, 223, 220, 220, 220, 216, 220, 214, 220, 212, 220, 210, 220, 210, 220, 209, 220, 208, 220, 208, 220, 213, 220, 217, 220, 221, 220, 224, 217, 209, 218, 221, 219, 224, 219, 227, 219, 231, 219, 234, 219, 234, 219, 234, 219, 234, 219, 226, 219, 218, 218, 241, 210, 263, 191, 238, 203, 237, 216, 230, 220, 218, 219, 212, 219, 209, 216, 210, 204, 221, 195, 231, 240, 264, 249, 265, 210, 232, 216, 228, 218, 223, 211, 220, 208, 216, 204, 211, 201, 218, 207, 222, 231, 228, 231, 227, 231, 223, 209, 220, 201, 219, - 207, 219, 231, 219, 231, 219, 231, 219, 209, 219, 201, 219, 201, 215, 204, 212, 207, 209, 208, 217, 216, 228, 210, 232, 215, 240, 220, 238, 220, 227, 217, 221, 215, 219, 213, 218, 213, 217, 215, 228, 215, 242, 217, 239, 219, 226, 220, 218, 220, 215, 220, 216, 219, 220, 218, 229 - ], - Q: 640, - P: 640 - }, { - id: x.mf, - Ha: 1, - G: [1, 1, 213, 196, 1, 199, 207, 209, 1, 410, 197, 232, 1, 644, 186, 246, 1, 892, 181, 246, 1, 1140, 186, 244, 1, 1386, 195, 232, 1, 1620, 200, 229, 210, 199, 200, 219, 210, 420, 200, 221, 210, 643, 200, 224, 210, 869, 200, 227, 210, 1098, 200, 229, 210, 1329, 200, 229, 210, 1560, 200, 229, 210, 1791, 195, 234, 412, - 199, 190, 238, 604, 199, 194, 230, 800, 199, 202, 215, 1004, 199, 207, 207, 1213, 199, 225, 202, 1440, 199, 213, 205, 1655, 199, 195, 209, 1852, 199, 189, 213, 412, 439, 190, 217, 604, 439, 193, 221, 799, 439, 198, 213, 999, 439, 203, 208, 1204, 439, 207, 202, 1413, 439, 211, 204, 1626, 439, 215, 207, 604, 662, 216, 210, 604, 874, 216, 211, 604, 1087, 216, 211, 604, 1300, 216, 211, 604, 1513, 216, 211, 604, 1726, 216, 211, 822, 662, 216, 211, 1040, 662, 216, 211, 1258, 662, 216, 211, 1476, 662, 216, 211, 822, 875, 212, 215, 822, 1092, 205, 222, 822, 1316, 202, 225, 822, 1543, 205, 220, 1694, 662, 210, 211, 1036, 875, - 213, 207, 1843, 439, 201, 207, 822, 1765, 198, 222, 1036, 1084, 195, 232, 1036, 1318, 195, 235, 1233, 1084, 199, 236, 1233, 1322, 206, 238, 1434, 1084, 211, 226, 1251, 875, 217, 207, 216, 1, 213, 195, 431, 1, 212, 179, 645, 1, 221, 178, 868, 1, 221, 180, 1091, 1, 215, 180, 1308, 1, 212, 179, 1522, 1, 221, 177, 1745, 1, 221, 180, 1470, 875, 215, 180, 1687, 875, 212, 179, 1647, 1084, 221, 177, 1441, 1322, 221, 180, 1664, 1322, 215, 180, 1441, 1504, 212, 179, 1655, 1504, 216, 176, 1655, 1682, 213, 174, 1036, 1555, 193, 204, 412, 658, 188, 237, 1036, 1761, 194, 233, 1441, 1685, 210, 202, 1, 1851, 205, 194, 1233, 1562, - 202, 204 - ], - J: [214, 238, 217, 225, 222, 202, 228, 188, 230, 188, 227, 190, 222, 202, 219, 205, 219, 215, 219, 213, 219, 210, 219, 207, 219, 205, 219, 205, 219, 205, 222, 200, 225, 196, 223, 204, 219, 219, 216, 227, 207, 232, 213, 229, 223, 224, 226, 221, 226, 216, 224, 212, 221, 220, 219, 225, 217, 231, 215, 229, 213, 226, 213, 223, 213, 222, 213, 222, 213, 222, 213, 222, 213, 222, 213, 222, 213, 222, 213, 222, 213, 222, 215, 218, 218, 211, 219, 208, 218, 213, 215, 222, 214, 226, 219, 227, 221, 211, 223, 201, 222, 198, 220, 197, 218, 195, 215, 206, 210, 225, 212, 238, 212, 254, 206, 255, 206, 253, 209, 253, 212, 254, 206, - 256, 206, 253, 209, 253, 212, 254, 206, 256, 206, 253, 209, 253, 212, 254, 210, 257, 213, 259, 226, 228, 229, 195, 225, 199, 214, 232, 217, 240, 219, 230 - ], - Q: 640, - P: 640 - }, { - id: x.qh, - Ha: 1, - G: [1, 1, 222, 196, 1, 199, 209, 201, 1, 402, 203, 209, 1, 613, 197, 215, 1, 830, 193, 218, 1, 1050, 194, 219, 200, 613, 197, 210, 206, 402, 201, 202, 212, 199, 204, 198, 196, 830, 208, 200, 197, 1050, 212, 204, 1, 1271, 215, 207, 1, 1480, 216, 208], - J: [211, 238, 216, 233, 219, 225, 222, 219, 224, 216, 224, 215, 222, 224, 220, 232, 219, 236, 217, 235, 215, 231, 213, 228, 213, 227], - Q: 640, - P: 640 - }, { - id: x.Kl, - Ha: 1.25, - Pa: !0, - G: [0, 0, - 2048, 1152 - ], - J: [0, 0], - Q: 2048, - P: 2305 - }, { - id: x.Ll, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 708], - J: [0, 896], - Q: 2048, - P: 2305 - }, { - id: x.Ml, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 2304 - }, { - id: x.Nl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 874], - J: [0, 835], - Q: 2048, - P: 2304 - }, { - id: x.Ol, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 2304 - }, { - id: x.Pl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1052], - J: [0, 756], - Q: 2048, - P: 2304 - }, { - id: x.Ql, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 2304 - }, { - id: x.Rl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1072], - J: [0, 768], - Q: 2048, - P: 2304 - }, { - id: x.Sl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 2304 - }, { - id: x.Tl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1124], - J: [0, 624], - Q: 2048, - P: 2304 - }, { - id: x.Ul, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }, { - id: x.Vl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 948], - J: [0, 760], - Q: 2048, - P: 1866 - }, { - id: x.Wl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 2304 - }, { - id: x.Xl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 886], - J: [0, 881], - Q: 2048, - P: 2304 - }, { - id: x.gj, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152, 0, 0, 4, 3], - J: [0, 0, 1028.5, 581], - Q: 2048, - P: 2304 - }, { - id: x.Yl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 642, 0, 0, 4, 3], - J: [0, 889, 1028.5, 581], - Q: 2048, - P: 2304 - }, { - id: x.Zl, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 2304 - }, { - id: x.$l, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 858], - J: [0, 780], - Q: 2048, - P: 1638 - }, { - id: x.am, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 2304 - }, { - id: x.bm, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 887], - J: [0, 792], - Q: 2048, - P: 2304 - }, { - id: x.cm, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1153], - J: [0, -1], - Q: 2048, - P: 2304 - }, { - id: x.dm, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 980], - J: [0, 802], - Q: 2048, - P: 2304 - }, { - id: x.Uq, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }, { - id: x.Vq, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }, { - id: x.Wq, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }, { - id: x.Xq, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }, { - id: x.Yq, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }, { - id: x.Zq, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }, { - id: x.$q, - Ha: 1.25, - Pa: !0, - G: [0, 0, 2048, 1152], - J: [0, 0], - Q: 2048, - P: 1866 - }], - db = { - I: 0, - ha: 1, - cj: 2, - OD: 3 - }, - Oa = function(a, d, c) { - var b = []; - b[c.jg] = new a("big_font.png", d.cj); - b[c.nh] = new a("small_font.png", d.cj); - b[c.Dl] = new a("font_numbers_big.png", - d.cj); - b[c.qa] = new a("tap", d.ha); - b[c.Sm] = new a("button", d.ha); - b[c.Rm] = new a("bubble_break", d.ha); - b[c.Qm] = new a("bubble", d.ha); - b[c.Tm] = new a("candy_break", d.ha); - b[c.Xm] = new a("monster_chewing", d.ha); - b[c.Ym] = new a("monster_chewing", d.ha); - b[c.Zm] = new a("monster_close", d.ha); - b[c.$m] = new a("monster_open", d.ha); - b[c.an] = new a("monster_sad", d.ha); - b[c.Nr] = new a("ring", d.ha); - b[c.dn] = new a("rope_bleak_1", d.ha); - b[c.Or] = new a("rope_bleak_2", d.ha); - b[c.Pr] = new a("rope_bleak_3", d.ha); - b[c.Qr] = new a("rope_bleak_4", - d.ha); - b[c.en] = new a("rope_get", d.ha); - b[c.mn] = new a("star_1", d.ha); - b[c.Rr] = new a("star_2", d.ha); - b[c.Sr] = new a("star_3", d.ha); - b[c.ie] = new a("electric", d.ha); - b[c.bn] = new a("pump_1", d.ha); - b[c.Lr] = new a("pump_2", d.ha); - b[c.Mr] = new a("pump_3", d.ha); - b[c.cn] = new a("pump_4", d.ha); - b[c.jn] = new a("spider_activate", d.ha); - b[c.kn] = new a("spider_fall", d.ha); - b[c.ln] = new a("spider_win", d.ha); - b[c.nn] = new a("wheel", d.ha); - b[c.pn] = new a("win", d.ha); - b[c.xj] = new a("gravity_off", d.ha); - b[c.yj] = new a("gravity_on", d.ha); - b[c.Um] = - new a("candy_link", d.ha); - b[c.Pm] = new a("bouncer", d.ha); - b[c.Rc] = new a("obj_candy_01.png", d.I); - b[c.uh] = new a("obj_spider.png", d.I); - b[c.rm] = new a("obj_star_disappear.png", d.I); - b[c.sh] = new a("obj_bubble_flight.png", d.I); - b[c.hm] = new a("obj_bubble_pop.png", d.I); - b[c.lj] = new a("obj_hook_auto.png", d.I); - b[c.qm] = new a("obj_spikes_04.png", d.I); - b[c.jj] = new a("obj_bubble_attached.png", d.I); - b[c.im] = new a("obj_hook_01.png", d.I); - b[c.jm] = new a("obj_hook_02.png", d.I); - b[c.rd] = new a("obj_star_idle.png", d.I); - b[c.ij] = new a("hud_star.png", - d.I); - b[c.pm] = new a("obj_spikes_03.png", d.I); - b[c.om] = new a("obj_spikes_02.png", d.I); - b[c.nm] = new a("obj_spikes_01.png", d.I); - b[c.zc] = new a("char_animations.png", d.I); - b[c.mf] = new a("char_animations2.png", d.I); - b[c.qh] = new a("char_animations3.png", d.I); - b[c.lg] = new a("obj_hook_regulated.png", d.I); - b[c.kj] = new a("obj_electrodes.png", d.I); - b[c.nf] = new a("obj_hook_movable.png", d.I); - b[c.nj] = new a("obj_pump.png", d.I); - b[c.sm] = new a("tutorial_signs.png", d.I); - b[c.mg] = new a("obj_hat.png", d.I); - b[c.fm] = new a("obj_bouncer_01.png", - d.I); - b[c.gm] = new a("obj_bouncer_02.png", d.I); - b[c.Wm] = new a("menu_music", d.ha); - b[c.Vm] = new a("game_music", d.ha); - b[c.ex] = new a("game_music2", d.ha); - b[c.em] = new a("obj_drawing_hidden.png", d.I); - b[c.oj] = new a("obj_rotatable_spikes_01.png", d.I); - b[c.km] = new a("obj_rotatable_spikes_02.png", d.I); - b[c.lm] = new a("obj_rotatable_spikes_03.png", d.I); - b[c.mm] = new a("obj_rotatable_spikes_04.png", d.I); - b[c.th] = new a("obj_rotatable_spikes_button.png", d.I); - b[c.rh] = new a("obj_bee_hd.png", d.I); - b[c.mj] = new a("obj_pollen_hd.png", - d.I); - b[c.zj] = new a("spike_rotate_in", d.ha); - b[c.Aj] = new a("spike_rotate_out", d.ha); - b[c.hj] = new a("char_supports.png", d.I); - b[c.Ac] = new a("obj_vinil.png", d.I); - b[c.gn] = new a("scratch_in", d.ha); - b[c.hn] = new a("scratch_out", d.ha); - b[c.wj] = new a("buzz", d.ha); - b[c.zh] = new a("teleport", d.ha); - b[c.Kl] = new a("bgr_01_p1.jpg", d.I); - b[c.Ll] = new a("bgr_01_p2.jpg", d.I); - b[c.Ml] = new a("bgr_02_p1.jpg", d.I); - b[c.Nl] = new a("bgr_02_p2.jpg", d.I); - b[c.Ol] = new a("bgr_03_p1.jpg", d.I); - b[c.Pl] = new a("bgr_03_p2.jpg", d.I); - b[c.Ql] = new a("bgr_04_p1.jpg", - d.I); - b[c.Rl] = new a("bgr_04_p2.jpg", d.I); - b[c.Sl] = new a("bgr_05_p1.jpg", d.I); - b[c.Tl] = new a("bgr_05_p2.jpg", d.I); - b[c.Ul] = new a("bgr_06_p1.jpg", d.I); - b[c.Vl] = new a("bgr_06_p2.jpg", d.I); - b[c.Wl] = new a("bgr_07_p1.jpg", d.I); - b[c.Xl] = new a("bgr_07_p2.jpg", d.I); - b[c.gj] = new a("bgr_08_p1.png", d.I); - b[c.Yl] = new a("bgr_08_p2.png", d.I); - b[c.Zl] = new a("bgr_09_p1.jpg", d.I); - b[c.$l] = new a("bgr_09_p2.jpg", d.I); - b[c.am] = new a("bgr_10_p1.jpg", d.I); - b[c.bm] = new a("bgr_10_p2.jpg", d.I); - b[c.cm] = new a("bgr_11_p1.jpg", d.I); - b[c.dm] = - new a("bgr_11_p2.jpg", d.I); - b[c.Uq] = new a("bgr_ie.jpg", d.I); - b[c.Vq] = new a("bgr_time1.jpg", d.I); - b[c.Wq] = new a("bgr_time2.jpg", d.I); - b[c.Xq] = new a("bgr_time3.jpg", d.I); - b[c.Yq] = new a("bgr_time4.jpg", d.I); - b[c.Zq] = new a("bgr_time5.jpg", d.I); - b[c.$q] = new a("bgr_time6.jpg", d.I); - b[c.gw] = new a("Caesar_animations_1_hd.png", d.I); - b[c.hw] = new a("Caesar_animations_2_hd.png", d.I); - b[c.iw] = new a("Caesar_animations_3_hd.png", d.I); - b[c.jw] = new a("Caesar_animations_4_hd.png", d.I); - b[c.mw] = new a("Painter_animations_1_hd.png", - d.I); - b[c.nw] = new a("Painter_animations_2_hd.png", d.I); - b[c.ow] = new a("Painter_animations_3_hd.png", d.I); - b[c.pw] = new a("Painter_animations_4_hd.png", d.I); - b[c.qw] = new a("Pharaoh_animations_1_hd.png", d.I); - b[c.rw] = new a("Pharaoh_animations_2_hd.png", d.I); - b[c.sw] = new a("Pharaoh_animations_3_hd.png", d.I); - b[c.tw] = new a("Pharaoh_animations_4_hd.png", d.I); - b[c.uw] = new a("Pirate_animations_1_hd.png", d.I); - b[c.vw] = new a("Pirate_animations_2_hd.png", d.I); - b[c.ww] = new a("Pirate_animations_3_hd.png", d.I); - b[c.xw] = new a("Pirate_animations_4_hd.png", - d.I); - b[c.yw] = new a("Prehistoric_animations_1_hd.png", d.I); - b[c.zw] = new a("Prehistoric_animations_2_hd.png", d.I); - b[c.Aw] = new a("Prehistoric_animations_3_hd.png", d.I); - b[c.Bw] = new a("Prehistoric_animations_4_hd.png", d.I); - b[c.Dw] = new a("Viking_animations_1_hd.png", d.I); - b[c.Ew] = new a("Viking_animations_2_hd.png", d.I); - b[c.Fw] = new a("Viking_animations_3_hd.png", d.I); - b[c.Gw] = new a("Viking_animations_4_hd.png", d.I); - b[c.Gr] = new a("candy_hit", d.ha); - b[c.Hr] = new a("prehistoric_monster_chewing", d.ha); - b[c.Ir] = new a("prehistoric_monster_close", - d.ha); - b[c.Jr] = new a("prehistoric_monster_open", d.ha); - b[c.Kr] = new a("prehistoric_monster_sad", d.ha); - b[c.Tr] = new a("time_menu", d.ha); - b[c.Cw] = new a("time-stands.png", d.I); - return b - }(function() { - return function(a, d) { - this.path = a; - this.type = d - } - }(), db, x), - wb = function(a, d) { - function c(a, c) { - return Math.round(1E4 * a * c) / 1E4 - } - return { - tB: function(a, d) { - var e, g, h; - g = 0; - for (h = a.length; g < h; g++) e = a[g], e = e.Ha || 1, this.sB(a[g], c(d, e)) - }, - sB: function(a, d) { - a.Md && (a.Md = c(a.Md, d)); - a.Ic && (a.Ic = c(a.Ic, d)); - a.wc && (a.wc = c(a.wc, d)); - a.Q && (a.Q = - Math.ceil(c(a.Q, d))); - a.P && (a.P = Math.ceil(c(a.P, d))); - a.G && (a.eu = this.BA(a.G), a.G = this.rB(a.eu, d)); - a.He = 0; - a.He = 0; - a.J && (a.du = this.AA(a.J), this.qB(a, d)) - }, - BA: function(a) { - for (var c = 0, e = a.length, g = []; c < e;) { - var h = new d(a[c++], a[c++], a[c++], a[c++]); - g.push(h) - } - return g - }, - rB: function(a, f) { - var e = [], - g = 0, - h = 0, - l = 0, - n = a.length, - q = Math.ceil(Math.sqrt(n)), - m = 0, - p, u; - for (u = 0; u < n; u++) p = a[u], m = (m + 1) % q, 1 === m && (g += l + 2, h = 2, l = 0), p = new d(g, h, c(p.V, f), c(p.ga, f)), e.push(p), h += Math.ceil(p.ga) + 2, l = Math.max(l, Math.ceil(p.V)); - return e - }, - AA: function(b) { - for (var c = 0, d = b.length, g = []; c < d;) { - var h = new a(b[c++], b[c++]); - g.push(h) - } - return g - }, - qB: function(b, d) { - var e = [], - g = b.du, - h = [], - l, n, q, m; - q = 0; - for (m = g.length; q < m; q++) l = g[q].copy(), l.x = c(l.x, d), l.y = c(l.y, d), n = new a(0, 0), e.push(n), h.push(l); - b.J = h; - b.bA = e; - delete b.du - } - } - }(R, S), - xb = { - wb: 2560, - lb: 1440, - Wb: 1, - $: 3, - sb: 0, - Wa: 105, - yl: 10, - zl: 6, - wl: 60, - qj: 3, - wn: 42, - zm: 200, - Bm: 400, - Cm: -400, - vn: new S(22, 20, 30, 30), - un: new S(70, 64, 82, 82), - Bn: new S(264, 350, 108, 2), - An: new S(192, 278, 108, 2), - es: new S(238, 288, 114, 2), - En: 275, - Fn: 550, - ql: 85, - pl: 60, - Wi: 60, - Xi: 150, - ml: new S(48, 48, 152, 152), - ol: -35, - nl: 14, - xn: 15, - ll: 40, - pg: 624, - Im: new S(300, 300, 175, 175), - Lm: 2500, - Km: 30, - Jm: 100, - vl: 300, - ul: 1400, - tl: new S(142, 157, 112, 104), - $i: new S(155, 176, 88, 76), - Fl: 1, - qd: 110, - fj: 5.625, - Hl: 1400, - Gl: 1650, - El: 142, - ej: 74, - lf: 65, - tn: 117, - qn: 270, - Bj: 140, - rn: 15, - Ah: 40, - sn: -16, - Fm: 44, - Em: 4, - Fe: 90, - Jl: 100, - Gm: 800, - Hm: 400, - wm: 1E3, - xm: 300, - sl: 5500, - Zi: 14, - xl: 12, - sj: 1.4 - }, - G = function(a, d, c) { - var b = 1366 / 768, - f = $(window), - e = f.width(), - g = f.height(); - e / g > b ? (f = g * b, b = g) : (f = e, b = e / b); - d = 1561344 < b * f ? c : d; - a(d); - return d - }(function(a, - d) { - function c(b, c) { - var d = c.Wb; - c.Wa = b.Wa * d; - c.qj = b.qj * d; - c.wn = b.wn * d; - c.zm = b.zm * d; - c.Cm = b.Cm * d; - c.Bm = b.Bm * d; - c.wl = b.wl * d; - c.Bn = a.ye(b.Bn, d); - c.An = a.ye(b.An, d); - c.es = a.ye(b.es, d); - c.En = b.En * d; - c.Fn = b.Fn * d; - c.ql = b.ql * d; - c.Wi = b.Wi * d; - c.Xi = b.Xi * d; - c.ml = a.ye(b.ml, d); - c.pl = b.pl * d; - c.xn = b.xn * d; - c.un = a.ye(b.un, d); - c.vn = a.ye(b.vn, d); - c.ll = b.ll * d; - c.pg = c.pg || b.pg * d; - c.Im = a.ye(b.Im, d); - c.Lm = b.Lm * d; - c.Km = b.Km * d; - c.Jm = b.Jm * d; - c.tl = a.ye(b.tl, d); - c.$i = a.ye(b.$i, d); - c.vl = b.vl * d; - c.ul = b.ul * d; - c.Jl = b.Jl * d; - c.Gm = b.Gm * d; - c.Hm = b.Hm * d; - c.wm = b.wm * d; - c.xm = - b.xm * d; - c.sl = b.sl * d; - c.Zi = b.Zi * d; - c.fj = b.fj * d; - c.Hl = b.Hl * d; - c.qd = b.qd * d; - c.Gl = b.Gl * d; - c.El = b.El * d; - c.ej = b.ej * d; - c.lf = b.lf * d; - c.tn = b.tn * d; - c.Fm = b.Fm * d; - c.Em = b.Em * d; - c.Fe = b.Fe * d; - c.qn = b.qn * d; - c.Bj = b.Bj * d; - c.rn = b.rn * d; - c.Ah = b.Ah * d; - c.sn = b.sn * d; - c.xl = b.xl * d; - c.A = function(a) { - return Math.round(a * c.vs) - } - } - return function(a) { - c(d, a) - } - }(S, xb), { - Jn: 1280, - wb: 1366, - lb: 768, - Wb: 0.53359375, - vs: 1.333984375, - Za: 1, - sg: 1366, - us: 768, - kh: 3, - yl: 5, - zl: 4, - $: 1.6, - sb: 0, - Fl: 0.8, - ol: -19, - nl: 21, - kq: 400, - pg: 350, - sj: 0.95 - }, { - Jn: 1280, - wb: 1920, - lb: 1080, - Wb: 0.75, - vs: 1.875, - Za: 1, - sg: 1920, - us: 1080, - kh: 3, - yl: 6, - zl: 5, - $: 2.25, - sb: 0, - Fl: 0.8, - ol: -23, - nl: 23, - kq: 510, - pg: 475, - sj: 1.05 - }), - ka = function() { - return { - debug: da(), - alert: da() - } - }(), - ha = function(a, d, c, b, f, e, g, h) { - var l = a.extend({ - init: function() { - this.H() - }, - Se: function(a) { - this.U = a; - this.Nk = !1; - 0 < this.U.G.length ? this.jb(0) : this.AB() - }, - pe: function(a) { - var b = c[a].U; - b || h.debug("Image not loaded: " + c[a].path); - return b - }, - Ea: function(a) { - this.Cu = a; - this.Se(this.pe(a)) - }, - jb: function(a) { - this.Vf = a; - this.Nk || (a = this.U.G[a], this.width = a.V, this.height = a.ga) - }, - AB: function() { - this.Vf = - f.B; - this.width = this.U.ci; - this.height = this.U.bi - }, - Ja: function() { - this.U.Wd.x !== e.xC.x && (this.Nk = !0, this.width = this.U.Wd.x, this.height = this.U.Wd.y) - }, - L: function() { - this.Lc(); - if (0 !== this.color.O && this.U) - if (this.Vf === f.B) { - var a = Math.round(this.ua), - c = Math.round(this.va); - b.context.drawImage(this.U.Gc, a, c) - } else this.ty(this.Vf); - this.Kc() - }, - ty: function(a) { - var c = this.U.G[a], - d = c.V, - f = c.ga, - e = this.ua, - g = this.va; - this.Nk && (a = this.U.J[a]) && (e += a.x, g += a.y, d += this.U.He, f += this.U.vg); - this.Oj ? (d = Math.round(d / this.Oj) * this.Oj, - f = Math.round(f / this.Oj) * this.Oj) : (d = Math.ceil(d), f = Math.ceil(f)); - this.Sa ? (e = Math.round(e / this.Sa) * this.Sa, g = Math.round(g / this.Sa) * this.Sa) : (e = Math.round(e), g = Math.round(g)); - 0 === c.x || 0 === c.y ? b.context.drawImage(this.U.Gc, c.x, c.y, d, f, e, g, d, f) : (d += 2, f += 2, b.context.drawImage(this.U.Gc, c.x - 1, c.y - 1, d, f, e - 1, g - 1, d, f)) - }, - vy: function(a, c, d, e, g) { - var l = b.context, - h = 0, - r = 0, - z, k, C, D, J; - a === f.B ? (a = this.U.ci, z = this.U.bi) : (z = this.U.G[a], h = z.x, r = z.y, a = z.V, z = z.ga); - var B = Math.floor(a), - E = Math.floor(z); - for (k = 0; k < g;) { - for (C = - 0; C < e;) D = e - C, D > a && (D = a), D = Math.ceil(D), J = g - k, J > z && (J = z), J = Math.ceil(J), l.drawImage(this.U.Gc, h, r, D, J, c + C, d + k, D, J), C += B; - k += E - } - }, - Bk: function(a, b) { - if (this.Vf === f.B) return d.Tb(a, b, this.ua, this.va, this.U.width, this.U.height); - var c = this.U.G[this.Vf], - e = this.ua, - g = this.va; - if (this.Nk) var l = this.U.J[this.Vf], - e = e + l.x, - g = g + l.y; - return d.Tb(a, b, e, g, c.V, c.ga) - }, - ut: function(a) { - if (this.H(a)) return !0; - if (a.ys === g.uj) this.jb(a.zs); - else return !1; - return !0 - }, - BB: function(a, b) { - var c = this.pe(a).J[b]; - this.x = c.x; - this.y = c.y - }, - rF: function(a, - b) { - var c = this.pe(a), - d = c.G[b], - c = c.J[b]; - this.x = c.x + d.V / 2; - this.y = c.y + d.ga / 2 - } - }); - l.create = function(a, b) { - var c = new l; - c.Ea(a); - null != b && c.jb(b); - return c - }; - return l - }(fa, S, Oa, Z, V, R, ta, ka), - yb = function(a, d, c, b) { - return a.extend({ - init: function() { - this.H(); - this.wf = ""; - this.wc = this.Ic = this.Md = 0; - this.Jf = null - }, - qz: function(a, b, c) { - this.wf = a; - this.Se(b); - this.Jf = c - }, - MB: function(a, b, c) { - this.Md = a; - this.Ic = b; - this.wc = c - }, - ak: function(a) { - var c = this.wf.indexOf(a); - if (0 <= c) return c; - b.alert("Char not found in font:" + a); - return this.wf.indexOf(".") - }, - nE: function(a, b, c) { - a = this.U.G[a]; - var h = Math.ceil(a.V), - l = Math.ceil(a.ga); - d.context.drawImage(this.U.Gc, a.x, a.y, h, l, b, c, h, l) - }, - nv: function(a) { - for (var b = 0, c = a.length, d = 0, l = 0; l < c; l++) - if (d = this.Hg(a, l), " " === a[l]) b += this.wc + d; - else var n = this.ak(a[l]), - b = b + (this.U.G[n].V + d); - return Math.ceil(b - d) - }, - no: function() { - return this.U.G[0].ga - }, - Hg: function(a, b) { - if (b === a.length - 1) return 0; - if (!this.Jf) return this.Md; - var c = this.Jf[a[b] + a[b + 1]]; - return null != c ? c : this.Md - } - }) - }(ha, Z, V, ka), - Ta = function() { - return function(a, d, c, - b) { - c = a + c; - b = d + b; - this.sv = a; - this.tv = d; - this.xv = c; - this.yv = d; - this.Hs = a; - this.Is = b; - this.Ps = c; - this.Qs = b - } - }(), - Ua = function(a) { - function d(c) { - this.Gc = c; - this.G = []; - this.J = []; - this.Wd = a.pi(); - var b = $(c); - this.ci = c.width || b.width(); - this.bi = c.height || b.height(); - this.vg = this.He = 0 - } - d.prototype.Ex = function(c) { - this.G.push(c); - this.J.push(new a(0, 0)) - }; - d.prototype.LB = function(a, b, d) { - a = this.J[a]; - a.x = b; - a.y = d - }; - return d - }(R, Ta), - Pa = function(a, d, c, b, f, e, g, h, l, n) { - return { - init: function() { - c.tB(a, f.Wb); - for (var b = 0, e = a.length; b < e; b++) { - var g = - a[b]; - delete g.eu; - delete g.bA; - d[g.id].info = g - } - }, - pA: function(a, c) { - var f = d[a]; - switch (f.type) { - case b.I: - f.U = new g(c); - this.Su(f); - break; - case b.cj: - f.U = new g(c); - this.Su(f); - var l = new e, - h = f.info; - l.qz(h.wf, f.U, h.Jf); - l.MB(h.Md, h.Ic, h.wc); - f.font = l - } - }, - Su: function(a) { - var b = a.U, - c = b.ci, - d = b.bi; - a = a.info; - var f = a.G, - g = a.J; - b.Wd = h.pi(); - if (f) { - b.He = a.He ? a.He : 0; - b.vg = a.vg ? a.vg : 0; - for (var e = 0, n = f.length; e < n; e++) { - var k = f[e], - k = new l(k.x, k.y, k.V, k.ga); - k.V + b.He > c && (k.V = c - b.He); - k.ga + b.vg > d && (k.ga = d - b.vg); - b.Ex(k) - } - if (g) - for (c = g.length, e = - 0; e < c; e++) d = g[e], b.LB(e, d.x, d.y); - a.Q && a.P && (b.Wd.x = a.Q, b.Wd.y = a.P) - } - }, - pe: function(a) { - a = d[a]; - if (a.U) return a.U; - n.debug("Image not yet loaded:" + a.path); - return null - }, - rt: function(a) { - a = d[a]; - if (a.font) return a.font; - n.debug("Font not yet loaded:" + a.path); - return null - } - } - }(vb, Oa, wb, db, G, yb, Ua, R, S, ka), - ba = function(a) { - return { - Eg: function(a, c, b) { - return Math.max(Math.min(a, b), c) - }, - Rk: function(a, c) { - return 0 > a === 0 > c - }, - ub: function(a, c) { - return Math.floor(Math.random() * (c - a + 1) + a) - }, - VA: function() { - return 0.5 < Math.random() - }, - Jb: function() { - return 2 * Math.random() - 1 - }, - Mt: function(d, c, b, f) { - return d >= c && d >= b && d >= f ? d : c >= d && c >= b && c >= f ? c : b >= c && b >= d && b >= f ? b : f >= c && f >= b && f >= d ? f : a.B - }, - Ot: function(d, c, b, f) { - return d <= c && d <= b && d <= f ? d : c <= d && c <= b && c <= f ? c : b <= c && b <= d && b <= f ? b : f <= c && f <= b && f <= d ? f : a.B - }, - zz: function(a, c, b, f, e, g, h, l) { - var n, q; - n = e - a + h - b; - q = g - c + l - f; - a = b - a; - c = f - c; - e = h - e; - g = l - g; - l = Math.abs(c * e - g * a); - return Math.abs(e * q - g * n) <= l && Math.abs(a * q - c * n) <= l - }, - pF: function(a, c) { - var b = Math.pow(10, c); - return Math.round(a * b) / b - }, - Ju: function(a) { - return Math.round(100 * - a) / 100 - } - } - }(V), - ca = function(a, d, c, b, f, e, g, h, l) { - function n(a, b) { - this.dh = a; - this.width = b - } - var q = a.extend({ - init: function(a) { - this.H(); - this.font = a; - this.Pe = []; - this.height = this.width = d.B; - this.align = c.Bb; - this.Qh = new b(a.U); - this.PC = !1; - this.maxHeight = d.B - }, - Wu: function(a, b) { - this.dh = a; - this.jh = null == b || b === d.B ? Math.ceil(this.font.nv(a)) : Math.ceil(b); - this.dh && (this.Ky(), this.EC()) - }, - EC: function() { - for (var a = 0, b = 0, f = this.font.no(), e = 0, g = this.font.Hg("..", 0), l = this.maxHeight === d.B ? this.Pe.length : Math.min(this.Pe.length, - this.maxHeight / f + this.font.Ic), h = l !== this.Pe.length, k = 0; k < l; k++) { - for (var a = this.Pe[k], n = a.dh, q = n.length, a = this.align !== c.Bb ? this.align === c.oc || this.align === c.da ? (this.jh - a.width) / 2 : this.jh - a.width : 0, J = 0; J < q; J++) { - if (" " === n[J]) a += this.font.wc + this.font.Hg(n, J); - else { - var B = this.font.ak(n[J]), - E = this.font.U.G[B].V; - this.Qh.qk(B, Math.round(a), Math.round(b), e++); - a += E + this.font.Hg(n, J) - } - if (h && k === l - 1 && (B = this.font.ak("."), E = this.font.U.G[B].V, J === q - 1 || J === q - 2 && a + 3 * (E + g) + this.font.wc > this.jh)) { - this.Qh.qk(B, - Math.round(a), Math.round(b), e++); - a += E + g; - this.Qh.qk(B, Math.round(a), Math.round(b), e++); - a += E + g; - this.Qh.qk(B, Math.round(a), Math.round(b), e++); - a += E + g; - break - } - } - b += f + this.font.Ic - } - 1 >= this.Pe.length ? (this.height = this.font.no(), this.width = a) : (this.height = (this.font.no() + this.font.Ic) * this.Pe.length - this.font.Ic, this.width = this.jh); - this.maxHeight !== d.B && (this.height = Math.min(this.height, this.maxHeight)) - }, - L: function() { - this.Lc(); - if (0 !== this.color.O) { - var a = this.dh.length, - b = f.context; - 0 < a && (b.translate(this.ua, this.va), - this.Qh.ft(a), b.translate(-this.ua, -this.va)) - } - this.Kc() - }, - Ky: function() { - for (var a = [], b = this.dh, c = b.length, d = 0, f = 0, e = 0, g = 0, k = 0, h = 0, q = 0; q < c;) { - var J = b[q++]; - if (" " == J || "\n" == J) h += e, k = q - 1, e = 0, f = q, " " == J && (f--, e = this.font.wc + this.font.Hg(b, q - 1)); - else var B = this.font.ak(J), - e = e + (this.font.U.G[B].V + this.font.Hg(b, q - 1)); - B = l.Ju(h + e) > this.jh; - this.PC && B && k == g && (h += e, k = q, e = 0, f = q); - if (l.Ju(h + e) > this.jh && k != g || "\n" == J) { - a[d++] = g; - for (a[d++] = k; f < c && " " == b[f];) f++, e -= this.font.wc; - k = g = f; - h = 0 - } - } - 0 != e && (a[d++] = g, a[d++] = q); - b = - d >> 1; - this.Pe = []; - for (c = 0; c < b; c++) d = this.dh.substring(a[c << 1], a[(c << 1) + 1]), f = this.font.nv(d), this.Pe.push(new n(d, f)) - }, - iE: function(a) { - var b = Xml.Fs(a, "font"), - b = g.rt(b), - b = new q(b); - a.hasAttribute("align") && (b.align = c.parse(Xml.attr(a, "align"))); - if (a.hasAttribute("string")) { - var f = Xml.Fs("string"), - f = g.CE(f), - e = a.hasAttribute("width") ? Xml.Es(a, "width") : d.B; - b.Wu(f, e) - } - a.hasAttribute("height") && (b.maxHeight = Xml.Es(a, "height")); - return b - } - }); - q.Mj = function(a) { - var b = a.img; - !b && a.Lo && (b = document.getElementById(a.Lo)); - !b && a.Zc && (b = $(a.Zc)[0]); - if (!b && a.ib) { - var b = $("#" + a.ib), - d = b.find("img"); - 0 === d.length && (d = $("").prependTo(b)); - b = d[0] - } - b || (b = new Image); - var e = a.Zj, - l = a.width, - n = a.Id, - z = null != a.alpha ? a.alpha : 1, - d = a.za ? h.Za : a.scale || 1, - k = a.text.toString(), - C = f.element; - f.Ki(document.createElement("canvas")); - e = g.rt(e); - e = new q(e); - e.x = Math.ceil(24 * h.Wb / 2); - e.y = 0; - e.align = n || c.Bb; - e.Wu(k, l); - var n = f.element, - k = f.context, - D = (l || Math.ceil(e.width)) + Math.ceil(2 * e.x), - l = Math.ceil(e.height); - n.width = D; - n.height = l; - var J = k.globalAlpha; - z !== - J && (k.globalAlpha = z); - e.L(); - b.src = n.toDataURL("image/png"); - z !== J && (k.globalAlpha = J); - C && f.Ki(C); - z = D * d; - d *= l; - a = a.Yo; - var B; - a && z > a && (a /= z, B = Math.round((1 - a) * d / 2), z *= a, d *= a); - d = $(b).width(z).height(d); - B && d.css("padding-top", B); - return b - }; - q.Hb = function(a) { - a.Zj = e.nh; - return q.Mj(a) - }; - q.sa = function(a) { - a.Zj = e.jg; - return q.Mj(a) - }; - q.dt = function(a) { - a.Zj = e.Dl; - q.Mj(a) - }; - return q - }(fa, V, P, Na, Z, x, Pa, G, ba), - eb = function(a) { - var d = {}; - d.px = [a.Wm, a.Sm, a.qa]; - d.UD = [a.Tr, a.Sm, a.qa]; - d.mx = [a.zc, a.mf, a.qh, a.im, a.jm, a.lj, a.Rc, a.fm, a.gm, - a.jj, a.sh, a.hm, a.nj, a.uh, a.nm, a.om, a.pm, a.qm, a.rd, a.rm, a.ij, a.sm, a.em, a.hj - ]; - d.MD = [a.rh, a.mj]; - d.ND = [a.wj, a.xj, a.yj]; - d.SD = [a.mg, a.nf, a.oj, a.km, a.lm, a.mm, a.th]; - d.TD = [a.Ym, a.zj, a.Aj, a.zh, a.Gr, a.Hr, a.Jr, a.Ir, a.Kr]; - d.bw = [a.nf, a.lg, a.kj, a.mg, a.oj, a.km, a.lm, a.mm, a.th, a.rh, a.mj, a.Ac]; - d.WC = [a.mg, a.nf, a.kj]; - d.XC = [a.zh, a.ie]; - d.lx = [a.nh, a.jg, a.Dl]; - d.nx = [a.Vm, a.Pm, a.Qm, a.Rm, a.Tm, a.Um, a.Xm, a.Zm, a.$m, a.an, a.bn, a.Lr, a.Mr, a.cn, a.dn, a.Or, a.Pr, a.Qr, a.en, a.jn, a.kn, a.ln, a.mn, a.Rr, a.Sr, a.pn]; - d.cw = [a.ie, a.xj, a.yj, a.Nr, a.nn, - a.zj, a.Aj, a.gn, a.hn, a.wj, a.zh - ]; - d.ox = "bBtn_bgd.png box_lock.png box_nav_menu.png box_omnom.png boxcutter.png boxmore_bgd.png buttonsprite.png fb.png fBtn_bgd.png flags.png fun-omnom.png gamecomplete.jpg lBtn_bgd.png level_bgd.png level_bgd_small.png leveltape.png leveltape_left.png leveltape_right.png mBtn_bgd.png menu_result_en.png menu_result_fr.png menu_result_gr.png menu_result_ru.png menubg.jpg options_stars_bgd.png options_stars_bgd_small.png perfect_mark.png ph_logo.png result_line.png sBtn_bgd.png shadow.png star_result.png star_result_small.png startbg.jpg taperoll.png".split(" "); - d.ZC = ["drawing-bg.png"]; - d.GD = "android.png box.png comic.png facebook.png footer_dot.png footer_finger.png full_version_bg.png full_version_text.png game_bg.png ipad.png iphone.png more_close.png more_text.png more_wallpaper.png more_window_bg.png more.png papercraft.png privacy.png shop.png terms.png twitter.png video_bg.png youtube.png zepto.png zeptologo.png".split(" "); - return d - }(x), - Ea = { - hc: "NORMAL", - fw: "IEPINNED", - ym: "MORECOMING", - Mm: "PURCHASE", - Cn: "TIME" - }, - ua = function() { - var a = { - mh: 0, - oh: 1, - lh: 2, - xh: 3, - vm: 4, - Kn: 5, - um: 6, - Cl: 7, - tm: 8, - Am: 9, - lq: 10, - po: function(d) { - switch (d) { - case "de": - return a.lh; - case "fr": - return a.oh; - case "ru": - return a.xh; - case "en": - case "en_GB": - case "en_US": - return a.mh; - case "ko": - return a.vm; - case "zh": - return a.Kn; - case "ja": - return a.um; - case "es": - return a.Cl; - case "it": - return a.tm; - case "nl": - return a.Am; - case "br": - return a.lq - } - if (3 <= d.length) switch (d.substr(0, 3)) { - case "de-": - return a.lh; - case "fr-": - return a.oh; - case "ru-": - return a.xh; - case "en-": - return a.mh; - case "ko-": - return a.vm; - case "zh-": - return a.Kn; - case "ja-": - return a.um; - case "es-": - return a.Cl; - case "it-": - return a.tm; - case "nl-": - return a.Am; - case "br-": - return a.lq - } - return null - }, - pC: function(d) { - switch (d) { - case a.lh: - return "de"; - case a.oh: - return "fr"; - case a.xh: - return "ru"; - case a.vm: - return "ko"; - case a.Kn: - return "zh"; - case a.um: - return "ja"; - case a.Cl: - return "es"; - case a.tm: - return "it"; - case a.Am: - return "nl"; - default: - return "en" - } - } - }; - return a - }(), - qa = function(a) { - return new function() { - function d(a) { - return 0 <= window.location.href.toLowerCase().indexOf(a.toLowerCase()) - } - var c = function() { - var a = {}, - c = - (location.search.substring(1) || "").split("&"), - d, g, h; - d = 0; - for (g = c.length; d < g; d++) h = c[d].split("="), 1 < h.length && (a[decodeURIComponent(h[0].replace(/\+/g, " "))] = decodeURIComponent(h[1].replace(/\+/g, " "))); - return a - }(); - a && a.Hx && Date.now() < a.Hx && (this.eg = d("unlockAllBoxes=true")); - this.lang = c.lang; - this.Zu = d("boxBackgrounds=true"); - this.$B = d("showFrameRate=true"); - this.Lp = d("showVersion=true") - } - }(K), - K = function(a, d, c, b, f, e) { - return { - $k: "http://www.cuttherope.net", - ky: !0, - Mf: function(a, b) { - return !0 === e.eg || (0 === a || - 1 === a) && 0 <= b && 5 >= b ? !1 : !0 - }, - Ij: [{ - w: "Cardboard Box", - t: "Carton", - s: "Pappkiste", - u: "\u041a\u0430\u0440\u0442\u043e\u043d\u043d\u0430\u044f" - }, { - w: "Fabric Box", - t: "Tissu", - s: "Stoffkiste", - u: "\u0422\u043a\u0430\u043d\u0435\u0432\u0430\u044f" - }, { - w: "Foil Box", - t: "Papier", - s: "Folienkiste", - u: "\u0418\u0437 \u0444\u043e\u043b\u044c\u0433\u0438" - }, { - w: "Magic Box", - t: "Magique", - s: "Magiekiste", - u: "\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0430\u044f" - }, { - w: "Valentine Box", - t: "Valentin", - s: "Valentinskiste", - u: "\u0412\u0430\u043b\u0435\u043d\u0442\u0438\u043d\u043a\u0430" - }, - { - w: "Toy Box", - t: "Jouets", - s: "Spielzeugkiste", - u: "\u0418\u0433\u0440\u0443\u0448\u0435\u0447\u043d\u0430\u044f" - }, { - w: "Gift Box", - t: "Cadeau", - s: "Geschenkkiste", - u: "\u041f\u043e\u0434\u0430\u0440\u043e\u0447\u043d\u0430\u044f" - }, { - w: "Cosmic Box", - t: "Cosmique", - s: "Kosmoskiste", - u: "\u041a\u043e\u0441\u043c\u0438\u0447\u0435\u0441\u043a\u0430\u044f" - }, { - w: "Toolbox", - t: "Outils", - s: "Werkzeugkiste", - u: "\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b" - }, { - w: "Buzz Box", - t: "Abeille", - s: "Summkiste", - u: "\u041c\u0435\u0434\u043e\u0432\u0430\u044f" - }, - { - w: "DJ Box", - t: "DJ", - s: "DJ-Kiste", - u: "DJ" - }, { - w: "New levels\ncoming soon!", - t: "De nouveaux niveaux bient\u00f4t disponibles!", - s: "Neue Level\nkommen bald!", - u: "\u041d\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438\n\u043d\u0430 \u043f\u043e\u0434\u0445\u043e\u0434\u0435!" - }, { - w: " ", - t: " ", - s: " ", - u: " " - } - ], - Uo: [f.mh, f.oh, f.lh, f.xh], - Ns: "box1_bgd.png box2_bgd.png box3_bgd.png box4_bgd.png box5_bgd.png box6_bgd.png box7_bgd.png box8_bgd.png box9_bgd.png box10_bgd.png box11_bgd.png boxmore_bgd.png box-purchase.png".split(" "), - Ms: [], - Sn: "levelbg1.jpg levelbg2.jpg levelbg3.jpg levelbg4.jpg levelbg5.jpg levelbg6.jpg levelbg7.jpg levelbg8.jpg levelbg9.jpg levelbg10.jpg levelbg11.jpg".split(" "), - Rx: [b.hc, b.hc, b.hc, b.hc, b.hc, b.hc, b.hc, b.hc, b.hc, b.hc, b.hc, b.ym, b.Mm], - AC: [0, 15, 80, 190, 250, 300, 350, 400, 450, 500, 550, null, null], - supports: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, null, null], - ZB: [!1, !1, !1, !1, !1, !1, !1, !0, !1, !1, !1, !1, !1], - Nt: d.px, - nt: d.nx.concat(d.cw), - Wz: d.ox, - Oy: d.mx.concat(d.bw), - zg: a, - Ft: [c.Kl, c.Ml, c.Ol, c.Ql, c.Sl, c.Ul, c.Wl, c.gj, c.Zl, c.am, c.cm], - Gt: [c.Ll, c.Nl, c.Pl, c.Rl, c.Tl, c.Vl, c.Xl, c.Yl, c.$l, c.bm, c.dm], - xy: [] - } - }([{ - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 158, - y: 147 - }, { - name: 100, - x: 159, - y: 45, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 161, - y: 427 - }, { - name: 3, - x: 162, - y: 230, - timeout: -1 - }, { - name: 3, - x: 161, - y: 295, - timeout: -1 - }, { - name: 3, - x: 161, - y: 361, - timeout: -1 - }, { - name: 4, - x: 174, - y: 46, - locale: "en", - text: "Slide across to cut the rope", - width: 130 - }, { - name: 4, - x: 182, - y: 335, - locale: "en", - text: "Deliver candy to Om Nom", - width: 130 - }, { - name: 5, - x: 57, - y: 119, - locale: "en", - j: 100, - r: 100 - }, { - name: 8, - x: 231, - y: 416, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 109, - y: 119, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 161, - y: 119, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 213, - y: 119, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 265, - y: 119, - locale: "en", - j: 100, - r: 100 - }, { - name: 14, - x: 93, - y: 149, - locale: "en", - j: 100, - r: 100, - o: 2 - }], - u: [{ - name: 14, - x: 93, - y: 156, - locale: "ru", - j: 100, - r: 100, - o: 2 - }, { - name: 5, - x: 109, - y: 126, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 57, - y: 126, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 161, - y: 126, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 213, - y: 126, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 265, - y: 126, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 177, - y: 17, - locale: "ru", - text: "\u041f\u0440\u043e\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u0443\u0440\u0441\u043e\u0440\u043e\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0440\u0435\u0437\u0430\u0442\u044c \u0432\u0435\u0440\u0435\u0432\u043a\u0443", - width: 160 - }, { - name: 8, - x: 231, - y: 421, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 196, - y: 314, - locale: "ru", - text: "\u0414\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 \u0410\u043c \u041d\u044f\u043c\u0443", - width: 80 - }], - t: [{ - name: 14, - x: 92, - y: 149, - locale: "fr", - j: 100, - r: 100, - o: 2 - }, { - name: 5, - x: 109, - y: 124, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 57, - y: 124, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 161, - y: 124, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 213, - y: 124, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 265, - y: 124, - locale: "fr", - j: 100, - r: 100 - }, { - name: 4, - x: 177, - y: 31, - locale: "fr", - text: "Clique ou fais glisser pour couper la corde", - width: 130 - }, { - name: 8, - x: 231, - y: 415, - locale: "fr", - j: 100, - r: 100 - }, { - name: 4, - x: 196, - y: 311, - locale: "fr", - text: "Donne un bonbon \u00e0 Om Nom", - width: 100 - }], - s: [{ - name: 14, - x: 93, - y: 156, - locale: "de", - j: 100, - r: 100, - o: 2 - }, { - name: 5, - x: 109, - y: 129, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 57, - y: 129, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 161, - y: 129, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 213, - y: 129, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 265, - y: 129, - locale: "de", - j: 100, - r: 100 - }, { - name: 4, - x: 175, - y: 35, - locale: "de", - text: "Klicke oder ziehe, um das Seil zu schneiden", - width: 160 - }, - { - name: 8, - x: 231, - y: 416, - locale: "de", - j: 100, - r: 100 - }, { - name: 4, - x: 200, - y: 317, - locale: "de", - text: "Versorg Om Nom mit Bonbons", - width: 100 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 69, - y: 203 - }, { - name: 100, - x: 52, - y: 70, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 162, - y: 69, - length: 170, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 264, - y: 419 - }, { - name: 3, - x: 54, - y: 250, - timeout: -1 - }, { - name: 3, - x: 53, - y: 369, - timeout: -1 - }, { - name: 3, - x: 280, - y: 250, - timeout: -1 - }, { - name: 100, - x: 275, - y: 69, - length: 320, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 4, - x: 133, - y: 285, - locale: "en", - text: "Collect as many stars as you can", - width: 150 - }, { - name: 13, - x: 113, - y: 321, - locale: "en", - j: 100, - r: 100 - }], - u: [{ - name: 13, - x: 94, - y: 315, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 103, - y: 278, - locale: "ru", - text: "\u0421\u0442\u0430\u0440\u0430\u0439\u0442\u0435\u0441\u044c \u0441\u043e\u0431\u0438\u0440\u0430\u0442\u044c \u0437\u0432\u0435\u0437\u0434\u044b \u043b\u0435\u0434\u0435\u043d\u0446\u043e\u043c", - width: 210 - }], - t: [{ - name: 4, - x: 137, - y: 285, - locale: "fr", - text: "Collecte autant d'\u00e9toiles que tu le peux", - width: 200 - }, { - name: 13, - x: 113, - y: 321, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 126, - y: 285, - locale: "de", - text: "Sammle m\u00f6glichst viele Sternchen", - width: 170 - }, { - name: 13, - x: 106, - y: 321, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 360, - y: 221 - }, { - name: 100, - x: 279, - y: 281, - length: 95, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 277, - y: 120, - length: 95, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 387, - y: 387 - }, { - name: 3, - x: 159, - y: 318, - timeout: -1 - }, { - name: 3, - x: 277, - y: 403, - timeout: -1 - }, { - name: 3, - x: 225, - y: 223, - timeout: -1 - }, { - name: 100, - x: 532, - y: 169, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 158, - y: 187 - }, { - name: 2, - x: 262, - y: 362 - }, { - name: 100, - x: 161, - y: 315, - length: 93, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 289, - y: 186, - length: 105, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 162, - y: 57, - length: 93, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 33, - y: 186, - length: 105, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 159, - y: 226, - timeout: -1 - }, { - name: 3, - x: 32, - y: 312, - timeout: -1 - }, { - name: 3, - x: 161, - y: 434, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 101, - y: 238 - }, { - name: 2, - x: 219, - y: 431 - }, { - name: 3, - x: 102, - y: 326, - timeout: -1 - }, { - name: 3, - x: 217, - y: 209, - timeout: -1 - }, { - name: 3, - x: 217, - y: 74, - timeout: -1 - }, { - name: 100, - x: 96, - y: 139, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 99, - y: 391 - }, { - name: 100, - x: 219, - y: 252, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 4, - x: 43, - y: 45, - locale: "en", - text: "Click to pop the bubble", - width: 120, - o: 1 - }, { - name: 4, - x: 157, - y: 293, - locale: "en", - text: "The bubble will lift the candy up", - width: 120 - }, { - name: 8, - x: 167, - y: 391, - locale: "en", - a: 15, - j: 100, - r: 100 - }, { - name: 9, - x: 218, - y: 78, - locale: "en", - j: 100, - r: 10, - o: 1 - }], - u: [{ - name: 8, - x: 167, - y: 391, - locale: "ru", - a: 20, - j: 100, - r: 100 - }, { - name: 4, - x: 138, - y: 315, - locale: "ru", - text: "\u041f\u0443\u0437\u044b\u0440\u044c \u043f\u043e\u0434\u044b\u043c\u0435\u0442 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 \u0432\u0432\u0435\u0440\u0445", - width: 160 - }, { - name: 4, - x: 21, - y: 44, - locale: "ru", - text: "\u041d\u0430\u0436\u043c\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043b\u043e\u043f\u043d\u0443\u0442\u044c \u043f\u0443\u0437\u044b\u0440\u044c", - width: 160, - o: 1 - }, { - name: 9, - x: 218, - y: 78, - locale: "ru", - j: 100, - r: 100, - o: 1 - }], - t: [{ - name: 4, - x: 121, - y: 311, - locale: "fr", - text: "La bulle fera monter le bonbon", - width: 150 - }, { - name: 8, - x: 167, - y: 386, - locale: "fr", - a: 15, - j: 100, - r: 100 - }, { - name: 4, - x: 33, - y: 46, - locale: "fr", - text: "Clique pour \u00e9clater la bulle", - width: 130, - o: 1 - }, { - name: 9, - x: 217, - y: 78, - locale: "fr", - j: 100, - r: 100, - o: 1 - }], - s: [{ - name: 4, - x: 17, - y: 30, - locale: "de", - text: "Klicke, um die Seifenblase platzen zu lassen", - width: 140, - o: 1 - }, { - name: 9, - x: 217, - y: 77, - locale: "de", - j: 100, - r: 10, - o: 1 - }, { - name: 4, - x: 138, - y: 308, - locale: "de", - text: "Die Seifenblase l\u00e4sst den Bonbon schweben", - width: 170 - }, { - name: 8, - x: 166, - y: 390, - locale: "de", - a: 15, - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 3, - x: 161, - y: 371, - timeout: -1 - }, { - name: 3, - x: 163, - y: 293, - timeout: -1 - }, { - name: 2, - x: 160, - y: 432 - }, { - name: 52, - x: 160, - y: 217 - }, { - name: 100, - x: 163, - y: 152, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 161, - y: 293 - }, { - name: 3, - x: 161, - y: 91, - timeout: -1 - }, { - name: 4, - x: 20, - y: 80, - locale: "en", - text: "Don't let the candy leave the box", - width: 120 - }, { - name: 13, - x: 79, - y: 65, - locale: "en", - j: 100, - r: 100 - }], - u: [{ - name: 4, - x: 20, - y: 80, - locale: "ru", - text: "\u041d\u0435 \u0434\u0430\u0439\u0442\u0435 \u043b\u0435\u0434\u0435\u043d\u0446\u0443 \u0432\u044b\u043b\u0435\u0442\u0435\u0442\u044c \u0437\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u044b \u043a\u043e\u0440\u043e\u0431\u043a\u0438", - width: 120 - }, { - name: 13, - x: 79, - y: 65, - locale: "ru", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 20, - y: 80, - locale: "fr", - text: "Ne laissez pas le bonbon sortir de la bo\u00eete", - width: 110 - }, { - name: 13, - x: 79, - y: 65, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 14, - y: 80, - locale: "de", - text: "Lass den Bonbon nicht aus der Schachtel", - width: 140 - }, { - name: 13, - x: 79, - y: 65, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 259, - y: 432 - }, { - name: 52, - x: 160, - y: 149 - }, { - name: 3, - x: 258, - y: 356, - timeout: -1 - }, { - name: 3, - x: 66, - y: 358, - timeout: -1 - }, - { - name: 3, - x: 267, - y: 196, - timeout: -1 - }, { - name: 100, - x: 164, - y: 42, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 266, - y: 84, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 68, - y: 85, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 68, - y: 232, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 164, - y: 287, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 269, - y: 229, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 266, - y: 161 - }, - { - name: 100, - x: 155, - y: 250, - length: 95, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 153, - y: 89, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 155, - y: 430 - }, { - name: 3, - x: 37, - y: 254, - timeout: -1 - }, { - name: 3, - x: 152, - y: 41, - timeout: -1 - }, { - name: 3, - x: 276, - y: 254, - timeout: -1 - }, { - name: 54, - x: 252, - y: 367 - }, { - name: 4, - x: 17, - y: 301, - locale: "en", - text: "You can restart the level by pressing the", - width: 200 - }, { - name: 12, - x: 85, - y: 373, - locale: "en", - j: 100, - r: 100 - }, { - name: 4, - x: 85, - y: 348, - locale: "en", - text: "button", - width: 100 - } - ], - u: [{ - name: 4, - x: 17, - y: 304, - locale: "ru", - text: "\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u043d\u0430\u0436\u0430\u0432 \u043a\u043d\u043e\u043f\u043a\u0443", - width: 200 - }, { - name: 12, - x: 188, - y: 376, - locale: "ru", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 27, - y: 285, - locale: "fr", - text: "Tu peux recommencer le niveau en touchant le bouton", - width: 180 - }, { - name: 12, - x: 171, - y: 361, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 12, - x: 212, - y: 329, - locale: "de", - j: 100, - r: 100 - }, - { - name: 4, - x: 31, - y: 282, - locale: "de", - text: "Lass den Bonbon nicht aus der Schachtel", - width: 175 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 161, - y: 350 - }, { - name: 2, - x: 163, - y: 67 - }, { - name: 100, - x: 243, - y: 290, - length: 120, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 83, - y: 401, - length: 90, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 54, - x: 165, - y: 421 - }, { - name: 100, - x: 165, - y: 123, - length: 200, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 97, - y: 294, - timeout: -1 - }, { - name: 3, - x: 166, - y: 422, - timeout: -1 - }, { - name: 3, - x: 97, - y: 228, - timeout: -1 - }] - }, - { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 514, - y: 418 - }, { - name: 100, - x: 224, - y: 177, - length: 100, - c: !1, - i: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 448, - y: 337, - length: 100, - c: !1, - i: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 335, - y: 256, - length: 100, - c: !1, - i: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 178, - y: 103 - }, { - name: 3, - x: 222, - y: 269, - timeout: -1 - }, { - name: 3, - x: 448, - y: 430, - timeout: -1 - }, { - name: 3, - x: 328, - y: 345, - timeout: -1 - }, { - name: 100, - x: 180, - y: 31, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, - { - name: 4, - x: 273, - y: 39, - locale: "en", - text: "Automatic ropes appear when candy gets into their area", - width: 140 - }, { - name: 8, - x: 316, - y: 164, - locale: "en", - j: 100, - r: 100 - } - ], - u: [{ - name: 8, - x: 325, - y: 173, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 234, - y: 68, - locale: "ru", - text: "\u0410\u0432\u0442\u043e-\u0432\u0435\u0440\u0435\u0432\u043a\u0438 \u043f\u043e\u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f, \u043a\u043e\u0433\u0434\u0430 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 \u043f\u043e\u043f\u0430\u0434\u0430\u0435\u0442 \u0432 \u0438\u0445 \u0440\u0430\u0434\u0438\u0443\u0441", - width: 220 - }], - t: [{ - name: 4, - x: 213, - y: 41, - locale: "fr", - text: "Les cordes automatiques apparaissent lorsqu'un bonbon arrive dans leur zone", - width: 260 - }, { - name: 8, - x: 298, - y: 144, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 250, - y: 47, - locale: "de", - text: "Sobald der Bonbon in ihrer N\u00e4he ist, erscheinen automatisch Seile", - width: 200 - }, { - name: 8, - x: 329, - y: 152, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 162, - y: 430 - }, { - name: 100, - x: 101, - y: 271, - length: 100, - c: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 36, - y: 148, - length: 100, - c: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 291, - y: 149, - length: 100, - c: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 227, - y: 273, - length: 100, - c: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 52, - x: 159, - y: 159 - }, { - name: 3, - x: 96, - y: 379, - timeout: -1 - }, { - name: 3, - x: 29, - y: 246, - timeout: -1 - }, { - name: 3, - x: 225, - y: 377, - timeout: -1 - }, { - name: 100, - x: 98, - y: 79, - length: 90, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 226, - y: 80, - length: 90, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 162, - y: 34, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 77, - y: 313 - }, { - name: 2, - x: 123, - y: 432 - }, { - name: 3, - x: 148, - y: 139, - timeout: -1 - }, { - name: 3, - x: 257, - y: 351, - timeout: -1 - }, { - name: 3, - x: 122, - y: 346, - timeout: -1 - }, { - name: 100, - x: 124, - y: 191, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 247, - y: 92, - length: 150, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 188, - y: 289, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 49, - y: 381, - length: 25, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 4, - x: 20, - y: 98, - locale: "en", - text: "Stretched ropes turn red", - width: 100 - }, { - name: 13, - x: 67, - y: 85, - locale: "en", - j: 100, - r: 100 - }], - u: [{ - name: 13, - x: 68, - y: 64, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 21, - y: 77, - locale: "ru", - text: "\u041d\u0430\u0442\u044f\u043d\u0443\u0442\u044b\u0435 \u0432\u0435\u0440\u0435\u0432\u043a\u0438 \u0441\u0442\u0430\u043d\u043e\u0432\u044f\u0442\u0441\u044f \u043a\u0440\u0430\u0441\u043d\u044b\u043c\u0438", - width: 100 - }], - t: [{ - name: 13, - x: 67, - y: 61, - locale: "fr", - j: 100, - r: 100 - }, { - name: 4, - x: 20, - y: 74, - locale: "fr", - text: "Les cordes \u00e9tir\u00e9es deviennent rouges", - width: 100 - }], - s: [{ - name: 4, - x: 57, - y: 33, - locale: "de", - text: "Gespannte Seile werden rot", - width: 140 - }, { - name: 13, - x: 39, - y: 68, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 402, - y: 351 - }, { - name: 2, - x: 234, - y: 61 - }, { - name: 54, - x: 247, - y: 410 - }, { - name: 100, - x: 330, - y: 128, - length: 210, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 224, - y: 126, - length: 275, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 325, - y: 418 - }, { - name: 54, - x: 403, - y: 412 - }, { - name: 3, - x: 404, - y: 287, - timeout: -1 - }, - { - name: 3, - x: 235, - y: 193, - timeout: -1 - }, { - name: 3, - x: 326, - y: 418, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 64, - y: 310 - }, { - name: 2, - x: 244, - y: 77 - }, { - name: 100, - x: 66, - y: 248, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 65, - y: 424 - }, { - name: 100, - x: 143, - y: 159, - length: 100, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 238, - y: 211 - }, { - name: 3, - x: 65, - y: 425, - timeout: -1 - }, { - name: 3, - x: 63, - y: 205, - timeout: -1 - }, { - name: 3, - x: 239, - y: 211, - timeout: -1 - }, { - name: 4, - x: 135, - y: 336, - locale: "en", - text: "You can skip the level in the pause menu", - width: 140 - }, { - name: 13, - x: 200, - y: 322, - locale: "en", - j: 100, - r: 100 - }], - u: [{ - name: 4, - x: 137, - y: 312, - locale: "ru", - text: "\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u0443\u0440\u043e\u0432\u0435\u043d\u044c \u0447\u0435\u0440\u0435\u0437 \u043c\u0435\u043d\u044e \u043f\u0430\u0443\u0437\u044b", - width: 140 - }, { - name: 13, - x: 202, - y: 297, - locale: "ru", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 135, - y: 337, - locale: "fr", - text: "Tu peux passer le niveau via le menu Pause", - width: 140 - }, { - name: 13, - x: 200, - y: 323, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 141, - y: 318, - locale: "de", - text: "Im Pause-Men\u00fc kannst Du den Level \u00fcberspringen", - width: 170 - }, { - name: 13, - x: 224, - y: 303, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 161, - y: 842 - }, { - name: 2, - x: 162, - y: 66 - }, { - name: 3, - x: 161, - y: 131, - timeout: -1 - }, { - name: 3, - x: 160, - y: 303, - timeout: -1 - }, { - name: 3, - x: 160, - y: 562, - timeout: -1 - }, { - name: 100, - x: 162, - y: 751, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 161, - y: 906 - }, { - name: 100, - x: 84, - y: 704, - length: 100, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 237, - y: 575, - length: 100, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 237, - y: 321, - length: 100, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 93, - y: 448, - length: 100, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 98, - y: 195, - length: 70, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 64, - y: 139 - }, { - name: 2, - x: 163, - y: 427 - }, { - name: 100, - x: 162, - y: 68, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 66, - y: 68, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 163, - y: 163, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 162, - y: 259, - length: 130, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 161, - y: 329, - a: 0, - size: 2 - }, { - name: 58, - x: 159, - y: 229, - a: 0, - size: 2 - }, { - name: 3, - x: 250, - y: 165, - timeout: -1 - }, { - name: 3, - x: 64, - y: 276, - timeout: -1 - }, { - name: 3, - x: 248, - y: 275, - timeout: -1 - }, { - name: 10, - x: 249, - y: 347, - locale: "en", - j: 100, - r: 100 - }, { - name: 4, - x: 190, - y: 359, - locale: "en", - text: "Keep the candy away from spikes", - width: 120 - }], - u: [{ - name: 10, - x: 82, - y: 370, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 92, - y: 332, - locale: "ru", - text: "\u041d\u0435 \u0434\u0430\u0439\u0442\u0435 \u043b\u0435\u0434\u0435\u043d\u0446\u0443 \u0440\u0430\u0437\u0431\u0438\u0442\u044c\u0441\u044f \u043e \u0448\u0438\u043f\u044b", - width: 200 - }], - t: [{ - name: 4, - x: 210, - y: 360, - locale: "fr", - text: "Garde le bonbon loin des pointes", - width: 120 - }, { - name: 10, - x: 266, - y: 346, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 10, - x: 77, - y: 370, - locale: "de", - j: 100, - r: 100 - }, { - name: 4, - x: 99, - y: 327, - locale: "de", - text: "Pass auf, dass der Bonbon nicht in die N\u00e4he der Spikes kommt", - width: 250 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 450, - y: 395 - }, { - name: 52, - x: 246, - y: 183 - }, { - name: 59, - x: 305, - y: 374, - a: 90, - size: 3 - }, { - name: 58, - x: 452, - y: 195, - a: 90, - size: 2 - }, { - name: 100, - x: 183, - y: 67, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 187, - y: 244, - length: 180, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 459, - y: 68, - length: 320, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 323, - y: 70, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 362, - y: 338, - timeout: -1 - }, { - name: 3, - x: 415, - y: 221, - timeout: -1 - }, { - name: 3, - x: 307, - y: 218, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 164, - y: 146 - }, { - name: 2, - x: 271, - y: 428 - }, { - name: 100, - x: 67, - y: 46, - length: 105, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 260, - y: 45, - length: 105, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 258, - y: 149, - length: 145, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 67, - y: 229, - length: 165, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 259, - y: 230, - length: 165, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 57, - x: 268, - y: 384, - a: 0, - size: 1 - }, { - name: 57, - x: 159, - y: 241, - a: 90, - size: 1 - }, { - name: 3, - x: 257, - y: 183, - timeout: -1 - }, { - name: 3, - x: 256, - y: 335, - timeout: -1 - }, { - name: 3, - x: 161, - y: 419, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 291, - y: -9 - }, { - name: 2, - x: 62, - y: 296 - }, { - name: 54, - x: 178, - y: 418 - }, { - name: 100, - x: 227, - y: 315, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 60, - x: 229, - y: 201, - a: 90, - size: 4, - v: !1 - }, { - name: 100, - x: 63, - y: 161, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 128, - y: 86, - timeout: -1 - }, { - name: 58, - x: 59, - y: 86, - a: 90, - size: 2, - v: !1 - }, { - name: 3, - x: 289, - y: 197, - timeout: -1 - }, { - name: 3, - x: 63, - y: 243, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 162, - y: 101 - }, { - name: 2, - x: 162, - y: 426 - }, { - name: 3, - x: 161, - y: 216, - timeout: 0 - }, { - name: 3, - x: 162, - y: 345, - timeout: -1 - }, { - name: 3, - x: 161, - y: 284, - timeout: -1 - }, { - name: 100, - x: 85, - y: 47, - length: 95, - c: !1, - i: !1, - d: -1, - e: 0, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 245, - y: 47, - length: 95, - c: !1, - i: !1, - d: -1, - e: 0, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 60, - x: 221, - y: 310, - a: 80, - size: 4 - }, { - name: 60, - x: 104, - y: 310, - a: 100, - size: 4 - }, { - name: 100, - x: 236, - y: 250, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 88, - y: 248, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 4, - x: 9, - y: 56, - locale: "en", - text: "You can cut several ropes at once", - width: 300 - }, { - name: 5, - x: 56, - y: 96, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 108, - y: 96, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 161, - y: 96, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 212, - y: 95, - locale: "en", - j: 100, - r: 100 - }, { - name: 5, - x: 266, - y: 95, - locale: "en", - j: 100, - r: 100 - }, { - name: 11, - x: 19, - y: 95, - locale: "en", - j: 100, - r: 100 - }, { - name: 11, - x: 304, - y: 96, - locale: "en", - a: 180, - j: 100, - r: 100 - }], - u: [{ - name: 5, - x: 54, - y: 110, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 107, - y: 110, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 160, - y: 110, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 210, - y: 109, - locale: "ru", - j: 100, - r: 100 - }, { - name: 5, - x: 264, - y: 109, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 10, - y: 50, - locale: "ru", - text: "\u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u0440\u0435\u0437\u0430\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0432\u0435\u0440\u0435\u0432\u043e\u043a \u043e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e", - width: 300 - }], - t: [{ - name: 5, - x: 56, - y: 106, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 108, - y: 106, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 161, - y: 106, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 212, - y: 105, - locale: "fr", - j: 100, - r: 100 - }, { - name: 5, - x: 266, - y: 105, - locale: "fr", - j: 100, - r: 100 - }, { - name: 11, - x: 19, - y: 105, - locale: "fr", - j: 100, - r: 100 - }, { - name: 11, - x: 304, - y: 106, - locale: "fr", - a: 180, - j: 100, - r: 100 - }, { - name: 4, - x: 37, - y: 46, - locale: "fr", - text: "Tu peux couper plusieurs cordes \u00e0 la fois", - width: 250 - }], - s: [{ - name: 5, - x: 56, - y: 106, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 108, - y: 106, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 161, - y: 106, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 212, - y: 105, - locale: "de", - j: 100, - r: 100 - }, { - name: 5, - x: 266, - y: 105, - locale: "de", - j: 100, - r: 100 - }, { - name: 11, - x: 19, - y: 105, - locale: "de", - j: 100, - r: 100 - }, { - name: 11, - x: 304, - y: 106, - locale: "de", - a: 180, - j: 100, - r: 100 - }, { - name: 4, - x: 35, - y: 46, - locale: "de", - text: "Du kannst mehrere Seile gleichzeitig durchschneiden", - width: 250 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 160, - y: 263 - }, { - name: 2, - x: 159, - y: 40 - }, { - name: 54, - x: 161, - y: 262 - }, { - name: 54, - x: 160, - y: 352 - }, - { - name: 100, - x: 35, - y: 355, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 288, - y: 356, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 288, - y: 258, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 35, - y: 260, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 160, - y: 109, - timeout: -1 - }, { - name: 3, - x: 161, - y: 433, - timeout: -1 - }, { - name: 3, - x: 209, - y: 182, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 324, - y: 130 - }, { - name: 2, - x: 320, - y: 413 - }, - { - name: 3, - x: 434, - y: 267, - timeout: -1 - }, { - name: 3, - x: 321, - y: 65, - timeout: -1 - }, { - name: 3, - x: 209, - y: 269, - timeout: -1 - }, { - name: 100, - x: 450, - y: 101, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 193, - y: 103, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 321, - y: 241, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 431, - y: 266 - }, { - name: 54, - x: 208, - y: 268 - }, { - name: 57, - x: 348, - y: 345, - a: 0, - size: 1, - path: "66,100,", - j: 30 - }, { - name: 57, - x: 288, - y: 345, - a: 0, - size: 1, - path: "-66,100,", - j: 30 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 162, - y: 151 - }, { - name: 2, - x: 165, - y: 46 - }, { - name: 3, - x: 164, - y: 419, - timeout: -1 - }, { - name: 3, - x: 64, - y: 358, - timeout: -1 - }, { - name: 3, - x: 162, - y: 256, - timeout: -1 - }, { - name: 60, - x: 228, - y: 193, - a: 90, - size: 4 - }, { - name: 60, - x: 91, - y: 194, - a: 90, - size: 4 - }, { - name: 100, - x: 295, - y: 108, - length: 115, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 31, - y: 108, - length: 115, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 28, - y: 189, - length: 150, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 295, - y: 189, - length: 150, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 292, - y: 268, - length: 190, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 29, - y: 267, - length: 190, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 162, - y: 420 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 352, - y: 318 - }, { - name: 2, - x: 70, - y: 222 - }, { - name: 3, - x: 210, - y: 44, - path: "0,100", - j: 40, - timeout: -1 - }, { - name: 3, - x: 273, - y: 142, - timeout: -1 - }, { - name: 3, - x: 147, - y: 142, - timeout: -1 - }, { - name: 100, - x: 468, - y: 219, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 224, - y: 233, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 430, - y: 419, - length: 65, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 160, - y: 115 - }, { - name: 100, - x: 69, - y: 45, - length: 85, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 257, - y: 45, - length: 85, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 161, - y: 58, - timeout: -1 - }, { - name: 100, - x: 75, - y: 200, - length: 40, - c: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 247, - y: 197, - length: 40, - c: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 109, - y: 296, - length: 40, - c: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 218, - y: 297, - length: 40, - c: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 161, - y: 297, - timeout: -1 - }, { - name: 3, - x: 163, - y: 193, - timeout: -1 - }, { - name: 2, - x: 160, - y: 433 - }, { - name: 54, - x: 161, - y: 196 - }, { - name: 57, - x: 288, - y: 355, - a: 0, - size: 1 - }, { - name: 57, - x: 31, - y: 356, - a: 0, - size: 1 - }] - } - ] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 161, - y: 220 - }, { - name: 2, - x: 254, - y: 416 - }, { - name: 3, - x: 299, - y: 89, - timeout: -1 - }, { - name: 3, - x: 20, - y: 89, - timeout: -1 - }, { - name: 3, - x: 161, - y: 171, - timeout: -1 - }, { - name: 55, - x: 42, - y: 237, - a: 0 - }, { - name: 55, - x: 277, - y: 233, - a: 180 - }, { - name: 100, - x: 162, - y: 88, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 55, - x: 161, - y: 334, - a: -90 - }, { - name: 4, - x: 22, - y: 357, - locale: "en", - text: "Click the air cushion to blow object", - width: 180 - }, { - name: 8, - x: 101, - y: 347, - locale: "en", - a: 180, - j: 100, - r: 100 - }], - u: [{ - name: 8, - x: 104, - y: 350, - locale: "ru", - a: 180, - j: 100, - r: 100 - }, { - name: 4, - x: 22, - y: 357, - locale: "ru", - text: "\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u043f\u043e\u0434\u0443\u0448\u043a\u0443 \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u0443\u0442\u044c \u043d\u0430 \u043b\u0435\u0434\u0435\u043d\u0435\u0446", - width: 180 - }], - t: [{ - name: 8, - x: 101, - y: 347, - locale: "fr", - a: 180, - j: 100, - r: 100 - }, { - name: 4, - x: -5, - y: 355, - locale: "fr", - text: "Clique le coussin d'air pour souffler sur les objets", - width: 180 - }], - s: [{ - name: 8, - x: 102, - y: 354, - locale: "de", - a: 180, - j: 100, - r: 100 - }, { - name: 4, - x: -17, - y: 360, - locale: "de", - text: "Klicke auf das Luftkissen, um auf den Gegenstand zu blasen", - width: 230 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 97, - y: 82 - }, { - name: 3, - x: 162, - y: 427, - timeout: -1 - }, { - name: 52, - x: 160, - y: 351 - }, { - name: 54, - x: 162, - y: 426 - }, { - name: 100, - x: 162, - y: 247, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 55, - x: 31, - y: 287, - a: 0 - }, { - name: 55, - x: 289, - y: 211, - a: 180 - }, { - name: 3, - x: 223, - y: 234, - timeout: -1 - }, { - name: 3, - x: 98, - y: 153, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 215, - y: 210 - }, { - name: 2, - x: 190, - y: 322 - }, { - name: 55, - x: 284, - y: 208, - a: -180 - }, { - name: 100, - x: 222, - y: 82, - length: 90, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 101, - y: 209, - length: 95, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 99, - y: 253, - timeout: -1 - }, { - name: 3, - x: 98, - y: 345, - timeout: -1 - }, { - name: 3, - x: 98, - y: 82, - timeout: -1 - }, { - name: 55, - x: 37, - y: 343, - a: 0 - }, { - name: 57, - x: 37, - y: 257, - a: 0, - size: 1 - }, { - name: 54, - x: 97, - y: 144 - }, { - name: 60, - x: 220, - y: 256, - a: 0, - size: 4 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 100, - x: 67, - y: 254, - length: 100, - c: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 133, - y: 252, - length: 100, - c: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 2, - x: 237, - y: 98 - }, { - name: 100, - x: 264, - y: 251, - length: 100, - c: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 55, - x: 29, - y: 333, - a: 0 - }, { - name: 52, - x: 109, - y: 154 - }, { - name: 100, - x: 70, - y: 62, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 164, - y: 62, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 33, - y: 281, - timeout: -1 - }, { - name: 3, - x: 291, - y: 285, - timeout: -1 - }, { - name: 3, - x: 236, - y: 394, - timeout: -1 - }, { - name: 54, - x: 235, - y: 394 - }, { - name: 100, - x: 198, - y: 253, - length: 100, - c: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 85, - y: 112 - }, { - name: 2, - x: 56, - y: 414 - }, { - name: 100, - x: 163, - y: 114, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 86, - y: 46, - length: 45, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 163, - y: 45, - length: 120, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 164, - y: 192, - length: 170, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 60, - x: 98, - y: 228, - a: 0, - size: 4 - }, { - name: 60, - x: 221, - y: 355, - a: 0, - size: 4 - }, { - name: 3, - x: 260, - y: 229, - timeout: -1 - }, { - name: 3, - x: 58, - y: 279, - timeout: -1 - }, { - name: 3, - x: 189, - y: 416, - timeout: -1 - }, { - name: 55, - x: 260, - y: 410, - a: 180 - }, { - name: 58, - x: 304, - y: 402, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 219, - y: 433 - }, { - name: 54, - x: 103, - y: 176 - }, - { - name: 54, - x: 159, - y: 178 - }, { - name: 54, - x: 215, - y: 178 - }, { - name: 54, - x: 103, - y: 242 - }, { - name: 54, - x: 159, - y: 244 - }, { - name: 54, - x: 215, - y: 244 - }, { - name: 54, - x: 103, - y: 308 - }, { - name: 54, - x: 159, - y: 310 - }, { - name: 54, - x: 215, - y: 310 - }, { - name: 54, - x: 105, - y: 373 - }, { - name: 54, - x: 161, - y: 375 - }, { - name: 54, - x: 217, - y: 375 - }, { - name: 54, - x: 101, - y: 109 - }, { - name: 54, - x: 217, - y: 110 - }, { - name: 3, - x: 102, - y: 110, - timeout: -1 - }, { - name: 3, - x: 215, - y: 244, - timeout: -1 - }, { - name: 3, - x: 106, - y: 372, - timeout: -1 - }, { - name: 52, - x: 157, - y: 97 - }, { - name: 55, - x: 43, - y: 376, - a: -20 - }, { - name: 55, - x: 42, - y: 247, - a: -20 - }, { - name: 55, - x: 278, - y: 245, - a: 200 - }, { - name: 55, - x: 278, - y: 374, - a: 200 - }, { - name: 54, - x: 47, - y: 308 - }, { - name: 54, - x: 271, - y: 310 - }, { - name: 54, - x: 271, - y: 178 - }, { - name: 54, - x: 46, - y: 176 - }, { - name: 100, - x: 163, - y: 33, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 274, - y: 110 - }, { - name: 54, - x: 44, - y: 108 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 321, - y: 213 - }, { - name: 2, - x: 431, - y: 386 - }, { - name: 100, - x: 323, - y: 47, - length: 130, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 183, - y: 224, - a: 0 - }, { - name: 100, - x: 323, - y: 167, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, - { - name: 100, - x: 323, - y: 105, - length: 170, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 320, - y: 399, - timeout: -1 - }, { - name: 57, - x: 323, - y: 347, - a: 0, - size: 1 - }, { - name: 3, - x: 422, - y: 161, - timeout: -1 - }, { - name: 3, - x: 322, - y: 302, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 254, - y: 361 - }, { - name: 100, - x: 259, - y: 445, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 397, - y: 61, - timeout: -1 - }, { - name: 3, - x: 394, - y: 348, - timeout: -1 - }, { - name: 54, - x: 253, - y: 357 - }, { - name: 60, - x: 323, - y: 249, - a: 0, - size: 4, - path: "0,0", - r: 70, - v: !1 - }, { - name: 55, - x: 210, - y: 154, - a: 0 - }, { - name: 2, - x: 395, - y: 418 - }, { - name: 3, - x: 274, - y: 153, - timeout: -1 - }, { - name: 100, - x: 397, - y: 147, - length: 100, - c: !1, - i: !1, - d: 35, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 250, - y: 125 - }, { - name: 2, - x: 318, - y: 431 - }, { - name: 100, - x: 249, - y: 46, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 317, - y: 225, - length: 70, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 57, - x: 375, - y: 406, - a: 90, - size: 1 - }, { - name: 57, - x: 256, - y: 407, - a: 90, - size: 1 - }, { - name: 4, - x: 211, - y: 300, - locale: "en", - text: "Cut the rope before the spider reaches the candy", - width: 240 - }, { - name: 13, - x: 194, - y: 335, - locale: "en", - j: 100, - r: 100 - }, { - name: 3, - x: 268, - y: 223, - timeout: -1 - }, { - name: 3, - x: 410, - y: 287, - timeout: -1 - }, { - name: 3, - x: 317, - y: 377, - timeout: -1 - }], - u: [{ - name: 4, - x: 48, - y: 271, - locale: "ru", - text: "\u041f\u0435\u0440\u0435\u0440\u0435\u0436\u044c\u0442\u0435 \u0432\u0435\u0440\u0435\u0432\u043a\u0443 \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0430\u0443\u0447\u043e\u043a \u0434\u043e\u0431\u0435\u0440\u0435\u0442\u0441\u044f \u0434\u043e \u043b\u0435\u0434\u0435\u043d\u0446\u0430", - width: 200 - }, { - name: 13, - x: 35, - y: 317, - locale: "ru", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 56, - y: 299, - locale: "fr", - text: "Coupe la corde avant que l'araign\u00e9e n'atteigne le bonbon", - width: 240 - }, { - name: 13, - x: 39, - y: 334, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 79, - y: 287, - locale: "de", - text: "Schneide das Seil durch, bevor die Spinne am Bonbon ist", - width: 170 - }, { - name: 13, - x: 150, - y: 276, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 442, - y: 421 - }, { - name: 52, - x: 181, - y: 172 - }, { - name: 100, - x: 345, - y: 136, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 185, - y: 79, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 259, - y: 245, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 3, - x: 256, - y: 127, - timeout: -1 - }, { - name: 3, - x: 434, - y: 336, - timeout: -1 - }, { - name: 3, - x: 257, - y: 335, - timeout: -1 - }, { - name: 54, - x: 345, - y: 307 - }, { - name: 100, - x: 436, - y: 243, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 85, - y: 335, - length: 44, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 86, - y: 196, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 240, - y: 195, - length: 49, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 239, - y: 335, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 70, - y: 392 - }, { - name: 52, - x: 163, - y: 270 - }, { - name: 3, - x: 255, - y: 148, - timeout: -1 - }, { - name: 3, - x: 258, - y: 266, - timeout: -1 - }, { - name: 57, - x: 162, - y: 294, - a: 0, - size: 1, - v: !1 - }, { - name: 3, - x: 67, - y: 265, - timeout: -1 - }, { - name: 100, - x: 168, - y: 144, - length: 100, - c: !1, - i: !1, - d: 73, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L", - q: !1 - }, { - name: 57, - x: 163, - y: 241, - a: 0, - size: 1, - v: !1 - }, { - name: 54, - x: 246, - y: 408 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 54, - x: 109, - y: 257 - }, { - name: 55, - x: 66, - y: 72, - a: 50 - }, { - name: 3, - x: 208, - y: 191, - timeout: -1 - }, { - name: 3, - x: 385, - y: 195, - timeout: -1 - }, { - name: 3, - x: 546, - y: 192, - timeout: -1 - }, { - name: 2, - x: 458, - y: 416 - }, { - name: 52, - x: 111, - y: 174 - }, { - name: 100, - x: 113, - y: 83, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 161, - y: 72, - a: 50 - }, { - name: 55, - x: 258, - y: 73, - a: 50 - }, { - name: 55, - x: 349, - y: 73, - a: 50 - }, - { - name: 100, - x: 47, - y: 154, - length: 460, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 55, - x: 437, - y: 73, - a: 50 - }, { - name: 60, - x: 582, - y: 203, - a: 90, - size: 4 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 54, - x: 210, - y: 315 - }, { - name: 54, - x: 311, - y: 420 - }, { - name: 100, - x: 312, - y: 318, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 54, - x: 311, - y: 210 - }, { - name: 3, - x: 403, - y: 167, - timeout: -1 - }, { - name: 3, - x: 216, - y: 314, - timeout: -1 - }, { - name: 3, - x: 410, - y: 313, - timeout: -1 - }, { - name: 2, - x: 318, - y: 41 - }, { - name: 54, - x: 239, - y: 242 - }, { - name: 54, - x: 239, - y: 387 - }, - { - name: 100, - x: 231, - y: 35, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 315, - y: 121 - }, { - name: 100, - x: 416, - y: 35, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 164, - y: 275 - }, { - name: 100, - x: 167, - y: 120, - length: 90, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 165, - y: 341, - length: 10, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 39, - y: 119, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 291, - y: 116, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 2, - x: 160, - y: 435 - }, { - name: 3, - x: 238, - y: 132, - timeout: -1 - }, { - name: 3, - x: 170, - y: 51, - timeout: -1 - }, { - name: 3, - x: 63, - y: 327, - timeout: -1 - }, { - name: 100, - x: 75, - y: 260, - length: 100, - c: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !0 - }, { - name: 100, - x: 251, - y: 260, - length: 100, - c: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 290, - y: 435 - }, { - name: 52, - x: 290, - y: 203 - }, { - name: 3, - x: 193, - y: 197, - timeout: -1 - }, { - name: 3, - x: 225, - y: 197, - timeout: -1 - }, { - name: 55, - x: 365, - y: 198, - a: 180 - }, { - name: 3, - x: 290, - y: 384, - timeout: -1 - }, { - name: 100, - x: 291, - y: 26, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 292, - y: 341, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 59, - x: 250, - y: 156, - a: 0, - size: 3 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 401, - y: 419 - }, { - name: 3, - x: 226, - y: 158, - timeout: -1 - }, { - name: 3, - x: 402, - y: 160, - timeout: -1 - }, { - name: 55, - x: 142, - y: 160, - a: 0 - }, { - name: 3, - x: 529, - y: 158, - timeout: -1 - }, { - name: 54, - x: 400, - y: 347 - }, { - name: 54, - x: 314, - y: 346 - }, { - name: 52, - x: 528, - y: 225 - }, { - name: 100, - x: 529, - y: 87, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 306, - y: 87, - length: 250, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 529, - y: 352, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 224, - y: 199 - }, { - name: 100, - x: 223, - y: 113, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 385, - y: 436 - }, { - name: 3, - x: 384, - y: 349, - timeout: 17 - }, { - name: 3, - x: 222, - y: 64, - timeout: 4 - }, { - name: 3, - x: 388, - y: 165, - timeout: 9 - }, { - name: 54, - x: 222, - y: 348 - }, { - name: 55, - x: 225, - y: 442, - a: -90 - }, { - name: 100, - x: 304, - y: 66, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 4, - x: 176, - y: 215, - locale: "en", - text: "Some stars require fast actions to be collected", - width: 250 - }, { - name: 13, - x: 167, - y: 252, - locale: "en", - j: 100, - r: 100 - }], - u: [{ - name: 13, - x: 65, - y: 259, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 80, - y: 213, - locale: "ru", - text: "\u041d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0437\u0432\u0435\u0437\u0434\u044b \u043f\u0440\u043e\u043f\u0430\u0434\u0430\u044e\u0442 \u0435\u0441\u043b\u0438 \u0432\u044b \u043d\u0435 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0431\u044b\u0441\u0442\u0440\u044b", - width: 200 - }], - t: [{ - name: 4, - x: 46, - y: 213, - locale: "fr", - text: "Il est n\u00e9cessaire d'agir rapidement pour collecter certaines \u00e9toiles", - width: 240 - }, { - name: 13, - x: 40, - y: 256, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 60, - y: 207, - locale: "de", - text: "Bei einigen Sternchen musst Du beim Einsammeln schnell sein", - width: 250 - }, { - name: 13, - x: 43, - y: 251, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 64, - y: 120 - }, { - name: 100, - x: 67, - y: 68, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 162, - y: 65, - length: 160, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 257, - y: 905 - }, { - name: 3, - x: 38, - y: 619, - timeout: 6 - }, { - name: 3, - x: 284, - y: 402, - timeout: 5 - }, { - name: 100, - x: 160, - y: 289, - length: 90, - c: !1, - i: !1, - d: 105, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L", - q: !1 - }, { - name: 100, - x: 160, - y: 511, - length: 90, - c: !1, - i: !1, - d: 105, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L", - q: !1 - }, { - name: 100, - x: 160, - y: 733, - length: 90, - c: !1, - i: !1, - d: 105, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L", - q: !1 - }, { - name: 57, - x: 162, - y: 344, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 164, - y: 564, - a: 90, - size: 1, - v: !1 - }, { - name: 3, - x: 35, - y: 820, - timeout: 8 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 54, - x: 228, - y: 119 - }, { - name: 54, - x: 403, - y: 124 - }, { - name: 54, - x: 225, - y: 186 - }, { - name: 54, - x: 405, - y: 189 - }, { - name: 54, - x: 225, - y: 252 - }, { - name: 54, - x: 405, - y: 253 - }, { - name: 54, - x: 223, - y: 318 - }, { - name: 54, - x: 403, - y: 319 - }, { - name: 55, - x: 478, - y: 126, - a: 180 - }, { - name: 2, - x: 222, - y: 417 - }, { - name: 52, - x: 404, - y: 324 - }, { - name: 3, - x: 224, - y: 319, - timeout: 8 - }, { - name: 3, - x: 228, - y: 119, - timeout: 9 - }, { - name: 3, - x: 404, - y: 124, - timeout: 7 - }, { - name: 100, - x: 403, - y: 434, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 60, - x: 316, - y: 251, - a: 90, - size: 4 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 524, - y: 12 - }, { - name: 2, - x: 243, - y: 74 - }, { - name: 54, - x: 392, - y: 310 - }, { - name: 100, - x: 441, - y: 207, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 386, - y: 84, - timeout: 6 - }, { - name: 100, - x: 301, - y: 375, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 175, - y: 374 - }, { - name: 3, - x: 385, - y: 375, - timeout: -1 - }, { - name: 3, - x: 244, - y: 237, - timeout: 10 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 353, - y: 42 - }, { - name: 100, - x: 201, - y: 135, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 231, - y: 263, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 370, - y: 320, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 289, - y: 424 - }, { - name: 3, - x: 448, - y: 278, - timeout: -1 - }, { - name: 3, - x: 278, - y: 212, - timeout: 10 - }, { - name: 52, - x: 349, - y: 187 - }, { - name: 100, - x: 420, - y: 69, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 290, - y: 424, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 195, - y: 258, - length: 100, - c: !1, - i: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: "flase", - h: "L" - }, { - name: 3, - x: 194, - y: 371, - timeout: 10 - }, { - name: 54, - x: 194, - y: 432 - }, { - name: 2, - x: 70, - y: 273 - }, { - name: 3, - x: 77, - y: 191, - timeout: -1 - }, { - name: 55, - x: 284, - y: 146, - a: 180 - }, { - name: 3, - x: 289, - y: 76, - timeout: -1 - }, { - name: 52, - x: 195, - y: 140 - }, { - name: 100, - x: 194, - y: 34, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 126, - y: 274, - a: 90, - size: 2 - }, { - name: 58, - x: 255, - y: 274, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 146, - y: 415 - }, { - name: 52, - x: 299, - y: 248 - }, { - name: 3, - x: 300, - y: 141, - timeout: -1 - }, { - name: 3, - x: 301, - y: 70, - timeout: -1 - }, { - name: 3, - x: 299, - y: 374, - timeout: -1 - }, { - name: 100, - x: 234, - y: 68, - length: 100, - c: !1, - i: !1, - d: 63, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 368, - y: 68, - length: 100, - c: !1, - i: !1, - d: 63, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 55, - x: 301, - y: 444, - a: 270 - }, { - name: 100, - x: 233, - y: 156, - length: 85, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 369, - y: 155, - length: 85, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 299, - y: 198, - a: 270 - }, { - name: 55, - x: 300, - y: 318, - a: 270 - }] - }, - { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 447, - y: 224, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 228, - y: 42, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 195, - y: 218, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 78, - y: 319, - a: 0 - }, { - name: 55, - x: 557, - y: 315, - a: 180 - }, { - name: 2, - x: 318, - y: 426 - }, { - name: 52, - x: 320, - y: 185 - }, { - name: 3, - x: 485, - y: 222, - timeout: -1 - }, { - name: 3, - x: 320, - y: 350, - timeout: -1 - }, { - name: 3, - x: 159, - y: 220, - timeout: -1 - }, { - name: 100, - x: 416, - y: 40, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1 - }], - n: [{ - name: 52, - x: 157, - y: 130 - }, { - name: 2, - x: 163, - y: 251 - }, { - name: 3, - x: 34, - y: 255, - timeout: -1 - }, { - name: 54, - x: 161, - y: 128 - }, { - name: 3, - x: 290, - y: 256, - timeout: -1 - }, { - name: 100, - x: 164, - y: 257, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 55, - x: 92, - y: 120, - a: 0 - }, { - name: 55, - x: 209, - y: 362, - a: 180 - }, { - name: 3, - x: 119, - y: 159, - timeout: 4 - }] - } - ] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 63, - y: 376 - }, { - name: 2, - x: 68, - y: 101 - }, { - name: 3, - x: 177, - y: 185, - timeout: -1 - }, { - name: 3, - x: 162, - y: 376, - timeout: -1 - }, { - name: 3, - x: 271, - y: 106, - timeout: -1 - }, { - name: 100, - x: 65, - y: 239, - length: 100, - c: !1, - i: !1, - d: -1, - e: 200, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 266, - y: 377 - }, { - name: 4, - x: 64, - y: 264, - locale: "en", - text: "Some rope hooks can be moved with the cursor", - width: 200 - }, { - name: 8, - x: 48, - y: 284, - locale: "en", - a: 130, - j: 100, - r: 100 - }], - u: [{ - name: 8, - x: 54, - y: 290, - locale: "ru", - a: 130, - j: 100, - r: 100 - }, { - name: 4, - x: 57, - y: 274, - locale: "ru", - text: "\u0422\u0430\u043a\u0438\u0435 \u043a\u0440\u0435\u043f\u0435\u0436\u0438 \u043c\u043e\u0436\u043d\u043e \u0434\u0432\u0438\u0433\u0430\u0442\u044c \u043a\u0443\u0440\u0441\u043e\u0440\u043e\u043c", - width: 200 - }], - t: [{ - name: 8, - x: 48, - y: 285, - locale: "fr", - a: 130, - j: 100, - r: 100 - }, { - name: 4, - x: 64, - y: 269, - locale: "fr", - text: "Tu peux d\u00e9placer certains crochets de corde avec le courseur", - width: 220 - }], - s: [{ - name: 8, - x: 50, - y: 290, - locale: "de", - a: 130, - j: 100, - r: 100 - }, { - name: 4, - x: 67, - y: 272, - locale: "de", - text: "Einige Seilhaken kannst du mit dem Kursor verschieben", - width: 230 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 228, - y: 138 - }, { - name: 2, - x: 83, - y: 389 - }, { - name: 100, - x: 148, - y: 166, - length: 290, - c: !1, - d: -1, - e: 110, - g: !0, - f: 110, - b: !1 - }, { - name: 100, - x: 226, - y: 56, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 60, - x: 188, - y: 464, - a: 0, - size: 4 - }, { - name: 3, - x: 186, - y: 437, - timeout: -1 - }, { - name: 57, - x: 150, - y: 344, - a: 0, - size: 1 - }, { - name: 3, - x: 172, - y: 436, - timeout: -1 - }, { - name: 3, - x: 203, - y: 436, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1 - }], - n: [{ - name: 52, - x: 244, - y: 313 - }, { - name: 2, - x: 242, - y: 74 - }, { - name: 100, - x: 94, - y: 355, - length: 60, - c: !1, - d: 60, - e: 50, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 202, - y: 195, - length: 110, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 292, - y: 194, - length: 110, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 95, - y: 159, - length: 60, - c: !1, - d: 60, - e: 50, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 157, - y: 203, - timeout: -1 - }, { - name: 3, - x: 77, - y: 259, - timeout: -1 - }, { - name: 3, - x: 194, - y: 125, - timeout: -1 - }, { - name: 54, - x: 100, - y: 450 - }, { - name: 55, - x: 33, - y: 70, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 63, - y: 54 - }, { - name: 54, - x: 266, - y: 421 - }, { - name: 52, - x: 41, - y: 431 - }, { - name: 100, - x: 48, - y: 290, - length: 100, - c: !1, - d: -1, - e: 220, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 195, - y: 168, - timeout: -1 - }, { - name: 3, - x: 129, - y: 199, - timeout: -1 - }, { - name: 3, - x: 253, - y: 142, - timeout: -1 - }, { - name: 60, - x: 205, - y: 125, - a: 160, - size: 4 - }, { - name: 60, - x: 150, - y: 234, - a: 160, - size: 4 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 157, - y: 436 - }, { - name: 52, - x: 104, - y: 162 - }, { - name: 3, - x: 41, - y: 176, - timeout: -1 - }, { - name: 3, - x: 134, - y: 254, - timeout: -1 - }, { - name: 3, - x: 234, - y: 352, - timeout: -1 - }, { - name: 100, - x: 107, - y: 68, - length: 60, - c: !1, - d: -1, - e: 90, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 105, - y: 161, - length: 60, - c: !1, - d: -1, - e: 90, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 108, - y: 315, - length: 60, - c: !1, - d: 60, - e: 90, - g: !1, - f: 0, - b: !1 - }, { - name: 60, - x: 298, - y: 373, - a: 270, - size: 4 - }, { - name: 58, - x: 71, - y: 108, - a: 270, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 284, - y: 413 - }, { - name: 100, - x: 37, - y: 70, - length: 30, - c: !1, - d: -1, - e: 250, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 288, - y: 196, - length: 30, - c: !1, - d: 25, - e: 250, - g: !1, - f: 250, - b: !1, - h: "L" - }, { - name: 58, - x: 159, - y: 161, - a: 0, - size: 2 - }, { - name: 58, - x: 161, - y: 295, - a: 0, - size: 2 - }, { - name: 3, - x: 160, - y: 125, - timeout: 5 - }, { - name: 3, - x: 165, - y: 257, - timeout: 8 - }, { - name: 52, - x: 36, - y: 135 - }, { - name: 100, - x: 39, - y: 323, - length: 30, - c: !1, - d: 25, - e: 250, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 162, - y: 425, - a: 0, - size: 2 - }, { - name: 3, - x: 163, - y: 386, - timeout: 12 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 161, - y: 842 - }, { - name: 3, - x: 174, - y: 356, - timeout: -1 - }, { - name: 3, - x: 139, - y: 599, - timeout: -1 - }, { - name: 100, - x: 162, - y: 751, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 161, - y: 906 - }, { - name: 100, - x: 98, - y: 755, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 196, - y: 517, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 115, - y: 223, - length: 70, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 57, - x: 94, - y: 600, - a: 90, - size: 1 - }, { - name: 57, - x: 179, - y: 600, - a: 90, - size: 1 - }, { - name: 57, - x: 212, - y: 357, - a: 90, - size: 1 - }, { - name: 57, - x: 125, - y: 357, - a: 90, - size: 1 - }, { - name: 2, - x: 256, - y: 896 - }, { - name: 57, - x: 302, - y: 359, - a: 90, - size: 1 - }, { - name: 3, - x: 261, - y: 355, - timeout: -1 - }, { - name: 100, - x: 285, - y: 99, - length: 100, - c: !1, - i: !1, - d: 40, - e: 250, - g: !1, - f: 250, - b: !1, - h: "L" - }, { - name: 59, - x: 91, - y: 41, - a: 0, - size: 3 - }, { - name: 59, - x: 227, - y: 41, - a: 0, - size: 3 - }, { - name: 57, - x: 42, - y: 357, - a: 90, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 160, - y: 160 - }, { - name: 100, - x: 162, - y: 49, - length: 60, - c: !1, - d: -1, - e: 60, - g: !1, - f: 30, - b: !1 - }, { - name: 100, - x: 162, - y: 270, - length: 70, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 66, - y: 159, - timeout: -1 - }, { - name: 3, - x: 256, - y: 160, - timeout: -1 - }, { - name: 2, - x: 162, - y: 444 - }, { - name: 58, - x: 135, - y: 334, - a: 270, - size: 2 - }, { - name: 58, - x: 188, - y: 336, - a: 270, - size: 2 - }, { - name: 58, - x: 101, - y: 429, - a: 270, - size: 2 - }, { - name: 58, - x: 224, - y: 430, - a: 270, - size: 2 - }, { - name: 3, - x: 161, - y: 354, - timeout: 8 - }, { - name: 57, - x: 159, - y: 114, - a: 0, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 289, - y: 528 - }, { - name: 2, - x: 58, - y: 416 - }, { - name: 54, - x: 289, - y: 528 - }, { - name: 100, - x: 292, - y: 324, - length: 100, - c: !1, - i: !1, - d: 30, - e: 350, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 292, - y: 191, - length: 100, - c: !1, - i: !1, - d: 30, - e: 350, - g: !1, - f: 350, - b: !1, - h: "L" - }, { - name: 3, - x: 290, - y: 42, - timeout: 10 - }, { - name: 3, - x: 61, - y: 259, - timeout: -1 - }, { - name: 3, - x: 576, - y: 258, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 160, - y: 305 - }, { - name: 2, - x: 62, - y: 161 - }, { - name: 100, - x: 163, - y: 364, - length: 30, - c: !1, - d: -1, - e: 100, - g: !0, - f: 0, - b: !1 - }, { - name: 100, - x: 163, - y: 182, - length: 90, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 60, - x: 156, - y: 47, - a: 0, - size: 4 - }, { - name: 100, - x: 66, - y: 71, - length: 80, - c: !1, - d: 50, - e: 260, - g: !1, - f: 30, - b: !1 - }, { - name: 58, - x: 62, - y: 217, - a: 0, - size: 2 - }, { - name: 3, - x: 248, - y: 183, - timeout: -1 - }, { - name: 3, - x: 266, - y: 152, - timeout: -1 - }, { - name: 3, - x: 282, - y: 182, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 160, - y: 176 - }, { - name: 2, - x: 264, - y: 905 - }, { - name: 100, - x: 52, - y: 112, - length: 160, - c: !1, - d: -1, - e: 600, - g: !0, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 278, - y: 115, - length: 160, - c: !1, - d: -1, - e: 600, - g: !0, - f: 0, - b: !0, - h: "L" - }, { - name: 3, - x: 84, - y: 319, - timeout: -1 - }, { - name: 3, - x: 243, - y: 526, - timeout: -1 - }, { - name: 3, - x: 86, - y: 705, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 299, - y: 421 - }, { - name: 52, - x: 143, - y: 135 - }, { - name: 3, - x: 139, - y: 290, - path: "-100,0", - j: 50, - timeout: -1 - }, { - name: 3, - x: 139, - y: 389, - path: "100,0", - j: 50, - timeout: -1 - }, { - name: 3, - x: 138, - y: 340, - timeout: -1 - }, { - name: 100, - x: 72, - y: 38, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 229, - y: 41, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 397, - y: 44, - length: 380, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 59, - x: 146, - y: 200, - a: 0, - size: 3 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 126, - y: 247 - }, { - name: 2, - x: 131, - y: 48 - }, { - name: 3, - x: 209, - y: 54, - timeout: -1 - }, { - name: 3, - x: 208, - y: 177, - timeout: -1 - }, { - name: 3, - x: 210, - y: 269, - timeout: -1 - }, { - name: 100, - x: 130, - y: 166, - length: 80, - c: !1, - i: !1, - d: -1, - e: 230, - g: !0, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 131, - y: 438 - }, { - name: 55, - x: 70, - y: 379, - a: 0 - }, { - name: 59, - x: 166, - y: 221, - a: 90, - size: 3, - v: !1 - }, { - name: 59, - x: 251, - y: 219, - a: 90, - size: 3, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 28, - y: 122 - }, { - name: 100, - x: 33, - y: 51, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 229, - y: 427 - }, { - name: 100, - x: 95, - y: 220, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 3, - x: 289, - y: 303, - timeout: -1 - }, { - name: 100, - x: 227, - y: 221, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 3, - x: 32, - y: 220, - timeout: -1 - }, { - name: 80, - x: 225, - y: 368, - X: 0, - Y: 2, - Z: 2, - a: 0, - size: 5 - }, { - name: 3, - x: 160, - y: 285, - timeout: -1 - }, { - name: 4, - x: 20, - y: 366, - locale: "en", - text: "Avoid the electric sparks", - width: 140 - }, { - name: 10, - x: 89, - y: 350, - locale: "en", - j: 100, - r: 100 - }], - u: [{ - name: 10, - x: 88, - y: 351, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 19, - y: 367, - locale: "ru", - text: "\u0418\u0437\u0431\u0435\u0433\u0430\u0439\u0442\u0435 \u044d\u043b\u0435\u043a\u0442\u0440\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u0438\u0441\u043a\u0440", - width: 140 - }], - t: [{ - name: 10, - x: 89, - y: 335, - locale: "fr", - j: 100, - r: 100 - }, { - name: 4, - x: 20, - y: 351, - locale: "fr", - text: "\u00c9vite les \u00e9tincelles \u00e9lectriques", - width: 140 - }], - s: [{ - name: 10, - x: 89, - y: 359, - locale: "de", - j: 100, - r: 100 - }, { - name: 4, - x: 3, - y: 366, - locale: "de", - text: "Schneide das Seil durch, bevor die Spinne am Bonbon ist", - width: 180 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 127, - y: 340 - }, { - name: 3, - x: 253, - y: 331, - timeout: -1 - }, { - name: 3, - x: 127, - y: 169, - timeout: -1 - }, { - name: 3, - x: 259, - y: 127, - timeout: -1 - }, { - name: 54, - x: 128, - y: 434 - }, { - name: 100, - x: 129, - y: 262, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 55, - x: 44, - y: 176, - a: 0 - }, { - name: 55, - x: 126, - y: 66, - a: 90 - }, { - name: 100, - x: 259, - y: 176, - length: 100, - c: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 2, - x: 250, - y: 425 - }, { - name: 80, - x: 190, - y: 173, - X: -2, - Y: 2, - Z: 2, - a: 90, - size: 5 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 316, - y: 430 - }, { - name: 52, - x: 314, - y: 334 - }, { - name: 100, - x: 317, - y: 195, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 199, - y: 401, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 434, - y: 405, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 437, - y: 180, - timeout: -1 - }, { - name: 3, - x: 203, - y: 181, - timeout: -1 - }, { - name: 3, - x: 316, - y: 375, - timeout: -1 - }, { - name: 80, - x: 318, - y: 102, - X: 0, - Y: 1.4, - Z: 0.5, - a: 90, - size: 5 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 324, - y: 442 - }, { - name: 80, - x: 405, - y: 198, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 100, - x: 501, - y: 299, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 328, - y: 297, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 152, - y: 299, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 55, - x: 417, - y: 385, - a: 180 - }, { - name: 3, - x: 404, - y: 151, - path: "0,150", - j: 30, - timeout: -1 - }, - { - name: 52, - x: 328, - y: 131 - }, { - name: 55, - x: 240, - y: 388, - a: 0 - }, { - name: 3, - x: 245, - y: 150, - path: "0,150", - j: 30, - timeout: -1 - }, { - name: 80, - x: 244, - y: 197, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 3, - x: 332, - y: 25, - path: "0,150", - j: 30, - timeout: -1 - }, { - name: 100, - x: 248, - y: 18, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 413, - y: 20, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 315, - y: 88 - }, { - name: 100, - x: 318, - y: 174, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 315, - y: 88 - }, { - name: 80, - x: 318, - y: 206, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 55, - x: 317, - y: 261, - a: 90 - }, { - name: 80, - x: 319, - y: 388, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 2, - x: 458, - y: 180 - }, { - name: 3, - x: 320, - y: 419, - timeout: -1 - }, { - name: 3, - x: 321, - y: 465, - timeout: -1 - }, { - name: 55, - x: 202, - y: 98, - a: 0 - }, { - name: 3, - x: 458, - y: 80, - timeout: -1 - }, { - name: 54, - x: 319, - y: 341 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 277, - y: 432 - }, { - name: 80, - x: 273, - y: 389, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 270, - y: 159, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 3, - x: 296, - y: 260, - timeout: -1 - }, { - name: 3, - x: 355, - y: 259, - timeout: -1 - }, { - name: 3, - x: 306, - y: 46, - timeout: -1 - }, { - name: 100, - x: 421, - y: 61, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 420, - y: 150 - }, { - name: 55, - x: 121, - y: 360, - a: 0 - }, { - name: 55, - x: 521, - y: 153, - a: 180 - }, { - name: 100, - x: 228, - y: 256, - length: 100, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 253, - y: 31, - length: 80, - c: !1, - i: !1, - d: -1, - e: 80, - g: !0, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 319, - y: 409 - }, { - name: 100, - x: 386, - y: 28, - length: 80, - c: !1, - i: !1, - d: -1, - e: 80, - g: !0, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 254, - y: 268, - length: 60, - c: !1, - i: !1, - d: 70, - e: 80, - g: !0, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 386, - y: 267, - length: 60, - c: !1, - i: !1, - d: 70, - e: 80, - g: !0, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 319, - y: 118 - }, { - name: 80, - x: 317, - y: 156, - X: -2, - Y: 2, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 321, - y: 370, - X: 0, - Y: 2, - Z: 2, - a: 0, - size: 5 - }, { - name: 3, - x: 317, - y: 192, - timeout: -1 - }, { - name: 3, - x: 318, - y: 332, - timeout: -1 - }, { - name: 3, - x: 319, - y: 265, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 619, - y: 411 - }, { - name: 52, - x: 166, - y: 266 - }, { - name: 54, - x: 167, - y: 265 - }, { - name: 100, - x: 168, - y: 337, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 55, - x: 96, - y: 145, - a: 0 - }, { - name: 54, - x: 223, - y: 144 - }, { - name: 54, - x: 279, - y: 146 - }, { - name: 54, - x: 333, - y: 209 - }, { - name: 55, - x: 235, - y: 209, - a: 0 - }, { - name: 54, - x: 165, - y: 143 - }, { - name: 54, - x: 334, - y: 146 - }, { - name: 54, - x: 391, - y: 146 - }, { - name: 54, - x: 223, - y: 264 - }, { - name: 54, - x: 278, - y: 265 - }, { - name: 54, - x: 448, - y: 147 - }, { - name: 54, - x: 449, - y: 270 - }, { - name: 54, - x: 333, - y: 332 - }, { - name: 54, - x: 392, - y: 334 - }, { - name: 55, - x: 339, - y: 268, - a: 0 - }, { - name: 54, - x: 504, - y: 272 - }, { - name: 54, - x: 504, - y: 148 - }, { - name: 54, - x: 561, - y: 149 - }, { - name: 54, - x: 559, - y: 273 - }, { - name: 54, - x: 559, - y: 333 - }, { - name: 55, - x: 456, - y: 335, - a: 0 - }, { - name: 3, - x: 278, - y: 267, - timeout: -1 - }, { - name: 3, - x: 447, - y: 209, - timeout: -1 - }, { - name: 3, - x: 560, - y: 150, - timeout: -1 - }, { - name: 54, - x: 166, - y: 204 - }, { - name: 54, - x: 109, - y: 201 - }, { - name: 54, - x: 109, - y: 262 - }, { - name: 54, - x: 110, - y: 326 - }, { - name: 54, - x: 224, - y: 329 - }, { - name: 54, - x: 279, - y: 329 - }, { - name: 54, - x: 391, - y: 208 - }, { - name: 54, - x: 449, - y: 209 - }, { - name: 54, - x: 505, - y: 211 - }, { - name: 54, - x: 560, - y: 211 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 133, - y: 42, - length: 40, - c: !1, - i: !1, - d: -1, - e: 200, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 132, - y: 363, - length: 40, - c: !1, - i: !1, - d: 30, - e: 350, - g: !1, - b: !1, - h: "L" - }, { - name: 2, - x: 476, - y: 56 - }, { - name: 54, - x: 478, - y: 422 - }, { - name: 3, - x: 132, - y: 277, - timeout: -1 - }, { - name: 80, - x: 480, - y: 184, - X: 0, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 52, - x: 134, - y: 126 - }, { - name: 59, - x: 374, - y: 120, - a: 270, - size: 3 - }, { - name: 100, - x: 134, - y: 201, - length: 40, - c: !1, - i: !1, - d: -1, - e: 200, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 226, - y: 280, - a: 270, - size: 2 - }, { - name: 3, - x: 293, - y: 280, - timeout: -1 - }, { - name: 3, - x: 302, - y: 123, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, - { - name: 1, - k: 1, - o: 1, - l: !1 - } - ], - n: [{ - name: 2, - x: 435, - y: 40 - }, { - name: 80, - x: 207, - y: 111, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 438, - y: 321, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 207, - y: 220, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 435, - y: 220, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 208, - y: 322, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 437, - y: 110, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 54, - x: 321, - y: 360 - }, { - name: 52, - x: 319, - y: 360 - }, { - name: 100, - x: 321, - y: 442, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 328, - y: 275, - timeout: -1 - }, { - name: 3, - x: 408, - y: 148, - timeout: -1 - }, - { - name: 3, - x: 247, - y: 150, - timeout: -1 - }, { - name: 100, - x: 251, - y: 272, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 399, - y: 271, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 323, - y: 143, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 402, - y: 269 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 207, - y: 110 - }, { - name: 2, - x: 477, - y: 419 - }, { - name: 100, - x: 304, - y: 41, - length: 120, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 465, - y: 38, - length: 250, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 208, - y: 39, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 478, - y: 322 - }, { - name: 59, - x: 329, - y: 167, - a: 120, - size: 3, - path: "0,0", - r: 20 - }, { - name: 59, - x: 254, - y: 294, - a: 120, - size: 3, - path: "0,0", - r: 20 - }, { - name: 100, - x: 478, - y: 323, - length: 100, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 339, - y: 272, - timeout: -1 - }, { - name: 3, - x: 477, - y: 145, - timeout: -1 - }, { - name: 3, - x: 264, - y: 217, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 80, - x: 184, - y: 339, - X: 0, - Y: 0, - Z: 8, - a: 0, - size: 5, - path: "-1,500", - j: 50 - }, { - name: 54, - x: 184, - y: 306 - }, { - name: 52, - x: 178, - y: 178 - }, { - name: 55, - x: 184, - y: 249, - a: 90 - }, { - name: 55, - x: 183, - y: 362, - a: 90 - }, { - name: 55, - x: 181, - y: 472, - a: 90 - }, { - name: 3, - x: 181, - y: 419, - timeout: -1 - }, { - name: 3, - x: 179, - y: 781, - timeout: -1 - }, { - name: 3, - x: 47, - y: 120, - timeout: -1 - }, { - name: 2, - x: 50, - y: 345 - }, { - name: 55, - x: 285, - y: 177, - a: 180 - }, { - name: 100, - x: 181, - y: 87, - length: 55, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 55, - x: 280, - y: 478, - a: 180 - }, { - name: 55, - x: 182, - y: 591, - a: 90 - }, { - name: 55, - x: 180, - y: 701, - a: 90 - }] - }] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 248, - y: 384 - }, { - name: 56, - x: 59, - y: 367, - group: 0, - a: -90 - }, { - name: 56, - x: 254, - y: 114, - group: 0, - a: 90 - }, { - name: 52, - x: 55, - y: 173 - }, { - name: 100, - x: 56, - y: 69, - length: 90, - c: !1, - i: !1, - d: -1, - e: 0, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 4, - x: 76, - y: 209, - locale: "en", - text: "Drop the candy into the magic hat and it will fall out from the other one", - width: 160 - }, { - name: 8, - x: 118, - y: 347, - locale: "en", - a: 0, - j: 100, - r: 100 - }, { - name: 3, - x: 56, - y: 328, - timeout: -1 - }, { - name: 3, - x: 259, - y: 177, - timeout: -1 - }, { - name: 3, - x: 250, - y: 319, - timeout: -1 - }], - t: [{ - name: 8, - x: 118, - y: 347, - locale: "fr", - a: 0, - j: 100, - r: 100 - }, { - name: 4, - x: 76, - y: 201, - locale: "fr", - text: "D\u00e9pose le bonbon dans le chapeau magique et il tombera de l'autre chapeau", - width: 160 - }], - s: [{ - name: 8, - x: 118, - y: 348, - locale: "de", - a: 0, - j: 100, - r: 100 - }, { - name: 4, - x: 72, - y: 197, - locale: "de", - text: "Wirf den Bonbon in den magischen Hut und er kommt aus einem anderen wieder raus", - width: 160 - }], - u: [{ - name: 8, - x: 122, - y: 354, - locale: "ru", - a: 0, - j: 100, - r: 100 - }, { - name: 4, - x: 80, - y: 230, - locale: "ru", - text: "\u041a\u0438\u043d\u044c\u0442\u0435 \u043a\u043e\u043d\u0444\u0435\u0442\u0443 \u0432 \u043e\u0434\u043d\u0443 \u0438\u0437 \u0432\u043e\u043b\u0448\u0435\u0431\u043d\u044b\u0445 \u0448\u043b\u044f\u043f, \u0438 \u043e\u043d\u0430 \u0432\u044b\u043b\u0435\u0442\u0438\u0442 \u0438\u0437 \u0434\u0440\u0443\u0433\u043e\u0439", - width: 160 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 167, - y: 126 - }, { - name: 56, - x: 164, - y: 81, - group: 0, - a: 90 - }, { - name: 56, - x: 218, - y: 424, - group: 0, - a: -180 - }, { - name: 52, - x: 164, - y: 247 - }, { - name: 100, - x: 245, - y: 164, - length: 80, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 83, - y: 164, - length: 80, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 165, - y: 345, - length: 70, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 242, - y: 287, - timeout: -1 - }, { - name: 3, - x: 77, - y: 424, - timeout: -1 - }, { - name: 3, - x: 76, - y: 345, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 4, - x: 78, - y: 32, - locale: "en", - text: "Candy maintains its speed when teleporting", - width: 200 - }, { - name: 13, - x: 59, - y: 70, - locale: "en", - j: 100, - r: 100 - }, { - name: 2, - x: 253, - y: 177 - }, { - name: 56, - x: 241, - y: 373, - group: 0, - a: -180 - }, { - name: 56, - x: 70, - y: 235, - group: 0, - a: -60 - }, { - name: 52, - x: 191, - y: 379 - }, { - name: 100, - x: 112, - y: 378, - length: 50, - c: !1, - i: !1, - d: -1, - e: 80, - g: !1, - f: 80, - b: !1, - h: "L" - }, { - name: 100, - x: 266, - y: 321, - length: 55, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 267, - y: 432, - length: 55, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 113, - y: 169, - path: "RW30", - j: 70, - timeout: -1 - }, { - name: 3, - x: 148, - y: 154, - path: "RC30", - j: 80, - timeout: -1 - }, { - name: 3, - x: 130, - y: 158, - path: "RC20", - j: 80, - timeout: -1 - }], - t: [{ - name: 4, - x: 78, - y: 23, - locale: "fr", - text: "La vitesse du bonbon reste identique lorsqu'il est t\u00e9l\u00e9port\u00e9", - width: 200 - }, { - name: 13, - x: 50, - y: 73, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 69, - y: 28, - locale: "de", - text: "Beim Teleportieren beh\u00e4lt der Bonbon seine Geschwindigkeit bei", - width: 200 - }, { - name: 13, - x: 54, - y: 72, - locale: "de", - j: 100, - r: 100 - }], - u: [{ - name: 4, - x: 62, - y: 31, - locale: "ru", - text: "\u041a\u043e\u043d\u0444\u0435\u0442\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442 \u0441\u0432\u043e\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0435\u043b\u0435\u043f\u043e\u0440\u0442\u0430\u0446\u0438\u0438", - width: 240 - }, { - name: 13, - x: 43, - y: 69, - locale: "ru", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 163, - y: 200 - }, { - name: 56, - x: 229, - y: 392, - group: 0, - a: 180 - }, { - name: 56, - x: 93, - y: 152, - group: 0, - a: 0 - }, { - name: 52, - x: 161, - y: 136 - }, { - name: 100, - x: 220, - y: 49, - length: 76, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 103, - y: 49, - length: 76, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 56, - x: 95, - y: 400, - group: 1, - a: 0 - }, { - name: 56, - x: 227, - y: 148, - group: 1, - a: 180 - }, { - name: 54, - x: 160, - y: 416 - }, { - name: 100, - x: 210, - y: 298, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 116, - y: 301, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 200, - y: 146, - timeout: -1 - }, { - name: 3, - x: 121, - y: 148, - timeout: -1 - }, { - name: 3, - x: 162, - y: 418, - timeout: -1 - }] - }, - { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 243, - y: 854 - }, { - name: 56, - x: 166, - y: 471, - group: 0, - a: -90 - }, { - name: 56, - x: 246, - y: 516, - group: 0, - a: 90 - }, { - name: 52, - x: 79, - y: 208 - }, { - name: 100, - x: 76, - y: 132, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 56, - x: 80, - y: 263, - group: 1, - a: -90 - }, { - name: 56, - x: 164, - y: 307, - group: 1, - a: 90 - }, { - name: 100, - x: 247, - y: 622, - length: 100, - c: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 166, - y: 398, - timeout: -1 - }, { - name: 3, - x: 246, - y: 779, - timeout: -1 - }, { - name: 3, - x: 76, - y: 76, - timeout: -1 - }, { - name: 54, - x: 246, - y: 778 - }] - }, - { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 112, - y: 352 - }, { - name: 100, - x: 50, - y: 275, - length: 70, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 177, - y: 278, - length: 70, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 117, - y: 156, - length: 100, - c: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 271, - y: 90 - }, { - name: 56, - x: 270, - y: 384, - group: 0, - a: 270 - }, { - name: 56, - x: 49, - y: 97, - group: 0, - a: 90 - }, { - name: 55, - x: 112, - y: 418, - a: 270 - }, { - name: 3, - x: 183, - y: 192, - timeout: -1 - }, { - name: 55, - x: 113, - y: 305, - a: 270 - }, { - name: 3, - x: 48, - y: 188, - timeout: -1 - }, - { - name: 3, - x: 185, - y: 359, - timeout: -1 - }, { - name: 54, - x: 47, - y: 188 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 252, - y: 284 - }, { - name: 56, - x: 412, - y: 395, - group: 0, - a: 270 - }, { - name: 56, - x: 256, - y: 394, - group: 0, - a: 270 - }, { - name: 3, - x: 410, - y: 60, - timeout: -1 - }, { - name: 2, - x: 252, - y: 122 - }, { - name: 3, - x: 411, - y: 179, - timeout: -1 - }, { - name: 3, - x: 410, - y: 119, - timeout: -1 - }, { - name: 100, - x: 253, - y: 219, - length: 30, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 80, - x: 250, - y: 186, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 180, - y: 119, - X: -4, - Y: 4, - Z: 2, - a: 90, - size: 5 - }, - { - name: 80, - x: 316, - y: 118, - X: -4, - Y: 4, - Z: 2, - a: 90, - size: 5 - }, { - name: 80, - x: 250, - y: 51, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 54, - x: 252, - y: 343 - }, { - name: 54, - x: 410, - y: 256 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 56, - x: 236, - y: 172, - group: 0, - a: 135 - }, { - name: 55, - x: 71, - y: 254, - a: 0 - }, { - name: 54, - x: 159, - y: 197 - }, { - name: 52, - x: 160, - y: 195 - }, { - name: 56, - x: 117, - y: 332, - group: 0, - a: -40 - }, { - name: 56, - x: 207, - y: 329, - group: 1, - a: 220 - }, { - name: 56, - x: 83, - y: 175, - group: 1, - a: 45 - }, { - name: 55, - x: 251, - y: 251, - a: 180 - }, { - name: 2, - x: 158, - y: 414 - }, { - name: 3, - x: 200, - y: 318, - timeout: -1 - }, - { - name: 3, - x: 161, - y: 126, - timeout: -1 - }, { - name: 3, - x: 124, - y: 317, - timeout: -1 - }, { - name: 100, - x: 162, - y: 357, - length: 130, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 161, - y: 65, - a: 90 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 54, - x: 214, - y: 376 - }, { - name: 54, - x: 212, - y: 318 - }, { - name: 54, - x: 211, - y: 258 - }, { - name: 56, - x: 216, - y: 420, - group: 0, - a: 270 - }, { - name: 52, - x: 210, - y: 130 - }, { - name: 100, - x: 213, - y: 41, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 56, - x: 294, - y: 201, - group: 0, - a: 0 - }, { - name: 3, - x: 412, - y: 382, - timeout: -1 - }, { - name: 100, - x: 315, - y: 285, - length: 100, - c: !1, - i: !1, - d: 64, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 314, - y: 380, - timeout: -1 - }, { - name: 2, - x: 425, - y: 189 - }, { - name: 3, - x: 214, - y: 376, - timeout: -1 - }, { - name: 54, - x: 313, - y: 378 - }, { - name: 54, - x: 212, - y: 197 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 335, - y: 761 - }, { - name: 100, - x: 338, - y: 843, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 56, - x: 244, - y: 633, - group: 0, - a: 90, - path: "200,0", - j: 55 - }, { - name: 56, - x: 441, - y: 471, - group: 0, - a: 270, - path: "-200,0", - j: 55 - }, { - name: 56, - x: 347, - y: 302, - group: 1, - a: 90 - }, { - name: 56, - x: 352, - y: 149, - group: 1, - a: 270 - }, { - name: 3, - x: 338, - y: 693, - timeout: -1 - }, { - name: 3, - x: 350, - y: 379, - timeout: -1 - }, { - name: 2, - x: 336, - y: 908 - }, { - name: 3, - x: 350, - y: 88, - timeout: -1 - }, { - name: 60, - x: 340, - y: 553, - a: 0, - size: 4, - v: !1 - }, { - name: 54, - x: 336, - y: 760 - }, { - name: 60, - x: 340, - y: 219, - a: 0, - size: 4, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 135, - y: 243 - }, { - name: 100, - x: 100, - y: 110, - length: 78, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 97, - y: 366, - length: 78, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 290, - y: 432, - length: 210, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 203, - y: 153, - timeout: -1 - }, { - name: 3, - x: 149, - y: 325, - timeout: -1 - }, { - name: 3, - x: 130, - y: 113, - timeout: -1 - }, { - name: 2, - x: 147, - y: 426 - }, { - name: 56, - x: 78, - y: 232, - group: 0, - a: 0 - }, { - name: 56, - x: 79, - y: 62, - group: 0, - a: 0 - }, { - name: 100, - x: 226, - y: 240, - length: 68, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 290, - y: 55, - length: 210, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 2, - x: 155, - y: 210 - }, { - name: 100, - x: 163, - y: 37, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 157, - y: 129 - }, { - name: 57, - x: 254, - y: 131, - a: 0, - size: 1 - }, { - name: 57, - x: 65, - y: 131, - a: 0, - size: 1 - }, { - name: 57, - x: 283, - y: 158, - a: 90, - size: 1 - }, { - name: 57, - x: 33, - y: 158, - a: 90, - size: 1 - }, { - name: 57, - x: 255, - y: 448, - a: 0, - size: 1 - }, { - name: 57, - x: 281, - y: 418, - a: 90, - size: 1 - }, { - name: 57, - x: 63, - y: 448, - a: 0, - size: 1 - }, { - name: 57, - x: 30, - y: 418, - a: 90, - size: 1 - }, { - name: 54, - x: 244, - y: 394 - }, { - name: 100, - x: 159, - y: 326, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 258, - y: 37, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 68, - y: 35, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 72, - y: 167, - timeout: -1 - }, { - name: 3, - x: 242, - y: 290, - timeout: -1 - }, { - name: 3, - x: 160, - y: 417, - timeout: -1 - }, { - name: 100, - x: 291, - y: 257, - length: 180, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 32, - y: 255, - length: 180, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 242, - y: 298, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 189, - y: 136 - }, { - name: 56, - x: 180, - y: 403, - group: 0, - a: 270 - }, { - name: 56, - x: 73, - y: 402, - group: 0, - a: 270 - }, { - name: 3, - x: 71, - y: 53, - timeout: -1 - }, { - name: 3, - x: 177, - y: 298, - timeout: -1 - }, { - name: 3, - x: 69, - y: 296, - timeout: -1 - }, { - name: 52, - x: 74, - y: 131 - }, { - name: 100, - x: 72, - y: 239, - length: 80, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 73, - y: 128 - }, { - name: 100, - x: 242, - y: 239, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 167, - y: 358 - }, { - name: 2, - x: 480, - y: 76 - }, { - name: 54, - x: 168, - y: 358 - }, { - name: 56, - x: 83, - y: 281, - group: 1, - a: 0 - }, { - name: 56, - x: 84, - y: 186, - group: 0, - a: 0 - }, { - name: 56, - x: 83, - y: 90, - group: 1, - a: 0 - }, { - name: 56, - x: 483, - y: 374, - group: 0, - a: 270 - }, { - name: 55, - x: 243, - y: 277, - a: 180 - }, { - name: 55, - x: 242, - y: 182, - a: 180 - }, { - name: 55, - x: 243, - y: 88, - a: 180 - }, { - name: 3, - x: 112, - y: 90, - timeout: -1 - }, { - name: 3, - x: 116, - y: 280, - timeout: -1 - }, { - name: 3, - x: 111, - y: 186, - timeout: -1 - }, { - name: 80, - x: 478, - y: 144, - X: -2, - Y: 2, - Z: 2, - a: 0, - size: 5 - }, { - name: 55, - x: 479, - y: 187, - a: 90 - }, { - name: 100, - x: 169, - y: 447, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 173, - y: 111, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 478, - y: 109, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 324, - y: 42, - timeout: 4 - }, { - name: 52, - x: 322, - y: 111 - }, { - name: 55, - x: 327, - y: 197, - a: 270 - }, { - name: 100, - x: 326, - y: 284, - length: 100, - c: !1, - i: !1, - d: 55, - e: 200, - g: !1, - f: 100, - b: !1, - h: "L" - }, { - name: 2, - x: 197, - y: 395 - }, { - name: 54, - x: 453, - y: 393 - }, { - name: 3, - x: 162, - y: 226, - timeout: -1 - }, { - name: 3, - x: 481, - y: 227, - timeout: -1 - }, { - name: 58, - x: 540, - y: 233, - a: 90, - size: 2 - }, { - name: 58, - x: 93, - y: 228, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, - { - name: 1, - k: 1, - o: 1, - l: !1 - } - ], - n: [{ - name: 2, - x: 406, - y: 57 - }, { - name: 56, - x: 407, - y: 402, - group: 0, - a: 270 - }, { - name: 56, - x: 215, - y: 105, - group: 0, - a: 90 - }, { - name: 55, - x: 217, - y: 269, - a: 270 - }, { - name: 52, - x: 404, - y: 355 - }, { - name: 100, - x: 407, - y: 267, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 320, - y: 43, - timeout: -1 - }, { - name: 56, - x: 218, - y: 404, - group: 1, - a: 270 - }, { - name: 56, - x: 313, - y: 401, - group: 1, - a: 270 - }, { - name: 3, - x: 312, - y: 162, - path: "0,200", - j: 80, - timeout: -1 - }, { - name: 3, - x: 406, - y: 187, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 325, - y: 365 - }, { - name: 56, - x: 227, - y: 62, - group: 1, - a: 0 - }, { - name: 52, - x: 220, - y: 543 - }, { - name: 56, - x: 227, - y: 399, - group: 1, - a: 270 - }, { - name: 55, - x: 217, - y: 188, - a: 90 - }, { - name: 56, - x: 413, - y: 399, - group: 0, - a: 270 - }, { - name: 56, - x: 418, - y: 56, - group: 0, - a: 180 - }, { - name: 54, - x: 220, - y: 541 - }, { - name: 3, - x: 412, - y: 282, - timeout: -1 - }, { - name: 3, - x: 219, - y: 283, - timeout: -1 - }, { - name: 3, - x: 315, - y: 57, - timeout: -1 - }, { - name: 100, - x: 328, - y: 250, - length: 100, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 57, - x: 208, - y: 134, - a: -20, - size: 1 - }, { - name: 57, - x: 266, - y: 123, - a: 0, - size: 1 - }, { - name: 57, - x: 382, - y: 123, - a: 0, - size: 1 - }, { - name: 57, - x: 438, - y: 133, - a: 20, - size: 1 - }, { - name: 57, - x: 325, - y: 123, - a: 0, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 433, - y: 284 - }, { - name: 100, - x: 338, - y: 50, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 338, - y: 358, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 459, - y: 202, - length: 100, - c: !1, - i: !1, - d: -1, - e: 100, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 223, - y: 202, - length: 100, - c: !1, - i: !1, - d: -1, - e: 100, - g: !1, - f: 100, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 335, - y: 200 - }, { - name: 3, - x: 208, - y: 72, - timeout: -1 - }, { - name: 3, - x: 432, - y: 369, - timeout: -1 - }, { - name: 3, - x: 209, - y: 369, - timeout: -1 - }, { - name: 56, - x: 446, - y: 137, - group: 0, - a: 180 - }, { - name: 56, - x: 212, - y: 427, - group: 0, - a: 270 - }, { - name: 56, - x: 433, - y: 429, - group: 1, - a: 270 - }, { - name: 56, - x: 227, - y: 150, - group: 1, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 64, - y: 866 - }, { - name: 100, - x: 171, - y: 804, - length: 40, - c: !1, - i: !1, - d: -1, - e: 150, - g: !1, - f: 120, - b: !1, - h: "L" - }, { - name: 52, - x: 298, - y: 807 - }, { - name: 56, - x: 329, - y: 673, - group: 1, - a: 270 - }, { - name: 56, - x: 436, - y: 796, - group: 1, - a: 180 - }, { - name: 3, - x: 328, - y: 158, - timeout: -1 - }, { - name: 3, - x: 327, - y: 589, - timeout: -1 - }, { - name: 100, - x: 376, - y: 804, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 57, - x: 415, - y: 668, - a: 30, - size: 1 - }, { - name: 59, - x: 327, - y: 62, - a: 0, - size: 3 - }, { - name: 60, - x: 391, - y: 565, - a: 90, - size: 4 - }, { - name: 60, - x: 256, - y: 567, - a: 90, - size: 4 - }, { - name: 60, - x: 391, - y: 388, - a: 90, - size: 4 - }, { - name: 60, - x: 256, - y: 390, - a: 90, - size: 4 - }, { - name: 60, - x: 256, - y: 212, - a: 90, - size: 4 - }, { - name: 60, - x: 391, - y: 210, - a: 90, - size: 4 - }, { - name: 57, - x: 231, - y: 665, - a: -20, - size: 1 - }, { - name: 57, - x: 391, - y: 92, - a: 90, - size: 1 - }, { - name: 57, - x: 256, - y: 95, - a: 90, - size: 1 - }, { - name: 3, - x: 326, - y: 374, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 213, - y: 539 - }, { - name: 56, - x: 216, - y: 395, - group: 0, - a: 270 - }, { - name: 54, - x: 213, - y: 540 - }, { - name: 100, - x: 312, - y: 191, - length: 100, - c: !1, - i: !1, - d: 60, - e: 80, - g: !1, - f: 40, - b: !1, - h: "L" - }, { - name: 56, - x: 407, - y: 395, - group: 0, - a: 270 - }, { - name: 2, - x: 318, - y: 37 - }, { - name: 3, - x: 211, - y: 98, - timeout: 9 - }, { - name: 3, - x: 409, - y: 99, - timeout: 6 - }, { - name: 55, - x: 212, - y: 312, - a: 90 - }, { - name: 55, - x: 407, - y: 310, - a: 90 - }, { - name: 54, - x: 310, - y: 393 - }, { - name: 3, - x: 311, - y: 325, - timeout: 11 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 323, - y: 385 - }, { - name: 100, - x: 327, - y: 35, - length: 100, - c: !1, - i: !1, - d: -1, - e: 500, - g: !1, - f: 250, - b: !1, - h: "L" - }, { - name: 52, - x: 323, - y: 182 - }, { - name: 3, - x: 323, - y: 288, - timeout: -1 - }, { - name: 3, - x: 94, - y: 386, - timeout: -1 - }, { - name: 3, - x: 547, - y: 384, - timeout: -1 - }, { - name: 56, - x: 256, - y: 235, - group: 0, - a: 90, - path: "-200,0", - j: 30 - }, { - name: 56, - x: 386, - y: 237, - group: 0, - a: 270, - path: "200,0", - j: 30 - }, { - name: 54, - x: 95, - y: 386 - }, { - name: 54, - x: 546, - y: 384 - }, { - name: 55, - x: 32, - y: 130, - a: 0 - }, { - name: 55, - x: 605, - y: 125, - a: 180 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 165, - y: 226, - length: 100, - c: !1, - d: 62, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 165, - y: 132, - length: 100, - c: !1, - d: 63, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 56, - x: 51, - y: 397, - group: 0, - a: 270 - }, { - name: 56, - x: 275, - y: 401, - group: 0, - a: 270 - }, { - name: 2, - x: 44, - y: 94 - }, { - name: 3, - x: 277, - y: 98, - timeout: -1 - }, { - name: 3, - x: 163, - y: 354, - timeout: -1 - }, { - name: 3, - x: 164, - y: 102, - timeout: -1 - }, { - name: 54, - x: 272, - y: 356 - }, { - name: 54, - x: 234, - y: 510 - }, { - name: 52, - x: 236, - y: 509 - }, { - name: 55, - x: 50, - y: 227, - a: 0 - }, { - name: 57, - x: 204, - y: 128, - a: 90, - size: 1, - path: "0,270", - j: 45 - }, - { - name: 57, - x: 123, - y: 128, - a: 90, - size: 1, - path: "0,270", - j: 45 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 113, - y: 189 - }, { - name: 100, - x: 61, - y: 187, - length: 50, - c: !1, - d: -1, - g: !0, - b: !1, - h: "L" - }, { - name: 100, - x: 164, - y: 188, - length: 50, - c: !1, - d: -1, - g: !0, - b: !1, - h: "L" - }, { - name: 3, - x: 545, - y: 195, - timeout: -1 - }, { - name: 56, - x: 111, - y: 401, - group: 0, - a: 270 - }, { - name: 2, - x: 477, - y: 290 - }, { - name: 54, - x: 269, - y: 257 - }, { - name: 56, - x: 268, - y: 98, - group: 0, - a: 90 - }, { - name: 3, - x: 407, - y: 191, - timeout: -1 - }, { - name: 3, - x: 475, - y: 113, - timeout: -1 - }, { - name: 56, - x: 273, - y: 403, - group: 1, - a: 270 - }, { - name: 56, - x: 419, - y: 402, - group: 1, - a: 270 - }, { - name: 100, - x: 477, - y: 195, - length: 100, - c: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 114, - y: 74, - a: 0, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 106, - y: 237 - }, { - name: 56, - x: 400, - y: 387, - group: 0, - a: -120 - }, { - name: 56, - x: 242, - y: 128, - group: 0, - a: 0 - }, { - name: 52, - x: 318, - y: 134 - }, { - name: 100, - x: 180, - y: 197, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 467, - y: 34, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 178, - y: 33, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 465, - y: 198, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 56, - x: 245, - y: 390, - group: 1, - a: -55 - }, { - name: 56, - x: 396, - y: 123, - group: 1, - a: 180 - }, { - name: 3, - x: 317, - y: 302, - timeout: -1 - }, { - name: 3, - x: 385, - y: 335, - timeout: -1 - }, { - name: 3, - x: 257, - y: 334, - timeout: -1 - }, { - name: 54, - x: 318, - y: 305 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 416, - y: 314 - }, { - name: 52, - x: 303, - y: 136 - }, { - name: 100, - x: 306, - y: 75, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 56, - x: 226, - y: 400, - group: 1, - a: -90 - }, { - name: 56, - x: 304, - y: 139, - group: 1, - a: -180, - path: "RW90", - j: 150, - r: -96 - }, { - name: 56, - x: 420, - y: 395, - group: 0, - a: -90 - }, { - name: 56, - x: 304, - y: 139, - group: 0, - a: -180, - path: "RC90", - j: 100, - r: 64 - }, { - name: 100, - x: 224, - y: 301, - length: 100, - c: !1, - i: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 212, - y: 357, - timeout: -1 - }, { - name: 3, - x: 237, - y: 356, - timeout: -1 - }, { - name: 3, - x: 307, - y: 198, - timeout: -1 - }] - } - ] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 101, - y: 170 - }, { - name: 51, - x: 232, - y: 171 - }, { - name: 100, - x: 164, - y: 146, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 2, - x: 165, - y: 428 - }, { - name: 3, - x: 187, - y: 327, - timeout: -1 - }, { - name: 100, - x: 227, - y: 58, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 98, - y: 59, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 164, - y: 146, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 4, - x: 79, - y: 219, - locale: "en", - text: "Combine two pieces of candy before feeding it to Om Nom", - width: 200 - }, { - name: 13, - x: 55, - y: 267, - locale: "en", - j: 100, - r: 100 - }, { - name: 3, - x: 139, - y: 328, - timeout: -1 - }, - { - name: 3, - x: 163, - y: 369, - timeout: -1 - } - ], - u: [{ - name: 4, - x: 79, - y: 219, - locale: "ru", - text: "\u0421\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u0435 \u043f\u043e\u043b\u043e\u0432\u0438\u043d\u043a\u0438 \u043b\u0435\u0434\u0435\u043d\u0446\u0430 \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u0441\u043a\u043e\u0440\u043c\u0438\u0442\u044c \u0435\u0433\u043e \u0410\u043c\u041d\u044f\u043c\u0443", - width: 200 - }, { - name: 13, - x: 55, - y: 267, - locale: "ru", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 78, - y: 213, - locale: "fr", - text: "Associe deux morceaux de bonbon avant de le donner \u00e0 Om Nom pour qu'il le mange", - width: 230 - }, { - name: 13, - x: 55, - y: 267, - locale: "fr", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 56, - y: 219, - locale: "de", - text: "Bring zwei Bonbons zusammen, bevor Du sie an Om Nom verf\u00fctterst", - width: 200 - }, { - name: 13, - x: 39, - y: 268, - locale: "de", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 39, - y: 358 - }, { - name: 51, - x: 286, - y: 348 - }, { - name: 2, - x: 163, - y: 61 - }, { - name: 100, - x: 162, - y: 275, - length: 120, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 162, - y: 275, - length: 120, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 81, - y: 417 - }, { - name: 100, - x: 35, - y: 219, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 283, - y: 217, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 54, - x: 236, - y: 416 - }, { - name: 54, - x: 160, - y: 417 - }, { - name: 3, - x: 160, - y: 212, - timeout: -1 - }, { - name: 3, - x: 162, - y: 417, - timeout: -1 - }, { - name: 3, - x: 161, - y: 143, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 51, - x: 209, - y: 198 - }, { - name: 100, - x: 99, - y: 198, - length: 30, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 304, - y: 197, - length: 30, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 54, - x: 49, - y: 548 - }, { - name: 50, - x: 54, - y: 547 - }, { - name: 2, - x: 104, - y: 42 - }, { - name: 3, - x: 103, - y: 138, - timeout: -1 - }, { - name: 3, - x: 79, - y: 162, - timeout: -1 - }, { - name: 3, - x: 53, - y: 188, - timeout: -1 - }, { - name: 100, - x: 101, - y: 365, - length: 60, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 57, - x: 99, - y: 244, - a: 0, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 107, - y: 178 - }, { - name: 51, - x: 224, - y: 181 - }, { - name: 100, - x: 126, - y: 127, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 2, - x: 165, - y: 428 - }, { - name: 3, - x: 304, - y: 218, - timeout: -1 - }, { - name: 3, - x: 28, - y: 213, - timeout: -1 - }, { - name: 3, - x: 166, - y: 344, - timeout: -1 - }, { - name: 100, - x: 277, - y: 65, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 54, - y: 64, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 207, - y: 129, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 165, - y: 345 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 319, - y: 347 - }, { - name: 51, - x: 322, - y: 146 - }, { - name: 2, - x: 192, - y: 159 - }, { - name: 100, - x: 235, - y: 223, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 170, - y: 451, - length: 145, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 314, - y: 344 - }, { - name: 100, - x: 457, - y: 449, - length: 145, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 314, - y: 399, - timeout: -1 - }, { - name: 100, - x: 401, - y: 226, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 54, - x: 318, - y: 142 - }, { - name: 3, - x: 318, - y: 242, - timeout: -1 - }, { - name: 3, - x: 229, - y: 301, - timeout: -1 - }, { - name: 60, - x: 396, - y: 52, - a: 30, - size: 4 - }, { - name: 60, - x: 244, - y: 53, - a: -30, - size: 4 - }, { - name: 60, - x: 240, - y: 407, - a: 30, - size: 4 - }, { - name: 60, - x: 397, - y: 407, - a: -30, - size: 4 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 51, - x: 290, - y: 180 - }, { - name: 100, - x: 293, - y: 61, - length: 85, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 290, - y: 304, - length: 85, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 2, - x: 166, - y: 424 - }, { - name: 50, - x: 68, - y: 142 - }, { - name: 57, - x: 32, - y: 158, - a: 90, - size: 1 - }, { - name: 3, - x: 36, - y: 242, - timeout: -1 - }, { - name: 3, - x: 227, - y: 179, - timeout: -1 - }, { - name: 3, - x: 163, - y: 338, - timeout: -1 - }, { - name: 57, - x: 162, - y: 257, - a: 0, - size: 1 - }, { - name: 57, - x: 288, - y: 391, - a: 90, - size: 1 - }, { - name: 100, - x: 164, - y: 63, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 163, - y: 189, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 35, - y: 61, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 54, - x: 103, - y: 235 - }, { - name: 55, - x: 34, - y: 236, - a: 0 - }, { - name: 51, - x: 256, - y: 209 - }, { - name: 50, - x: 109, - y: 172 - }, { - name: 2, - x: 252, - y: 56 - }, { - name: 54, - x: 103, - y: 370 - }, { - name: 54, - x: 103, - y: 302 - }, { - name: 3, - x: 101, - y: 449, - timeout: -1 - }, { - name: 3, - x: 259, - y: 400, - timeout: -1 - }, { - name: 3, - x: 104, - y: 35, - timeout: -1 - }, - { - name: 54, - x: 255, - y: 269 - }, { - name: 54, - x: 255, - y: 336 - }, { - name: 54, - x: 255, - y: 404 - }, { - name: 100, - x: 252, - y: 113, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 104, - y: 74, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 57, - x: 255, - y: 459, - a: 0, - size: 1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 50, - x: 176, - y: 339 - }, { - name: 51, - x: 149, - y: 151 - }, { - name: 100, - x: 289, - y: 418, - length: 100, - c: !1, - d: -1, - e: 150, - g: !1, - f: 150, - b: !1, - h: "L" - }, { - name: 54, - x: 172, - y: 337 - }, { - name: 100, - x: 18, - y: 224, - length: 100, - c: !1, - d: -1, - e: 150, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 54, - x: 143, - y: 146 - }, { - name: 100, - x: 258, - y: 98, - length: 80, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 68, - y: 288, - length: 80, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 274, - y: 207, - timeout: -1 - }, { - name: 3, - x: 81, - y: 334, - timeout: -1 - }, { - name: 3, - x: 274, - y: 336, - timeout: -1 - }, { - name: 2, - x: 60, - y: 52 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 479, - y: 93 - }, { - name: 100, - x: 476, - y: 192, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 223, - y: 54 - }, { - name: 100, - x: 228, - y: 218, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 3, - x: 319, - y: 401, - timeout: -1 - }, { - name: 3, - x: 224, - y: 128, - timeout: -1 - }, { - name: 3, - x: 564, - y: 191, - timeout: -1 - }, { - name: 100, - x: 386, - y: 95, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 226, - y: 411, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 51, - x: 230, - y: 318 - }, { - name: 100, - x: 322, - y: 316, - length: 55, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 570, - y: 93, - length: 55, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 317, - y: 400 - }, { - name: 54, - x: 473, - y: 90 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 353, - y: 59 - }, { - name: 54, - x: 355, - y: 270 - }, { - name: 50, - x: 250, - y: 207 - }, { - name: 51, - x: 360, - y: 271 - }, { - name: 3, - x: 244, - y: 358, - timeout: -1 - }, { - name: 3, - x: 244, - y: 59, - timeout: -1 - }, { - name: 3, - x: 354, - y: 138, - timeout: -1 - }, { - name: 54, - x: 243, - y: 267 - }, { - name: 100, - x: 358, - y: 418, - length: 120, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 100, - x: 247, - y: 98, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 55, - x: 421, - y: 267, - a: 180 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 158, - y: 124 - }, { - name: 50, - x: 54, - y: 183 - }, { - name: 51, - x: 277, - y: 183 - }, { - name: 100, - x: 51, - y: 103, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 161, - y: 408, - timeout: -1 - }, { - name: 54, - x: 270, - y: 374 - }, { - name: 100, - x: 162, - y: 319, - length: 100, - c: !1, - d: 40, - e: 250, - g: !1, - f: 125, - b: !1, - h: "L" - }, { - name: 54, - x: 49, - y: 374 - }, { - name: 3, - x: 51, - y: 52, - timeout: -1 - }, { - name: 3, - x: 272, - y: 262, - timeout: -1 - }, { - name: 100, - x: 274, - y: 102, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 50, - x: 48, - y: 135 - }, { - name: 51, - x: 276, - y: 133 - }, { - name: 2, - x: 247, - y: 412 - }, { - name: 54, - x: 157, - y: 322 - }, { - name: 54, - x: 103, - y: 271 - }, { - name: 54, - x: 216, - y: 276 - }, { - name: 54, - x: 60, - y: 216 - }, { - name: 54, - x: 262, - y: 217 - }, { - name: 54, - x: 100, - y: 160 - }, { - name: 54, - x: 224, - y: 161 - }, { - name: 54, - x: 161, - y: 196 - }, { - name: 3, - x: 123, - y: 227, - path: "RW60", - j: 70, - timeout: -1 - }, { - name: 3, - x: 199, - y: 224, - path: "RC60", - j: 60, - timeout: -1 - }, { - name: 3, - x: 161, - y: 264, - path: "RW60", - j: 40, - timeout: -1 - }, { - name: 100, - x: 163, - y: 253, - length: 140, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 162, - y: 253, - length: 140, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 55, - x: 71, - y: 416, - a: 0 - }, { - name: 58, - x: 164, - y: 90, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 84, - y: 326 - }, { - name: 51, - x: 255, - y: 167 - }, { - name: 2, - x: 164, - y: 378 - }, { - name: 100, - x: 254, - y: 86, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 80, - y: 240, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 165, - y: 169, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 54, - x: 78, - y: 386 - }, { - name: 3, - x: 162, - y: 86, - timeout: -1 - }, { - name: 3, - x: 163, - y: 260, - timeout: -1 - }, { - name: 3, - x: 81, - y: 170, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 3, - x: 384, - y: 115, - path: "100,0", - j: 30, - timeout: -1 - }, { - name: 3, - x: 129, - y: 399, - path: "0,-370", - j: 60, - timeout: 7 - }, { - name: 3, - x: 419, - y: 392, - timeout: -1 - }, { - name: 54, - x: 119, - y: 523 - }, { - name: 50, - x: 128, - y: 522 - }, { - name: 100, - x: 420, - y: 186, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 51, - x: 423, - y: 288 - }, { - name: 2, - x: 414, - y: 40 - }, { - name: 54, - x: 418, - y: 391 - }, { - name: 100, - x: 130, - y: 288, - length: 100, - c: !1, - i: !1, - d: 60, - e: 200, - g: !1, - f: 100, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 132, - y: 185, - length: 100, - c: !1, - i: !1, - d: 60, - e: 200, - g: !1, - f: 100, - b: !1, - h: "L", - q: !1 - }, { - name: 60, - x: 285, - y: 200, - a: 90, - size: 4, - v: !1 - }, { - name: 60, - x: 285, - y: 25, - a: 90, - size: 4, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 262, - y: 215 - }, { - name: 100, - x: 163, - y: 43, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 51, - x: 153, - y: 140 - }, { - name: 100, - x: 163, - y: 261, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 50, - x: 171, - y: 358 - }, { - name: 100, - x: 163, - y: 450, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 163, - y: 232, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 3, - x: 63, - y: 433, - timeout: -1 - }, { - name: 3, - x: 258, - y: 76, - timeout: -1 - }, { - name: 3, - x: 66, - y: 74, - timeout: -1 - }, { - name: 54, - x: 62, - y: 433 - }, { - name: 100, - x: 257, - y: 141, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 66, - y: 141, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 257, - y: 355, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 66, - y: 355, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 50, - x: 84, - y: 557 - }, { - name: 54, - x: 80, - y: 556 - }, { - name: 51, - x: 92, - y: 288 - }, { - name: 3, - x: 251, - y: 329, - timeout: -1 - }, { - name: 3, - x: 84, - y: 78, - timeout: -1 - }, { - name: 3, - x: 251, - y: 77, - timeout: -1 - }, { - name: 2, - x: 250, - y: 415 - }, { - name: 100, - x: 281, - y: 242, - length: 100, - c: !1, - d: 35, - e: 250, - g: !1, - f: 250, - b: !1, - h: "L" - }, { - name: 54, - x: 86, - y: 284 - }, { - name: 100, - x: 87, - y: 381, - length: 70, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 166, - y: 66 - }, { - name: 100, - x: 33, - y: 101, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 195, - y: 256, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 132, - y: 255, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 296, - y: 101, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 3, - x: 69, - y: 301, - timeout: 5 - }, { - name: 50, - x: 99, - y: 181 - }, { - name: 51, - x: 231, - y: 183 - }, { - name: 54, - x: 68, - y: 302 - }, { - name: 54, - x: 256, - y: 301 - }, { - name: 100, - x: 75, - y: 382, - length: 100, - c: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 255, - y: 383, - length: 100, - c: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 163, - y: 161, - timeout: 10 - }, { - name: 3, - x: 257, - y: 301, - timeout: 5 - }, { - name: 55, - x: 162, - y: 384, - a: 270 - }, { - name: 54, - x: 164, - y: 159 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 100, - x: 34, - y: 393, - length: 100, - c: !1, - i: !1, - d: 60, - e: 250, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 50, - x: 164, - y: 565 - }, { - name: 51, - x: 166, - y: 80 - }, { - name: 2, - x: 160, - y: 200 - }, { - name: 100, - x: 159, - y: 211, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 54, - x: 161, - y: 80 - }, { - name: 54, - x: 157, - y: 564 - }, { - name: 57, - x: 215, - y: 208, - a: 90, - size: 1 - }, { - name: 57, - x: 103, - y: 210, - a: 90, - size: 1 - }, { - name: 58, - x: 159, - y: 242, - a: 0, - size: 2 - }, - { - name: 55, - x: 258, - y: 76, - a: 180 - }, { - name: 3, - x: 52, - y: 174, - timeout: -1 - }, { - name: 3, - x: 261, - y: 176, - timeout: -1 - }, { - name: 3, - x: 159, - y: 271, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 210, - y: 309 - }, { - name: 51, - x: 430, - y: 307 - }, { - name: 54, - x: 420, - y: 305 - }, { - name: 2, - x: 320, - y: 165 - }, { - name: 3, - x: 500, - y: 185, - timeout: -1 - }, { - name: 3, - x: 320, - y: 430, - timeout: -1 - }, { - name: 3, - x: 140, - y: 185, - timeout: -1 - }, { - name: 100, - x: 440, - y: 220, - length: 180, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 200, - y: 220, - length: 180, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 54, - x: 320, - y: 430 - }, { - name: 54, - x: 220, - y: 305 - }, { - name: 100, - x: 220, - y: 385, - length: 50, - c: !1, - i: !1, - d: -1, - e: 200, - g: !1, - f: 200, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 420, - y: 385, - length: 50, - c: !1, - i: !1, - d: -1, - e: 200, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 60, - x: 500, - y: 30, - a: 0, - size: 4, - v: !1 - }, { - name: 60, - x: 140, - y: 30, - a: 0, - size: 4, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 50, - x: 200, - y: 234 - }, { - name: 51, - x: 70, - y: 301 - }, { - name: 100, - x: 69, - y: 423, - length: 40, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 114, - y: 294, - length: 40, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 277, - y: 167, - length: 40, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 69, - y: 174, - length: 40, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 2, - x: 190, - y: 163 - }, { - name: 3, - x: 191, - y: 429, - timeout: -1 - }, { - name: 3, - x: 32, - y: 224, - timeout: -1 - }, { - name: 3, - x: 33, - y: 359, - timeout: -1 - }, { - name: 100, - x: 290, - y: 79, - length: 100, - c: !1, - d: 40, - e: 250, - g: !1, - f: 250, - b: !1, - h: "L" - }, { - name: 54, - x: 190, - y: 428 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 50, - x: 105, - y: 337 - }, { - name: 54, - x: 97, - y: 335 - }, { - name: 100, - x: 98, - y: 439, - length: 75, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 51, - x: 221, - y: 338 - }, { - name: 54, - x: 218, - y: 334 - }, { - name: 100, - x: 218, - y: 439, - length: 75, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 160, - y: 298, - length: 100, - c: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 159, - y: 193, - length: 100, - c: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 162, - y: 56 - }, { - name: 55, - x: 292, - y: 327, - a: 180 - }, { - name: 3, - x: 224, - y: 225, - timeout: -1 - }, { - name: 3, - x: 98, - y: 223, - timeout: -1 - }, { - name: 3, - x: 161, - y: 128, - timeout: -1 - }, { - name: 55, - x: 27, - y: 329, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 80, - y: 366 - }, { - name: 51, - x: 252, - y: 364 - }, { - name: 100, - x: 163, - y: 98, - length: 200, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 2, - x: 55, - y: 82 - }, { - name: 3, - x: 276, - y: 291, - timeout: -1 - }, { - name: 100, - x: 270, - y: 428, - length: 30, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 55, - y: 428, - length: 30, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 163, - y: 98, - length: 200, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 275, - y: 170, - c: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 52, - y: 170, - c: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 163, - y: 284, - a: 0, - size: 2, - path: "0,0", - r: 56 - }, { - name: 3, - x: 161, - y: 97, - path: "RW60", - j: 100, - timeout: -1 - }, { - name: 3, - x: 161, - y: 97, - path: "RC60", - j: 100, - timeout: -1 - }, { - name: 54, - x: 53, - y: 291 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 312, - y: 320 - }, { - name: 51, - x: 237, - y: 210 - }, { - name: 2, - x: 402, - y: 391 - }, { - name: 100, - x: 235, - y: 107, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 308, - y: 226, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 239, - y: 390 - }, - { - name: 55, - x: 431, - y: 323, - a: 180 - }, { - name: 3, - x: 219, - y: 67, - timeout: -1 - }, { - name: 3, - x: 249, - y: 67, - timeout: -1 - }, { - name: 3, - x: 240, - y: 391, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 294, - y: 222 - }, { - name: 100, - x: 215, - y: 136, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 429, - y: 434 - }, { - name: 100, - x: 366, - y: 137, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 51, - x: 436, - y: 228 - }, { - name: 54, - x: 431, - y: 223 - }, { - name: 3, - x: 213, - y: 399, - timeout: -1 - }, { - name: 3, - x: 430, - y: 81, - timeout: -1 - }, { - name: 100, - x: 294, - y: 332, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 210, - y: 271, - timeout: -1 - }, { - name: 100, - x: 431, - y: 354, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 55, - x: 429, - y: 139, - a: 90 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 212, - y: 343 - }, { - name: 100, - x: 210, - y: 458, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 51, - x: 105, - y: 342 - }, { - name: 2, - x: 232, - y: 109 - }, { - name: 80, - x: 170, - y: 122, - X: -4, - Y: 4, - Z: 4, - a: 90, - size: 5 - }, { - name: 54, - x: 100, - y: 341 - }, { - name: 80, - x: 103, - y: 192, - X: -4, - Y: 4, - Z: 4, - a: 0, - size: 5 - }, { - name: 80, - x: 103, - y: 53, - X: -4, - Y: 4, - Z: 4, - a: 0, - size: 5 - }, { - name: 80, - x: 31, - y: 120, - X: -4, - Y: 4, - Z: 4, - a: 90, - size: 5 - }, { - name: 3, - x: 91, - y: 99, - path: "RC30", - j: 50, - timeout: -1 - }, { - name: 100, - x: 100, - y: 460, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 3, - x: 99, - y: 137, - path: "RW20", - j: 50, - timeout: -1 - }, { - name: 3, - x: 109, - y: 117, - path: "RW30", - j: 20, - timeout: -1 - }, { - name: 55, - x: 273, - y: 339, - a: 180 - }, { - name: 54, - x: 206, - y: 338 - }] - }] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 279, - y: 333 - }, { - name: 52, - x: 207, - y: 149 - }, - { - name: 100, - x: 126, - y: 55, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 149, - y: 234, - timeout: -1 - }, { - name: 3, - x: 214, - y: 286, - timeout: -1 - }, { - name: 3, - x: 56, - y: 225, - timeout: -1 - }, { - name: 81, - x: 38, - y: 261, - a: 40, - size: 1 - } - ], - w: [{ - name: 8, - x: 56, - y: 322, - locale: "en", - a: 90, - j: 100, - r: 100 - }, { - name: 4, - x: 78, - y: 302, - locale: "en", - text: "Candy will bounce away from this platform", - width: 120 - }], - u: [{ - name: 4, - x: 81, - y: 302, - locale: "ru", - text: "\u041b\u0435\u0434\u0435\u043d\u0435\u0446 \u043e\u0442\u0441\u043a\u0430\u043a\u0438\u0432\u0430\u0435\u0442 \u043e\u0442 \u0442\u0430\u043a\u0438\u0445 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c", - width: 100 - }, { - name: 8, - x: 56, - y: 323, - locale: "ru", - a: 90, - j: 100, - r: 100 - }], - s: [{ - name: 8, - x: 65, - y: 323, - locale: "de", - a: 90, - j: 100, - r: 100 - }, { - name: 4, - x: 91, - y: 297, - locale: "de", - text: "Von dieser Plattform prallt der Bonbon ab", - width: 90 - }], - t: [{ - name: 8, - x: 57, - y: 323, - locale: "fr", - a: 90, - j: 100, - r: 100 - }, { - name: 4, - x: 79, - y: 301, - locale: "fr", - text: "Le bonbon rebondira hors de cette plateforme", - width: 120 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 384, - y: 96 - }, { - name: 52, - x: 280, - y: 531 - }, { - name: 81, - x: 285, - y: 321, - a: 0, - size: 1 - }, { - name: 55, - x: 184, - y: 389, - a: 0 - }, { - name: 54, - x: 280, - y: 536 - }, { - name: 81, - x: 426, - y: 174, - a: 0, - size: 1 - }, { - name: 3, - x: 284, - y: 367, - timeout: -1 - }, { - name: 3, - x: 423, - y: 216, - timeout: -1 - }, { - name: 3, - x: 286, - y: 87, - timeout: -1 - }, { - name: 81, - x: 285, - y: 44, - a: 0, - size: 1 - }, { - name: 55, - x: 496, - y: 241, - a: 180 - }, { - name: 55, - x: 188, - y: 109, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 320, - y: 303, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 446, - y: 174, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 198, - y: 176, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 316, - y: 224 - }, { - name: 2, - x: 318, - y: 69 - }, { - name: 54, - x: 402, - y: 395 - }, { - name: 3, - x: 225, - y: 299, - timeout: -1 - }, { - name: 3, - x: 417, - y: 296, - timeout: -1 - }, { - name: 3, - x: 316, - y: 345, - timeout: -1 - }, { - name: 81, - x: 196, - y: 397, - a: 30, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 342, - y: 131, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 260, - y: 129, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 187, - y: 129, - length: 250, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 189, - y: 410 - }, { - name: 3, - x: 166, - y: 298, - timeout: -1 - }, { - name: 3, - x: 196, - y: 334, - timeout: -1 - }, { - name: 3, - x: 193, - y: 266, - timeout: -1 - }, { - name: 82, - x: 238, - y: 300, - a: 90, - size: 2 - }, { - name: 52, - x: 336, - y: 269 - }, { - name: 54, - x: 412, - y: 310 - }, { - name: 55, - x: 461, - y: 94, - a: 180 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 388, - y: 133 - }, { - name: 2, - x: 273, - y: 41 - }, { - name: 81, - x: 398, - y: 189, - a: -30, - size: 1 - }, { - name: 81, - x: 191, - y: 229, - a: 40, - size: 1 - }, { - name: 81, - x: 404, - y: 310, - a: -30, - size: 1 - }, { - name: 81, - x: 203, - y: 372, - a: 30, - size: 1 - }, { - name: 81, - x: 397, - y: 448, - a: -30, - size: 1 - }, { - name: 3, - x: 403, - y: 307, - path: "RW40", - j: 75, - r: 0, - timeout: -1 - }, { - name: 100, - x: 388, - y: 27, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 308, - y: 398 - }, { - name: 3, - x: 204, - y: 367, - path: "RC40", - j: 75, - r: 0, - timeout: -1 - }, { - name: 3, - x: 220, - y: 196, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 82, - x: 246, - y: 240, - a: 0, - size: 2, - path: "0,0", - j: 50, - r: -100 - }, { - name: 100, - x: 255, - y: 445, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 250, - y: 347 - }, { - name: 54, - x: 253, - y: 347 - }, { - name: 100, - x: 385, - y: 307, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 82, - x: 385, - y: 75, - a: 0, - size: 2, - path: "0,0", - j: 50, - r: 100 - }, { - name: 2, - x: 282, - y: 47 - }, { - name: 3, - x: 295, - y: 117, - timeout: -1 - }, { - name: 3, - x: 378, - y: 115, - timeout: -1 - }, { - name: 3, - x: 338, - y: 262, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 154, - y: 431 - }, { - name: 52, - x: 253, - y: 159 - }, { - name: 82, - x: 146, - y: 226, - a: 90, - size: 2, - path: "-100,0", - j: 30 - }, { - name: 100, - x: 152, - y: 51, - length: 150, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 258, - y: 54, - length: 70, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 52, - y: 49, - length: 250, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 82, - x: 46, - y: 323, - a: 90, - size: 2, - path: "100,0", - j: 30 - }, { - name: 3, - x: 98, - y: 225, - timeout: -1 - }, { - name: 3, - x: 98, - y: 326, - timeout: -1 - }, { - name: 3, - x: 222, - y: 322, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 160, - y: 214 - }, { - name: 100, - x: 52, - y: 204, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, - { - name: 52, - x: 160, - y: 339 - }, { - name: 3, - x: 216, - y: 256, - timeout: -1 - }, { - name: 3, - x: 102, - y: 253, - timeout: -1 - }, { - name: 3, - x: 160, - y: 157, - timeout: -1 - }, { - name: 82, - x: 76, - y: 335, - a: 100, - size: 2 - }, { - name: 100, - x: 272, - y: 204, - length: 140, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 162, - y: 77, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 119, - y: 352 - }, { - name: 54, - x: 208, - y: 348 - }, { - name: 82, - x: 255, - y: 337, - a: -100, - size: 2 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 55, - y: 333 - }, { - name: 52, - x: 220, - y: 340 - }, - { - name: 81, - x: 130, - y: 405, - a: 0, - size: 1 - }, { - name: 81, - x: 210, - y: 405, - a: 0, - size: 1 - }, { - name: 100, - x: 167, - y: 310, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 56, - x: 260, - y: 353, - group: 0, - a: -180 - }, { - name: 56, - x: 65, - y: 165, - group: 0, - a: 0 - }, { - name: 81, - x: 280, - y: 225, - a: 0, - size: 1 - }, { - name: 81, - x: 200, - y: 225, - a: 0, - size: 1 - }, { - name: 81, - x: 120, - y: 225, - a: 0, - size: 1 - }, { - name: 100, - x: 198, - y: 113, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 269, - y: 183, - path: "1,-110,", - j: 50, - timeout: -1 - }, { - name: 3, - x: 130, - y: 84, - path: "1,110,", - j: 50, - timeout: -1 - }, { - name: 3, - x: 198, - y: 187, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 82, - x: 257, - y: 144, - a: 0, - size: 2 - }, { - name: 82, - x: 82, - y: 54, - a: 0, - size: 2 - }, { - name: 50, - x: 88, - y: 115 - }, { - name: 54, - x: 79, - y: 112 - }, { - name: 54, - x: 242, - y: 210 - }, { - name: 51, - x: 247, - y: 213 - }, { - name: 2, - x: 153, - y: 424 - }, { - name: 3, - x: 161, - y: 53, - timeout: -1 - }, { - name: 3, - x: 160, - y: 101, - timeout: -1 - }, { - name: 3, - x: 161, - y: 152, - timeout: -1 - }, { - name: 100, - x: 160, - y: 275, - length: 100, - c: !1, - i: !1, - F: !1, - d: 60, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 70, - y: 386, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, - { - name: 1, - k: 1, - o: 1, - l: !1 - } - ], - n: [{ - name: 2, - x: 548, - y: 117 - }, { - name: 52, - x: 100, - y: 315 - }, { - name: 54, - x: 100, - y: 316 - }, { - name: 100, - x: 99, - y: 442, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 82, - x: 47, - y: 213, - a: 90, - size: 2 - }, { - name: 55, - x: 159, - y: 209, - a: 180 - }, { - name: 56, - x: 146, - y: 51, - group: 0, - a: 90 - }, { - name: 82, - x: 272, - y: 209, - a: 90, - size: 2 - }, { - name: 56, - x: 322, - y: 399, - group: 0, - a: 270 - }, { - name: 55, - x: 385, - y: 206, - a: 180 - }, { - name: 56, - x: 544, - y: 398, - group: 1, - a: 270 - }, { - name: 56, - x: 371, - y: 54, - group: 1, - a: 90 - }, { - name: 3, - x: 546, - y: 210, - timeout: -1 - }, { - name: 3, - x: 96, - y: 210, - timeout: -1 - }, { - name: 3, - x: 323, - y: 207, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 155, - y: 76 - }, { - name: 54, - x: 151, - y: 434 - }, { - name: 82, - x: 268, - y: 148, - a: 20, - size: 2 - }, { - name: 82, - x: 49, - y: 147, - a: -20, - size: 2 - }, { - name: 51, - x: 155, - y: 370 - }, { - name: 100, - x: 248, - y: 291, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 50, - x: 275, - y: 161 - }, { - name: 100, - x: 152, - y: 134, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 64, - y: 291, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 56, - x: 251, - y: 404, - group: 0, - a: 270 - }, { - name: 56, - x: 64, - y: 405, - group: 0, - a: 270 - }, { - name: 54, - x: 62, - y: 347 - }, { - name: 54, - x: 247, - y: 342 - }, { - name: 3, - x: 64, - y: 348, - timeout: -1 - }, { - name: 3, - x: 151, - y: 433, - timeout: -1 - }, { - name: 3, - x: 250, - y: 343, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 82, - x: 106, - y: 407, - a: 0, - size: 2 - }, { - name: 82, - x: 278, - y: 354, - a: -80, - size: 2 - }, { - name: 82, - x: 41, - y: 353, - a: 80, - size: 2 - }, { - name: 82, - x: 23, - y: 250, - a: 80, - size: 2 - }, { - name: 82, - x: 298, - y: 252, - a: -80, - size: 2 - }, { - name: 55, - x: 91, - y: 348, - a: 0 - }, { - name: 52, - x: 213, - y: 339 - }, { - name: 2, - x: 43, - y: 95 - }, { - name: 3, - x: 106, - y: 240, - timeout: -1 - }, { - name: 3, - x: 70, - y: 197, - timeout: -1 - }, { - name: 3, - x: 127, - y: 191, - timeout: -1 - }, { - name: 82, - x: 212, - y: 407, - a: 0, - size: 2 - }, { - name: 54, - x: 100, - y: 207 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 322, - y: 41 - }, { - name: 82, - x: 322, - y: 449, - a: 0, - size: 2 - }, { - name: 3, - x: 338, - y: 148, - timeout: -1 - }, { - name: 3, - x: 319, - y: 121, - timeout: -1 - }, { - name: 54, - x: 321, - y: 254 - }, { - name: 55, - x: 320, - y: 316, - a: 90 - }, { - name: 3, - x: 300, - y: 94, - timeout: -1 - }, { - name: 52, - x: 321, - y: 366 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 157, - y: 43 - }, { - name: 50, - x: 37, - y: 207 - }, { - name: 51, - x: 285, - y: 282 - }, { - name: 81, - x: 215, - y: 361, - a: -5, - size: 1 - }, { - name: 81, - x: 30, - y: 351, - a: 10, - size: 1 - }, { - name: 100, - x: 36, - y: 125, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 81, - x: 106, - y: 361, - a: 5, - size: 1 - }, { - name: 3, - x: 168, - y: 116, - timeout: -1 - }, { - name: 3, - x: 136, - y: 150, - timeout: -1 - }, { - name: 55, - x: 159, - y: 424, - a: -90 - }, { - name: 3, - x: 182, - y: 173, - timeout: -1 - }, { - name: 54, - x: 161, - y: 240 - }, { - name: 81, - x: 296, - y: 351, - a: -10, - size: 1 - }, { - name: 100, - x: 162, - y: 149, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 426, - y: 25, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 258, - y: 26, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 338, - y: 116 - }, { - name: 82, - x: 341, - y: 223, - a: -30, - size: 2 - }, { - name: 56, - x: 441, - y: 141, - group: 0, - a: 180 - }, { - name: 56, - x: 267, - y: 361, - group: 0, - a: 0 - }, { - name: 2, - x: 226, - y: 178 - }, { - name: 3, - x: 343, - y: 362, - timeout: -1 - }, { - name: 3, - x: 341, - y: 179, - timeout: -1 - }, { - name: 55, - x: 433, - y: 354, - a: 180 - }, { - name: 54, - x: 345, - y: 417 - }, { - name: 3, - x: 340, - y: 71, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 157, - y: 41 - }, { - name: 52, - x: 154, - y: 174 - }, { - name: 100, - x: 258, - y: 161, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 50, - y: 160, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 157, - y: 301, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 253, - y: 398, - timeout: -1 - }, { - name: 3, - x: 155, - y: 109, - timeout: 9 - }, { - name: 3, - x: 110, - y: 402, - timeout: -1 - }, { - name: 81, - x: 63, - y: 407, - a: 90, - size: 1 - }, { - name: 81, - x: 260, - y: 288, - a: 90, - size: 1 - }, { - name: 54, - x: 106, - y: 398 - }, { - name: 54, - x: 154, - y: 173 - }, { - name: 103, - x: 38, - y: 212, - a: 20, - Pj: 12 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 54, - x: 199, - y: 435 - }, { - name: 51, - x: 205, - y: 441 - }, { - name: 50, - x: 292, - y: 125 - }, { - name: 55, - x: 436, - y: 148, - a: 180 - }, { - name: 56, - x: 176, - y: 68, - group: 0, - a: 90 - }, { - name: 56, - x: 435, - y: 406, - group: 0, - a: 270 - }, { - name: 2, - x: 433, - y: 259 - }, { - name: 3, - x: 197, - y: 122, - path: "-60,0", - j: 25, - timeout: -1 - }, { - name: 3, - x: 435, - y: 348, - timeout: -1 - }, { - name: 82, - x: 291, - y: 199, - a: 0, - size: 2 - }, { - name: 3, - x: 289, - y: 45, - path: "0,100", - j: 25, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 102, - y: 183 - }, { - name: 100, - x: 106, - y: 70, - length: 80, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 82, - x: 78, - y: 384, - a: 0, - size: 2 - }, { - name: 3, - x: 124, - y: 338, - timeout: -1 - }, { - name: 3, - x: 236, - y: 306, - timeout: -1 - }, { - name: 2, - x: 274, - y: 358 - }, { - name: 55, - x: 175, - y: 183, - a: 180 - }, { - name: 57, - x: 186, - y: 384, - a: 0, - size: 1, - path: "0,0", - j: 50, - r: 100, - v: !1 - }, { - name: 3, - x: 179, - y: 306, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, - { - name: 1, - k: 1, - o: 1, - l: !1 - } - ], - n: [{ - name: 52, - x: 566, - y: 103 - }, { - name: 100, - x: 571, - y: 195, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 82, - x: 346, - y: 413, - a: 0, - size: 2 - }, { - name: 3, - x: 237, - y: 288, - timeout: -1 - }, { - name: 3, - x: 349, - y: 286, - timeout: -1 - }, { - name: 82, - x: 587, - y: 382, - a: -37, - size: 2 - }, { - name: 56, - x: 110, - y: 292, - group: 0, - a: 0 - }, { - name: 56, - x: 476, - y: 420, - group: 0, - a: 270 - }, { - name: 2, - x: 350, - y: 129 - }, { - name: 54, - x: 241, - y: 286 - }, { - name: 3, - x: 469, - y: 286, - timeout: -1 - }, { - name: 54, - x: 567, - y: 105 - }, { - name: 54, - x: 468, - y: 285 - }, { - name: 82, - x: 231, - y: 412, - a: 0, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 317, - y: 43 - }, { - name: 3, - x: 315, - y: 397, - timeout: -1 - }, { - name: 3, - x: 315, - y: 374, - timeout: -1 - }, { - name: 3, - x: 315, - y: 355, - timeout: -1 - }, { - name: 52, - x: 399, - y: 162 - }, { - name: 100, - x: 318, - y: 170, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 82, - x: 316, - y: 460, - a: 0, - size: 2, - path: "0,-330", - j: 70 - }, { - name: 54, - x: 228, - y: 224 - }, { - name: 100, - x: 400, - y: 80, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 98, - y: 194 - }, { - name: 82, - x: 159, - y: 151, - a: 90, - size: 2 - }, { - name: 82, - x: 164, - y: 385, - a: 90, - size: 2 - }, { - name: 51, - x: 120, - y: 374 - }, { - name: 50, - x: 205, - y: 149 - }, { - name: 100, - x: 163, - y: 75, - length: 50, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 158, - y: 310, - length: 50, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 3, - x: 106, - y: 135, - timeout: -1 - }, { - name: 55, - x: 234, - y: 447, - a: 270 - }, { - name: 55, - x: 96, - y: 447, - a: 270 - }, { - name: 3, - x: 218, - y: 388, - timeout: -1 - }, { - name: 54, - x: 213, - y: 386 - }, { - name: 55, - x: 231, - y: 208, - a: 270 - }, { - name: 3, - x: 160, - y: 249, - timeout: -1 - }, { - name: 57, - x: 161, - y: 95, - a: 0, - size: 1, - v: !1 - }, - { - name: 57, - x: 164, - y: 442, - a: 0, - size: 1, - v: !1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 156, - y: 266 - }, { - name: 2, - x: 84, - y: 73 - }, { - name: 100, - x: 166, - y: 129, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 37, - y: 269, - length: 95, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 243, - y: 382, - timeout: -1 - }, { - name: 3, - x: 62, - y: 378, - timeout: -1 - }, { - name: 3, - x: 85, - y: 163, - timeout: -1 - }, { - name: 82, - x: 13, - y: 385, - a: 90, - size: 2 - }, { - name: 54, - x: 243, - y: 173 - }, { - name: 56, - x: 117, - y: 382, - group: 0, - a: 180 - }, { - name: 56, - x: 241, - y: 104, - group: 0, - a: 90 - }, { - name: 100, - x: 286, - y: 274, - length: 95, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 240, - y: 374 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 134, - y: 226, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 76, - y: 109 - }, { - name: 54, - x: 78, - y: 109 - }, { - name: 100, - x: 25, - y: 229, - length: 100, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 78, - y: 337, - timeout: -1 - }, { - name: 56, - x: 79, - y: 414, - group: 0, - a: 270 - }, { - name: 56, - x: 264, - y: 415, - group: 0, - a: 270 - }, { - name: 2, - x: 173, - y: 419 - }, { - name: 54, - x: 78, - y: 336 - }, { - name: 3, - x: 252, - y: 265, - timeout: -1 - }, { - name: 3, - x: 197, - y: 98, - timeout: -1 - }, { - name: 82, - x: 292, - y: 264, - a: 90, - size: 2 - }, { - name: 55, - x: 197, - y: 267, - a: 0 - }, { - name: 54, - x: 77, - y: 242 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 101, - y: 205, - length: 0, - c: !1, - i: !1, - F: !1, - d: 35, - D: !1, - e: 150, - g: !1, - f: 75, - b: !1, - h: "L" - }, { - name: 52, - x: 97, - y: 138 - }, { - name: 100, - x: 42, - y: 36, - length: 80, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 47, - y: 337 - }, { - name: 3, - x: 514, - y: 162, - timeout: 7 - }, { - name: 3, - x: 276, - y: 156, - timeout: -1 - }, { - name: 81, - x: 241, - y: 207, - a: 0, - size: 1 - }, { - name: 81, - x: 375, - y: 207, - a: 0, - size: 1 - }, { - name: 81, - x: 508, - y: 207, - a: 0, - size: 1 - }, { - name: 81, - x: 306, - y: 207, - a: 0, - size: 1 - }, { - name: 81, - x: 442, - y: 208, - a: 0, - size: 1 - }, { - name: 100, - x: 163, - y: 36, - length: 80, - c: !1, - i: !1, - F: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 82, - x: 593, - y: 181, - a: -30, - size: 2 - }, { - name: 81, - x: 241, - y: 421, - a: 0, - size: 1 - }, { - name: 81, - x: 306, - y: 421, - a: 0, - size: 1 - }, { - name: 81, - x: 375, - y: 421, - a: 0, - size: 1 - }, { - name: 81, - x: 442, - y: 422, - a: 0, - size: 1 - }, { - name: 81, - x: 508, - y: 421, - a: 0, - size: 1 - }, { - name: 82, - x: 593, - y: 395, - a: -30, - size: 2 - }, { - name: 3, - x: 449, - y: 361, - timeout: 15 - }, { - name: 81, - x: 38, - y: 420, - a: 0, - size: 1 - }, { - name: 81, - x: 103, - y: 420, - a: 0, - size: 1 - }, { - name: 81, - x: 172, - y: 420, - a: 0, - size: 1 - }, { - name: 54, - x: 396, - y: 159 - }, { - name: 54, - x: 333, - y: 363 - }] - }] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 436, - y: 257 - }, { - name: 3, - x: 226, - y: 70, - timeout: -1 - }, { - name: 3, - x: 440, - y: 345, - timeout: -1 - }, { - name: 3, - x: 227, - y: 211, - timeout: -1 - }, { - name: 52, - x: 328, - y: 69 - }, { - name: 100, - x: 332, - y: 411, - length: 310, - c: !0, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 328, - y: 68 - }, { - name: 55, - x: 228, - y: 279, - a: 0 - }, - { - name: 4, - x: 164, - y: 340, - locale: "en", - text: "Rotate the wheel to control the rope length", - width: 120 - }, { - name: 7, - x: 333, - y: 413, - locale: "en", - j: 100, - r: 100 - }, { - name: 55, - x: 430, - y: 166, - a: -180 - } - ], - u: [{ - name: 4, - x: 177, - y: 340, - locale: "ru", - text: "\u0412\u0440\u0430\u0449\u0430\u0439\u0442\u0435 \u043a\u043e\u043b\u0435\u0441\u043e \u0434\u043b\u044f \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u043a\u0438 \u0434\u043b\u0438\u043d\u044b \u0432\u0435\u0440\u0435\u0432\u043a\u0438", - width: 120 - }, { - name: 7, - x: 328, - y: 414, - locale: "ru", - j: 100, - r: 100 - }], - t: [{ - name: 7, - x: 328, - y: 413, - locale: "fr", - j: 100, - r: 100 - }, { - name: 4, - x: 161, - y: 334, - locale: "fr", - text: "Fais tourner la roue pour contr\u00f4ler la longueur de la corde", - width: 140 - }], - s: [{ - name: 7, - x: 332, - y: 416, - locale: "de", - j: 100, - r: 100 - }, { - name: 4, - x: 170, - y: 341, - locale: "de", - text: "Dreh am Rad um die L\u00e4nge des Seils einzustellen", - width: 120 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 100, - x: 164, - y: 59, - length: 100, - c: !0, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 63, - y: 194, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 259, - y: 194, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 2, - x: 160, - y: 322 - }, { - name: 3, - x: 67, - y: 382, - timeout: 10 - }, { - name: 3, - x: 254, - y: 382, - timeout: 20 - }, { - name: 3, - x: 162, - y: 416, - timeout: 15 - }, { - name: 52, - x: 159, - y: 224 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 203, - y: 186, - length: 40, - c: !1, - i: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 311, - y: 140 - }, { - name: 52, - x: 177, - y: 107 - }, { - name: 3, - x: 183, - y: 206, - timeout: -1 - }, { - name: 100, - x: 180, - y: 39, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, - { - name: 100, - x: 282, - y: 249, - length: 40, - c: !1, - i: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 193, - y: 386, - length: 40, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 379, - y: 351, - length: 40, - c: !0, - i: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 381, - y: 424 - }, { - name: 3, - x: 446, - y: 350, - timeout: 9 - }, { - name: 55, - x: 441, - y: 72, - a: -180 - }, { - name: 3, - x: 316, - y: 74, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 100, - x: 158, - y: 406, - length: 150, - c: !0, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 3, - x: 253, - y: 308, - timeout: -1 - }, { - name: 3, - x: 157, - y: 66, - timeout: 30 - }, { - name: 2, - x: 267, - y: 421 - }, { - name: 100, - x: 82, - y: 171, - length: 40, - c: !0, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 237, - y: 172, - length: 40, - c: !0, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 52, - x: 159, - y: 172 - }, { - name: 3, - x: 62, - y: 307, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 586, - y: 76 - }, { - name: 52, - x: 60, - y: 313 - }, { - name: 100, - x: 59, - y: 421, - length: 80, - c: !1, - d: -1, - e: 180, - g: !1, - f: 0, - b: !1 - }, { - name: 54, - x: 60, - y: 310 - }, { - name: 100, - x: 232, - y: 308, - length: 150, - c: !1, - d: 50, - e: 180, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 419, - y: 176, - length: 100, - c: !1, - d: 50, - e: 180, - g: !1, - f: 0, - b: !1 - }, { - name: 57, - x: 141, - y: 307, - a: 90, - size: 1 - }, { - name: 3, - x: 144, - y: 384, - timeout: -1 - }, { - name: 3, - x: 323, - y: 271, - timeout: -1 - }, { - name: 3, - x: 521, - y: 154, - timeout: -1 - }, { - name: 59, - x: 321, - y: 178, - a: 90, - size: 3 - }, { - name: 58, - x: 519, - y: 83, - a: 90, - size: 2 - }, { - name: 58, - x: 519, - y: 245, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 204, - y: 51 - }, { - name: 57, - x: 239, - y: 280, - a: 270, - size: 1 - }, { - name: 57, - x: 140, - y: 279, - a: 270, - size: 1 - }, { - name: 57, - x: 430, - y: 279, - a: 270, - size: 1 - }, { - name: 57, - x: 333, - y: 278, - a: 270, - size: 1 - }, { - name: 55, - x: 422, - y: 357, - a: 180 - }, { - name: 3, - x: 284, - y: 277, - timeout: 20 - }, { - name: 3, - x: 190, - y: 278, - timeout: 20 - }, { - name: 3, - x: 192, - y: 404, - timeout: 10 - }, { - name: 52, - x: 383, - y: 286 - }, { - name: 54, - x: 382, - y: 283 - }, { - name: 100, - x: 386, - y: 413, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 387, - y: 203, - a: 90 - }, { - name: 55, - x: 288, - y: 205, - a: 90 - }, { - name: 55, - x: 186, - y: 206, - a: 90 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 264, - y: 98, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 409, - y: 62, - length: 100, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 536, - y: 128, - length: 100, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 516, - y: 287, - length: 100, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 392, - y: 380, - length: 100, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 250, - y: 323, - length: 100, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 119, - y: 321, - length: 100, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 2, - x: 99, - y: 54 - }, { - name: 52, - x: 163, - y: 158 - }, { - name: 100, - x: 69, - y: 102, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 309, - y: 66, - timeout: 5 - }, { - name: 3, - x: 70, - y: 159, - timeout: 25 - }, { - name: 54, - x: 63, - y: 396 - }, { - name: 54, - x: 301, - y: 401 - }, { - name: 3, - x: 581, - y: 287, - timeout: -1 - }, { - name: 100, - x: 68, - y: 223, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 264, - y: 219, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 62, - y: 415 - }, { - name: 52, - x: 163, - y: 118 - }, { - name: 100, - x: 50, - y: 93, - length: 90, - c: !0, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 274, - y: 93, - length: 90, - c: !0, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 59, - x: 217, - y: 221, - a: 0, - size: 3 - }, { - name: 59, - x: 102, - y: 349, - a: 0, - size: 3 - }, { - name: 3, - x: 161, - y: 74, - timeout: 3 - }, { - name: 3, - x: 271, - y: 288, - timeout: -1 - }, { - name: 3, - x: 49, - y: 224, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 192, - y: 130, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 382, - y: 130, - length: 150, - c: !1, - i: !1, - d: -1, - e: 100, - g: !1, - f: 50, - b: !1, - h: "L" - }, { - name: 3, - x: 282, - y: 90, - path: "-100,0", - j: 60, - timeout: -1 - }, { - name: 3, - x: 275, - y: 30, - path: "100,0", - j: 60, - timeout: -1 - }, - { - name: 3, - x: 168, - y: 364, - timeout: 13 - }, { - name: 2, - x: 163, - y: 433 - }, { - name: 58, - x: 248, - y: 420, - a: 270, - size: 2 - }, { - name: 52, - x: 284, - y: 278 - }, { - name: 60, - x: 59, - y: 382, - a: 90, - size: 4 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 55, - x: 120, - y: 97, - a: 90 - }, { - name: 2, - x: 558, - y: 427 - }, { - name: 55, - x: 288, - y: 96, - a: 90 - }, { - name: 55, - x: 448, - y: 95, - a: 90 - }, { - name: 55, - x: 45, - y: 187, - a: 0 - }, { - name: 55, - x: 222, - y: 190, - a: 0 - }, { - name: 55, - x: 383, - y: 189, - a: 0 - }, { - name: 52, - x: 114, - y: 184 - }, { - name: 54, - x: 113, - y: 182 - }, { - name: 3, - x: 289, - y: 201, - timeout: -1 - }, { - name: 3, - x: 112, - y: 416, - timeout: 20 - }, { - name: 3, - x: 449, - y: 43, - timeout: -1 - }, { - name: 100, - x: 115, - y: 307, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 560, - y: 348, - length: 100, - c: !1, - d: 30, - e: 520, - g: !1, - f: 520, - b: !1 - }, { - name: 60, - x: 527, - y: 168, - a: 90, - size: 4 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 432, - y: 412 - }, { - name: 80, - x: 157, - y: 185, - X: -2, - Y: 2, - Z: 2, - a: 270, - size: 5 - }, { - name: 80, - x: 225, - y: 184, - X: -2, - Y: 2, - Z: 2, - a: 270, - size: 5 - }, { - name: 80, - x: 465, - y: 183, - X: -2, - Y: 2, - Z: 2, - a: 270, - size: 5 - }, { - name: 80, - x: 402, - y: 183, - X: -2, - Y: 2, - Z: 2, - a: 270, - size: 5 - }, { - name: 3, - x: 430, - y: 180, - timeout: -1 - }, - { - name: 3, - x: 189, - y: 181, - timeout: -1 - }, { - name: 100, - x: 308, - y: 48, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 307, - y: 305, - length: 80, - c: !1, - i: !1, - d: -1, - e: 350, - g: !1, - f: 175, - b: !1, - h: "L" - }, { - name: 3, - x: 194, - y: 416, - timeout: 8 - }, { - name: 52, - x: 304, - y: 181 - }, { - name: 57, - x: 434, - y: 263, - a: 0, - size: 1 - }, { - name: 57, - x: 191, - y: 264, - a: 0, - size: 1 - }, { - name: 57, - x: 433, - y: 102, - a: 0, - size: 1 - }, { - name: 57, - x: 190, - y: 106, - a: 0, - size: 1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 54, - x: 346, - y: 348 - }, { - name: 55, - x: 226, - y: 328, - a: 0 - }, { - name: 55, - x: 456, - y: 227, - a: 180 - }, { - name: 55, - x: 226, - y: 124, - a: 0 - }, { - name: 2, - x: 418, - y: 53 - }, { - name: 52, - x: 346, - y: 348 - }, { - name: 3, - x: 345, - y: 286, - timeout: -1 - }, { - name: 3, - x: 344, - y: 110, - timeout: -1 - }, { - name: 3, - x: 342, - y: 213, - timeout: -1 - }, { - name: 100, - x: 347, - y: 428, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 344, - y: 257, - a: 0, - size: 2, - path: "0,0", - r: -130 - }, { - name: 58, - x: 346, - y: 159, - a: 0, - size: 2, - path: "0,0", - r: 130 - }, { - name: 57, - x: 417, - y: 108, - a: 0, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 306, - y: 845 - }, { - name: 2, - x: 419, - y: 62 - }, { - name: 100, - x: 309, - y: 587, - length: 250, - c: !0, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 306, - y: 717 - }, { - name: 100, - x: 338, - y: 379, - length: 30, - c: !1, - i: !1, - d: 55, - e: 160, - g: !1, - f: 160, - b: !1, - h: "L" - }, { - name: 3, - x: 186, - y: 83, - timeout: -1 - }, { - name: 57, - x: 187, - y: 310, - a: 0, - size: 1 - }, { - name: 100, - x: 297, - y: 123, - length: 100, - c: !1, - i: !1, - d: 105, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 54, - x: 415, - y: 220 - }, { - name: 3, - x: 402, - y: 878, - timeout: -1 - }, { - name: 3, - x: 306, - y: 470, - timeout: -1 - }, { - name: 55, - x: 201, - y: 878, - a: 0 - }, { - name: 58, - x: 307, - y: 812, - a: 0, - size: 2 - }, { - name: 60, - x: 374, - y: 310, - a: 0, - size: 4 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 261, - y: 386 - }, { - name: 3, - x: 261, - y: 321, - timeout: -1 - }, { - name: 3, - x: 509, - y: 128, - timeout: -1 - }, { - name: 3, - x: 415, - y: 225, - timeout: -1 - }, { - name: 100, - x: 137, - y: 28, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 215, - y: 112 - }, { - name: 55, - x: 228, - y: 239, - a: 270 - }, { - name: 55, - x: 292, - y: 240, - a: 270 - }, { - name: 100, - x: 307, - y: 33, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 441, - y: 33, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 414, - y: 227 - }, { - name: 55, - x: 495, - y: 236, - a: -180 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 316, - y: 406 - }, { - name: 100, - x: 412, - y: 90, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 215, - y: 89, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 80, - x: 225, - y: 332, - X: 0, - Y: 5, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 397, - y: 332, - X: 0, - Y: 5, - Z: 2, - a: 0, - size: 5 - }, { - name: 54, - x: 395, - y: 396 - }, { - name: 54, - x: 225, - y: 398 - }, { - name: 3, - x: 227, - y: 398, - timeout: -1 - }, { - name: 3, - x: 396, - y: 396, - timeout: -1 - }, { - name: 55, - x: 159, - y: 211, - a: 0 - }, { - name: 52, - x: 309, - y: 205 - }, { - name: 3, - x: 311, - y: 124, - timeout: -1 - }, { - name: 55, - x: 477, - y: 206, - a: 180 - }, { - name: 100, - x: 313, - y: 89, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 2, - x: 201, - y: 373 - }, { - name: 52, - x: 532, - y: 150 - }, { - name: 100, - x: 269, - y: 94, - length: 260, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 533, - y: 71, - length: 50, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 54, - x: 270, - y: 390 - }, { - name: 54, - x: 430, - y: 343 - }, { - name: 54, - x: 531, - y: 209 - }, { - name: 3, - x: 532, - y: 210, - timeout: -1 - }, { - name: 3, - x: 431, - y: 343, - timeout: -1 - }, { - name: 3, - x: 269, - y: 390, - timeout: -1 - }, { - name: 54, - x: 491, - y: 284 - }, { - name: 54, - x: 352, - y: 381 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 455, - y: 79 - }, { - name: 52, - x: 155, - y: 196 - }, { - name: 80, - x: 299, - y: 418, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 301, - y: 259, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 137, - y: 259, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 137, - y: 418, - X: -4, - Y: 4, - Z: 2, - a: 0, - size: 5 - }, { - name: 54, - x: 451, - y: 591 - }, { - name: 100, - x: 450, - y: 335, - length: 50, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 107, - y: 74, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 452, - y: 728, - timeout: -1 - }, { - name: 3, - x: 447, - y: 167, - timeout: 7 - }, { - name: 55, - x: 73, - y: 337, - a: 0 - }, { - name: 100, - x: 211, - y: 73, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 146, - y: 334, - timeout: -1 - }, { - name: 54, - x: 327, - y: 335 - }, { - name: 54, - x: 146, - y: 334 - }, { - name: 55, - x: 237, - y: 337, - a: 0 - }, { - name: 55, - x: 451, - y: 784, - a: 270 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 213, - y: 156 - }, { - name: 2, - x: 354, - y: 422 - }, { - name: 100, - x: 152, - y: 107, - length: 55, - c: !1, - i: !1, - d: -1, - e: 250, - g: !0, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 201, - y: 107, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 318, - y: 221, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 373, - y: 111, - timeout: -1 - }, { - name: 3, - x: 405, - y: 263, - timeout: -1 - }, { - name: 3, - x: 410, - y: 182, - timeout: -1 - }, { - name: 55, - x: 227, - y: 343, - a: 0 - }, { - name: 54, - x: 353, - y: 330 - }, { - name: 58, - x: 285, - y: 337, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 387, - y: 416 - }, { - name: 80, - x: 275, - y: 309, - X: -1.6, - Y: 2.4, - Z: 0.8, - a: 0, - size: 5 - }, { - name: 80, - x: 273, - y: 172, - X: 0, - Y: 2.4, - Z: 0.8, - a: 0, - size: 5 - }, { - name: 80, - x: 343, - y: 240, - X: -0.8, - Y: 2.4, - Z: 0.8, - a: 90, - size: 5 - }, { - name: 80, - x: 205, - y: 241, - X: -2.4, - Y: 2.4, - Z: 0.8, - a: 90, - size: 5 - }, { - name: 52, - x: 277, - y: 359 - }, { - name: 100, - x: 280, - y: 422, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 277, - y: 357 - }, { - name: 100, - x: 277, - y: 135, - length: 80, - c: !1, - i: !1, - d: 70, - e: 250, - g: !1, - f: 125, - b: !1, - h: "L" - }, { - name: 3, - x: 158, - y: 246, - timeout: -1 - }, { - name: 3, - x: 279, - y: 242, - timeout: -1 - }, { - name: 3, - x: 276, - y: 34, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - k: 1 - }], - n: [{ - name: 52, - x: 49, - y: 508 - }, { - name: 2, - x: 260, - y: 413 - }, { - name: 54, - x: 49, - y: 508 - }, { - name: 100, - x: 274, - y: 148, - length: 100, - c: !1, - d: 40, - e: 220, - g: !1, - f: 220, - b: !1 - }, { - name: 3, - x: 272, - y: 61, - timeout: -1 - }, { - name: 3, - x: 51, - y: 60, - timeout: -1 - }, { - name: 3, - x: 198, - y: 400, - timeout: -1 - }, { - name: 100, - x: 53, - y: 321, - length: 100, - c: !1, - d: 40, - e: 220, - g: !1, - f: 0, - b: !1 - }, { - name: 58, - x: 126, - y: 401, - a: 90, - size: 2 - }, { - name: 57, - x: 260, - y: 361, - a: 0, - size: 1 - }, { - name: 58, - x: 127, - y: 237, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 158, - y: 142 - }, { - name: 100, - x: 157, - y: 246, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 159, - y: 137 - }, { - name: 55, - x: 74, - y: 369, - a: 0 - }, { - name: 57, - x: 156, - y: 278, - a: 0, - size: 1, - path: "0,193,", - j: 40 - }, { - name: 3, - x: 156, - y: 368, - timeout: -1 - }, { - name: 3, - x: 158, - y: 478, - timeout: -1 - }, { - name: 100, - x: 159, - y: 526, - length: 100, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 158, - y: 718 - }, { - name: 2, - x: 257, - y: 67 - }, { - name: 60, - x: 76, - y: 771, - a: 20, - size: 4 - }, { - name: 60, - x: 241, - y: 771, - a: -20, - size: 4 - }, { - name: 3, - x: 257, - y: 418, - timeout: -1 - }, { - name: 55, - x: 74, - y: 497, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 60, - x: 347, - y: 120, - a: 270, - size: 4, - v: !1 - }, { - name: 54, - x: 578, - y: 161 - }, { - name: 3, - x: 606, - y: 69, - path: "-100,0", - j: 30, - timeout: 40 - }, { - name: 60, - x: 290, - y: 120, - a: 270, - size: 4, - v: !1 - }, { - name: 54, - x: 62, - y: 158 - }, { - name: 3, - x: 37, - y: 69, - path: "100,0", - j: 30, - timeout: 40 - }, { - name: 52, - x: 317, - y: 320 - }, { - name: 2, - x: 318, - y: 447 - }, { - name: 55, - x: 190, - y: 288, - a: 0 - }, { - name: 55, - x: 440, - y: 281, - a: 180 - }, { - name: 55, - x: 320, - y: 383, - a: 270 - }, { - name: 3, - x: 318, - y: 157, - timeout: 14 - }, { - name: 100, - x: 319, - y: 34, - length: 250, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L", - q: !1 - }, { - name: 60, - x: 435, - y: 32, - a: 0, - size: 4, - v: !1 - }, - { - name: 60, - x: 197, - y: 33, - a: 0, - size: 4, - v: !1 - }, { - name: 59, - x: 593, - y: 32, - a: 0, - size: 3, - v: !1 - }, { - name: 59, - x: 41, - y: 33, - a: 0, - size: 3, - v: !1 - }, { - name: 54, - x: 577, - y: 220 - }, { - name: 54, - x: 60, - y: 217 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 80, - x: 109, - y: 220, - X: -2.2, - Y: 2.2, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 322, - y: 220, - X: -2.2, - Y: 2.2, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 322, - y: 250, - X: -2.2, - Y: 2.2, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 518, - y: 220, - X: -2.2, - Y: 2.2, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 518, - y: 250, - X: -2.2, - Y: 2.2, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 518, - y: 280, - X: -2.2, - Y: 2.2, - Z: 2, - a: 0, - size: 5 - }, { - name: 2, - x: 580, - y: 58 - }, { - name: 54, - x: 321, - y: 329 - }, { - name: 54, - x: 109, - y: 328 - }, { - name: 54, - x: 515, - y: 330 - }, { - name: 3, - x: 109, - y: 370, - timeout: -1 - }, { - name: 3, - x: 324, - y: 370, - timeout: -1 - }, { - name: 3, - x: 517, - y: 370, - timeout: -1 - }, { - name: 100, - x: 320, - y: 30, - length: 60, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 513, - y: 30, - length: 60, - c: !1, - i: !1, - d: 75, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 33, - y: 150, - a: 0 - }, { - name: 55, - x: 227, - y: 152, - a: 0 - }, { - name: 55, - x: 423, - y: 151, - a: 0 - }, { - name: 55, - x: 108, - y: 440, - a: 270 - }, { - name: 55, - x: 324, - y: 441, - a: 270 - }, { - name: 55, - x: 516, - y: 441, - a: 270 - }, { - name: 52, - x: 115, - y: 135 - }, { - name: 100, - x: 115, - y: 30, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - width: 320, - height: 480, - m: 32 - }, { - name: 1, - k: 1 - }], - n: [{ - name: 52, - x: 211, - y: 290 - }, { - name: 100, - x: 211, - y: 207, - length: 65, - c: !1, - d: -1, - e: 100, - g: !1, - f: 100, - b: !1 - }, { - name: 100, - x: 119, - y: 439, - length: 100, - c: !1, - d: 30, - e: 100, - g: !0, - f: 100, - b: !1 - }, { - name: 100, - x: 289, - y: 438, - length: 100, - c: !1, - d: 30, - e: 360, - g: !0, - f: 360, - b: !1 - }, { - name: 2, - x: 61, - y: 116 - }, { - name: 60, - x: 251, - y: 284, - a: 90, - size: 4 - }, { - name: 3, - x: 118, - y: 297, - timeout: -1 - }, { - name: 3, - x: 255, - y: 85, - timeout: -1 - }, - { - name: 3, - x: 213, - y: 361, - timeout: -1 - }, { - name: 58, - x: 127, - y: 105, - a: 90, - size: 2 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 416, - y: 292 - }, { - name: 52, - x: 320, - y: 709 - }, { - name: 80, - x: 248, - y: 811, - X: -1.5, - Y: 2.6, - Z: 1, - a: -135, - size: 5, - path: "0,0", - r: -30 - }, { - name: 80, - x: 392, - y: 812, - X: -1.5, - Y: 2.6, - Z: 1, - a: 135, - size: 5, - path: "0,0", - r: 30 - }, { - name: 54, - x: 321, - y: 909 - }, { - name: 100, - x: 324, - y: 516, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 59, - x: 413, - y: 380, - a: 30, - size: 3 - }, { - name: 59, - x: 231, - y: 382, - a: -30, - size: 3 - }, { - name: 100, - x: 395, - y: 811, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 250, - y: 814, - length: 100, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 324, - y: 311, - length: 100, - c: !0, - i: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 440, - y: 123, - length: 100, - c: !1, - i: !1, - d: 30, - e: 260, - g: !1, - f: 250, - b: !1, - h: "L" - }, { - name: 3, - x: 259, - y: 251, - timeout: -1 - }, { - name: 3, - x: 260, - y: 51, - timeout: -1 - }, { - name: 100, - x: 256, - y: 582, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 385, - y: 582, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 323, - y: 518, - path: "RW65", - j: 40, - timeout: -1 - }] - }] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 303, - y: 214 - }, { - name: 100, - x: 383, - y: 175, - length: 65, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 215, - y: 175, - length: 65, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 426, - y: 380 - }, { - name: 3, - x: 431, - y: 81, - timeout: -1 - }, { - name: 3, - x: 302, - y: 85, - timeout: -1 - }, { - name: 53, - x: 150, - y: 392 - }, { - name: 60, - x: 273, - y: 323, - a: 0, - size: 4 - }, { - name: 60, - x: 273, - y: 46, - a: 0, - size: 4 - }, { - name: 4, - x: 215, - y: 331, - locale: "en", - text: "Toggle the gravity with this button", - width: 140 - }, { - name: 8, - x: 222, - y: 429, - locale: "en", - a: 35, - j: 100, - r: 100 - }, { - name: 3, - x: 302, - y: 273, - timeout: -1 - }], - u: [{ - name: 8, - x: 219, - y: 417, - locale: "ru", - a: 40, - j: 100, - r: 100 - }, { - name: 4, - x: 229, - y: 328, - locale: "ru", - text: "\u041f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0439\u0442\u0435 \u0433\u0440\u0430\u0432\u0438\u0442\u0430\u0446\u0438\u044e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u044d\u0442\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u0438", - width: 140 - }], - t: [{ - name: 4, - x: 180, - y: 338, - locale: "fr", - text: "Active et d\u00e9sactive la gravit\u00e9 avec ce bouton", - width: 200 - }, { - name: 8, - x: 211, - y: 407, - locale: "fr", - a: 35, - j: 100, - r: 100 - }], - s: [{ - name: 8, - x: 207, - y: 425, - locale: "de", - a: 55, - j: 100, - r: 100 - }, { - name: 4, - x: 208, - y: 342, - locale: "de", - text: "Hier kannst Du die Schwerkraft ein oder aus schalten", - width: 140 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 212, - y: 443 - }, { - name: 52, - x: 402, - y: 523 - }, { - name: 3, - x: 402, - y: 378, - path: "150,0", - j: 50, - timeout: -1 - }, { - name: 100, - x: 340, - y: 102, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 209, - y: 100, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 544, - y: 291, - path: "-150,0", - j: 50, - timeout: -1 - }, { - name: 3, - x: 210, - y: 335, - timeout: 20 - }, { - name: 53, - x: 586, - y: 109 - }, { - name: 80, - x: 211, - y: 388, - X: -3, - Y: 3, - Z: 2, - a: 0, - size: 5 - }, { - name: 80, - x: 211, - y: 289, - X: -3, - Y: 3, - Z: 2, - a: 0, - size: 5 - }, { - name: 100, - x: 469, - y: 105, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 403, - y: 525 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 323, - y: 421 - }, { - name: 54, - x: 325, - y: 336 - }, { - name: 54, - x: 392, - y: 316 - }, { - name: 54, - x: 424, - y: 258 - }, { - name: 54, - x: 425, - y: 188 - }, - { - name: 54, - x: 389, - y: 124 - }, { - name: 54, - x: 252, - y: 124 - }, { - name: 54, - x: 217, - y: 193 - }, { - name: 54, - x: 218, - y: 258 - }, { - name: 54, - x: 256, - y: 317 - }, { - name: 3, - x: 219, - y: 259, - timeout: 8 - }, { - name: 3, - x: 423, - y: 259, - timeout: 18 - }, { - name: 55, - x: 196, - y: 84, - a: 0 - }, { - name: 55, - x: 448, - y: 84, - a: 180 - }, { - name: 52, - x: 322, - y: 95 - }, { - name: 54, - x: 322, - y: 95 - }, { - name: 3, - x: 324, - y: 229, - path: "RC50", - j: 30, - timeout: 9 - }, { - name: 100, - x: 325, - y: 232, - length: 105, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 221, - y: 48 - }, { - name: 52, - x: 341, - y: 151 - }, - { - name: 3, - x: 339, - y: 406, - timeout: -1 - }, { - name: 100, - x: 275, - y: 64, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 339, - y: 451, - timeout: -1 - }, { - name: 60, - x: 344, - y: 298, - a: 90, - size: 4, - path: "145,0", - j: 50 - }, { - name: 60, - x: 330, - y: 299, - a: 90, - size: 4, - path: "-145,0", - j: 50 - }, { - name: 53, - x: 342, - y: 66 - }, { - name: 54, - x: 339, - y: 302 - }, { - name: 100, - x: 409, - y: 66, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 466, - y: 151, - a: 180 - }, { - name: 3, - x: 222, - y: 155, - timeout: 11 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 55, - x: 40, - y: 398, - a: 0 - }, { - name: 55, - x: 157, - y: 98, - a: 0 - }, { - name: 55, - x: 324, - y: 398, - a: 0 - }, { - name: 52, - x: 158, - y: 301 - }, { - name: 54, - x: 161, - y: 391 - }, { - name: 100, - x: 162, - y: 164, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 60, - x: 281, - y: 384, - a: 90, - size: 4 - }, { - name: 60, - x: 464, - y: 96, - a: 90, - size: 4 - }, { - name: 2, - x: 551, - y: 64 - }, { - name: 3, - x: 286, - y: 94, - timeout: -1 - }, { - name: 3, - x: 551, - y: 166, - timeout: 20 - }, { - name: 3, - x: 468, - y: 399, - timeout: -1 - }, { - name: 53, - x: 379, - y: 228 - }, { - name: 80, - x: 554, - y: 243, - X: -2, - Y: 3, - Z: 2, - a: 0, - size: 5 - }, { - name: 58, - x: 281, - y: 245, - a: 90, - size: 2 - }, { - name: 57, - x: 464, - y: 214, - a: 90, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 558, - y: 252 - }, { - name: 52, - x: 223, - y: 277 - }, { - name: 100, - x: 226, - y: 427, - length: 100, - c: !1, - i: !1, - d: 30, - e: 130, - g: !0, - f: 130, - b: !1, - h: "L" - }, { - name: 3, - x: 553, - y: 374, - timeout: -1 - }, { - name: 3, - x: 102, - y: 230, - path: "0,-100", - j: 40, - timeout: -1 - }, { - name: 100, - x: 225, - y: 126, - length: 120, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 455, - y: 73, - length: 100, - c: !1, - i: !1, - d: 40, - e: 230, - g: !1, - f: 230, - b: !1, - h: "L" - }, { - name: 3, - x: 68, - y: 138, - path: "0,100", - j: 40, - timeout: -1 - }, { - name: 59, - x: 554, - y: 198, - a: 0, - size: 3 - }, { - name: 54, - x: 553, - y: 374 - }, { - name: 100, - x: 345, - y: 194, - length: 100, - c: !1, - i: !1, - d: 40, - e: 230, - g: !1, - f: 115, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 3, - x: 282, - y: 482, - timeout: 23 - }, { - name: 2, - x: 252, - y: 839 - }, { - name: 60, - x: 300, - y: 217, - a: 90, - size: 4 - }, { - name: 59, - x: 300, - y: 377, - a: 90, - size: 3 - }, { - name: 52, - x: 439, - y: 844 - }, { - name: 3, - x: 397, - y: 920, - timeout: 6 - }, { - name: 3, - x: 322, - y: 286, - timeout: 15 - }, { - name: 54, - x: 438, - y: 843 - }, { - name: 60, - x: 300, - y: 536, - a: 90, - size: 4 - }, { - name: 60, - x: 300, - y: 715, - a: 90, - size: 4 - }, { - name: 59, - x: 300, - y: 875, - a: 90, - size: 3 - }, { - name: 100, - x: 279, - y: 674, - length: 100, - c: !1, - i: !1, - d: 65, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 281, - y: 541, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 281, - y: 413, - length: 100, - c: !1, - i: !1, - d: 55, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 281, - y: 286, - length: 100, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 281, - y: 158, - length: 100, - c: !1, - i: !1, - d: 45, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 331, - y: 875, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 497, - y: 923, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 460, - y: 737, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 221, - y: 414 - }, { - name: 100, - x: 289, - y: 342, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 164, - y: 342, - length: 60, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 37, - y: 344, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 34, - y: 181, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 161, - y: 182, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 288, - y: 183, - length: 100, - c: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 2, - x: 279, - y: 65 - }, { - name: 3, - x: 96, - y: 110, - timeout: -1 - }, { - name: 3, - x: 225, - y: 277, - timeout: -1 - }, { - name: 3, - x: 96, - y: 435, - timeout: -1 - }, { - name: 53, - x: 223, - y: 345 - }, { - name: 80, - x: 94, - y: 264, - X: 0, - Y: 3, - Z: 2, - a: 0, - size: 5 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 257, - y: 355 - }, { - name: 100, - x: 261, - y: 65, - length: 260, - c: !1, - i: !1, - d: -1, - e: 230, - g: !1, - f: 230, - b: !1, - h: "L" - }, { - name: 2, - x: 261, - y: 425 - }, { - name: 60, - x: 92, - y: 188, - a: -20, - size: 4 - }, { - name: 3, - x: 33, - y: 102, - path: "0,150", - j: 70, - timeout: -1 - }, { - name: 3, - x: 97, - y: 102, - path: "0,150", - j: 70, - timeout: -1 - }, { - name: 3, - x: 161, - y: 102, - path: "0,150", - j: 70, - timeout: -1 - }, { - name: 54, - x: 33, - y: 350 - }, { - name: 54, - x: 97, - y: 350 - }, { - name: 54, - x: 161, - y: 350 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 60, - x: 189, - y: 111, - a: 0, - size: 4 - }, { - name: 60, - x: 545, - y: 111, - a: 0, - size: 4 - }, { - name: 60, - x: 366, - y: 111, - a: 0, - size: 4 - }, { - name: 60, - x: 188, - y: 367, - a: 0, - size: 4 - }, { - name: 60, - x: 544, - y: 367, - a: 0, - size: 4 - }, { - name: 60, - x: 365, - y: 367, - a: 0, - size: 4 - }, { - name: 54, - x: 511, - y: 232 - }, { - name: 52, - x: 511, - y: 233 - }, { - name: 55, - x: 595, - y: 238, - a: 180 - }, { - name: 55, - x: 429, - y: 239, - a: 180 - }, { - name: 55, - x: 285, - y: 239, - a: 180 - }, { - name: 3, - x: 180, - y: 238, - timeout: -1 - }, { - name: 3, - x: 65, - y: 147, - timeout: -1 - }, { - name: 3, - x: 64, - y: 424, - timeout: -1 - }, { - name: 2, - x: 60, - y: 68 - }, { - name: 100, - x: 515, - y: 415, - length: 150, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 53, - x: 360, - y: 421 - }, { - name: 57, - x: 65, - y: 462, - a: 0, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 339, - y: 257, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 261, - y: 130, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 384, - y: 128, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 514, - y: 130, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 217, - y: 256, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 462, - y: 257, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 95, - y: 254, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 160, - y: 388, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 390, - y: 332, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 448, - y: 172, - timeout: 20 - }, { - name: 3, - x: 162, - y: 260, - timeout: 30 - }, { - name: 3, - x: 60, - y: 69, - timeout: 40 - }, { - name: 2, - x: 428, - y: 49 - }, { - name: 52, - x: 327, - y: 458 - }, { - name: 100, - x: 265, - y: 331, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 584, - y: 258, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 487, - y: 388, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 53, - x: 191, - y: 54 - }, { - name: 100, - x: 129, - y: 130, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 160, - y: 218 - }, { - name: 2, - x: 271, - y: 392 - }, { - name: 53, - x: 61, - y: 402 - }, { - name: 100, - x: 281, - y: 206, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 44, - y: 204, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 163, - y: 87, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 162, - y: 322, - length: 245, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 47, - y: 306, - timeout: -1 - }, { - name: 3, - x: 273, - y: 311, - timeout: -1 - }, { - name: 3, - x: 278, - y: 95, - timeout: -1 - }, { - name: 58, - x: 108, - y: 227, - a: 90, - size: 2 - }, { - name: 58, - x: 211, - y: 229, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 54, - x: 308, - y: 726 - }, { - name: 3, - x: 308, - y: 887, - timeout: 0 - }, { - name: 3, - x: 307, - y: 833, - timeout: 0 - }, { - name: 52, - x: 315, - y: 552 - }, { - name: 3, - x: 308, - y: 779, - timeout: 0 - }, { - name: 100, - x: 220, - y: 99, - length: 100, - c: !1, - i: !1, - d: 81, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 402, - y: 98, - length: 100, - c: !1, - i: !1, - d: 81, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 221, - y: 291, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 401, - y: 289, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 219, - y: 193, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 406, - y: 194, - length: 100, - c: !1, - i: !1, - d: 80, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 312, - y: 41 - }, { - name: 100, - x: 443, - y: 449, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 172, - y: 450, - length: 150, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 308, - y: 642 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 407, - y: 357, - length: 40, - c: !1, - i: !1, - d: -1, - e: 260, - g: !1, - f: 220, - b: !1, - h: "L" - }, { - name: 100, - x: 242, - y: 134, - length: 100, - c: !1, - i: !1, - d: 30, - e: 260, - g: !1, - f: 54, - b: !1, - h: "L" - }, { - name: 2, - x: 219, - y: 55 - }, { - name: 52, - x: 406, - y: 425 - }, { - name: 3, - x: 202, - y: 296, - timeout: -1 - }, { - name: 3, - x: 331, - y: 60, - timeout: -1 - }, { - name: 3, - x: 445, - y: 200, - timeout: -1 - }, { - name: 53, - x: 432, - y: 53 - }, { - name: 60, - x: 458, - y: 245, - a: 0, - size: 4, - path: "-47,0", - j: 20 - }, { - name: 60, - x: 182, - y: 245, - a: 0, - size: 4, - path: "47,0", - j: 20 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 319, - y: 404 - }, { - name: 52, - x: 320, - y: 286 - }, { - name: 100, - x: 478, - y: 266, - length: 95, - c: !1, - i: !1, - d: 28, - e: 145, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 320, - y: 153, - timeout: 11 - }, { - name: 3, - x: 545, - y: 184, - timeout: 8 - }, { - name: 3, - x: 101, - y: 189, - timeout: 8 - }, { - name: 100, - x: 168, - y: 267, - length: 95, - c: !1, - i: !1, - d: 28, - e: 145, - g: !1, - f: 145, - b: !1, - h: "L" - }, { - name: 100, - x: 322, - y: 53, - length: 208, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 55, - x: 238, - y: 269, - a: 0 - }, { - name: 55, - x: 407, - y: 272, - a: 180 - }, { - name: 58, - x: 320, - y: 214, - a: 0, - size: 2, - path: "0,0", - r: 150 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 578, - y: 416 - }, { - name: 52, - x: 283, - y: 358 - }, { - name: 3, - x: 319, - y: 158, - path: "0,100", - j: 30, - timeout: 30 - }, { - name: 3, - x: 448, - y: 32, - path: "0,100", - j: 50, - timeout: 30 - }, { - name: 3, - x: 384, - y: 98, - path: "0,100", - j: 40, - timeout: 30 - }, { - name: 100, - x: 284, - y: 35, - length: 300, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 162, - y: 257, - a: 0 - }, { - name: 55, - x: 386, - y: 409, - a: 270 - }, { - name: 60, - x: 124, - y: 111, - a: 90, - size: 4 - }, { - name: 60, - x: 124, - y: 288, - a: 90, - size: 4 - }, { - name: 58, - x: 124, - y: 428, - a: 90, - size: 2 - }, { - name: 55, - x: 162, - y: 353, - a: 0 - }, { - name: 55, - x: 162, - y: 160, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 154, - y: 407 - }, { - name: 52, - x: 320, - y: 283 - }, { - name: 100, - x: 323, - y: 35, - length: 220, - c: !0, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 322, - y: 198, - timeout: -1 - }, { - name: 3, - x: 321, - y: 111, - timeout: -1 - }, { - name: 3, - x: 321, - y: 387, - timeout: -1 - }, { - name: 55, - x: 441, - y: 283, - a: 180 - }, { - name: 57, - x: 321, - y: 160, - a: 0, - size: 1 - }, { - name: 58, - x: 321, - y: 241, - a: 0, - size: 2 - }, { - name: 59, - x: 322, - y: 339, - a: 0, - size: 3 - }, { - name: 60, - x: 322, - y: 450, - a: 0, - size: 4 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - uk: !1 - }], - n: [{ - name: 54, - x: 53, - y: 214 - }, { - name: 54, - x: 126, - y: 215 - }, { - name: 54, - x: 197, - y: 215 - }, { - name: 54, - x: 272, - y: 215 - }, { - name: 54, - x: 272, - y: 144 - }, { - name: 2, - x: 273, - y: 67 - }, { - name: 3, - x: 204, - y: 415, - timeout: -1 - }, { - name: 3, - x: 281, - y: 414, - timeout: -1 - }, { - name: 3, - x: 123, - y: 92, - timeout: -1 - }, { - name: 53, - x: 55, - y: 410 - }, { - name: 55, - x: 33, - y: 93, - a: 0 - }, { - name: 52, - x: 114, - y: 417 - }, { - name: 100, - x: 63, - y: 294, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 164, - y: 296, - length: 100, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 514, - y: 410 - }, { - name: 52, - x: 380, - y: 276 - }, { - name: 58, - x: 313, - y: 291, - a: 90, - size: 2 - }, { - name: 3, - x: 78, - y: 197, - timeout: -1 - }, { - name: 3, - x: 264, - y: 304, - timeout: 0 - }, { - name: 3, - x: 524, - y: 165, - timeout: 0 - }, { - name: 100, - x: 504, - y: 60, - length: 200, - c: !0, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 69, - y: 59, - length: 350, - c: !0, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 60, - x: 342, - y: 463, - a: 0, - size: 4 - }, { - name: 60, - x: 246, - y: 105, - a: 0, - size: 4 - }, { - name: 59, - x: 403, - y: 105, - a: 0, - size: 3 - }, { - name: 59, - x: 502, - y: 463, - size: 3 - }, { - name: 59, - x: 87, - y: 105, - a: 0, - size: 3 - }, { - name: 60, - x: 8, - y: 195, - a: 90, - size: 4 - }, { - name: 59, - x: 83, - y: 245, - a: 0, - size: 3 - }, { - name: 59, - x: 182, - y: 463, - a: 0, - size: 3 - }, { - name: 60, - x: 8, - y: 373, - a: 90, - size: 4 - }, { - name: 58, - x: 62, - y: 463, - a: 0, - size: 2 - }, { - name: 60, - x: 570, - y: 373, - a: 90, - size: 4 - }, { - name: 59, - x: 504, - y: 285, - a: 0, - size: 3 - }, { - name: 58, - x: 522, - y: 105, - a: 0, - size: 2 - }, { - name: 60, - x: 570, - y: 192, - a: 90, - size: 4 - }, { - name: 100, - x: 72, - y: 396, - length: 350, - c: !0, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 181, - y: 172 - }, { - name: 100, - x: 183, - y: 54, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 497, - y: 177 - }, - { - name: 54, - x: 178, - y: 277 - }, { - name: 54, - x: 178, - y: 354 - }, { - name: 54, - x: 178, - y: 431 - }, { - name: 54, - x: 178, - y: 509 - }, { - name: 100, - x: 178, - y: 637, - length: 100, - c: !1, - i: !1, - d: 35, - e: 350, - g: !1, - f: 30, - b: !1, - h: "L" - }, { - name: 3, - x: 177, - y: 582, - timeout: -1 - }, { - name: 60, - x: 267, - y: 350, - a: 90, - size: 4, - path: "-100,0", - j: 33 - }, { - name: 100, - x: 269, - y: 853, - length: 100, - c: !1, - i: !1, - d: 30, - e: 150, - g: !0, - f: 150, - b: !1, - h: "L" - }, { - name: 54, - x: 407, - y: 755 - }, { - name: 3, - x: 407, - y: 799, - timeout: -1 - }, { - name: 100, - x: 401, - y: 541, - length: 100, - c: !1, - i: !1, - d: 55, - e: 270, - g: !0, - f: 270, - b: !1, - h: "L" - }, { - name: 3, - x: 498, - y: 353, - timeout: -1 - }, { - name: 58, - x: 267, - y: 490, - a: 90, - size: 2, - path: "-100,0", - j: 33 - }, { - name: 60, - x: 367, - y: 772, - a: 90, - size: 4 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - uk: !1 - }], - n: [{ - name: 2, - x: 167, - y: 341 - }, { - name: 3, - x: 40, - y: 157, - timeout: -1 - }, { - name: 3, - x: 252, - y: 248, - timeout: -1 - }, { - name: 3, - x: 102, - y: 342, - timeout: -1 - }, { - name: 100, - x: 164, - y: 425, - length: 325, - c: !0, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 59, - x: 160, - y: 115, - a: 0, - size: 3 - }, { - name: 53, - x: 268, - y: 413 - }, { - name: 100, - x: 293, - y: 53, - length: 75, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 35, - y: 52, - length: 75, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, - { - name: 52, - x: 166, - y: 59 - }, { - name: 58, - x: 161, - y: 208, - a: 0, - size: 2 - }, { - name: 57, - x: 164, - y: 299, - a: 0, - size: 1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - uk: !1 - }], - n: [{ - name: 3, - x: 247, - y: 139, - timeout: 10 - }, { - name: 3, - x: 78, - y: 141, - timeout: 0 - }, { - name: 52, - x: 160, - y: 243 - }, { - name: 54, - x: 247, - y: 192 - }, { - name: 54, - x: 246, - y: 249 - }, { - name: 54, - x: 74, - y: 192 - }, { - name: 54, - x: 74, - y: 248 - }, { - name: 54, - x: 74, - y: 304 - }, { - name: 54, - x: 246, - y: 305 - }, { - name: 54, - x: 189, - y: 362 - }, { - name: 54, - x: 132, - y: 361 - }, { - name: 54, - x: 74, - y: 359 - }, { - name: 54, - x: 246, - y: 138 - }, { - name: 54, - x: 188, - y: 137 - }, { - name: 54, - x: 129, - y: 138 - }, - { - name: 54, - x: 72, - y: 136 - }, { - name: 54, - x: 245, - y: 362 - }, { - name: 3, - x: 247, - y: 363, - timeout: 0 - }, { - name: 100, - x: 115, - y: 177, - length: 40, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 100, - x: 208, - y: 320, - length: 40, - c: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1 - }, { - name: 2, - x: 243, - y: 59 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 264, - y: 59 - }, { - name: 3, - x: 36, - y: 303, - timeout: -1 - }, { - name: 3, - x: 265, - y: 258, - timeout: -1 - }, { - name: 3, - x: 266, - y: 178, - timeout: -1 - }, { - name: 57, - x: 301, - y: 160, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 301, - y: 256, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 262, - y: 114, - a: 0, - size: 1, - v: !1 - }, { - name: 57, - x: 225, - y: 162, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 224, - y: 256, - a: 90, - size: 1, - v: !1 - }, { - name: 100, - x: 30, - y: 351, - length: 100, - c: !1, - i: !1, - d: 20, - e: 250, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 30, - y: 416, - length: 100, - c: !1, - i: !1, - d: 40, - e: 250, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 59, - x: 73, - y: 453, - a: 0, - size: 3, - v: !1 - }, { - name: 59, - x: 213, - y: 453, - a: 0, - size: 3, - v: !1 - }, { - name: 57, - x: 311, - y: 453, - a: 0, - size: 1, - v: !1 - }, { - name: 100, - x: 187, - y: 63, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 186, - y: 163 - }, { - name: 54, - x: 179, - y: 304 - }, { - name: 54, - x: 35, - y: 305 - }, { - name: 55, - x: 95, - y: 66, - a: 0 - }, { - name: 55, - x: 182, - y: 244, - a: 270 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 265, - y: -10 - }, { - name: 100, - x: 250, - y: 295, - length: 70, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 53, - x: 412, - y: 421 - }, { - name: 3, - x: 407, - y: 204, - timeout: -1 - }, { - name: 3, - x: 412, - y: 333, - timeout: -1 - }, { - name: 2, - x: 411, - y: 85 - }, { - name: 3, - x: 248, - y: 297, - path: "RC60", - j: 100, - timeout: -1 - }, { - name: 57, - x: 302, - y: 133, - a: 0, - size: 1, - path: "0,0", - r: -120 - }, { - name: 57, - x: 233, - y: 133, - a: 0, - size: 1, - path: "0,0", - r: 120 - }, { - name: 60, - x: 264, - y: 464, - a: 0, - size: 4 - }, { - name: 54, - x: 407, - y: 203 - }, { - name: 58, - x: 235, - y: 63, - a: 90, - size: 2 - }, { - name: 58, - x: 299, - y: 64, - a: 90, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 315, - y: 511 - }, { - name: 2, - x: 317, - y: 66 - }, { - name: 53, - x: 315, - y: 252 - }, { - name: 54, - x: 315, - y: 510 - }, { - name: 55, - x: 163, - y: 194, - a: 0 - }, { - name: 55, - x: 476, - y: 190, - a: 180 - }, { - name: 59, - x: 206, - y: 401, - a: 90, - size: 3 - }, { - name: 59, - x: 277, - y: 402, - a: 90, - size: 3 - }, { - name: 59, - x: 351, - y: 400, - a: 90, - size: 3 - }, { - name: 59, - x: 422, - y: 399, - a: 90, - size: 3 - }, { - name: 3, - x: 314, - y: 79, - path: "RW60", - j: 30, - timeout: -1 - }, { - name: 3, - x: 246, - y: 439, - timeout: -1 - }, { - name: 3, - x: 383, - y: 440, - timeout: -1 - }] - }] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 3, - x: 159, - y: 306, - path: "RW100", - j: 100, - timeout: -1 - }, { - name: 3, - x: 161, - y: 308, - path: "RW50", - j: 50, - timeout: -1 - }, { - name: 3, - x: 162, - y: 308, - timeout: -1 - }, { - name: 52, - x: 53, - y: 128 - }, { - name: 100, - x: 56, - y: 46, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 226, - y: 334 - }, { - name: 100, - x: 256, - y: 45, - length: 260, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 60, - x: 99, - y: 365, - a: -70, - size: 4, - v: 1 - }], - u: [{ - name: 8, - x: 126, - y: 401, - locale: "ru", - a: 90, - j: 100, - r: 100 - }, { - name: 4, - x: 146, - y: 392, - locale: "ru", - text: "\u0427\u0442\u043e\u0431\u044b \u043f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u043f\u0438\u043b\u0443, \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443", - width: 150 - }], - w: [{ - name: 4, - x: 143, - y: 393, - locale: "en", - text: "Turn the blades with this button", - width: 150 - }, { - name: 8, - x: 126, - y: 401, - locale: "en", - a: 90, - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 150, - y: 389, - locale: "de", - text: "Drehe die S\u00e4gebl\u00e4tter mit diesem Schaltfeld", - width: 180 - }, { - name: 8, - x: 126, - y: 403, - locale: "de", - a: 90, - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 146, - y: 391, - locale: "fr", - text: "Faites tourner les lames avec ce bouton", - width: 150 - }, { - name: 8, - x: 128, - y: 407, - locale: "fr", - a: 90, - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 2, - x: 160, - y: 52 - }, { - name: 52, - x: 163, - y: 367 - }, { - name: 3, - x: 159, - y: 262, - timeout: -1 - }, { - name: 3, - x: 159, - y: 145, - timeout: -1 - }, { - name: 3, - x: 159, - y: 203, - timeout: -1 - }, { - name: 100, - x: 161, - y: 463, - length: 65, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, - { - name: 54, - x: 163, - y: 365 - }, { - name: 59, - x: 105, - y: 122, - a: 90, - size: 3, - v: 1 - }, { - name: 59, - x: 201, - y: 320, - a: 0, - size: 3, - v: 1 - } - ], - u: [{ - name: 4, - x: 166, - y: 155, - locale: "ru", - text: "\u042d\u0442\u0438 \u043f\u0438\u043b\u044b \u043f\u043e\u0432\u043e\u0440\u0430\u0447\u0438\u0432\u0430\u044e\u0442\u0441\u044f \u0432\u043c\u0435\u0441\u0442\u0435", - width: 150 - }, { - name: 13, - x: 238, - y: 138, - locale: "ru", - j: 100, - r: 100 - }], - w: [{ - name: 4, - x: 166, - y: 161, - locale: "en", - text: "These blades rotate together", - width: 150 - }, { - name: 13, - x: 239, - y: 147, - locale: "en", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 125, - y: 189, - locale: "de", - text: "Diese S\u00e4gebl\u00e4tter drehen sich gemeinsam", - width: 200 - }, { - name: 13, - x: 215, - y: 177, - locale: "de", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 172, - y: 162, - locale: "fr", - text: "Ces lames tournent ensemble", - width: 140 - }, { - name: 13, - x: 236, - y: 150, - locale: "fr", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 36, - y: 329 - }, { - name: 54, - x: 35, - y: 331 - }, { - name: 100, - x: 37, - y: 438, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 158, - y: 181, - length: 60, - c: !1, - i: !1, - d: 60, - e: 240, - g: !1, - f: 120, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 282, - y: 432 - }, { - name: 3, - x: 32, - y: 90, - timeout: -1 - }, { - name: 3, - x: 282, - y: 329, - timeout: -1 - }, { - name: 3, - x: 288, - y: 91, - timeout: -1 - }, { - name: 60, - x: 93, - y: 286, - a: 0, - size: 4, - v: 1 - }, { - name: 60, - x: 226, - y: 286, - a: 0, - size: 4, - v: 1 - }, { - name: 58, - x: 159, - y: 114, - a: 0, - size: 2, - v: 1 - }, { - name: 61, - x: 158, - y: 382 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 2, - x: 159, - y: 42 - }, { - name: 100, - x: 160, - y: 470, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 162, - y: 394 - }, { - name: 54, - x: 161, - y: 392 - }, - { - name: 61, - x: 273, - y: 421, - gl: 1 - }, { - name: 59, - x: 95, - y: 137, - a: 90, - size: 3, - v: 2 - }, { - name: 59, - x: 233, - y: 322, - a: 0, - size: 3, - v: 1 - }, { - name: 59, - x: 85, - y: 321, - a: 0, - size: 3, - v: 2 - }, { - name: 59, - x: 231, - y: 137, - a: 90, - size: 3, - v: 1 - }, { - name: 3, - x: 170, - y: 255, - timeout: -1 - }, { - name: 3, - x: 132, - y: 224, - timeout: -1 - }, { - name: 3, - x: 175, - y: 206, - timeout: -1 - }, { - name: 61, - x: 50, - y: 422, - gl: 2 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 59, - x: 98, - y: 347, - a: 90, - size: 3, - v: 1 - }, { - name: 59, - x: 242, - y: 350, - a: 0, - size: 3, - v: 1 - }, { - name: 3, - x: 41, - y: 437, - timeout: -1 - }, { - name: 3, - x: 166, - y: 215, - timeout: -1 - }, - { - name: 3, - x: 289, - y: 434, - timeout: -1 - }, { - name: 100, - x: 167, - y: 266, - length: 140, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: 240, - g: !1, - f: 120, - b: !1, - h: "L" - }, { - name: 2, - x: 164, - y: 435 - }, { - name: 52, - x: 164, - y: 107 - }, { - name: 54, - x: 166, - y: 107 - }, { - name: 54, - x: 286, - y: 432 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 53, - x: 58, - y: 210 - }, { - name: 2, - x: 258, - y: 323 - }, { - name: 82, - x: 160, - y: 95, - a: 0, - size: 2 - }, { - name: 82, - x: 159, - y: 366, - a: 0, - size: 2 - }, { - name: 3, - x: 160, - y: 186, - path: "RW65", - j: 65, - timeout: -1 - }, { - name: 3, - x: 160, - y: 209, - path: "RC40", - j: 60, - timeout: -1 - }, { - name: 3, - x: 160, - y: 209, - path: "RW10", - j: 20, - timeout: -1 - }, { - name: 55, - x: 58, - y: 313, - a: 0 - }, { - name: 52, - x: 155, - y: 299 - }, { - name: 59, - x: 158, - y: 439, - a: 0, - size: 3, - path: "0,-120", - j: 30, - v: !1 - }, { - name: 59, - x: 159, - y: 160, - a: 0, - size: 3, - path: "0,-120", - j: 30, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 56, - x: 35, - y: 340, - group: 0, - a: 290 - }, { - name: 56, - x: 101, - y: 373, - group: 1, - a: 290 - }, { - name: 56, - x: 220, - y: 373, - group: 0, - a: 250 - }, { - name: 56, - x: 290, - y: 340, - group: 1, - a: 250 - }, { - name: 52, - x: 162, - y: 164 - }, { - name: 100, - x: 106, - y: 47, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 228, - y: 50, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 165, - y: 57 - }, { - name: 3, - x: 156, - y: 417, - timeout: 15 - }, { - name: 3, - x: 46, - y: 234, - path: "0,230,", - j: 30, - timeout: -1 - }, { - name: 3, - x: 271, - y: 465, - path: "1,-290,", - j: 60, - timeout: -1 - }, { - name: 54, - x: 155, - y: 371 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 81, - x: 596, - y: 315, - a: -5, - size: 1 - }, { - name: 81, - x: 514, - y: 318, - a: -1, - size: 1 - }, { - name: 81, - x: 432, - y: 319, - a: -1, - size: 1 - }, { - name: 81, - x: 352, - y: 320, - a: -1, - size: 1 - }, { - name: 81, - x: 277, - y: 321, - a: -1, - size: 1 - }, { - name: 81, - x: 199, - y: 322, - a: -1, - size: 1 - }, { - name: 2, - x: 57, - y: 289 - }, { - name: 58, - x: 194, - y: 194, - a: 90, - size: 2, - v: 1 - }, { - name: 58, - x: 353, - y: 189, - a: 0, - size: 2, - v: 1 - }, { - name: 58, - x: 498, - y: 194, - a: 90, - size: 2, - v: 1 - }, { - name: 52, - x: 570, - y: 200 - }, { - name: 100, - x: 574, - y: 77, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 196, - y: 261, - timeout: 9 - }, { - name: 3, - x: 353, - y: 255, - timeout: 7 - }, { - name: 3, - x: 500, - y: 257, - timeout: -1 - }, { - name: 81, - x: 125, - y: 323, - a: -1, - size: 1 - }, { - name: 100, - x: 473, - y: 344, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 316, - y: 342, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 162, - y: 342, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 96, - y: 231 - }, { - name: 56, - x: 70, - y: 433, - group: 1, - a: -45 - }, { - name: 56, - x: 100, - y: 78, - group: 0, - a: 45 - }, { - name: 56, - x: 232, - y: 78, - group: 1, - a: 135 - }, { - name: 56, - x: 243, - y: 430, - group: 0, - a: -135 - }, { - name: 52, - x: 274, - y: 230 - }, { - name: 100, - x: 169, - y: 261, - length: 80, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 166, - y: 163 - }, { - name: 59, - x: 283, - y: 399, - a: 0, - size: 3, - v: 1 - }, { - name: 59, - x: 277, - y: 114, - a: 90, - size: 3, - v: 1 - }, { - name: 3, - x: 166, - y: 164, - timeout: -1 - }, { - name: 3, - x: 105, - y: 287, - timeout: -1 - }, { - name: 3, - x: 221, - y: 290, - timeout: -1 - }, { - name: 61, - x: 162, - y: 63 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 59, - x: 97, - y: 269, - a: 90, - size: 3, - v: 1 - }, { - name: 2, - x: 48, - y: 369 - }, { - name: 3, - x: 279, - y: 400, - timeout: -1 - }, { - name: 3, - x: 126, - y: 397, - timeout: -1 - }, { - name: 3, - x: 202, - y: 333, - timeout: -1 - }, { - name: 82, - x: 156, - y: 440, - a: 0, - size: 2 - }, { - name: 82, - x: 54, - y: 440, - a: 0, - size: 2 - }, { - name: 59, - x: 231, - y: 274, - a: 0, - size: 3, - v: 1 - }, { - name: 81, - x: 283, - y: 435, - a: -8, - size: 1 - }, { - name: 100, - x: 131, - y: 35, - length: 70, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 50, - x: 132, - y: 137 - }, { - name: 100, - x: 276, - y: 36, - length: 70, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 51, - x: 278, - y: 139 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 2, - x: 235, - y: 438 - }, { - name: 100, - x: 272, - y: 60, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 186, - y: 154 - }, { - name: 3, - x: 55, - y: 245, - timeout: -1 - }, { - name: 3, - x: 196, - y: 390, - timeout: -1 - }, { - name: 3, - x: 128, - y: 153, - timeout: -1 - }, { - name: 100, - x: 172, - y: 354, - length: 40, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 21, - y: 63, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 73, - y: 279, - a: 90, - size: 2, - v: 1 - }, { - name: 100, - x: 297, - y: 302, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 61, - x: 92, - y: 434, - gl: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 50, - x: 199, - y: 226 - }, { - name: 51, - x: 410, - y: 75 - }, { - name: 2, - x: 305, - y: 74 - }, { - name: 81, - x: 186, - y: 323, - a: 30, - size: 1 - }, { - name: 81, - x: 410, - y: 24, - a: 180, - size: 1 - }, { - name: 81, - x: 193, - y: 176, - a: 180, - size: 1 - }, { - name: 81, - x: 414, - y: 320, - a: -30, - size: 1 - }, { - name: 54, - x: 195, - y: 224 - }, { - name: 3, - x: 305, - y: 293, - timeout: -1 - }, { - name: 3, - x: 307, - y: 413, - timeout: -1 - }, { - name: 3, - x: 306, - y: 161, - timeout: 8 - }, { - name: 54, - x: 407, - y: 72 - }, { - name: 59, - x: 259, - y: 353, - a: 0, - size: 3, - v: 1 - }, { - name: 59, - x: 349, - y: 353, - a: 0, - size: 3, - v: 1 - }, { - name: 54, - x: 306, - y: 409 - }, { - name: 55, - x: 97, - y: 245, - a: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 56, - x: 62, - y: 243, - group: 1, - a: 0 - }, { - name: 56, - x: 285, - y: 367, - group: 1, - a: 270, - path: "0,-100", - j: 40 - }, { - name: 56, - x: 283, - y: 113, - group: 0, - a: 90, - path: "0,100", - j: 40 - }, { - name: 56, - x: 54, - y: 353, - group: 0, - a: 0 - }, { - name: 2, - x: 204, - y: 443 - }, { - name: 60, - x: 234, - y: 154, - a: 90, - size: 4, - v: !1 - }, { - name: 52, - x: 169, - y: 112 - }, { - name: 100, - x: 44, - y: 116, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 174, - y: 21, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 60, - x: 234, - y: 331, - a: 90, - size: 4, - v: !1 - }, { - name: 3, - x: 130, - y: 394, - timeout: -1 - }, { - name: 3, - x: 92, - y: 240, - timeout: -1 - }, - { - name: 3, - x: 283, - y: 240, - timeout: -1 - }, { - name: 54, - x: 85, - y: 345 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 59, - x: 80, - y: 236, - a: 0, - size: 3, - v: 2 - }, { - name: 59, - x: 240, - y: 236, - a: 0, - size: 3, - v: 1 - }, { - name: 50, - x: 35, - y: 188 - }, { - name: 51, - x: 292, - y: 188 - }, { - name: 100, - x: 33, - y: 95, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 290, - y: 95, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 100, - x: 33, - y: 384, - length: 110, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 290, - y: 384, - length: 110, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R" - }, { - name: 2, - x: 160, - y: 435 - }, { - name: 3, - x: 290, - y: 63, - timeout: -1 - }, { - name: 3, - x: 33, - y: 63, - timeout: -1 - }, { - name: 81, - x: 290, - y: 440, - a: -15, - size: 1 - }, { - name: 3, - x: 160, - y: 157, - timeout: -1 - }, { - name: 54, - x: 160, - y: 329 - }, { - name: 81, - x: 33, - y: 440, - a: 15, - size: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 52, - x: 74, - y: 361 - }, { - name: 100, - x: 77, - y: 445, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 107, - y: 209, - timeout: -1 - }, { - name: 2, - x: 257, - y: 156 - }, { - name: 54, - x: 74, - y: 361 - }, { - name: 3, - x: 132, - y: 231, - timeout: -1 - }, { - name: 3, - x: 80, - y: 187, - timeout: -1 - }, { - name: 60, - x: 127, - y: 267, - a: 40, - size: 4, - v: 1 - }, { - name: 60, - x: 192, - y: 270, - a: -40, - size: 4, - v: 1 - }, { - name: 100, - x: 156, - y: 93, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: 70, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 61, - x: 243, - y: 378, - gl: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !0 - }], - n: [{ - name: 50, - x: 166, - y: 360 - }, { - name: 54, - x: 163, - y: 358 - }, { - name: 2, - x: 163, - y: 439 - }, { - name: 81, - x: 83, - y: 266, - a: 20, - size: 1 - }, { - name: 81, - x: 255, - y: 263, - a: -20, - size: 1 - }, { - name: 51, - x: 101, - y: 176 - }, { - name: 3, - x: 164, - y: 298, - timeout: 6 - }, { - name: 3, - x: 167, - y: 141, - timeout: 7 - }, { - name: 3, - x: 169, - y: 79, - timeout: 8 - }, { - name: 82, - x: 220, - y: 64, - a: 20, - size: 2 - }, { - name: 82, - x: 120, - y: 64, - a: -20, - size: 2 - }, { - name: 100, - x: 261, - y: 446, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 68, - y: 444, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 100, - x: 61, - y: 64, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 162, - y: 64, - length: 30, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 100, - x: 263, - y: 63, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 265, - y: 384, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 100, - x: 160, - y: 385, - length: 30, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 59, - y: 385, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 50, - x: 164, - y: 302 - }, { - name: 51, - x: 166, - y: 157 - }, { - name: 2, - x: 159, - y: 444 - }, { - name: 57, - x: 161, - y: 226, - a: 0, - size: 1, - v: !1 - }, { - name: 3, - x: 128, - y: 335, - timeout: -1 - }, { - name: 3, - x: 128, - y: 128, - timeout: -1 - }, { - name: 3, - x: 157, - y: 228, - path: "RC40", - j: 70, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 52, - x: 144, - y: 202 - }, { - name: 3, - x: 109, - y: 362, - timeout: -1 - }, { - name: 3, - x: 187, - y: 121, - timeout: -1 - }, { - name: 2, - x: 197, - y: 434 - }, { - name: 3, - x: 186, - y: 81, - timeout: -1 - }, { - name: 54, - x: 108, - y: 367 - }, { - name: 58, - x: 57, - y: 366, - a: 0, - size: 2, - v: 1 - }, { - name: 58, - x: 158, - y: 366, - a: 0, - size: 2, - v: 1 - }, { - name: 58, - x: 106, - y: 420, - a: 90, - size: 2, - v: 1 - }, { - name: 58, - x: 187, - y: 50, - a: 0, - size: 2, - v: 1 - }, { - name: 58, - x: 235, - y: 101, - a: 90, - size: 2, - v: 1 - }, { - name: 58, - x: 135, - y: 101, - a: 90, - size: 2, - v: 1 - }, { - name: 55, - x: 241, - y: 189, - a: 180 - }, { - name: 100, - x: 149, - y: 296, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 55, - x: 56, - y: 192, - a: 0 - }, { - name: 54, - x: 146, - y: 202 - }, { - name: 61, - x: 255, - y: 288, - gl: 0 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 3, - x: 161, - y: 110, - timeout: -1 - }, { - name: 3, - x: 256, - y: 174, - timeout: -1 - }, { - name: 2, - x: 163, - y: 378 - }, { - name: 52, - x: 158, - y: 243 - }, { - name: 100, - x: 162, - y: 160, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 3, - x: 64, - y: 172, - timeout: -1 - }, { - name: 56, - x: 52, - y: 431, - group: 0, - a: 270, - path: "230,0", - j: 40 - }, { - name: 56, - x: 159, - y: 52, - group: 0, - a: 90 - }, { - name: 55, - x: 56, - y: 236, - a: 0 - }, { - name: 55, - x: 266, - y: 232, - a: 180 - }, { - name: 60, - x: 102, - y: 145, - a: 90, - size: 4, - v: 1 - }, { - name: 60, - x: 218, - y: 144, - a: 90, - size: 4, - v: 1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 59, - x: 200, - y: 415, - a: 90, - size: 3, - v: 1 - }, { - name: 59, - x: 120, - y: 415, - a: 90, - size: 3, - v: 2 - }, { - name: 100, - x: 160, - y: 280, - length: 75, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 54, - x: 156, - y: 374 - }, { - name: 3, - x: 160, - y: 375, - timeout: -1 - }, { - name: 3, - x: 120, - y: 355, - timeout: -1 - }, { - name: 3, - x: 200, - y: 355, - timeout: -1 - }, { - name: 2, - x: 160, - y: 38 - }, { - name: 52, - x: 156, - y: 177 - }, { - name: 100, - x: 60, - y: 75, - length: 105, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 260, - y: 75, - length: 105, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 58, - x: 30, - y: 245, - a: 90, - size: 3, - v: 1 - }, { - name: 58, - x: 275, - y: 245, - a: 90, - size: 3, - v: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 2, - x: 276, - y: 83 - }, { - name: 100, - x: 152, - y: 94, - length: 100, - c: !0, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 52, - x: 153, - y: 204 - }, { - name: 55, - x: 42, - y: 216, - a: 0 - }, { - name: 3, - x: 266, - y: 222, - timeout: -1 - }, { - name: 58, - x: 158, - y: 406, - a: 90, - size: 2, - v: !1 - }, { - name: 3, - x: 114, - y: 399, - timeout: -1 - }, { - name: 3, - x: 206, - y: 400, - timeout: -1 - }, { - name: 60, - x: 108, - y: 454, - a: 0, - size: 4, - v: !1 - }, { - name: 60, - x: 291, - y: 357, - a: 0, - size: 4, - v: 1 - }, { - name: 58, - x: 244, - y: 455, - a: 0, - size: 2, - v: !1 - }, { - name: 60, - x: 28, - y: 360, - a: 90, - size: 4, - v: 1 - }, { - name: 103, - x: 286, - y: 149, - a: -15, - Pj: 13 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 56, - x: 183, - y: 179, - group: 0, - a: 0 - }, { - name: 56, - x: 143, - y: 238, - group: 0, - a: 180 - }, { - name: 56, - x: 180, - y: 307, - group: 1, - a: 0 - }, { - name: 56, - x: 145, - y: 108, - group: 1, - a: 180 - }, { - name: 2, - x: 249, - y: 85 - }, { - name: 52, - x: 230, - y: 502 - }, { - name: 54, - x: 229, - y: 497 - }, { - name: 55, - x: 38, - y: 113, - a: 0 - }, { - name: 55, - x: 286, - y: 175, - a: 180 - }, { - name: 3, - x: 98, - y: 268, - path: "0,-170", - j: 15, - timeout: -1 - }, { - name: 3, - x: 97, - y: 350, - path: "0,-170", - j: 15, - timeout: -1 - }, { - name: 3, - x: 98, - y: 424, - path: "0,-170", - j: 15, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 164, - y: 100 - }, { - name: 100, - x: 42, - y: 98, - length: 80, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 100, - x: 169, - y: 370, - length: 220, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !0, - h: "L" - }, { - name: 100, - x: 260, - y: 100, - length: 40, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }, { - name: 2, - x: 165, - y: 413 - }, { - name: 3, - x: 165, - y: 213, - timeout: -1 - }, { - name: 3, - x: 165, - y: 273, - timeout: -1 - }, { - name: 3, - x: 167, - y: 337, - timeout: -1 - }, { - name: 54, - x: 51, - y: 209 - }, { - name: 60, - x: 214, - y: 159, - a: 0, - size: 4, - v: 1 - }, { - name: 60, - x: 229, - y: 267, - a: 90, - size: 4, - v: 1 - }, { - name: 100, - x: 174, - y: 37, - length: 30, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L" - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 56, - x: 306, - y: 417, - group: 1, - a: 270 - }, { - name: 56, - x: 469, - y: 189, - group: 1, - a: 190 - }, { - name: 59, - x: 349, - y: 125, - a: 90, - size: 3, - v: 1 - }, { - name: 59, - x: 252, - y: 297, - a: 0, - size: 3, - v: 1 - }, { - name: 2, - x: 216, - y: 179 - }, { - name: 3, - x: 382, - y: 179, - timeout: -1 - }, { - name: 3, - x: 302, - y: 336, - timeout: -1 - }, { - name: 3, - x: 425, - y: 180, - timeout: -1 - }, { - name: 52, - x: 295, - y: 90 - }, { - name: 100, - x: 299, - y: 213, - length: 110, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 297, - y: 88 - }, { - name: 54, - x: 302, - y: 335 - }, { - name: 54, - x: 299, - y: 254 - }, { - name: 54, - x: 300, - y: 164 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - l: !1 - }], - n: [{ - name: 54, - x: 161, - y: 135 - }, { - name: 2, - x: 158, - y: 910 - }, { - name: 52, - x: 160, - y: 134 - }, { - name: 60, - x: 70, - y: 322, - a: 0, - size: 4, - v: 1 - }, { - name: 60, - x: 248, - y: 547, - a: 90, - size: 4, - v: 1 - }, { - name: 54, - x: 161, - y: 249 - }, { - name: 54, - x: 161, - y: 462 - }, { - name: 60, - x: 69, - y: 547, - a: 90, - size: 4, - v: 2 - }, { - name: 60, - x: 249, - y: 322, - a: 0, - size: 4, - v: 2 - }, { - name: 60, - x: 250, - y: 770, - a: 0, - size: 4, - v: 2 - }, { - name: 60, - x: 71, - y: 769, - a: 0, - size: 4, - v: 1 - }, { - name: 54, - x: 157, - y: 654 - }, { - name: 3, - x: 63, - y: 429, - path: "200,0", - j: 50, - timeout: 10 - }, { - name: 3, - x: 257, - y: 724, - path: "-200,0", - j: 50, - timeout: 15 - }, { - name: 3, - x: 255, - y: 225, - path: "-200,0", - j: 50, - timeout: 6 - }, { - name: 82, - x: 166, - y: 82, - a: 0, - size: 2 - }] - }] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 162, - y: 131, - length: 40, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 175, - y: 189 - }, { - name: 100, - x: 256, - y: 28, - length: 150, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,237,", - q: !1, - j: 45 - }, { - name: 100, - x: 65, - y: 256, - length: 150, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,-237,", - q: !1, - j: 45 - }, { - name: 57, - x: 104, - y: 368, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 211, - y: 368, - a: 90, - size: 1, - v: !1 - }, { - name: 2, - x: 158, - y: 425 - }, { - name: 3, - x: 159, - y: 360, - timeout: -1 - }, { - name: 3, - x: 64, - y: 234, - timeout: -1 - }, { - name: 3, - x: 253, - y: 238, - timeout: -1 - }], - w: [{ - name: 13, - x: 155, - y: 261, - locale: "en", - j: 100, - r: 100 - }, { - name: 4, - x: 57, - y: 271, - locale: "en", - text: "The bee carries candy along this path", - width: 200 - }], - u: [{ - name: 13, - x: 98, - y: 289, - locale: "ru", - j: 100, - r: 100 - }, { - name: 4, - x: 127, - y: 247, - locale: "ru", - text: "\u041f\u0447\u0435\u043b\u0430 \u043d\u043e\u0441\u0438\u0442 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 \u043f\u043e \u0442\u0440\u0430\u0435\u043a\u0442\u043e\u0440\u0438\u0438", - width: 100 - }], - s: [{ - name: 4, - x: 56, - y: 262, - locale: "de", - text: "Die Biene tr\u00e4gt das Bonbon diesen Pfad entlang", - width: 200 - }, { - name: 13, - x: 155, - y: 252, - locale: "de", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 55, - y: 268, - locale: "fr", - text: "L'abeille transporte le bonbon le long de ce chemin", - width: 200 - }, { - name: 13, - x: 155, - y: 252, - locale: "fr", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 80, - y: 321, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,-500,", - q: !1, - j: 30 - }, { - name: 100, - x: 241, - y: 321, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,-500,", - q: !1, - j: 30 - }, { - name: 100, - x: 160, - y: 475, - length: 40, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,-500,", - q: !1, - j: 30 - }, { - name: 100, - x: 160, - y: 192, - length: 20, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,-500,", - q: !0, - j: 30 - }, { - name: 52, - x: 159, - y: 313 - }, { - name: 2, - x: 162, - y: 58 - }, { - name: 3, - x: 158, - y: 400, - timeout: 2 - }, { - name: 3, - x: 159, - y: 144, - timeout: 6 - }, { - name: 3, - x: 32, - y: 94, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - NF: !1, - gb: 30 - }], - n: [{ - name: 52, - x: 157, - y: 169 - }, { - name: 100, - x: 160, - y: 46, - length: 80, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L" - }, { - name: 100, - x: 123, - y: 262, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "-100,0", - j: 30 - }, { - name: 100, - x: 196, - y: 265, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "100,0", - j: 30 - }, { - name: 54, - x: 158, - y: 308 - }, { - name: 2, - x: 161, - y: 394 - }, { - name: 3, - x: 286, - y: 204, - timeout: -1 - }, { - name: 3, - x: 287, - y: 172, - timeout: -1 - }, { - name: 3, - x: 259, - y: 183, - timeout: -1 - }, { - name: 57, - x: 161, - y: 355, - a: 0, - size: 1, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 162, - y: 335, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,120", - j: 30 - }, { - name: 100, - x: 46, - y: 231, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L" - }, { - name: 100, - x: 276, - y: 233, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L" - }, { - name: 100, - x: 162, - y: 108, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L" - }, { - name: 52, - x: 158, - y: 225 - }, { - name: 3, - x: 45, - y: 129, - timeout: -1 - }, { - name: 3, - x: 260, - y: 128, - timeout: -1 - }, { - name: 3, - x: 41, - y: 47, - timeout: -1 - }, { - name: 54, - x: 261, - y: 133 - }, { - name: 2, - x: 262, - y: 59 - }, { - name: 54, - x: 44, - y: 131 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 162, - y: 184, - length: 70, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "RW60", - q: !1, - j: 40 - }, { - name: 52, - x: 222, - y: 267 - }, { - name: 53, - x: 160, - y: 410 - }, { - name: 2, - x: 65, - y: 418 - }, { - name: 3, - x: 276, - y: 57, - timeout: -1 - }, { - name: 3, - x: 32, - y: 78, - timeout: -1 - }, { - name: 3, - x: 243, - y: 359, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 100 - }], - n: [{ - name: 100, - x: 161, - y: 937, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,-750", - j: 40 - }, - { - name: 54, - x: 160, - y: 820 - }, { - name: 52, - x: 158, - y: 816 - }, { - name: 2, - x: 157, - y: 522 - }, { - name: 55, - x: 70, - y: 611, - a: 0 - }, { - name: 57, - x: 158, - y: 570, - a: 0, - size: 1, - v: !1 - }, { - name: 57, - x: 159, - y: 262, - a: 0, - size: 1, - v: !1 - }, { - name: 55, - x: 250, - y: 328, - a: 180 - }, { - name: 55, - x: 53, - y: 212, - a: 0 - }, { - name: 57, - x: 159, - y: 162, - a: 0, - size: 1, - v: !1 - }, { - name: 55, - x: 250, - y: 107, - a: 180 - }, { - name: 3, - x: 160, - y: 110, - timeout: -1 - }, { - name: 3, - x: 160, - y: 209, - timeout: -1 - }, { - name: 3, - x: 159, - y: 332, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 286, - y: 138 - }, { - name: 52, - x: 38, - y: 442 - }, { - name: 100, - x: 37, - y: 369, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "235,-1,233,-150,5,-149,5,-340,278,-310,", - q: !1, - j: 35 - }, { - name: 54, - x: 161, - y: 441 - }, { - name: 54, - x: 262, - y: 441 - }, { - name: 3, - x: 294, - y: 194, - timeout: -1 - }, { - name: 100, - x: 64, - y: 254, - length: 40, - c: !1, - i: !1, - d: 63, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 59, - y: 72, - timeout: -1 - }, { - name: 55, - x: 238, - y: 338, - a: -120 - }, { - name: 3, - x: 163, - y: 363, - timeout: 4 - }, { - name: 57, - x: 179, - y: 311, - a: -30, - size: 1, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 48, - y: 416 - }, { - name: 100, - x: 23, - y: 240, - length: 50, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "95,0,", - q: !1, - j: 50 - }, { - name: 100, - x: 162, - y: 444, - length: 50, - c: !1, - i: !1, - d: 50, - e: 100, - g: !0, - f: 100, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 163, - y: 40, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 161, - y: 136 - }, { - name: 100, - x: 300, - y: 237, - length: 50, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "-95,0,", - q: !1, - j: 50 - }, { - name: 3, - x: 161, - y: 353, - timeout: 6 - }, { - name: 3, - x: 160, - y: 16, - path: "1,176,", - j: 20, - timeout: 13 - }, { - name: 3, - x: 38, - y: 353, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 26, - y: 73, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: 300, - g: !0, - f: 0, - b: !1, - aa: !1, - h: "L" - }, { - name: 100, - x: 219, - y: 78, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "0,300", - j: 60 - }, { - name: 52, - x: 121, - y: 151 - }, { - name: 2, - x: 286, - y: 259 - }, { - name: 3, - x: 64, - y: 349, - timeout: -1 - }, { - name: 60, - x: 160, - y: 307, - a: 60, - size: 4, - v: !1 - }, { - name: 3, - x: 191, - y: 225, - timeout: -1 - }, { - name: 3, - x: 160, - y: 352, - timeout: -1 - }, { - name: 4, - x: 277, - y: 408, - locale: "en", - width: 100 - }, { - name: 4, - x: 247, - y: 440, - locale: "en", - width: 100 - }, { - name: 4, - x: 181, - y: 429, - locale: "en", - width: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 160, - y: 417 - }, { - name: 100, - x: 33, - y: 527, - length: 100, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-700,", - q: !1, - j: 40 - }, { - name: 3, - x: 281, - y: 750, - path: "0,-700,", - j: 40, - timeout: -1 - }, { - name: 3, - x: 31, - y: 652, - path: "0,-700,", - j: 40, - timeout: -1 - }, { - name: 3, - x: 287, - y: 499, - path: "0,-700,", - j: 40, - timeout: -1 - }, { - name: 100, - x: 291, - y: 374, - length: 100, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-700,", - q: !1, - j: 40 - }, - { - name: 100, - x: 31, - y: 240, - length: 100, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-700,", - q: !0, - j: 40 - }, { - name: 100, - x: 162, - y: 97, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 292, - y: 101 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 290, - y: 253 - }, { - name: 100, - x: 290, - y: 464, - length: 60, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 50, - x: 290, - y: 371 - }, { - name: 51, - x: 245, - y: 143 - }, { - name: 100, - x: 290, - y: 260, - length: 78, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 100, - x: 165, - y: 50, - length: 72, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - path: "250,0", - q: !1, - j: 150 - }, { - name: 54, - x: 290, - y: 370 - }, { - name: 3, - x: 220, - y: 240, - timeout: -1 - }, { - name: 3, - x: 290, - y: 190, - timeout: -1 - }, { - name: 3, - x: 360, - y: 240, - timeout: -1 - }, { - name: 57, - x: 290, - y: 293, - a: 0, - size: 1, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 210, - y: 163 - }, { - name: 100, - x: 212, - y: 50, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 188, - y: 274, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "100,0", - q: !1, - j: 50 - }, { - name: 100, - x: 448, - y: 272, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "-100,0", - q: !1, - j: 50 - }, { - name: 100, - x: 318, - y: 140, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,100", - q: !1, - j: 50 - }, { - name: 54, - x: 316, - y: 389 - }, { - name: 3, - x: 436, - y: 144, - timeout: -1 - }, { - name: 3, - x: 190, - y: 384, - timeout: -1 - }, { - name: 3, - x: 316, - y: 265, - timeout: -1 - }, { - name: 2, - x: 440, - y: 370 - }, { - name: 58, - x: 438, - y: 323, - a: 0, - size: 2, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 174, - y: 428 - }, { - name: 100, - x: 177, - y: 90, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 51, - x: 181, - y: 156 - }, { - name: 100, - x: 177, - y: 135, - length: 48, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "RC120", - q: !1, - j: 60 - }, { - name: 50, - x: 298, - y: 216 - }, { - name: 100, - x: 66, - y: 333, - length: 50, - c: !1, - i: !1, - d: 50, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 253, - y: 334, - length: 70, - c: !1, - i: !1, - d: 70, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 285, - y: 55, - timeout: -1 - }, { - name: 3, - x: 156, - y: 290, - path: "-96,-88,", - j: 13, - timeout: 7 - }, { - name: 3, - x: 176, - y: 389, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, - { - name: 1, - k: 1, - o: 1, - l: !1 - } - ], - n: [{ - name: 100, - x: 64, - y: 383, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "100,0", - q: !1, - j: 20 - }, { - name: 52, - x: 64, - y: 299 - }, { - name: 54, - x: 64, - y: 299 - }, { - name: 55, - x: 232, - y: 294, - a: 180 - }, { - name: 54, - x: 229, - y: 421 - }, { - name: 100, - x: 56, - y: 179, - length: 100, - c: !1, - i: !1, - d: 40, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "100,0", - q: !1, - j: 20 - }, { - name: 55, - x: 229, - y: 92, - a: 180 - }, { - name: 2, - x: 75, - y: 43 - }, { - name: 3, - x: 77, - y: 107, - timeout: -1 - }, { - name: 3, - x: 234, - y: 217, - timeout: -1 - }, { - name: 3, - x: 78, - y: 433, - timeout: -1 - }, { - name: 54, - x: 229, - y: 215 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 75, - y: 320, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 60, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "200,0", - q: !1, - j: 60 - }, { - name: 100, - x: 128, - y: 158, - length: 80, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 224, - y: 37, - length: 80, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 223, - y: 159 - }, { - name: 2, - x: 67, - y: 417 - }, { - name: 3, - x: 28, - y: 176, - timeout: -1 - }, { - name: 3, - x: 256, - y: 414, - timeout: -1 - }, { - name: 3, - x: 164, - y: 414, - timeout: -1 - }, { - name: 100, - x: 228, - y: 264, - length: 80, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 103, - x: 52, - y: 44, - a: -10, - Pj: 14 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0 - }], - n: [{ - name: 56, - x: 118, - y: 48, - group: 0, - a: 90 - }, { - name: 56, - x: 125, - y: 429, - group: 0, - a: -90 - }, { - name: 2, - x: 275, - y: 189 - }, { - name: 100, - x: 56, - y: 96, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: 50, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "200,0,", - j: 50 - }, { - name: 100, - x: 258, - y: 288, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: 50, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "-200,0,", - j: 40 - }, { - name: 100, - x: 120, - y: 288, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L" - }, { - name: 52, - x: 120, - y: 375 - }, { - name: 3, - x: 120, - y: 79, - timeout: -1 - }, { - name: 3, - x: 34, - y: 192, - timeout: -1 - }, { - name: 3, - x: 34, - y: 382, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 100, - x: 174, - y: 453, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-320", - q: !1, - j: 60 - }, { - name: 50, - x: 178, - y: 349 - }, { - name: 54, - x: 171, - y: 348 - }, { - name: 51, - x: 177, - y: 172 - }, { - name: 100, - x: 174, - y: 133, - length: 30, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 2, - x: 49, - y: 59 - }, { - name: 55, - x: 288, - y: 280, - a: 180 - }, { - name: 60, - x: 175, - y: 472, - a: 0, - size: 4, - v: !1 - }, { - name: 3, - x: 171, - y: 34, - timeout: -1 - }, { - name: 3, - x: 97, - y: 417, - path: "145,0", - j: 40, - timeout: -1 - }, { - name: 3, - x: 52, - y: 124, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 700 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 166, - y: 44 - }, { - name: 52, - x: 77, - y: 579 - }, { - name: 100, - x: 161, - y: 658, - length: 55, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-195,", - q: !1, - j: 40 - }, { - name: 100, - x: 37, - y: 486, - length: 55, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,195,", - q: !1, - j: 40 - }, { - name: 100, - x: 161, - y: 481, - length: 50, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-195,", - q: !1, - j: 40 - }, { - name: 100, - x: 161, - y: 288, - length: 50, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-195,", - q: !1, - j: 40 - }, { - name: 100, - x: 37, - y: 288, - length: 50, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,195,", - q: !1, - j: 40 - }, { - name: 100, - x: 36, - y: 93, - length: 50, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,195,", - q: !1, - j: 40 - }, { - name: 100, - x: 281, - y: 480, - length: 50, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,195,", - q: !1, - j: 40 - }, { - name: 100, - x: 282, - y: 287, - length: 50, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,195,", - q: !1, - j: 40 - }, { - name: 100, - x: 281, - y: 95, - length: 50, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,195,", - q: !1, - j: 40 - }, { - name: 3, - x: 224, - y: 472, - timeout: -1 - }, { - name: 3, - x: 97, - y: 267, - timeout: -1 - }, { - name: 3, - x: 150, - y: 97, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 163, - y: 442 - }, { - name: 100, - x: -2, - y: 177, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 50, - x: 117, - y: 180 - }, { - name: 100, - x: 340, - y: 177, - length: 46, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 51, - x: 273, - y: 253 - }, { - name: 100, - x: 240, - y: 192, - length: 67, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "-160,0,-160,-30,0,-30,", - q: !1, - j: 65 - }, { - name: 100, - x: 240, - y: 160, - length: 67, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - path: "-160,0,-160,30,0,30,", - q: !0, - j: 65 - }, { - name: 57, - x: 158, - y: 283, - a: 90, - size: 1, - v: !1 - }, { - name: 3, - x: 160, - y: -2, - path: "0,190", - j: 65, - timeout: -1 - }, { - name: 3, - x: 161, - y: 385, - timeout: 10 - }, { - name: 3, - x: 160, - y: 189, - path: "0,-190", - j: 65, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 159, - y: 205 - }, { - name: 2, - x: 163, - y: 417 - }, { - name: 100, - x: 48, - y: 222, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "70,-140,", - q: !1, - j: 35 - }, { - name: 100, - x: 204, - y: 87, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "70,140,", - q: !1, - j: 35 - }, { - name: 100, - x: 253, - y: 304, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "-170,0,", - q: !1, - j: 35 - }, { - name: 100, - x: 162, - y: 360, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 57, - x: 113, - y: 324, - a: 90, - size: 1, - v: !1 - }, - { - name: 57, - x: 199, - y: 324, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 157, - y: 129, - a: 90, - size: 1, - v: !1 - }, { - name: 3, - x: 290, - y: 329, - timeout: -1 - }, { - name: 3, - x: 161, - y: 328, - timeout: -1 - }, { - name: 3, - x: 125, - y: 175, - timeout: -1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 193, - y: 292 - }, { - name: 100, - x: 197, - y: 230, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,-150", - q: !1, - j: 50 - }, { - name: 100, - x: 197, - y: 363, - length: 40, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 436, - y: 142, - timeout: -1 - }, { - name: 2, - x: 325, - y: 409 - }, { - name: 56, - x: 198, - y: 419, - group: 0, - a: 270 - }, { - name: 56, - x: 406, - y: 75, - group: 0, - a: 140 - }, { - name: 3, - x: 273, - y: 139, - timeout: -1 - }, { - name: 3, - x: 372, - y: 140, - timeout: -1 - }, { - name: 56, - x: 197, - y: 77, - group: 1, - a: 50 - }, { - name: 56, - x: 436, - y: 420, - group: 1, - a: 270 - }, { - name: 81, - x: 290, - y: 189, - a: 0, - size: 1, - path: "140,0", - j: 50 - }, { - name: 100, - x: 431, - y: 282, - length: 100, - c: !1, - i: !1, - d: 40, - e: 100, - g: !1, - f: 100, - b: !1, - h: "L", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 2, - x: 153, - y: 418 - }, { - name: 52, - x: 154, - y: 193 - }, { - name: 100, - x: 157, - y: 37, - length: 130, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !0, - aa: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 157, - y: 193, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 20, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "RW60", - q: !1, - j: 60 - }, { - name: 100, - x: 157, - y: 194, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 20, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "RW120", - q: !1, - j: 120 - }, { - name: 3, - x: 66, - y: 205, - timeout: -1 - }, { - name: 3, - x: 63, - y: 50, - timeout: -1 - }, { - name: 3, - x: 68, - y: 379, - timeout: -1 - }, { - name: 54, - x: 271, - y: 353 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 52, - x: 271, - y: 286 - }, - { - name: 56, - x: 117, - y: 424, - group: 1, - a: 270 - }, { - name: 56, - x: 272, - y: 424, - group: 1, - a: 270 - }, { - name: 56, - x: 43, - y: 425, - group: 0, - a: 270 - }, { - name: 56, - x: 194, - y: 426, - group: 0, - a: 270 - }, { - name: 100, - x: 273, - y: 159, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - path: "-250,0", - j: 40 - }, { - name: 55, - x: 267, - y: 206, - a: 180 - }, { - name: 2, - x: 198, - y: 115 - }, { - name: 3, - x: 273, - y: 86, - timeout: -1 - }, { - name: 3, - x: 114, - y: 129, - timeout: -1 - }, { - name: 3, - x: 48, - y: 60, - timeout: -1 - }, { - name: 54, - x: 196, - y: 336 - }, { - name: 54, - x: 46, - y: 205 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 100, - x: 287, - y: 319, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "-240,0", - q: !1, - j: 40 - }, { - name: 100, - x: 36, - y: 191, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - path: "240,0", - q: !1, - j: 40 - }, { - name: 2, - x: 159, - y: 247 - }, { - name: 54, - x: 274, - y: 175 - }, { - name: 54, - x: 42, - y: 310 - }, { - name: 3, - x: 283, - y: 427, - timeout: -1 - }, { - name: 3, - x: 43, - y: 424, - timeout: -1 - }, { - name: 3, - x: 161, - y: 61, - timeout: -1 - }, { - name: 50, - x: 279, - y: 177 - }, { - name: 51, - x: 45, - y: 313 - }, { - name: 59, - x: 154, - y: 134, - a: 0, - size: 3, - v: !1 - }, { - name: 59, - x: 157, - y: 359, - a: 0, - size: 3, - v: !1 - }, { - name: 54, - x: 280, - y: 429 - }, - { - name: 100, - x: 35, - y: 447, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - path: "240,0", - q: !1, - j: 40 - }, { - name: 100, - x: 289, - y: 63, - length: 90, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "-240,0", - q: !1, - j: 40 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !0 - }], - n: [{ - name: 2, - x: 44, - y: 417 - }, { - name: 100, - x: 133, - y: 134, - length: 35, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 50, - x: 134, - y: 204 - }, { - name: 100, - x: 193, - y: 133, - length: 35, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "R", - q: !1 - }, { - name: 51, - x: 192, - y: 203 - }, { - name: 57, - x: 191, - y: 241, - a: 0, - size: 1, - v: !1 - }], - "layer 2": [{ - name: 100, - x: 40, - y: 74, - length: 60, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "250,0,250,215,0,215,", - q: !0, - j: 70 - }, { - name: 100, - x: 290, - y: 70, - length: 40, - c: !1, - i: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "0,215,-250,215,-250,0,", - q: !1, - j: 70 - }, { - name: 100, - x: 290, - y: 285, - length: 23, - c: !1, - i: !1, - d: 23, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - path: "-250,0,-250,-215,0,-215,", - q: !0, - j: 70 - }, { - name: 3, - x: 128, - y: 420, - timeout: -1 - }, { - name: 3, - x: 162, - y: 117, - timeout: -1 - }, { - name: 3, - x: 163, - y: 177, - timeout: -1 - }] - }] - }, { - uc: [{ - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 120, - x: 161, - y: 230, - size: 120, - la: -15, - ma: !1 - }, { - name: 2, - x: 61, - y: 427 - }, { - name: 52, - x: 158, - y: 387 - }, { - name: 100, - x: 66, - y: 165, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 258, - y: 166, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 162, - y: 348, - length: 70, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 60, - y: 226, - timeout: -1 - }, { - name: 3, - x: 160, - y: 444, - timeout: -1 - }, { - name: 57, - x: 82, - y: 381, - a: 25, - size: 1, - v: !1 - }, { - name: 57, - x: 238, - y: 381, - a: -25, - size: 1, - v: !1 - }, - { - name: 57, - x: 34, - y: 343, - a: 53, - size: 1, - v: !1 - }, { - name: 57, - x: 285, - y: 343, - a: -53, - size: 1, - v: !1 - }, { - name: 3, - x: 257, - y: 238, - timeout: -1 - }, { - name: 4, - x: 148, - y: 43, - locale: "en", - text: "Rotate the record using this handle", - width: 150 - }, { - name: 8, - x: 297, - y: 135, - locale: "en", - a: -55, - j: 100, - r: 100 - } - ], - u: [{ - name: 4, - x: 132, - y: 45, - locale: "ru", - text: "\u0412\u0440\u0430\u0449\u0430\u0439\u0442\u0435 \u043f\u043b\u0430\u0441\u0442\u0438\u043d\u043a\u0443 \u044d\u0442\u043e\u0439 \u0440\u0443\u0447\u043a\u043e\u0439", - width: 200 - }, { - name: 8, - x: 296, - y: 135, - locale: "ru", - a: -55, - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 123, - y: 42, - locale: "de", - text: "Drehe die Schallplatte mit diesem Griff", - width: 200 - }, { - name: 8, - x: 297, - y: 136, - locale: "de", - a: -55, - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 93, - y: 41, - locale: "fr", - text: "Fais tourner le disque en agrippant cette poign\u00e9e", - width: 200 - }, { - name: 8, - x: 297, - y: 135, - locale: "fr", - a: -55, - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 2, - x: 265, - y: 425 - }, { - name: 120, - x: 128, - y: 321, - size: 60, - la: -90, - ma: !0 - }, { - name: 100, - x: 41, - y: 67, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 41, - y: 154 - }, { - name: 3, - x: 30, - y: 452, - timeout: -1 - }, { - name: 3, - x: 281, - y: 55, - timeout: -1 - }, { - name: 3, - x: 157, - y: 242, - timeout: -1 - }, { - name: 100, - x: 130, - y: 374, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 40, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 120, - x: 194, - y: 159, - size: 60, - la: 90, - ma: !0 - }, { - name: 100, - x: 195, - y: 108, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 40, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 120, - x: 320, - y: 109, - size: 100, - la: -30, - ma: !1 - }, { - name: 120, - x: 321, - y: 333, - size: 100, - la: 30, - ma: !1 - }, { - name: 2, - x: 207, - y: 428 - }, { - name: 100, - x: 411, - y: 109, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 412, - y: 221 - }, { - name: 3, - x: 321, - y: 331, - timeout: -1 - }, { - name: 3, - x: 320, - y: 220, - timeout: -1 - }, { - name: 3, - x: 320, - y: 108, - timeout: -1 - }, { - name: 100, - x: 410, - y: 333, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 57, - x: 319, - y: 189, - a: 0, - size: 1, - v: !1 - }, { - name: 57, - x: 319, - y: 256, - a: 0, - size: 1, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 151, - y: 221 - }, { - name: 120, - x: 308, - y: 297, - size: 50, - la: 180, - ma: !0 - }, { - name: 120, - x: 460, - y: 220, - size: 50, - la: 0, - ma: !0 - }, { - name: 100, - x: 417, - y: 219, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 345, - y: 296, - length: 100, - c: !1, - i: !1, - d: 60, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 371, - y: 540 - }, { - name: 54, - x: 370, - y: 539 - }, { - name: 3, - x: 359, - y: 97, - timeout: 4.5 - }, { - name: 3, - x: 360, - y: 156, - timeout: 4 - }, { - name: 3, - x: 359, - y: 45, - timeout: 5 - }, { - name: 59, - x: 320, - y: 80, - a: 90, - size: 3, - v: !1 - }, { - name: 54, - x: 150, - y: 409 - }, { - name: 60, - x: 212, - y: 225, - a: 90, - size: 4, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 54, - x: 48, - y: 292 - }, { - name: 120, - x: 129, - y: 257, - size: 120, - la: 125, - ma: !1 - }, { - name: 56, - x: 46, - y: 419, - group: 0, - a: 270 - }, { - name: 56, - x: 269, - y: 136, - group: 0, - a: 180 - }, { - name: 52, - x: 46, - y: 226 - }, { - name: 100, - x: 52, - y: 131, - length: 70, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 56, - x: 49, - y: 89, - group: 1, - a: 90 - }, { - name: 56, - x: 215, - y: 417, - group: 1, - a: 270 - }, { - name: 2, - x: 215, - y: 64 - }, { - name: 3, - x: 213, - y: 382, - timeout: -1 - }, { - name: 3, - x: 216, - y: 132, - timeout: -1 - }, { - name: 3, - x: 46, - y: 393, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 2, - x: 269, - y: 74 - }, { - name: 120, - x: 226, - y: 348, - size: 75, - la: 90, - ma: !1 - }, { - name: 120, - x: 100, - y: 349, - size: 75, - la: 90, - ma: !1 - }, { - name: 100, - x: 32, - y: 347, - length: 70, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 35, - y: 249 - }, { - name: 3, - x: 164, - y: 250, - timeout: -1 - }, { - name: 3, - x: 270, - y: 145, - timeout: -1 - }, { - name: 3, - x: 270, - y: 251, - timeout: -1 - }, { - name: 54, - x: 35, - y: 246 - }, { - name: 4, - x: 46, - y: 130, - locale: "en", - text: "Move the rope holder from one record to another", - width: 200 - }, { - name: 13, - x: 146, - y: 113, - locale: "en", - j: 100, - r: 100 - }], - u: [{ - name: 4, - x: 52, - y: 131, - locale: "ru", - text: "\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u0435 \u043a\u0440\u0435\u043f\u0435\u0436 \u0432\u0435\u0440\u0435\u0432\u043a\u0438 \u0441 \u043e\u0434\u043d\u043e\u0439 \u043f\u043b\u0430\u0441\u0442\u0438\u043d\u043a\u0438 \u043d\u0430 \u0434\u0440\u0443\u0433\u0443\u044e", - width: 200 - }, { - name: 13, - x: 148, - y: 115, - locale: "ru", - j: 100, - r: 100 - }], - s: [{ - name: 4, - x: 53, - y: 130, - locale: "de", - text: "Bewege den Seilhalter von einer Schallplatte zur Anderen", - width: 200 - }, { - name: 13, - x: 147, - y: 114, - locale: "de", - j: 100, - r: 100 - }], - t: [{ - name: 4, - x: 50, - y: 129, - locale: "fr", - text: "Fais passer l'attache de la corde d'un disque \u00e0 l'autre", - width: 200 - }, { - name: 13, - x: 146, - y: 114, - locale: "fr", - j: 100, - r: 100 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 52, - x: 67, - y: 185 - }, { - name: 100, - x: 72, - y: 353, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 77, - y: 59, - length: 20, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 3, - x: 270, - y: 142, - timeout: 15 - }, { - name: 3, - x: 266, - y: 252, - timeout: 10 - }, { - name: 3, - x: 264, - y: 375, - timeout: 12 - }, { - name: 60, - x: 47, - y: 303, - a: 0, - size: 4, - v: !1 - }, { - name: 2, - x: 272, - y: 62 - }, { - name: 56, - x: 48, - y: 355, - group: 0, - a: 0 - }, { - name: 56, - x: 265, - y: 431, - group: 0, - a: 270 - }, { - name: 120, - x: 239, - y: 313, - size: 70, - la: 45, - ma: !1 - }, { - name: 120, - x: 167, - y: 221, - size: 70, - la: -45, - ma: !1 - }, { - name: 120, - x: 91, - y: 125, - size: 70, - la: 45, - ma: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 52, - x: 163, - y: 346 - }, { - name: 100, - x: 162, - y: 263, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 120, - x: 161, - y: 221, - size: 120, - la: 0, - ma: !1 - }, { - name: 120, - x: 162, - y: 120, - size: 60, - la: 90, - ma: !1 - }, { - name: 2, - x: 161, - y: 428 - }, { - name: 3, - x: 56, - y: 396, - timeout: -1 - }, { - name: 3, - x: 261, - y: 396, - timeout: -1 - }, { - name: 57, - x: 28, - y: 417, - a: 30, - size: 1, - v: !1 - }, { - name: 57, - x: 285, - y: 417, - a: -30, - size: 1, - v: !1 - }, { - name: 3, - x: 163, - y: 117, - timeout: -1 - }, { - name: 57, - x: 82, - y: 417, - a: -30, - size: 1, - v: !1 - }, { - name: 57, - x: 231, - y: 417, - a: 30, - size: 1, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 2, - x: 162, - y: 431 - }, { - name: 120, - x: 161, - y: 214, - size: 120, - la: 25, - ma: !1 - }, { - name: 52, - x: 160, - y: 210 - }, { - name: 100, - x: 161, - y: 50, - length: 120, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 160, - y: 309 - }, { - name: 54, - x: 92, - y: 282 - }, { - name: 54, - x: 72, - y: 213 - }, { - name: 54, - x: 229, - y: 284 - }, { - name: 3, - x: 441, - y: 114, - path: "-313,2,", - j: 20, - timeout: 15 - }, { - name: 3, - x: 266, - y: 115, - path: "-144,0,", - j: 20, - timeout: 7 - }, { - name: 3, - x: 360, - y: 281, - path: "-235,1,", - j: 20, - timeout: 10 - }], - "layer 2": [{ - name: 54, - x: 254, - y: 217 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 2, - x: 271, - y: 428 - }, { - name: 3, - x: 249, - y: 259, - timeout: -1 - }, { - name: 3, - x: 66, - y: 257, - timeout: -1 - }, { - name: 3, - x: 162, - y: 255, - timeout: -1 - }, { - name: 100, - x: 33, - y: 260, - length: 160, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 288, - y: 260, - length: 160, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 155, - y: 360 - }, { - name: 120, - x: 161, - y: 255, - size: 140, - la: 45, - ma: !1 - }, { - name: 53, - x: 161, - y: 50 - }, { - name: 57, - x: 119, - y: 257, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 205, - y: 257, - a: 90, - size: 1, - v: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 120, - x: 93, - y: 287, - size: 70, - la: 0, - ma: !1 - }, { - name: 120, - x: 177, - y: 199, - size: 70, - la: 0, - ma: !1 - }, { - name: 52, - x: 225, - y: 309 - }, { - name: 100, - x: 225, - y: 237, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 261, - y: 416 - }, { - name: 3, - x: 81, - y: 66, - timeout: -1 - }, { - name: 120, - x: 89, - y: 164, - size: 70, - la: 0, - ma: !1 - }, { - name: 3, - x: 70, - y: 383, - timeout: -1 - }, { - name: 57, - x: 176, - y: 101, - a: 0, - size: 1, - v: !1 - }, { - name: 57, - x: 127, - y: 375, - a: 90, - size: 1, - v: !1 - }, { - name: 54, - x: 67, - y: 382 - }, { - name: 3, - x: 256, - y: 63, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 2, - x: 318, - y: 430 - }, { - name: 3, - x: 189, - y: 95, - timeout: -1 - }, { - name: 3, - x: 451, - y: 93, - timeout: -1 - }, { - name: 3, - x: 319, - y: 94, - timeout: -1 - }, { - name: 120, - x: 316, - y: 254, - size: 132, - la: 0, - ma: !1 - }, { - name: 52, - x: 315, - y: 270 - }, { - name: 100, - x: 445, - y: 45, - length: 230, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 190, - y: 45, - length: 230, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 55, - x: 317, - y: 155, - a: 90 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 120, - x: 81, - y: 242, - size: 50, - la: 135, - ma: !0 - }, { - name: 120, - x: 242, - y: 242, - size: 50, - la: 45, - ma: !0 - }, { - name: 100, - x: 202, - y: 241, - length: 95, - c: !1, - i: !1, - F: !1, - K: !1, - d: 55, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 125, - y: 239, - length: 95, - c: !1, - i: !1, - F: !1, - K: !1, - d: 55, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 159, - y: 430 - }, { - name: 52, - x: 162, - y: 132 - }, { - name: 100, - x: 169, - y: 61, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 51, - y: 48 - }, { - name: 3, - x: 290, - y: 182, - timeout: -1 - }, - { - name: 3, - x: 48, - y: 184, - timeout: -1 - }, { - name: 3, - x: 161, - y: 431, - timeout: -1 - }, { - name: 57, - x: 239, - y: 183, - a: 90, - size: 1, - v: !1 - }, { - name: 57, - x: 82, - y: 184, - a: 90, - size: 1, - v: !1 - }, { - name: 54, - x: 161, - y: 312 - }, { - name: 57, - x: 160, - y: 467, - a: 0, - size: 1, - v: !1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 60, - y: 196, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 53, - y: 298 - }, { - name: 120, - x: 173, - y: 192, - size: 120, - la: 30, - ma: !1 - }, { - name: 3, - x: 171, - y: 199, - path: "0,-200", - j: 30, - timeout: -1 - }, { - name: 57, - x: 172, - y: 389, - a: 0, - size: 1, - path: "0,-200", - j: 30, - v: !1 - }, { - name: 57, - x: 172, - y: 257, - a: 0, - size: 1, - path: "0,-200", - j: 30, - v: !1 - }, { - name: 2, - x: 56, - y: 426 - }, { - name: 3, - x: 172, - y: 320, - path: "0,-200", - j: 30, - timeout: -1 - }, { - name: 3, - x: 172, - y: 426, - path: "0,-200", - j: 30, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 2, - x: 271, - y: 65 - }, { - name: 81, - x: 161, - y: 462, - a: 0, - size: 1 - }, { - name: 120, - x: 160, - y: 267, - size: 130, - la: 67, - ma: !1 - }, { - name: 52, - x: 90, - y: 324 - }, { - name: 100, - x: 269, - y: 261, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 30, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 243, - y: 174 - }, { - name: 100, - x: 54, - y: 260, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 30, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 73, - y: 174 - }, { - name: 3, - x: 47, - y: 41, - timeout: -1 - }, { - name: 3, - x: 160, - y: 260, - timeout: -1 - }, { - name: 3, - x: 160, - y: 31, - timeout: -1 - }, { - name: 100, - x: 162, - y: 146, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: 30, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 81, - x: 274, - y: 424, - a: -35, - size: 1 - }, { - name: 81, - x: 221, - y: 452, - a: -20, - size: 1 - }, { - name: 81, - x: 315, - y: 381, - a: -60, - size: 1 - }, { - name: 81, - x: 101, - y: 452, - a: 20, - size: 1 - }, - { - name: 81, - x: 48, - y: 426, - a: 35, - size: 1 - }, { - name: 81, - x: 7, - y: 383, - a: 60, - size: 1 - }, { - name: 54, - x: 261, - y: 333 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 52, - x: 163, - y: 216 - }, { - name: 100, - x: 163, - y: 74, - length: 120, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 120, - x: 162, - y: 217, - size: 110, - la: 0, - ma: !1 - }, { - name: 2, - x: 163, - y: 37 - }, { - name: 54, - x: 162, - y: 164 - }, { - name: 3, - x: 159, - y: 280, - timeout: -1 - }, { - name: 120, - x: 162, - y: 344, - size: 110, - la: 0, - ma: !1 - }, { - name: 3, - x: 159, - y: 405, - timeout: 13 - }, { - name: 3, - x: 160, - y: 342, - timeout: -1 - }, { - name: 59, - x: 157, - y: 451, - a: 0, - size: 3, - v: !1 - }, { - name: 103, - x: 12, - y: 87, - Pj: 15 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 54, - x: 207, - y: 219 - }, { - name: 56, - x: 316, - y: 73, - group: 1, - a: 90 - }, { - name: 58, - x: 317, - y: 456, - a: 0, - size: 2, - path: "0,-200", - j: 50, - v: !1 - }, { - name: 120, - x: 317, - y: 219, - size: 120, - la: -30, - ma: !1 - }, { - name: 52, - x: 317, - y: 218 - }, { - name: 54, - x: 316, - y: 217 - }, { - name: 2, - x: 212, - y: 56 - }, { - name: 54, - x: 419, - y: 219 - }, { - name: 3, - x: 316, - y: 343, - timeout: -1 - }, { - name: 3, - x: 207, - y: 151, - timeout: 10 - }, { - name: 3, - x: 317, - y: 385, - timeout: -1 - }, { - name: 56, - x: 212, - y: 390, - group: 1, - a: 270 - }, { - name: 100, - x: 320, - y: 442, - length: 200, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 120, - x: 98, - y: 127, - size: 70, - la: -90, - ma: !0 - }, { - name: 120, - x: 226, - y: 128, - size: 70, - la: -90, - ma: !0 - }, { - name: 120, - x: 96, - y: 306, - size: 70, - la: 90, - ma: !0 - }, { - name: 120, - x: 225, - y: 307, - size: 70, - la: 90, - ma: !0 - }, { - name: 2, - x: 162, - y: 433 - }, { - name: 100, - x: 58, - y: 31, - length: 50, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 55, - y: 100 - }, { - name: 100, - x: 163, - y: 127, - length: 100, - c: !1, - i: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 162, - y: 306, - length: 100, - c: !1, - i: !1, - d: 30, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 290, - y: 309 - }, { - name: 3, - x: 53, - y: 421, - timeout: 10 - }, { - name: 3, - x: 277, - y: 419, - timeout: -1 - }, { - name: 3, - x: 276, - y: 82, - timeout: -1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 319, - y: 302, - length: 100, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 314, - y: 182 - }, { - name: 54, - x: 315, - y: 180 - }, { - name: 120, - x: 318, - y: 302, - size: 130, - la: 0, - ma: !1 - }, { - name: 55, - x: 222, - y: 255, - a: 300 - }, - { - name: 2, - x: 317, - y: 38 - }, { - name: 3, - x: 222, - y: 354, - timeout: -1 - }, { - name: 3, - x: 416, - y: 350, - timeout: -1 - }, { - name: 3, - x: 317, - y: 104, - timeout: -1 - }, { - name: 55, - x: 408, - y: 255, - a: 240 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 163, - y: 388, - length: 45, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 52, - x: 164, - y: 313 - }, { - name: 2, - x: 274, - y: 431 - }, { - name: 54, - x: 163, - y: 312 - }, { - name: 3, - x: 164, - y: 441, - timeout: -1 - }, { - name: 3, - x: 281, - y: 128, - timeout: -1 - }, { - name: 3, - x: 54, - y: 128, - timeout: -1 - }, { - name: 120, - x: 160, - y: 245, - size: 145, - la: -55, - ma: !1 - }, { - name: 100, - x: 25, - y: 254, - length: 40, - c: !1, - i: !1, - F: !1, - K: !1, - d: 50, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 302, - y: 254, - length: 40, - c: !1, - i: !1, - F: !1, - K: !1, - d: 50, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 60, - x: 227, - y: 384, - a: 90, - size: 4, - v: !1 - }, { - name: 60, - x: 98, - y: 93, - a: 90, - size: 4, - v: !1 - }, { - name: 60, - x: 317, - y: 195, - a: 0, - size: 4, - v: !1 - }, { - name: 60, - x: 10, - y: 292, - a: 0, - size: 4, - v: !1 - }, { - name: 54, - x: 163, - y: 440 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - o: 1, - l: !0, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 100, - x: 110, - y: 298, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 100, - x: 219, - y: 298, - length: 50, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 2, - x: 163, - y: 40 - }, { - name: 120, - x: 164, - y: 233, - size: 110, - la: 0, - ma: !1 - }, { - name: 120, - x: 167, - y: 366, - size: 70, - la: 0, - ma: !1 - }, { - name: 3, - x: 164, - y: 462, - timeout: -1 - }, { - name: 3, - x: 93, - y: 61, - timeout: -1 - }, { - name: 3, - x: 224, - y: 59, - timeout: -1 - }, { - name: 54, - x: 167, - y: 231 - }, { - name: 50, - x: 171, - y: 234 - }, { - name: 51, - x: 168, - y: 133 - }, { - name: 100, - x: 163, - y: 55, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "R", - q: !1 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 640, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 2, - x: 502, - y: 65 - }, { - name: 3, - x: 153, - y: 221, - timeout: -1 - }, { - name: 3, - x: 319, - y: 225, - timeout: -1 - }, { - name: 52, - x: 26, - y: 134 - }, { - name: 100, - x: 62, - y: 44, - length: 60, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 54, - x: 149, - y: 219 - }, { - name: 120, - x: 320, - y: 325, - size: 120, - la: 90, - ma: !1 - }, { - name: 120, - x: 494, - y: 324, - size: 120, - la: 90, - ma: !1 - }, { - name: 3, - x: 496, - y: 227, - timeout: -1 - }, { - name: 120, - x: 146, - y: 323, - size: 120, - la: 0, - ma: !1 - }, { - name: 82, - x: 56, - y: 274, - a: 0, - size: 2 - }, { - name: 82, - x: 162, - y: 274, - a: 0, - size: 2 - }, { - name: 82, - x: 271, - y: 274, - a: 0, - size: 2 - }, { - name: 82, - x: 378, - y: 274, - a: 0, - size: 2 - }, { - name: 82, - x: 484, - y: 274, - a: 0, - size: 2 - }] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - l: !1, - k: 1, - Ya: 0, - gb: 0 - }], - n: [{ - name: 52, - x: 132, - y: 192 - }, { - name: 54, - x: 134, - y: 189 - }, { - name: 100, - x: 139, - y: 328, - length: 100, - c: !1, - i: !1, - F: !1, - K: !1, - d: -1, - D: !1, - e: -1, - g: !1, - f: 0, - b: !1, - aa: !1, - h: "L", - q: !1 - }, { - name: 120, - x: 133, - y: 192, - size: 110, - la: 90, - ma: !1 - }, { - name: 55, - x: 51, - y: 191, - a: 0 - }, { - name: 3, - x: 42, - y: 431, - timeout: -1 - }, { - name: 3, - x: 141, - y: 330, - timeout: -1 - }, - { - name: 3, - x: 252, - y: 256, - timeout: -1 - }, { - name: 54, - x: 233, - y: 188 - }, { - name: 56, - x: 28, - y: 87, - group: 0, - a: 90 - }, { - name: 56, - x: 195, - y: 426, - group: 0, - a: 180 - }, { - name: 2, - x: 274, - y: 74 - }, { - name: 58, - x: 255, - y: 341, - a: 0, - size: 2, - v: !1 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 960 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 100, - x: 97, - y: 717, - length: 65, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 120, - x: 160, - y: 792, - size: 145, - la: 0, - ma: !1 - }, { - name: 52, - x: 159, - y: 785 - }, { - name: 56, - x: 36, - y: 637, - group: 0, - a: 60 - }, { - name: 56, - x: 162, - y: 408, - group: 0, - a: 90270 - }, { - name: 56, - x: 160, - y: 122, - group: 1, - a: 90 - }, - { - name: 56, - x: 276, - y: 635, - group: 1, - a: 130 - }, { - name: 2, - x: 160, - y: 524 - }, { - name: 3, - x: 252, - y: 660, - timeout: -1 - }, { - name: 3, - x: 157, - y: 355, - timeout: 15 - }, { - name: 3, - x: 61, - y: 663, - timeout: -1 - }, { - name: 120, - x: 160, - y: 635, - size: 60, - la: 0, - ma: !1 - }, { - name: 100, - x: 226, - y: 716, - length: 65, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }, { - name: 58, - x: 29, - y: 693, - a: 50, - size: 2, - v: !1 - }, { - name: 58, - x: 283, - y: 689, - a: 130, - size: 2, - v: !1 - }, { - name: 54, - x: 156, - y: 353 - } - ] - }, { - settings: [{ - name: 0, - m: 32, - width: 320, - height: 480 - }, { - name: 1, - k: 1, - o: 1, - l: !1 - }], - n: [{ - name: 120, - x: 157, - y: 236, - size: 140, - la: 90, - ma: !1 - }, { - name: 52, - x: 74, - y: 344 - }, { - name: 2, - x: 158, - y: 433 - }, { - name: 54, - x: 271, - y: 176 - }, { - name: 54, - x: 227, - y: 129 - }, { - name: 54, - x: 95, - y: 126 - }, { - name: 54, - x: 47, - y: 176 - }, { - name: 54, - x: 29, - y: 238 - }, { - name: 3, - x: 28, - y: 236, - timeout: -1 - }, { - name: 3, - x: 283, - y: 241, - timeout: -1 - }, { - name: 3, - x: 158, - y: 237, - timeout: -1 - }, { - name: 54, - x: 281, - y: 239 - }, { - name: 100, - x: 160, - y: 27, - length: 300, - c: !1, - i: !1, - d: -1, - e: -1, - g: !1, - f: 0, - b: !1, - h: "L", - q: !1 - }] - }] - }], eb, x, Ea, ua, qa), - M = function() { - var a = {}, - d = []; - a.subscribe = function(a, b) { - d.push({ - name: a, - Kh: b - }); - return [a, b] - }; - a.unsubscribe = function(a, b) { - var f, e; - for (f = d.length; 0 <= f; f--) e = d[f], - e.name === a && e.Kh === b && d.splice(f, 1) - }; - a.na = function(a) { - var b = [], - f = Array.prototype.slice.call(arguments, 1), - e, g; - if (0 < d.length) { - e = 0; - for (g = d.length; e < g; e++) d[e].name === a && b.push(d[e].Kh); - e = 0; - for (g = b.length; e < g; e++) b[e].apply(this, f) - } - }; - a.C = { - dr: 0, - Ow: 1, - kr: 2, - Gq: 3, - zn: 4, - xq: 5, - yq: 6, - $v: 7, - zq: 8, - Aq: 9, - Bq: 10, - Cq: 11, - Cb: 12, - yn: 13, - er: 14, - bs: 15, - cs: 16, - Lq: 17, - Fq: 18, - sf: 19, - gq: 20, - fq: 21, - Vi: 22, - tj: 23, - Yw: 24, - dq: 25, - xs: 26, - Ch: 27, - Dh: 28, - Eh: 29, - Hn: 30, - as: 31, - In: 32, - ur: 33, - yh: 34, - rl: 35 - }; - return a - }(), - va = function(a, d) { - function c() { - e = !0; - for (var a = 0, - b = g.length; a < b; a++) g[a]() - } - var b = a.BF || "", - f = b; - d.subscribe(d.C.In, function(a) { - f = a ? a + "-" + b : b - }); - var e = !1, - g = [], - h = !1, - l = null; - try { - h = !!window.localStorage, l = { - getItem: function(a) { - return localStorage.getItem(a) - }, - setItem: function(a, b) { - return localStorage.setItem(a, b) - }, - removeItem: function(a) { - return localStorage.removeItem(a) - } - } - } catch (n) {} - if (!h && void 0 !== typeof chrome && chrome.storage && chrome.storage.local) { - var h = !0, - q = {}; - chrome.storage.local.get(null, function(a) { - q = a; - c() - }); - l = { - getItem: function(a) { - return q[a] - }, - setItem: function(a, - b) { - q[a] = b; - var c = {}; - c[a] = b; - chrome.storage.local.set(c) - }, - removeItem: function(a) { - q[a] = null; - chrome.storage.local.remove(a) - } - } - } else c(); - return { - Vn: h, - ri: function(a) { - e ? a() : g.push(a) - }, - get: function(a) { - e || console.log("setting not ready: " + a); - return h ? l.getItem(f + a) : null - }, - set: function(a, b) { - h && (null == b ? l.removeItem(f + a) : l.setItem(f + a, b.toString())) - }, - remove: function(a) { - h && l.removeItem(f + a) - }, - $j: function(a, b) { - var c = this.get(a); - return null == c ? b : "true" === c - }, - Ig: function(a, b) { - var c = this.get(a); - return null == c ? b : parseInt(c, - 10) - } - } - }(K, M), - ra = function(a, d, c, b) { - return { - Vn: a.Vn, - av: !0, - my: !0, - Ly: d.$B, - Lp: d.Lp, - Yk: !0, - uo: function() { - return a.$j("music", !0) - }, - Uk: function(b) { - a.set("music", b) - }, - vo: function() { - return a.$j("sound", !0) - }, - Wk: function(b) { - a.set("sound", b) - }, - so: function() { - return a.$j("clickToCut", !1) - }, - xB: function(b) { - a.set("clickToCut", b) - }, - Zh: function() { - if (d.lang) return c.po(d.lang); - var f = a.Ig("language", null); - null == f && (f = b.Uy(), null == f && (f = c.mh)); - return f - }, - FB: function(b) { - a.set("language", b) - }, - AE: function() { - return a.$j("isHD", null) - }, - DB: function(b) { - a.set("isHD", b) - }, - clear: function() { - a.remove("isHD") - } - } - }(va, qa, ua, function(a) { - return { - Uy: function() { - if ("undefined" !== typeof Windows) { - var d = Windows.Globalization.ApplicationLanguages.languages, - c, b, f; - b = 0; - for (f = d.length; b < f; b++) - if (c = a.po(d[b]), null !== c) return c - } - return a.mh - } - } - }(ua), M), - F = { - Vw: 0, - De: 1, - bD: 2, - QD: 3, - cD: 4, - $w: 5, - eD: 6, - QC: 7, - wq: 8, - Rw: 9, - Qw: 10, - hx: 11, - gx: 12, - sr: 13, - Jw: 14, - Kw: 15, - Lw: 16, - Mw: 17, - Iw: 18, - Cn: 19, - jx: 20, - aw: 21, - SC: 22, - ax: 23, - ux: 24, - Sw: 25, - Lb: 26, - NEXT: 27, - Fb: 28, - LOADING: 29, - sx: 30, - Tw: 31, - VD: 32, - rq: 33, - sq: 34, - tq: 35, - Pq: 36, - dD: 37, - Rv: 38, - Zv: 39, - dx: 40, - Nw: 41, - Pw: 42, - br: 43, - hr: 44, - vr: 45, - wr: 46, - xr: 47, - Mq: 48, - Dq: 49, - uq: 50, - yr: 51, - Nq: 52, - Cr: 53, - Dr: 54, - Br: 55, - ar: 56, - rr: 57, - qr: 58, - pr: 59, - Kq: 60, - Fr: 61, - Er: 62, - vq: 63, - ir: 64, - Vr: 65, - of: 66, - hf: 67, - Sv: 68, - Gn: 69, - jr: 70, - cq: 71, - Yi: 72, - bx: 200, - Ww: 201 - }, - T = function(a, d, c, b, f) { - function e(a) { - switch (d.Zh()) { - case c.oh: - return a.t || a.w; - case c.lh: - return a.s || a.w; - case c.xh: - return a.u || a.w; - default: - return a.w - } - } - return { - Ij: function(b, c) { - var d = e(a.Ij[b]); - d && c && (d = b + 1 + ". " + d); - return d - }, - ca: function(a) { - var c, d, n = b.length; - for (d = - 0; d < n; d++) - if (c = b[d], c.id === a) return e(c); - f.debug("Missing menu string for id: " + a); - return "" - }, - ck: e, - Ty: function() { - return d.Zh() - } - } - }(K, ra, ua, [{ - id: 0, - w: "Play", - t: "Jouer", - s: "Spielen", - u: "\u0418\u0433\u0440\u0430\u0442\u044c" - }, { - id: 1, - w: "Options", - t: "Options", - s: "Optionen", - u: "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438" - }, { - id: 2, - w: "Extras", - t: "", - s: "Extras", - u: "\u0415\u0449\u0435 \u043a\u043e\u0435 \u0447\u0442\u043e" - }, { - id: 3, - w: "Bonus mode", - t: "", - s: "Bonusmodus", - u: "\u0411\u043e\u043d\u0443\u0441 \u0440\u0435\u0436\u0438\u043c" - }, - { - id: 4, - w: "Full version", - t: "Version compl\u00e8te", - s: "Vollversion", - u: "\u041f\u043e\u043b\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f" - }, { - id: 5, - w: "Reset game", - t: "R\u00e9initialiser", - s: "Neu starten", - u: "\u0421\u0431\u0440\u043e\u0441 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430" - }, { - id: 6, - w: "Help", - t: "", - s: "Hilfe", - u: "\u041f\u043e\u043c\u043e\u0449\u044c" - }, { - id: 7, - w: "About", - t: "\u00c0 propos", - s: "\u00dcber", - u: "\u041e\u0431 \u0438\u0433\u0440\u0435" - }, { - id: 8, - w: "Credits", - t: "Cr\u00e9dits", - s: "Mitwirkende", - u: "\u0410\u0432\u0442\u043e\u0440\u044b" - }, { - id: 9, - w: "Music on", - t: "Musique oui", - s: "Musik an", - u: "\u041c\u0443\u0437\u044b\u043a\u0430 \u0432\u043a\u043b." - }, { - id: 10, - w: "Music off", - t: "Musique non", - s: "Musik aus ", - u: "\u041c\u0443\u0437\u044b\u043a\u0430 \u0432\u044b\u043a\u043b." - }, { - id: 11, - w: "Sounds on", - t: "Sons oui", - s: "Ger\u00e4usche an", - u: "\u0417\u0432\u0443\u043a\u0438 \u0432\u043a\u043b." - }, { - id: 12, - w: "Sounds off", - t: "Sons non", - s: "Ger\u00e4usche aus", - u: "\u0417\u0432\u0443\u043a\u0438 \u0432\u044b\u043a\u043b." - }, - { - id: F.sr, - w: "Are you sure you want to reset your progress?", - t: "Voulez-vous vraiment r\u00e9initialiser votre progression?", - s: "M\u00f6chtest du deinen Fortschritt wirklich zur\u00fccksetzen?", - u: "\u0423\u0432\u0435\u0440\u0435\u043d\u044b \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0438\u0433\u0440\u043e\u0432\u043e\u0439 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441?" - }, { - id: 14, - w: "Passable!", - t: "Passable!", - s: "Passabel!", - u: "\u0423\u0440\u043e\u0432\u0435\u043d\u044c \u043f\u0440\u043e\u0439\u0434\u0435\u043d!" - }, - { - id: 15, - w: "Good!", - t: "Bien!", - s: "Gut!", - u: "\u0425\u043e\u0440\u043e\u0448\u043e!" - }, { - id: 16, - w: "Great!", - t: "Super!", - s: "Prima!", - u: "\u041e\u0442\u043b\u0438\u0447\u043d\u043e!" - }, { - id: 17, - w: "Excellent!", - t: "Formidable!", - s: "Hervorragend!", - u: "\u0421\u0443\u043f\u0435\u0440!" - }, { - id: 18, - w: "Level", - t: "Niveau", - s: "Level", - u: "\u0423\u0440\u043e\u0432\u0435\u043d\u044c" - }, { - id: 19, - w: "Time", - t: "Temps", - s: "Zeit", - u: "\u0412\u0440\u0435\u043c\u044f" - }, { - id: 20, - w: "Star Bonus", - t: "Bonus \u00e9toile", - s: "Sternenbonus", - u: "\u0411\u043e\u043d\u0443\u0441 \u0437\u0430 \u0437\u0432\u0435\u0437\u0434\u044b" - }, - { - id: 21, - w: "Your Final Score", - t: "Votre score final", - s: "Dein Endpunktestand", - u: "\u0418\u0442\u043e\u0433\u043e\u0432\u044b\u0435 \u043e\u0447\u043a\u0438" - }, { - id: 22, - w: "Best Score", - t: "Meilleur score", - s: "Beste punktzahl", - u: "\u041b\u0443\u0447\u0448\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442" - }, { - id: 23, - w: "Score", - t: "Score", - s: "Punktzahl", - u: "\u041e\u0447\u043a\u0438" - }, { - id: 24, - w: "Yes", - t: "Oui", - s: "Ja", - u: "\u0414\u0430" - }, { - id: 25, - w: "No", - t: "Non", - s: "Nein", - u: "\u041d\u0435\u0442" - }, { - id: 26, - w: "Replay", - t: "Rejouer", - s: "Wieder", - u: "\u0415\u0449\u0435 \u0440\u0430\u0437" - }, { - id: 27, - w: "Next", - t: "Suivant", - s: "Weiter", - u: "\u0412\u043f\u0435\u0440\u0435\u0434" - }, { - id: 28, - w: "Menu", - t: "Menu", - s: "Men\u00fc", - u: "\u041c\u0435\u043d\u044e" - }, { - id: 29, - w: "Loading...", - t: "Chargement...", - s: "Laden...", - u: "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430..." - }, { - id: 30, - w: "Total: %d", - t: "Total: %d", - s: "Gesamt: %d", - u: "\u0412\u0441\u0435\u0433\u043e: %d" - }, { - id: 31, - w: "Ok", - t: "OK", - s: "Ok", - u: "Ok" - }, { - id: 32, - w: "Collect %d stars to unlock this level pack", - t: "Recueillez %d \u00e9toiles pour d\u00e9verrouiller ce pack de niveaux", - s: "Sammle %d Sterne, um dieses Levelpaket freizuschalten", - u: "\u0421\u043e\u0431\u0435\u0440\u0438\u0442\u0435 %d \u0437\u0432\u0435\u0437\u0434 \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043a\u043e\u0440\u043e\u0431\u043a\u0443" - }, { - id: F.rq, - w: "You are missing", - t: "Il vous en manque", - s: "Dir fehlen", - u: "\u0412\u0430\u043c \u043d\u0435\u0445\u0432\u0430\u0442\u0430\u0435\u0442 \u0432\u0441\u0435\u0433\u043e" - }, - { - id: F.sq, - w: "to unlock this box", - t: "pour d\u00e9verrouiller bo\u00eete", - s: "um dieses Box freizuschalten", - u: "\u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043a\u043e\u0440\u043e\u0431\u043a\u0443" - }, { - id: F.tq, - w: "Get more stars from the earlier levels", - t: "Recueillez plus d'\u00e9toiles dans les niveaux pr\u00e9c\u00e9dents", - s: "Gewinne mehr Sterne in den niedrigeren Leveln", - u: "\u0421\u043e\u0431\u0435\u0440\u0438\u0442\u0435 \u0431\u043e\u043b\u044c\u0448\u0435 \u0437\u0432\u0435\u0437\u0434 \u0432 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0445 \u0443\u0440\u043e\u0432\u043d\u044f\u0445" - }, - { - id: 37, - w: "Check back for the new levels coming with the updates", - t: "Revenez pour d\u00e9couvrir de nouveaux niveaux avec les mises \u00e0 jour", - s: "Komm bald wieder, neue Level kommen mit den Updates", - u: "\u041d\u043e\u0432\u044b\u0435 \u0443\u0440\u043e\u0432\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0441 \u0430\u043f\u0434\u0435\u0439\u0442\u0430\u043c\u0438" - }, { - id: F.Rv, - w: "achievement gained!", - t: "r\u00e9alisation d\u00e9verrouill\u00e9e!", - s: "Erfolg geschafft!", - u: "\u043e\u0442\u043a\u0440\u044b\u0442\u043e!" - }, { - id: 39, - w: "Continue", - t: "Continuer", - s: "Weiter", - u: "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c" - }, { - id: 40, - w: "Skip level", - t: "Passer", - s: "\u00dcberspringen", - u: "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c" - }, { - id: 41, - w: "Level select", - t: "Choisir niveau", - s: "Levelauswahl", - u: "\u0412\u044b\u0431\u043e\u0440 \u0443\u0440\u043e\u0432\u043d\u044f" - }, { - id: 42, - w: "Main menu", - t: "Menu principal", - s: "Hauptmen\u00fc", - u: "\u0413\u043b\u0430\u0432\u043d\u043e\u0435 \u043c\u0435\u043d\u044e" - }, - { - id: F.ar, - w: "Language", - u: "\u042f\u0437\u044b\u043a", - t: "Langue", - s: "Sprache" - }, { - id: F.Dq, - w: "Drag to Cut", - t: "Glisser", - s: "Ziehe: Schneide", - u: "\u041f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u0435\u043c" - }, { - id: F.uq, - w: "Click to Cut", - t: "Cliquer", - s: "Klicke: Schneide", - u: "\u0429\u0435\u043b\u0447\u043a\u043e\u043c" - }, { - id: F.br, - w: "Let's Play", - t: "C'est parti", - s: "Lass uns spielen", - u: "\u0414\u0430\u0432\u0430\u0439\u0442\u0435 \u043f\u043e\u0438\u0433\u0440\u0430\u0435\u043c" - }, { - id: F.hr, - w: "More Cut the Rope fun!", - t: "Toujours plus de Cut the Rope !", - s: "Mehr Cut the Rope Spa\u00df!", - u: "\u0415\u0449\u0435 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0435\u0441\u0435\u043b\u044c\u044f \u0432 \u0438\u0433\u0440\u0435 Cut the Rope!" - }, { - id: F.xr, - w: "Share...", - t: "Partager...", - s: "Teilen...", - u: "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f..." - }, { - id: F.vr, - w: "Share", - t: "Partager", - s: "Teilen", - u: "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f" - }, { - id: F.vq, - w: "Congratulations!", - t: "F\u00e9licitations!", - s: "Gratulation!", - u: "\u041f\u043e\u0437\u0434\u0440\u0430\u0432\u043b\u044f\u0435\u043c!" - }, { - id: F.Pq, - w: "You completed the game with %d stars!", - t: "Tu as termin\u00e9 le jeu avec %d \u00e9toiles !", - s: "Du hast das Spiel mit %d Sternen beendet!", - u: "\u0412\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0438 \u0438\u0433\u0440\u0443 \u0441\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e\u043c \u0437\u0432\u0435\u0437\u0434: %d!" - }, - { - id: F.wr, - w: "I just found one of Om Nom's secret drawings!", - t: "Je viens juste de trouver un des dessins secrets de Om Nom !", - s: "Ich habe gerade eine geheime Om-Nom-Zeichnung entdeckt!", - u: "\u041c\u043d\u043e\u044e \u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0442\u043e \u0431\u044b\u043b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d \u043e\u0434\u0438\u043d \u0438\u0437 \u0442\u0430\u0439\u043d\u044b\u0445 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0410\u043c \u041d\u044f\u043c\u0430!" - }, - { - id: F.Mq, - w: "You found a drawing!", - t: "Tu as trouv\u00e9 un dessin !", - s: "Du hast die Zeichnung gefunden!", - u: "\u0412\u044b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0438\u043b\u0438 \u0440\u0438\u0441\u0443\u043d\u043e\u043a!" - }, { - id: F.yr, - w: "Show Me", - t: "Montre-moi", - s: "Zeig es mir", - u: "\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043c\u043d\u0435" - }, { - id: F.Nq, - w: "Free Download", - t: "T\u00e9l\u00e9chargement gratuit", - s: "Kostenloser Download", - u: "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0430\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430" - }, - { - id: F.Cr, - w: "Cut the Rope is a fun game where you feed candy to the curiously cute green monster Om-nom.", - t: "Cut the Rope est un jeu amusant dans lequel tu dois nourrir Om Nom, un curieux petit monstre.", - s: "Cut the Rope ist ein lustiges Spiel, wobei du dem kuriosem, niedlichem Monster Om-nom S\u00fc\u00dfigkeiten f\u00fctterst.", - u: "Cut the Rope \u044d\u0442\u043e \u0432\u0435\u0441\u0435\u043b\u0430\u044f \u0438\u0433\u0440\u0430, \u0432 \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432\u044b \u043a\u043e\u0440\u043c\u0438\u0442\u0435 \u0441\u043b\u0430\u0434\u043e\u0441\u0442\u044f\u043c\u0438 \u043b\u044e\u0431\u043e\u043f\u044b\u0442\u043d\u043e\u0433\u043e \u0438 \u043c\u0438\u043b\u043e\u0433\u043e \u043c\u043e\u043d\u0441\u0442\u0440\u0430 \u043f\u043e \u0438\u043c\u0435\u043d\u0438 \u0410\u043c \u041d\u044f\u043c." - }, - { - id: F.Dr, - w: "Om Nom is Om Line - Cut the Rope for the Web", - t: "Om Nom est om ligne - Cut the Rope version web", - s: "Om Nom ist Om Line - Cut the Rope f\u00fcr das Internet", - u: "\u0410\u043c \u041d\u044f\u043c \u0432 \u0410\u043c \u041b\u0430\u0439\u043d\u0435 \u2013 \u0432\u0435\u0431-\u0432\u0435\u0440\u0441\u0438\u044f \u0438\u0433\u0440\u044b Cut the Rope" - }, { - id: F.Br, - w: 'Play the HTML5 version of "Cut the Rope"!', - t: "Joue \u00e0 Cut the Rope dans sa version HTML5 !", - s: 'Spiele die HTML5 Version von "Cut the Rope"!', - u: "\u0418\u0433\u0440\u0430\u0439\u0442\u0435 \u0432 HTML5-\u0432\u0435\u0440\u0441\u0438\u044e \u0438\u0433\u0440\u044b Cut the Rope!" - }, { - id: F.rr, - w: 'Hold the "yes" button for 3 seconds to reset.', - t: 'Maintenir le doigt sur "Oui" pendant 3 secondes pour r\u00e9initialiser.', - s: 'Halte zum Neustarten 3 Sekunden lang "Ja" gedr\u00fcckt.', - u: '\u0423\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435 "\u0414\u0430" \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 3 \u0441\u0435\u043a\u0443\u043d\u0434 \u0434\u043b\u044f \u0441\u0431\u0440\u043e\u0441\u0430 \u043f\u0440\u043e\u0433\u0440\u0435\u0441\u0441\u0430.' - }, - { - id: F.Kq, - w: "everything off", - t: "tout couper", - s: "alles aus", - u: "\u0432\u0441\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u043e" - }, { - id: F.qr, - w: "reload the game in SD", - t: "recharger le jeu en SD", - s: "Spiel in SD neu laden", - u: "\u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438\u0433\u0440\u0443 \u0432 SD" - }, { - id: F.pr, - w: "reload the game in HD", - t: "recharger le jeu en HD", - s: "Spiel in HD neu laden", - u: "\u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438\u0433\u0440\u0443 \u0432 HD" - }, - { - id: F.Fr, - w: "A Little Too Slow...", - t: "Un peu trop lent", - s: "Etwas zu langsam...", - u: "\u041a\u0430\u043a-\u0442\u043e \u043d\u0435 \u043e\u0447\u0435\u043d\u044c \u0431\u044b\u0441\u0442\u0440\u043e..." - }, { - id: F.Er, - w: "Om Nom is sad because your computer is running slow. We'll do our best, but there may be some slow-downs.", - t: "Om Nom est triste. Votre ordinateur est tr\u00e8s lent. Nous ferons notre mieux, mais il est possible que le jeu ralentisse.", - s: "Om Nom ist traurig, weil dein Computer so langsam ist. Wir geben unser Bestes, aber es kann trotzdem zu Verz\u00f6gerungen kommen.", - u: '\u0410\u043c \u041d\u044f\u043c \u043e\u043f\u0435\u0447\u0430\u043b\u0435\u043d: \u0443 \u0432\u0430\u0441 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440. \u041c\u044b, \u043a\u043e\u043d\u0435\u0447\u043d\u043e, \u043f\u043e\u0441\u0442\u0430\u0440\u0430\u0435\u043c\u0441\u044f, \u043d\u043e \u0438\u0433\u0440\u0430 \u0443 \u0432\u0430\u0441 \u043c\u043e\u0436\u0435\u0442 "\u043f\u0440\u0438\u0442\u043e\u0440\u043c\u0430\u0436\u0438\u0432\u0430\u0442\u044c".' - }, - { - id: F.ir, - w: "Music", - t: "Musique", - s: "Musik", - u: "\u041c\u0443\u0437\u044b\u043a\u0430" - }, { - id: F.Vr, - w: "Sounds", - t: "Sons oui", - s: "Ger\u00e4usche", - u: "\u0417\u0432\u0443\u043a\u0438" - }, { - id: F.of, - w: "Leaderboards", - t: "Classements", - s: "Bestenlisten", - u: "\u0422\u0430\u0431\u043b\u0438\u0446\u0430 \u0440\u0435\u043a\u043e\u0440\u0434\u043e\u0432" - }, { - id: F.hf, - w: "Achievements", - t: "Succ\u00e8s", - s: "Erfolge", - u: "\u0414\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u044f" - }, { - id: F.Sv, - w: "Achievement unlocked!", - t: "Succ\u00e8s d\u00e9bloqu\u00e9 !", - s: "Erfolg freigeschaltet!", - u: "\u041d\u043e\u0432\u043e\u0435 \u0434\u043e\u0441\u0442\u0438\u0436\u0435\u043d\u0438\u0435!" - }, { - id: F.Gn, - w: "Get MANY MORE\n levels in the full version", - t: "De NOMBREUX autres niveaux\n sont disponibles dans la version compl\u00e8te!", - s: "In der Vollversion gibt\n es noch VIEL MEHR Level!", - u: "\u041f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u041d\u0410\u041c\u041d\u041e\u0413\u041e \u0411\u041e\u041b\u042c\u0428\u0415\n \u0443\u0440\u043e\u0432\u043d\u0435\u0439 \u0432 \u043f\u043e\u043b\u043d\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438!" - }, - { - id: F.jr, - w: "Name", - t: "Nom", - s: "Name", - u: "\u0418\u043c\u044f" - }, { - id: F.cq, - w: "{0} & {1}", - t: "{0} et {1}", - s: "{0} und {1}", - u: "{0} \u0438 {1}" - }, { - id: F.Yi, - w: "Buy Full Game", - t: "Acheter le jeu complet", - s: "Vollversion kaufen", - u: "\u041a\u0443\u043f\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e" - }, { - id: F.bx, - w: "Settings", - t: "Param\u00e8tres", - s: "Einstellungen", - u: "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438" - }, { - id: F.Ww, - w: "Privacy", - t: "Vie priv\u00e9e", - s: "Datenschutz", - u: "\u041a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u044c" - } - ], ka), - X = function(a, d, c, b) { - var f = { - w: "I just finished playing Cut the Rope on Windows with {0} (out of {1} possible) stars!", - t: "Je viens de finir Cut the Rope sur Windows avec {0}\u00a0\u00e9toiles (sur {1})\u00a0!", - s: "Ich habe gerade Cut the Rope in Windows mit {0} (von {1} m\u00f6glichen) Sternen abgeschlossen!", - u: "\u041c\u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0438\u0433\u0440\u0443 Cut the Rope \u043d\u0430 Windows, \u0441\u043e\u0431\u0440\u0430\u0432 {0} (\u0438\u0437 {1} \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u044b\u0445) \u0437\u0432\u0435\u0437\u0434!" - }; - return { - fy: !0, - ey: !0, - ly: !0, - $C: !1, - aD: !0, - Jq: !0, - Jo: "/images/", - Cp: "/images/" + d.sg + "/", - fd: "/images/" + d.sg + "/ui/", - Lx: "/audio/", - xE: Ka(".m4a"), - Nv: "/video/", - EE: Ka(".mp4"), - zE: Ka("images\\1366\\ui\\"), - BE: Ka("images\\scores\\"), - TB: function(a, b) { - a.change(b) - }, - KB: function(a, b) { - a.change(b) - }, - IC: function(a, d) { - var f = a[0].winControl; - f && (f.checked = d); - $("#soundLabel").text(c.ca(b.Vr)) - }, - GC: function(a, d) { - var f = a[0].winControl; - f && (f.checked = d); - $("#musicLabel").text(c.ca(b.ir)) - }, - rC: function(a) { - $("#langSelect").toggle(a) - }, - GB: function(a) { - $("#langSelect").change(function() { - a(parseInt(this.value, - 10)) - }) - }, - FC: function() { - var a = c.Ty(); - $("#langSelect").val(a); - $("#langLabel").text(c.ca(b.ar)) - }, - yB: function(a) { - $("#dragCut").change(a); - $("#clickCut").change(a) - }, - DC: function(a) { - $("#dragCut").prop("checked", !a); - $("#dragCutLabel").text(c.ca(b.Dq)); - $("#clickCut").prop("checked", a); - $("#clickCutLabel").text(c.ca(b.uq)) - }, - SB: function(a, b) { - a.text(b) - }, - vF: function(a, b) { - a.closest("label").text(b) - }, - Wy: function(a, b) { - return c.ck(f).replace("{0}", a).replace("{1}", b) - }, - UE: Ka(!0) - } - }(ca, G, T, F, P), - fb = { - YE: !0 - }, - gb = function(a, - d) { - function c(a, c) { - var f = b.getSoundById("s" + a); - if (f) try { - c.call(this, f) - } catch (e) { - d.debug("Sound exception:" + e) - } else d.debug("No sound loaded:" + a) - } - var b = window.soundManager, - f = !1, - e = []; - b.audioFormats.mp3.required = !1; - b.setup({ - useHTML5Audio: !0, - preferFlash: !1, - url: "/sm2/", - flashVersion: 9, - useHighPerformance: !0, - debugMode: !1, - flashLoadTimeout: 500, - ontimeout: function() { - b.useHTML5Audio = !0; - b.preferFlash = !1; - b.reboot() - }, - onready: function() { - f = !0; - for (var a = 0, b = e.length; a < b; a++) e[a]() - } - }); - return { - ri: function(a) { - f ? a() : e.push(a) - }, - play: function(a, b) { - c(a, function(a) { - var c = null; - b && (c = {}, c.onfinish = b); - a.play(c) - }) - }, - kk: function(a) { - var b = !1; - c(a, function(a) { - b = 1 === a.playState && !a.paused - }); - return b - }, - vz: function(a) { - var b = !0; - c(a, function(a) { - b = a.paused - }); - return b - }, - pause: function(a) { - c(a, function(a) { - a.pause() - }) - }, - stop: function(a) { - c(a, function(a) { - a.stop() - }) - }, - YB: function(a, b) { - c(a, function(a) { - a.volume = b - }) - } - } - }(X, ka), - zb = function(a, d, c, b) { - function f() { - if (g && h) { - var b = new PxLoader({ - aA: 3E4 - }), - f = a.Lx, - q, m, p, u; - q = 0; - for (m = d.Nt.length; q < m; q++) p = d.Nt[q], u = - f + c[p].path + ".m4a", b.addSound("s" + p, u, "MENU"); - q = 0; - for (m = d.nt.length; q < m; q++) p = d.nt[q], u = f + c[p].path + ".m4a", b.addSound("s" + p, u); - b.addCompletionListener(function() { - for (var a = 0, b = e.length; a < b; a++) e[a]() - }); - b.start() - } - } - var e = [], - g = !1, - h = !1; - b.ri(function() { - h = !0; - f() - }); - return { - start: function() { - g = !0; - f() - }, - nA: function(a) { - e.push(a) - } - } - }(X, K, Oa, gb), - Ab = function(a, d, c, b, f, e, g, h, l) { - function n() { - function e(b, c, d) { - if (b) - for (c = c || a.fd, d = d || "MENU", k = 0, C = b.length; k < C; k++) b[k] && (D = c + b[k], p.addImage(D, d)) - } - - function n(a, b) { - var k, - c, d; - k = 0; - for (c = a.length; k < c; k++) { - d = a[k]; - var e = new PxLoaderImage(u + f[d].path, b); - e.Cu = d; - p.add(e) - } - } - var p = new PxLoader({ - aA: 3E4 - }), - u = a.Jo + b.wb + "/game/", - k, C, D, J = ["PASSWORD", "EDITION", "FONT", "MENU"].concat(["GAME"]); - n(l.lx, "FONT"); - n(d.Oy, "GAME"); - n(d.Ft, "GAME"); - n(d.Gt, "GAME"); - p.addProgressListener(function(a) { - h.pA(a.resource.Cu, a.resource.img) - }, ["FONT", "GAME"]); - e(c.dF, a.Jo + (c.cF || ""), "PASSWORD"); - e(c.fF, a.Cp + (c.eF || ""), "PASSWORD"); - e(c.aF, a.Jo + "page/"); - e(c.bF, a.Cp + "page/"); - e(d.Wz); - e(d.Ns, a.Qx); - e(d.Ms); - e(d.Sn); - e(d.xy); - e(d.qE, a.Cp + (d.pE || ""), "EDITION"); - p.addProgressListener(function(a) { - var b = 100 * (a.completedCount / a.totalCount); - g && g.ZE(b); - a.completedCount === a.totalCount && (m = !0, q()) - }, J); - p.start(J) - } - - function q() { - m && p && (g && (g.$E(), g.hide()), u && setTimeout(u, 0), q = da()) - } - var m = !1, - p = !1, - u = null; - return { - init: function() { - function a() { - n(); - e.nA(function() { - p = !0; - q() - }); - e.start() - } - h.init(); - g ? g.init(a) : a() - }, - yb: function() { - g && (g.yb(), g.show()) - }, - Ep: function(a) { - u = a; - q() - } - } - }(X, K, fb, G, Oa, zb, null, Pa, eb), - hb = function(a, d) { - function c(a) { - g && - (a += "-" + g); - return a - } - - function b(a) { - if (!h) return null; - var b = []; - a = (h.get(c(a)) || "").split(","); - var d = a.length, - f, e; - for (f = 0; f < d; f++) f < a.length ? (e = parseInt(a[f], 16), isNaN(e) && (e = null)) : e = null, b.push(e); - return b - } - - function f(a, c) { - if (!h) return null; - var d = b(a); - return d.length > c ? d[c] : null - } - - function e(a, d, f) { - if (h) { - var e = b(a); - if (e[d] !== f && (e[d] = f, h)) - if (a = c(a), e) { - d = []; - f = e.length; - var g, u; - for (g = 0; g < f; g++) u = e[g], null == u ? d.push("") : d.push(u.toString(16)); - h.set(a, d.join(",")) - } else h.remove(a) - } - } - var g = ""; - d.subscribe(d.C.In, - function(a) { - g = a - }); - var h = null; - d.subscribe(d.C.ur, function(a) { - h = a ? { - set: a.set, - get: a.get, - remove: a.remove - } : null; - d.na(d.C.yh) - }); - return { - bk: function(a, b) { - return f("scores-" + a, b) - }, - Ip: function(a, b, c) { - e("scores-" + a, b, c) - }, - Ef: function(a, b) { - return f("stars-" + a, b) - }, - $e: function(a, b, c) { - e("stars-" + a, b, c) - }, - Qy: function(a) { - return f("achievements", a) - }, - uB: function(a, b) { - e("achievements", a, b) - } - } - }(K, M), - sa = function(a, d, c, b, f, e, g, h, l, n) { - function q(a, b, k, c) { - this.$c = a; - this.Gi = b; - this.Xf = k || []; - this.Ub = c || [] - } - - function m(a, k) { - var c = - n.Ef(a, k), - d = b.Ig(z + (1E3 * k + a ^ C), null), - d = null == d ? null : (d ^ C) - k - 1E3 * a; - return -1 === d || null === d ? c : null == c ? d : Math.max(c, d) - } - - function p(a, k, c) { - b.set(z + (1E3 * k + a ^ C), (null == c ? -1 : c) + 1E3 * a + k ^ C); - n.$e(a, k, c) - } - - function u(a, k) { - var c = n.bk(a, k) || 0, - d = b.Ig(v(a, k), null); - return Math.max(c, null == d ? 0 : (d ^ C) - a - 1E3 * k) - } - - function s(a, k, c) { - b.set(v(a, k), c + 1E3 * k + a ^ C); - n.Ip(a, k, c) - } - - function v(a, b) { - var c = r + (1E3 * a + b ^ C); - return c === k ? c + "_" : c - } - var r = String.fromCharCode(98, 112), - z = String.fromCharCode(98, 115), - k = r + String.fromCharCode(50, 51, 57, 48), - C = null; - b.ri(function() { - C = b.Ig(k, null); - null == C && (C = c.ub(1E3, 1E4), b.set(k, C)) - }); - var D = new function() { - var b = []; - this.load = function() { - b = []; - var c, d; - c = 0; - for (len = f.zg.length; c < len; c++) { - d = b; - for (var e = c, g = c, l = null !== m(g, 0), h = f.zg[g].uc.length, n = f.AC[g], C = [], v = [], r = void 0, r = 0; r < h; r++) { - if (!l) { - var z = g, - x = r; - p(z, x, 0 === x ? 0 : null); - s(z, x, 0) - } - C.push(u(g, r)); - v.push(m(g, r)) - } - d[e] = new q(h, n, C, v); - if (a.jE === c + 1) - for (d = f.zg[c].uc.length, len = d - 1, d = 0; d < len; d++) D.$e(c, d, 3, !0) - } - k && D.Si() - }; - d.subscribe(d.C.Ch, this.load); - d.subscribe(d.C.Dh, - this.load); - d.subscribe(d.C.yh, this.load); - var k = !1; - d.subscribe(d.C.Vi, function() { - k = !0 - }); - this.cz = function() { - return C - }; - this.$c = function(a) { - a = b[a]; - return null != a ? a.$c : null - }; - this.Gi = function(a) { - a = b[a]; - return null != a ? a.Gi : 0 - }; - this.Ln = function(a) { - a = b[a]; - if (null != a) { - for (var k = 0, c = 0; c < a.$c; c++) var d = a.Ub[c], - k = k + (null == d ? 0 : d); - return k - } - return 0 - }; - this.cg = function() { - for (var a = 0, k = 0; k < b.length; k++) a += D.Ln(k); - return a - }; - this.mu = function(a) { - a = b[a]; - return null != a ? 3 * a.$c : 0 - }; - this.Mg = function(k) { - return 0 == k || a.eg || null != - b[k] && D.cg() >= D.Gi(k) ? !1 : !0 - }; - this.uz = function(k, c) { - var d = b[k]; - return a.eg ? !0 : null != d ? null != d.Ub[c] : !1 - }; - this.Ip = function(a, k, c, f) { - var e = b[a]; - if (null != e) { - f ? e.Xf[k] = c : (f = u(a, k), e.Xf[k] = Math.max(c, f)); - s(a, k, e.Xf[k]); - k = e.Xf.length; - for (f = c = 0; f < k; f++) c += e.Xf[f]; - d.na(d.C.xs, a, c) - } - }; - this.bk = function(a, k) { - var c = b[a]; - return null != c ? c.Xf[k] : null - }; - this.$e = function(a, k, c, f) { - var e = this.cg(), - g = b[a]; - if (null != g) { - var l = m(a, k); - g.Ub[k] = null == l || f ? c : Math.max(c, l); - p(a, k, g.Ub[k]) - } - a = this.cg(); - a !== e && d.na(d.C.zn, a) - }; - this.Ef = - function(a, k) { - var c = b[a]; - return null != c ? c.Ub[k] : null - }; - this.dB = function() { - var a = b.length, - k, c, d, f; - for (k = 0; k < a; k++) - for (c = b[k], f = c.$c, d = 0; d < f; d++) { - var e = k, - g = d; - p(e, g, 0 === g ? 0 : null); - s(e, g, 0); - c.Ub[d] = m(k, d); - c.Xf[d] = u(k, d) - } - this.Si() - }; - this.Si = function() { - var a = g.ca(l.sx).replace("%d", D.cg()); - e.sa({ - text: a, - Zc: "#boxScore img", - za: !0 - }) - }; - d.subscribe(d.C.Cb, this.Si) - }; - return D - }(qa, M, ba, va, K, ca, T, ua, F, hb), - xa = function() { - return new function() { - this.Xt = function(a, d, c) { - return d * a / c + 0 - }; - this.zy = function() { - return 0.05 * Math.sin(t / - 100 * (Math.PI / 2)) + 0 - }; - this.gt = function(a, d, c, b) { - return c * ((a = a / b - 1) * a * a + 1) + d - }; - this.Th = function(a, d, c, b) { - return 1 > (a /= b / 2) ? c / 2 * a * a * a + d : c / 2 * ((a -= 2) * a * a + 2) + d - }; - this.Bf = function(a, d, c, b) { - return a == b ? d + c : c * (-Math.pow(2, -10 * a / b) + 1) + d - }; - this.Rj = function(a, d, c) { - return 0 == a ? 0 : a == c ? 0 + d : 1 > (a /= c / 2) ? d / 2 * Math.pow(2, 10 * (a - 1)) + 0 : d / 2 * (-Math.pow(2, -10 * --a) + 2) + 0 - }; - this.io = function(a, d, c, b) { - var f = 1.5; - void 0 == f && (f = 1.70158); - return c * ((a = a / b - 1) * a * ((f + 1) * a + f) + 1) + d - }; - this.Qj = function(a, d, c, b) { - void 0 == b && (b = 1.70158); - return 1 > (a /= - c / 2) ? d / 2 * a * a * (((b *= 1.525) + 1) * a - b) + 0 : d / 2 * ((a -= 2) * a * (((b *= 1.525) + 1) * a + b) + 2) + 0 - } - } - }(), - Fa = function(a, d, c, b, f, e, g, h, l, n, q) { - var m; - $(function() { - m = $("#boxUpgradePlate").hide() - }); - g.subscribe(g.C.sf, function(a) { - a && m && m.fadeOut(200) - }); - g.subscribe(g.C.Cb, function() { - c.sa({ - text: h.ca(q.Yi), - ib: "boxUpgradePlate", - scale: 0.6 * b.Za - }) - }); - var p = f.Qx || f.fd; - return a.extend({ - init: function(a, d, e, n, m) { - this.index = a; - this.If = n; - this.Ze = this.visible = !0; - this.Hj = 0; - this.opacity = 1; - this.type = m; - d && (this.Ih = new Image, this.Ih.src = p + d); - var k = - this.qv = new Image, - q = this.Sx = b.A(350), - D = this.Os = b.A(20), - J = this; - this.rv = !1; - this.Au = function() { - c.sa({ - text: h.Ij(a, J.Mo), - img: k, - width: (q - 2 * D) / b.Za, - Id: l.oc, - za: !0 - }); - J.rv = !0 - }; - g.subscribe(g.C.Cb, this.Au); - this.Yd = c.sa({ - text: e, - za: !0 - }); - this.Zt = new Image; - this.Zt.src = f.fd + "box_omnom.png"; - this.Kt = new Image; - this.Kt.src = f.fd + "box_lock.png"; - this.Zf = new Image; - this.Zf.src = f.fd + "star_result_small.png"; - this.iu = new Image; - this.iu.src = f.fd + "perfect_mark.png"; - this.Mo = !0 - }, - Og: Ka(!0), - Oo: Ka(!0), - gi: Ka(!0), - L: function(a, b) { - var c = - a.globalAlpha; - this.opacity !== c && (a.globalAlpha = this.opacity); - this.zu(a, b); - this.opacity !== c && (a.globalAlpha = c) - }, - zu: function(a, c) { - var d = this.Oo(); - d && (a.fillStyle = "rgb(45,45,53)", a.fillRect(b.A(130), b.A(200), b.A(140), b.A(100)), null != c && a.drawImage(this.Zt, c + b.A(4), b.A(215))); - this.Ih && a.drawImage(this.Ih, b.A(25), b.A(0)); - if (d) { - if (this.If) { - var d = $(this.Yd).width() || this.Yd.width, - f = $(this.Yd).height() || this.Yd.height, - e = this.Zf.width || $(this.Zf).width(), - k = b.A(-6), - e = d + k + e, - e = (b.A(125) - e) / 2, - e = b.A(140) + e; - a.scale(1.015, - 1); - a.drawImage(this.Kt, b.A(23), b.A(155)); - a.scale(1 / 1.015, 1); - this.Ze && (a.drawImage(this.Yd, e, b.A(220), d, f), a.drawImage(this.Zf, e + d + k, b.A(225))) - } - n.Ln(this.index) === n.mu(this.index) && a.drawImage(this.iu, b.A(260), b.A(250)) - } - this.rv || this.Au(); - f = $(this.qv); - d = f.width(); - f = f.height(); - k = Math.floor(b.A(25) + this.Os + (this.Sx - 2 * this.Os - d) / 2); - e = b.A(70); - a.drawImage(this.qv, k, e, d, f) - }, - Ls: function(a) { - if (a) { - this.Hj = Date.now(); - var c = b.A(1024), - f = b.A(576), - e = this, - g = function() { - t = Date.now() - e.Hj; - var k, l; - 100 > t ? (k = d.zy(), l = - 1 - k, k = 1 + k) : 300 > t ? (k = d.Th(t - 100, 0, 0.11, 200), l = 0.95 + k, k = 1.05 - k) : 600 > t && (k = d.gt(t - 300, 0, 0.05, 300), l = 1.06 - k, k = 0.94 + k); - l = (c - c * l) / 2; - k = (f - f * k) / 2; - var h = (c - 2 * l) / c, - n = (f - 2 * k) / f; - isNaN(h) || isNaN(n) || (a.save(), a.setTransform(1, 0, 0, 1, 0, 0), a.clearRect(b.A(312), b.A(100), b.A(400), b.A(460)), a.restore(), a.save(), a.scale(h, n), a.translate(l, k), a.translate(b.A(312), b.A(130)), e.L(a, b.A(140)), a.restore()); - 600 < t ? e.Hj = 0 : window.requestAnimationFrame(g) - }; - g() - } - }, - Ss: function() { - this.Hj = 0 - }, - si: function() { - this.Ze || m.toggleClass("purchaseBox", - this.wz || !1).fadeIn() - }, - vi: function() { - m && m.fadeOut(200) - } - }) - }(aa, xa, ca, G, X, Ea, M, T, P, sa, F, K), - Qa = {}, - Bb = function(a, d, c, b, f, e, g, h, l, n, q) { - return a.extend({ - init: function(a, d, e, h, n) { - this.H(a, d, e, h, n); - this.Tf = -1; - this.Uf = null; - var q = this; - $(document).ready(function() { - $("#showMeBtn").click(function() { - l.rA && l.rA(); - q.aC() - }); - var a = $("#installieBtn"), - k = getIE9DownloadUrl(); - k ? (a.on("click", function() { - l.jA && l.jA(); - window.location.href = k - }), f.subscribe(f.C.Cb, function() { - g.sa({ - text: c.ca(b.Nq), - img: a.find("img")[0], - za: !0 - }) - })) : - a.hide() - }) - }, - Og: function() { - return 0 !== this.Tf - }, - pz: function() { - var a = function() { - var a = -1, - b = ("Microsoft Internet Explorer" == navigator.appName || "MSAppHost/1.0" == navigator.appName ? /MSIE ([0-9]?[0-9]{1,}[.0-9]{0,})/ : /Trident\/.*rv:([0-9]{1,}[.0-9]{0,})/).exec(navigator.userAgent); - null != b && 1 < b.length && (a = parseInt(b[1], 10)); - return a - }(), - e = function() { - try { - var a = navigator.userAgent, - b = -1 != a.indexOf("Windows NT"), - c = b ? parseInt(a[a.indexOf("Windows NT") + 11]) : -1; - if (b && 6 <= c) return !0 - } catch (d) {} - return !1 - }(); - if (9 <= a || d.Jy) { - a = - h.Jq || "true" == q.get("msIsSiteModeActivated"); - e = !0 === h.Jq; - if (!e) try { - window.external.msIsSiteMode() && (e = !0) - } catch (n) {} - a || e || d.Jy ? (this.opacity = this.Tf = 1, this.Uf = null, a || (q.set("msIsSiteModeActivated", "true"), l.sA && l.sA())) : (this.Tf = 3, this.opacity = 0.35, this.Uf = "pinPrompt", f.subscribe(f.C.Cb, function() { - g.sa({ - text: c.ca(b.yr), - Zc: "#showMeBtn img", - za: !0 - }) - })) - } else e ? (this.Tf = 2, this.opacity = 0.35, this.Uf = "iePrompt") : (this.Tf = 0, this.opacity = 0.35, this.Uf = null); - return 0 == this.Tf || -1 == this.Tf ? !1 : !0 - }, - si: function() { - null != - this.Uf && ($("#pinningContent").stop(!0, !0).delay(100).fadeIn(800), $("#" + this.Uf).show()) - }, - vi: function() { - null != this.Uf && $("#pinningContent").stop(!0, !0).fadeOut(300) - }, - aC: function() { - var a = $("#pinCursor"), - b = $("#pinOmNom"), - c = $("#pinChairShadow"), - d = $("#showMeBtn"), - f = $("#pinTaskBar"); - d.fadeOut().delay(5500).fadeIn(1E3); - c.delay(500).fadeOut().delay(6E3).fadeIn(300); - a.delay(500).fadeIn().delay(2250).animate({ - left: n.A(200) - }, 500, "easeInOutCirc").fadeOut().animate({ - top: n.A(65), - left: n.A(45), - scale: "1.0" - }, 0); - b.delay(500).fadeIn().delay(1E3).animate({ - top: n.A(305), - left: n.A(165) - }, 1E3, "easeInOutBack").delay(1500).animate({ - scale: "0.65" - }, 200).delay(1500).fadeOut(1E3).animate({ - top: n.A(115), - left: n.A(-49), - scale: "1.0" - }, 50).fadeIn(500); - f.delay(500).fadeIn().delay(5E3).fadeOut(1E3) - } - }) - }(Fa, qa, T, F, M, K, ca, X, Qa, G, va), - Cb = function(a, d, c, b, f, e, g) { - var h, l; - $(function() { - h = $("#boxUpgradePrompt").hide(); - l = $("#boxUpgradeButton").hide().click(function() { - d.na(d.C.tj) - }) - }); - d.subscribe(d.C.Cb, function() { - b.sa({ - text: c.ca(f.Gn), - ib: "boxUpgradePrompt", - width: e.A(650), - Id: g.da, - za: !0 - }); - b.sa({ - text: c.ca(f.Yi), - ib: "boxUpgradeButton", - scale: 0.6 * e.Za - }) - }); - var n = !1; - d.subscribe(d.C.sf, function(a) { - n = a - }); - return a.extend({ - init: function(a, b, c, d, f) { - this.H(a, b, c, d, f); - this.Mo = this.Ze = !1; - this.wz = !0; - this.visible = !n - }, - Og: Ka(!1), - Oo: Ka(!1), - si: function() { - h.fadeIn(); - l.fadeIn() - }, - vi: function() { - h.fadeOut(); - l.fadeOut(200) - } - }) - }(Fa, M, T, ca, F, G, P), - Db = function(a) { - return a.extend({ - init: function(a, c, b, f, e) { - this.H(a, c, b, f, e); - this.Mo = !1 - }, - Og: Ka(!1), - Oo: Ka(!1), - gi: Ka(!1) - }) - }(Fa), - ib = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s) { - function v(a) { - return k && - Date.now() >= r[a] ? !1 : s.Ig(C + (z[a] ^ D), 0) !== (z[a] - 1E3 ^ D) && !m.eg - } - var r = p.cE, - z = p.bE, - k = !1, - C = String.fromCharCode(98, 107), - D = n.cz(), - J = null; - $(document).ready(function() { - J = $("#boxEnterCodeButton").hide() - }); - var B = null, - E = null, - I = null, - wa = null, - W = "January February March April May June July August September October November December".split(" "); - a = d.extend({ - init: function(a, b, k, c, d) { - this.H(a, b, k, c, d); - this.Lt = new Image; - this.Lt.src = this.Ih.src.replace(".png", "_locked.png"); - this.hk = v(a) && p.rE; - this.lk = !0 !== m.eg && Date.now() < - r[a]; - this.zf = null - }, - gi: function() { - return !this.lk && !this.hk - }, - si: function() { - !this.lk && this.hk && J.fadeIn() - }, - vi: function() { - J.hide() - }, - zu: function(a) { - a.drawImage(this.If || this.lk || this.hk ? this.Lt : this.Ih, b.A(25), b.A(0)); - if (this.lk) { - B || (B = new Image, c.sa({ - text: "Available starting from", - img: B, - Id: l.oc, - width: b.A(250) - })); - B.complete && a.drawImage(B, b.A(100), b.A(120), 0.8 * B.width * b.Za, 0.8 * B.height * b.Za); - if (!this.zf) { - this.zf = new Image; - var k = new Date(r[this.index]); - c.sa({ - text: W[k.getMonth()] + " " + k.getDate(), - img: this.zf, - width: b.A(200), - Id: l.oc - }) - } - this.zf.complete && a.drawImage(this.zf, b.A(77), b.A(195), 1.2 * this.zf.width * b.Za, 1.2 * this.zf.height * b.Za) - } else if (this.hk) wa || (wa = new Image, c.sa({ - text: "Visit Burger King to get an\n unlock code!", - img: wa, - Id: l.oc, - width: b.A(280) - }), c.sa({ - text: "Enter Code", - ib: "boxEnterCodeButton", - za: !0 - })), wa.complete && a.drawImage(wa, b.A(50), b.A(90)); - else if (this.If) { - E || (E = new Image, c.sa({ - text: "Collect", - img: E, - za: !0 - })); - E.complete && a.drawImage(E, b.A(143), b.A(108)); - var k = 1.2 * ($(this.Yd).width() || this.Yd.width), - d = 1.2 * ($(this.Yd).height() || this.Yd.height), - f = this.Zf.width || $(this.Zf).width(), - e = b.A(-4), - e = k + e + f, - e = (b.A(125) - e) / 2, - e = b.A(140) + e; - a.drawImage(this.Zf, e, b.A(160)); - a.drawImage(this.Yd, e + f, b.A(150), k, d); - I || (I = new Image, c.sa({ - text: "to unlock", - img: I, - za: !0 - })); - I.complete && a.drawImage(I, b.A(130), b.A(204)) - } - } - }); - a.zC = function() { - var a = Date.now(), - b = r.length, - c, d, f; - k = !0; - for (c = 0; c < b; c++) d = r[c], a >= d && (d = C + (z[c] ^ D), f = z[c] - 1E3 ^ D, s.set(d, f)) - }; - a.At = v; - return a - }(aa, Fa, ca, G, X, Ea, M, T, P, sa, F, qa, K, ba, va), - ya = { - Fb: 0, - gd: 1, - he: 2, - kg: 3, - dj: 4, - cr: 5, - ph: 6, - De: 7, - wq: 8, - of: 9, - hf: 10, - pf: 11 - }, - Ga = function() { - return function(a, d, c, b) { - this.id = a; - this.Sg = d; - this.yg = c; - this.cC = b - } - }(), - Va = function() { - function a(a) { - this.jo = a.element; - this.$h = a.$h; - var c = this; - this.hv = function(b) { - b = b.originalEvent; - c.wp(b); - return a.kp ? c.il(b, a.kp) : !1 - }; - this.Ut = function(b) { - b = b.originalEvent; - c.wp(b); - return a.hp ? c.il(b, a.hp) : !1 - }; - this.ht = function(b) { - b = b.originalEvent; - c.wp(b); - return a.ep ? c.il(b, a.ep) : !1 - }; - this.gu = function(b) { - b = b.originalEvent; - return a.ip ? c.il(b, a.ip) : !1 - } - } - a.prototype.il = - function(a, c) { - var b = 0, - f = 0; - a || (a = window.event); - if (a.changedTouches && 0 < a.changedTouches.length) b = a.changedTouches[0].pageX, f = a.changedTouches[0].pageY; - else if (a.targetTouches && 0 < a.targetTouches.length) b = a.targetTouches[0].pageX, f = a.targetTouches[0].pageY; - else if (a.pageX || a.pageY) b = a.pageX, f = a.pageY; - else if (a.clientX || a.clientY) b = a.clientX + document.body.scrollLeft + document.documentElement.scrollLeft, f = a.clientY + document.body.scrollTop + document.documentElement.scrollTop; - var e = $(this.jo).offset(), - g = this.$h ? - this.$h() : 1, - b = Math.round((b - e.left) / g), - f = Math.round((f - e.top) / g); - return c(b, f) - }; - a.prototype.wp = function(a) { - a.preventManipulation ? a.preventManipulation() : a.preventDefault() - }; - a.prototype.Hd = function() { - $(this.jo).on(a.Pp, this.hv).on(a.Tt, this.Ut).on(a.ko, this.ht).on(a.fu, this.gu) - }; - a.prototype.Od = function() { - $(this.jo).off(a.Pp, this.hv).off(a.Tt, this.Ut).off(a.ko, this.ht).off(a.fu, this.gu) - }; - a.kl = window.navigator.pointerEnabled; - a.jl = window.navigator.msPointerEnabled; - a.LF = "undefined" !== typeof Modernizr && - Modernizr.touch; - a.Pp = a.kl ? "pointerdown" : a.jl ? "MSPointerDown" : "touchstart mousedown"; - a.Tt = a.kl ? "pointermove" : a.jl ? "MSPointerMove" : "touchmove mousemove"; - a.ko = a.kl ? "pointerup" : a.jl ? "MSPointerUp" : "touchend mouseup"; - a.fu = a.kl ? "pointerout" : a.jl ? "MSPointerOut" : "mouseout"; - return a - }(), - Wa = function(a, d) { - var c = d.sg / d.wb; - a.pt = function() { - return (this.zoom || 1) * c - }; - a.yb = function() { - 1 !== c && (this.Nu("c"), this.zoom = c, this.Hv()); - this.Nu("gameContainer"); - this.Wt = d.sg; - this.Vt = d.us; - this.Mx() - }; - return a - }(function() { - return new function() { - this.aq = - null; - this.zoom = 1; - this.transformOrigin = "top left"; - this.Nu = function(a) { - this.aq = $("#" + a) - }; - this.Hv = function(a) { - a = a || {}; - var d = "scale(" + this.zoom + ")", - c = ["ms", "o", "webkit", "moz"], - b = this.transformOrigin, - f, e, g; - 1 === this.zoom && (d = b = ""); - f = 0; - for (e = c.length; f < e; f++) g = "-" + c[f] + "-transform", a[g] = d, a[g + "-origin"] = b; - this.aq.css(a) - }; - this.pt = function() { - return this.fE || this.zoom || 1 - }; - this.az = function() { - return this.zoom || 1 - }; - this.Mx = function() { - var a = this; - $(window).resize(function() { - a.resize() - }); - this.resize() - }; - this.Vt = this.Wt = - 0; - this.resize = function(a) { - var d = $(window), - c = d.width(), - d = d.height(), - b = this.Wt, - f = this.Vt; - a || (this.zoom = Math.min(c / b, d / f)); - a = Math.round((c - b * this.zoom) / 2); - c = Math.round((d - f * this.zoom) / 2); - this.Hv({ - "margin-top": c, - "margin-left": a - }) - } - } - }(), G), - la = function(a, d, c, b, f) { - var e = { - Gj: !1, - af: !0, - Rf: !0, - te: null, - W: function(a) { - this.af && !f.kk(a) && f.play(a) - }, - GA: function(a) { - this.af && f.kk(a) && f.pause(a) - }, - hB: function(a) { - this.af && f.vz(a) && f.play(a) - }, - ku: function(a) { - var b = this; - this.af && !f.kk(a) && f.play(a, function() { - !b.Gj && b.af && - b.ku(a) - }) - }, - Qp: function(a) { - f.stop(a) - }, - zi: function(a) { - this.te && this.te !== a && this.lC(a); - var b = this; - this.Rf && !f.kk(a) && (this.te = a, f.YB(a, 70), f.play(a, function() { - !b.Gj && b.Rf && b.zi(a) - })) - }, - EA: function() { - this.Gj = !0; - this.yi(); - this.GA(b.ie) - }, - yi: function() { - this.te && f.pause(this.te) - }, - gB: function() { - this.Gj = !1; - this.Dp(); - this.hB(b.ie) - }, - Dp: function() { - this.te && this.zi(this.te) - }, - lC: function() { - this.te && f.stop(this.te) - }, - Uk: function(b) { - this.Rf = b; - a.Uk(b); - this.Rf ? this.Dp() : this.yi() - }, - Wk: function(b) { - this.af = b; - a.Wk(b) - } - }; - d.ri(function() { - e.af = a.vo(); - e.Rf = a.uo() - }); - return e - }(ra, va, ka, x, gb), - Xa = function(a, d, c) { - var b = a.extend({ - init: function(a) { - this.yf = b.ka.vh; - this.de = []; - this.children = []; - this.qp = this.Sc = this.Db = d.B; - this.parent = a; - this.li = d.B; - this.Xh = this.oo = this.Fh = this.frames = this.eo = 0; - this.Tc = 1 / 60; - this.Ak = [this.Tc, this.Tc, this.Tc, this.Tc, this.Tc] - }, - Hd: function() { - this.yf = b.ka.bq; - c.na(c.C.xq, this) - }, - Od: function() { - c.na(c.C.yq, this) - }, - Zs: function() { - this.yf = b.ka.vh; - this.Db !== d.B && this.Co(); - c.na(c.C.YC, this); - this.parent.$t(this.parent.Sc) - }, - pause: function() { - this.yf = b.ka.wh; - c.na(c.C.zq, this); - this.Db != d.B && (this.qp = this.Db, this.Co()) - }, - Ev: function() { - this.yf = b.ka.bq; - this.Sc !== d.B && (this.Sc = d.B); - c.na(c.C.Aq, this); - this.qp !== d.B && this.cv(this.qp) - }, - update: function() { - if (this.Db !== d.B) - for (var a = this.Mn(), b = Math.min(3, Math.floor(this.Xh)), c = 0; c < b; c++) a.update(0.016), this.Xh -= 1 - }, - eB: function() { - this.li = d.B - }, - Rs: function(a) { - this.eo = this.li !== d.B ? (a - this.li) / 1E3 : 0; - this.li = a; - this.Xh += this.Vs(this.eo) / 0.016 - }, - Vs: function(a) { - return 0.016 > a ? 0.016 : 0.05 < a ? - 0.05 : a - }, - Ux: function() { - this.frames++; - this.Fh += this.eo; - if (1 < this.Fh) { - this.oo = this.frames / this.Fh; - this.Fh = this.frames = 0; - this.Ak.shift(); - this.Ak.push(this.Vs(1 / this.oo)); - for (var a = this.Tc = 0, b = this.Ak.length; a < b; a++) this.Tc += this.Ak[a]; - this.Tc /= b - } - }, - Gx: function(a, b) { - this.de[b] = a - }, - jy: function(a) { - this.de[a] = null - }, - Co: function() { - var a = this.de[this.Db]; - a && (c.na(c.C.Bq, a), a.hide(), this.Db = d.B) - }, - cv: function(a) { - this.Db != d.B && this.Co(); - this.Db = a; - a = this.de[a]; - c.na(c.C.Cq, a); - a.show() - }, - Mn: function() { - return this.de[this.Db] - }, - Ff: function(a) { - return this.de[a] - }, - Ge: function(a, b) { - this.children[b] = a - }, - iy: function(a) { - this.children[a] = null; - this.Sc === a && (this.Sc = d.B) - }, - Ys: function() { - if (this.Sc !== d.B) { - var a = this.children[this.Sc]; - a && a.Od(); - this.Sc = d.B - } - }, - zx: function(a) { - this.Sc !== d.B && this.Ys(); - this.pause(); - this.Sc = a; - this.children[a].Hd() - }, - $t: function() { - this.Ev() - }, - XD: function() { - return this.children[this.Sc] - }, - tb: function(a) { - return this.children[a] - }, - tk: function(a, b) { - return this.Db === d.B ? !1 : this.de[this.Db].wk(a, b) - }, - Qg: function(a, b) { - return this.Db === - d.B ? !1 : this.de[this.Db].xk(a, b) - }, - Pt: function(a, b) { - return this.Db === d.B ? !1 : this.de[this.Db].lp(a, b) - }, - Qt: Ka(!1), - Rh: function(a, b) { - return this.Db === d.B ? !1 : this.de[this.Db].au(a, b) - } - }); - b.ka = { - vh: 0, - bq: 1, - wh: 2 - }; - return b - }(aa, V, M), - Eb = function(a, d, c, b, f, e, g, h, l) { - return a.extend({ - init: function(a) { - this.H(a); - this.fl = !1; - this.Aa = null; - this.zv = this.Ov = b.B; - this.Gk = null; - this.transitionDelay = 0.3; - this.Cg = this.co = !1; - g.subscribe(g.C.xq, $.proxy(this.cA, this)); - g.subscribe(g.C.yq, $.proxy(this.eA, this)); - g.subscribe(g.C.$v, $.proxy(this.dA, - this)); - g.subscribe(g.C.zq, $.proxy(this.fA, this)); - g.subscribe(g.C.Aq, $.proxy(this.gA, this)); - g.subscribe(g.C.Bq, $.proxy(this.hA, this)); - g.subscribe(g.C.Cq, $.proxy(this.iA, this)) - }, - wA: function(a) { - if (!this.fl && null !== this.Aa && (this.Aa.Rs(a), this.zv === b.B && this.Aa.update(), this.co && (this.co = !1, this.Aa.Zs()), this.Aa.Db !== b.B)) { - (a = this.Aa.Mn()) && a.L(); - this.Aa.Ux(); - if (f.Ly) { - var c = this.Aa.oo.toFixed(0); - 0 < c && (a = h.context, a.font = "20px Arial", a.fillStyle = l.el.Cj, a.fillText(c + " fps", 10, e.lb - 10)) - } - f.Lp && (a = h.context, - a.font = "20px Arial", a.fillStyle = l.el.Cj, a.fillText("1-23-2014", e.wb - a.measureText("1-23-2014").width - 10, e.lb - 10)) - } - }, - Ax: function() { - var a = e.vE || 1; - this.Vd || (this.Vd = new d({ - element: h.element, - kp: $.proxy(this.tk, this), - hp: $.proxy(this.Xz, this), - ep: $.proxy(this.Qg, this), - ip: $.proxy(this.Yz, this), - $h: function() { - return c.pt() * a - } - })); - this.Vd.Hd() - }, - gy: function() { - this.Vd && this.Vd.Od() - }, - Hd: function() { - function a() { - b.wA(Date.now()); - b.kv || c(a) - } - this.H(); - this.Ax(); - var b = this, - c = window.requestAnimationFrame; - this.kv = !1; - a() - }, - Od: function() { - this.H(); - this.kv = !0; - this.gy() - }, - Mu: function(a) { - this.Aa = a; - this.Aa.JE = 1 / 60 - }, - yE: Da("Aa"), - cA: function(a) { - this.Mu(a) - }, - dA: function() { - this.Aa = null - }, - fA: function() { - this.Aa = null - }, - gA: function(a) { - this.Mu(a) - }, - eA: function() { - this.co = !0 - }, - iA: function() { - if (this.Ov !== b.B && null != this.Gk) { - this.Aa.Rs(); - this.zv = this.Aa.li + this.transitionDelay; - var a = this.Aa.Mn(); - a && a.L() - } - }, - hA: function(a) { - this.Gk = a; - this.Ov !== b.B && null != this.Gk && this.Gk.L() - }, - PE: Da("fl"), - JF: function() { - this.fl = !0 - }, - nF: function() { - this.Aa && this.Aa.eB(); - this.fl = !1 - }, - tk: function(a, b) { - return this.Aa && this.Aa != this ? (this.Cg = !0, this.Aa.tk(a, b)) : !1 - }, - Xz: function(a, b) { - return this.Aa && this.Aa != this ? (this.Cg && this.Aa.Pt(a, b), this.Aa.Qt(a, b)) : !1 - }, - Qg: function(a, b) { - if (this.Aa && this.Aa != this) { - var c = this.Aa.Qg(a, b); - this.Cg = !1; - return c - } - return !1 - }, - Yz: function(a, b) { - if (this.Aa && this.Aa != this && this.Cg) { - var c = this.Aa.Qg(a, b); - this.Cg = !1; - return c - } - return !1 - }, - Rh: function(a, b) { - return this.Aa && this.Aa != this ? (this.Aa.Qg(a, b), this.Cg = !1, this.Aa.Rh(a, b)) : !1 - } - }) - }(Xa, Va, Wa, V, ra, G, - M, Z, ea), - za = function(a, d, c, b, f, e, g, h) { - return a.extend({ - init: function() { - this.H() - }, - Cc: function(a, b, c, d) { - var e = this.ef.length; - this.xb(e, a, b, c, d); - return e - }, - Bx: function(a, b, c, d) { - this.uf(this.ef.length, a, b, c, d) - }, - uf: function(a, b, c, d, e) { - this.Fj(a, b, c, d, e[0], h.B, e) - }, - xb: function(a, b, c, d, e, f) { - this.Fj(a, b, c, e - d + 1, d, e, f) - }, - Fj: function(a, c, d, h, p, u, s) { - u = new b; - var v = [f.create(this, e.uj, p, 0)]; - u.M(g.ni(v, 0)); - for (var r = 1; r < h; r++) s ? p = s[r] : p++, v = [f.create(this, e.uj, p, 0)], u.M(g.ni(v, c)), r == h - 1 && d === b.ka.Lb && u.M(g.ni(v, c)); - d && (u.ok = d); - this.Zb(u, a) - }, - zB: function(a, b, d) { - this.Fc(d).tt(c.fe).ya[b].dd = a - }, - Vk: function(a, b) { - this.Ku(e.lr, this, 0, 0, a, b) - }, - Ku: function(a, b, d, e, g, h) { - g = this.Fc(h).tt(c.fe).ya[g]; - a = f.create(b, a, d, e); - g.value.tf.push(a) - }, - ze: function(a, b, c) { - b = this.Fc(b); - a = [f.create(this, e.Dm, 0, a)]; - c = g.ni(a, c); - b.M(c) - }, - xz: function(a) { - this.Ob.Ct(c.fe, a) - } - }) - }(ha, Ta, Ma, na, La, ta, pa, V), - oa = function(a, d, c) { - a = a.extend({ - init: function(a, d, e) { - this.DA = a; - this.r = e || 0; - this.path = []; - if (0 < a) - for (this.j = Array(a), e = 0; e < a; e++) this.j[e] = d || 0; - this.p = - new c(0, 0); - this.a = 0; - this.reverse = this.paused = !1; - this.zb = 0 - }, - JB: function(a) { - for (var c = 0, d = this.DA; c < d; c++) this.j[c] = a - }, - Ru: function(a, d) { - if ("R" === a[0]) { - var e = parseInt(a.substr(2), 10), - g = e / 2, - h = 2 * Math.PI / g, - l = 0; - "C" !== a[1] && (h = -h); - for (var n = 0; n < g; ++n) this.ug(new c(d.x + e * Math.cos(l), d.y + e * Math.sin(l))), l += h - } else - for (this.ug(d.copy()), "," === a[a.length - 1] && (a = a.substr(0, a.length - 1)), e = a.split(","), g = e.length, n = 0; n < g; n += 2) h = new c(d.x + parseFloat(e[n]), d.y + parseFloat(e[n + 1])), this.ug(h) - }, - ug: function(a) { - this.path.push(a) - }, - start: function() { - 0 < this.path.length && (this.p.Da(this.path[0]), this.cd = 1, this.Un()) - }, - pause: function() { - this.paused = !0 - }, - Ev: function() { - this.paused = !1 - }, - xF: ma("r"), - QE: function(a) { - this.cd = a; - this.p.Da(this.path[a]); - this.Un() - }, - Un: function() { - this.offset = c.qb(this.path[this.cd], this.p); - this.offset.normalize(); - this.offset.multiply(this.j[this.cd]) - }, - uF: function(a, c) { - this.j[c] = a - }, - tF: ma("reverse"), - update: function(a) { - if (!this.paused) { - if (0 < this.path.length) { - var f = this.path[this.cd], - e = !1; - if (this.p.Xj(f)) e = !0; - else { - var g = - a; - 0 !== this.zb && (g += this.zb, this.zb = 0); - this.p.add(c.multiply(this.offset, g)); - d.Rk(this.offset.x, f.x - this.p.x) && d.Rk(this.offset.y, f.y - this.p.y) || (this.zb = c.qb(this.p, f).Qd(), this.zb /= this.offset.Qd(), this.p.Da(f), e = !0) - } - e && (this.reverse ? (this.cd--, 0 > this.cd && (this.cd = this.path.length - 1)) : (this.cd++, this.cd >= this.path.length && (this.cd = 0)), this.Un()) - } - 0 !== this.r && (this.a += this.r * a) - } - } - }); - a.Pf = function(a, c, d, g) { - c !== a && (c > a ? (a += d * g, a > c && (a = c)) : (a -= d * g, a < c && (a = c))); - return a - }; - a.Ud = function(a, c, d, g) { - var h = !1; - c !== a && (c > a ? (a += d * g, a > c && (a = c)) : (a -= d * g, a < c && (a = c)), c === a && (h = !0)); - return { - value: a, - Xd: h - } - }; - a.gr = 100; - return a - }(aa, ba, R), - Aa = function(a, d, c, b, f, e, g, h) { - a = a.extend({ - init: function() { - this.H(); - this.zt = !1 - }, - Se: function(a) { - this.H(a); - this.oa = new c(0, 0, this.width, this.height); - this.xp = new b(this.oa.x, this.oa.y, this.oa.width, this.oa.height); - this.anchor = f.da; - this.uv = this.Pk = !1 - }, - qF: function() { - var a = this.U.J[0], - d = this.U.G[0]; - this.oa = new c(Math.round(a.x), Math.round(a.y), d.width, d.height); - this.xp = new b(this.oa.x, this.oa.y, - this.oa.width, this.oa.height) - }, - Sf: function(a) { - this.rotation = a.a || 0; - var b = a.path; - if (b) { - var c = d.gr; - "R" === b[0] && (c = Math.round(parseInt(b.substr(2), 10) / 2 + 1)); - a = new d(c, a.j, a.r); - a.a = this.rotation; - a.Ru(b, new e(this.x, this.y)); - this.Gp(a); - a.start() - } - }, - Gp: function(a) { - this.bb = a; - this.Sa = 1E-4 - }, - update: function(a) { - this.H(a); - this.uv || (this.Jh(), this.uv = !0); - this.bb && (this.bb.update(a), this.x = this.bb.p.x, this.y = this.bb.p.y, this.Pk ? this.mB(this.bb.a) : this.rotation = this.bb.a) - }, - mB: function(a) { - this.Pk || (this.Pk = !0); - this.rotation = - a; - var b = this.oa, - c = new e(b.x, b.y), - d = new e(b.x + b.V, b.y), - f = new e(d.x, b.y + b.ga), - b = new e(b.x, f.y); - a = g.tc(a); - var h = this.width / 2 + this.xe, - s = this.height / 2 + this.Xg; - c.Ca(a, h, s); - d.Ca(a, h, s); - f.Ca(a, h, s); - c.Ca(a, h, s); - a = this.xp; - a.sv = c.x; - a.tv = c.y; - a.xv = d.x; - a.yv = d.y; - a.Ps = f.x; - a.Qs = f.y; - a.Hs = b.x; - a.Is = b.y - }, - Dg: function() { - var a = h.context, - b = this.ua, - c = this.va, - d = this.oa, - e = this.xp; - a.strokeStyle = "red"; - a.lineWidth = 2; - this.Pk ? (a.beginPath(), a.moveTo(b + e.sv, c + e.tv), a.lineTo(b + e.xv, c + e.yv), a.lineTo(b + e.Ps, c + e.Qs), a.lineTo(b + e.Hs, c + - e.Is), a.stroke(), a.closePath()) : a.strokeRect(b + d.x, c + d.y, d.V, d.ga) - }, - rp: function(a, b) { - var d = this.oa; - return c.Tb(a, b, this.ua + d.x, this.va + d.y, d.V, d.ga) - }, - WA: function(a, b, d, e) { - var f = this.ua + this.oa.x, - g = this.va + this.oa.y; - return c.Ci(a, b, d, e, f, g, f + this.oa.V, g + this.oa.ga) - } - }); - a.ei = function(a, b) { - var d = a.ua + a.oa.x, - e = a.va + a.oa.y, - f = b.ua + b.oa.x, - g = b.va + b.oa.y; - return c.Ci(d, e, d + a.oa.V, e + a.oa.ga, f, g, f + b.oa.V, g + b.oa.ga) - }; - return a - }(za, oa, S, Ta, P, R, ga, Z, ea), - Fb = function(a, d, c) { - return d.extend({ - init: function(a, c, d) { - this.H(a, - c, d) - }, - NB: function(b, d, e) { - var g, h, l, n; - h = a.qj; - if ("R" === b[0]) { - g = "C" === b[1]; - b = parseInt(b.substr(2), 10); - n = Math.round(3 * b / 2); - var q = 2 * Math.PI / n, - m = 0; - b *= h; - g || (q = -q); - for (g = 0; g < n; g++) h = d + b * Math.cos(m), l = e + b * Math.sin(m), this.ug(new c(h, l)), m += q - } else - for (this.ug(new c(d, e)), "," === b[b.length - 1] && (b = b.substr(0, b.length - 1)), q = b.split(","), m = q.length, g = 0; g < m; g += 2) b = q[g], n = q[g + 1], this.ug(new c(d + b * h, e + n * h)) - } - }) - }(G, oa, R), - Ba = function(a, d, c, b) { - return a.extend({ - init: function() { - this.H() - }, - Sf: function(a) { - this.rotation = a.a || - 0; - var e = a.path, - g = c.qj; - if (e) { - var h = b.gr; - "R" === e[0] && (h = Math.round(3 * parseInt(e.substr(2), 10) / 2 + 1)); - a = new d(h, a.j * g, a.r); - a.a = this.rotation; - a.NB(e, this.x, this.y); - this.Gp(a); - a.start() - } - } - }) - }(Aa, Fb, G, oa), - Gb = function(a, d, c, b, f, e, g, h) { - return a.extend({ - init: function(a, f, q, m) { - this.H(); - this.fv = this.a = 0; - this.Qa = d.cb(); - this.Va = d.cb(); - this.La = d.cb(); - this.Ma = d.cb(); - var p = e.B; - 1 === q ? p = g.fm : 2 === q && (p = g.gm); - this.Ea(p); - this.rotation = m; - this.x = a; - this.y = f; - this.gc(); - a = this.Cc(0.04, h.xa.mb, 0, 4); - this.Fc(a).M(c.Vz(this, b.uj)) - }, - gc: function() { - this.Qa.x = this.x - this.width / 2; - this.Va.x = this.x + this.width / 2; - this.Qa.y = this.Va.y = this.y - 5; - this.La.x = this.Qa.x; - this.Ma.x = this.Va.x; - this.La.y = this.Ma.y = this.y + 5; - this.a = f.tc(this.rotation); - this.Qa.Ca(this.a, this.x, this.y); - this.Va.Ca(this.a, this.x, this.y); - this.La.Ca(this.a, this.x, this.y); - this.Ma.Ca(this.a, this.x, this.y) - }, - update: function(a) { - this.H(a); - this.bb && this.gc() - } - }) - }(Ba, R, pa, ta, ga, V, x, na), - Hb = function(a) { - return a.extend({ - init: function() { - this.H(); - this.$p = this.tp = !1 - }, - L: function() { - this.$p ? - (this.Lc(), this.Kc()) : this.H() - } - }) - }(Aa), - jb = function(a, d, c, b, f) { - return a.extend({ - init: function(a, c) { - this.H(a); - this.Ko = c; - this.hb = new b(c); - this.width = f.wb; - this.height = f.lb - }, - di: function(a) { - var b = this.Ko, - b = b.G[c.ub(0, b.G.length - 1)], - f = new d(0, 0, 0, 0); - this.hb.jb(this.jc.length, b, f, 1); - this.H(a); - a.width = b.V * a.size; - a.height = b.ga * a.size - }, - Vp: function(a, b) { - this.hb.ff[b] = new d(a.p.x - a.width / 2, a.p.y - a.height / 2, a.width, a.height); - this.hb.wg[b] = a.color.O; - this.Xs[b] = a.color - }, - Bp: function(a) { - this.hb.bB(a); - this.H(a) - }, - L: function() { - this.Lc(); - this.hb.L(); - this.Kc() - } - }) - }(function(a, d, c, b, f, e, g) { - function h(a, b, c) { - this.x = a; - this.y = b; - this.size = c - } - - function l() { - this.cf = new a(0, 0); - this.p = new a(0, 0); - this.dir = new a(0, 0); - this.Mi = this.Ai = 0; - this.color = new d(0, 0, 0, 0); - this.Ke = new d(0, 0, 0, 0); - this.height = this.width = this.a = this.$s = this.Hc = this.size = 0 - } - return c.extend({ - init: function(b) { - this.H(); - this.width = e.wb; - this.height = e.lb; - this.Sp = b; - this.jc = []; - this.active = !1; - this.Uh = this.duration = 0; - this.qe = new a(0, 0); - this.Ek = new a(0, 0); - this.Ht = this.Hc = this.ev = this.size = - this.su = this.Ai = this.ov = this.Mi = this.gv = this.speed = this.Nn = this.a = 0; - this.Mc = new d(0, 0, 0, 0); - this.bf = new d(0, 0, 0, 0); - this.Ec = new d(0, 0, 0, 0); - this.Ne = new d(0, 0, 0, 0); - this.Cf = this.Tj = 0; - this.U = null; - this.ff = []; - this.Xs = []; - this.ve = 0; - this.rb = null - }, - Cs: function() { - if (this.jc.length == this.Sp) return !1; - var a = new l; - this.di(a); - this.jc.push(a); - return !0 - }, - di: function(c) { - c.p.x = this.x + this.Ek.x * b.Jb(); - c.p.y = this.y + this.Ek.y * b.Jb(); - c.cf.Da(c.p); - var e = g.tc(this.a + this.Nn * b.Jb()), - e = new a(Math.cos(e), Math.sin(e)); - e.multiply(this.speed + - this.gv * b.Jb()); - c.dir = e; - c.Ai = this.Ai + this.su * b.Jb(); - c.Mi = this.Mi + this.ov * b.Jb(); - c.Hc = this.Hc + this.Ht * b.Jb(); - var e = new d(this.Mc.R + this.bf.R * b.Jb(), this.Mc.T + this.bf.T * b.Jb(), this.Mc.S + this.bf.S * b.Jb(), this.Mc.O + this.bf.O * b.Jb()), - f = new d(this.Ec.R + this.Ne.R * b.Jb(), this.Ec.T + this.Ne.T * b.Jb(), this.Ec.S + this.Ne.S * b.Jb(), this.Ec.O + this.Ne.O * b.Jb()); - c.color = e; - c.Ke.R = (f.R - e.R) / c.Hc; - c.Ke.T = (f.T - e.T) / c.Hc; - c.Ke.S = (f.S - e.S) / c.Hc; - c.Ke.O = (f.O - e.O) / c.Hc; - c.size = this.size + this.ev * b.Jb() - }, - update: function(a) { - this.H(a); - if (this.rb && 0 === this.jc.length && !this.active) this.rb(this); - else { - if (this.active && this.Tj) { - var b = 1 / this.Tj; - for (this.Cf += a; this.jc.length < this.Sp && this.Cf > b;) this.Cs(), this.Cf -= b; - this.Uh += a; - 1 !== this.duration && this.duration < this.Uh && this.mC() - } - for (this.ve = 0; this.ve < this.jc.length;) b = this.jc[this.ve], 0 < b.Hc ? (this.Kv(b, a), b.color.R += b.Ke.R * a, b.color.T += b.Ke.T * a, b.color.S += b.Ke.S * a, b.color.O += b.Ke.O * a, b.Hc -= a, this.Vp(b, this.ve, a), this.ve++) : this.Bp(this.ve) - } - }, - Kv: function(b, c) { - var d, e; - b.p.x || b.p.y ? (d = b.p.copy(), - d.normalize()) : d = new a(0, 0); - e = d.copy(); - d.multiply(b.Ai); - var f = e.x; - e.x = -e.y; - e.y = f; - e.multiply(b.Mi); - d = a.add(d, e); - d.add(this.qe); - d.multiply(c); - b.dir.add(d); - d.Da(b.dir); - d.multiply(c); - b.p.add(d) - }, - Vp: function(a) { - this.ff[this.ve] = new h(a.p.x, a.p.y, a.size); - this.Xs[this.ve] = a.color - }, - Bp: function(a) { - this.jc.splice(a, 1) - }, - jv: function(a) { - this.jc = []; - for (var b = 0; b < a; b++) this.Cs(); - this.active = !0 - }, - mC: function() { - this.active = !1; - this.Uh = this.duration; - this.Cf = 0 - }, - lF: function() { - this.Cf = this.Uh = 0 - }, - L: function() { - this.Lc(); - if (0 !== this.color.O) - for (var a = f.context, b = this.U.Gc, c = 0, d = this.ve; c < d; c++) { - var e = this.jc[c]; - a.drawImage(b, Math.round(e.x), Math.round(e.y)) - } - this.Kc() - }, - LE: function() { - return this.jc.length === this.Sp - } - }) - }(R, ea, fa, ba, Z, G, ga), S, ba, Na, G), - Ib = function(a, d, c, b) { - return a.extend({ - init: function(a, b) { - this.H(a, b); - this.duration = 2; - this.qe.x = 0; - this.qe.y = 500; - this.a = -90; - this.Nn = 50; - this.speed = 150; - this.gv = 70; - this.Ai = 0; - this.su = 1; - this.Mi = 0; - this.ov = 1; - this.Ek.x = 0; - this.Ek.y = 0; - this.Hc = 2; - this.Ht = 0; - this.size = 1; - this.ev = 0; - this.Tj = - 100; - this.Mc.R = 1; - this.Mc.T = 1; - this.Mc.S = 1; - this.Mc.O = 1; - this.bf.R = 0; - this.bf.T = 0; - this.bf.S = 0; - this.bf.O = 0; - this.Ec.R = 1; - this.Ec.T = 1; - this.Ec.S = 1; - this.Ec.O = 1; - this.Ne.R = 0; - this.Ne.T = 0; - this.Ne.S = 0; - this.r = this.Ne.O = 0; - this.kB = 600 - }, - di: function(a) { - this.H(a); - var d = this.Ko.G[c.ub(3, 7)], - g = new b(0, 0, 0, 0); - this.hb.jb(this.jc.length, d, g); - a.width = d.V * this.size; - a.height = d.ga * this.size - } - }) - }(function(a, d, c, b) { - return a.extend({ - init: function(a, b) { - this.H(a, b); - this.hb.Wg = []; - this.hb.Qk = [] - }, - di: function(a) { - this.H(a); - a.a = 0; - a.$s = d.tc(this.r + - this.kB * c.Jb()); - a = this.jc.length; - this.hb.Wg[a] = 0; - this.hb.Qk[a] = new b(0, 0) - }, - oF: function(a, b, c, d, l) { - a.x -= d; - a.y -= l; - var n = a.x * c + a.y * b; - a.x = a.x * b - a.y * c + d; - a.y = n + l - }, - Vp: function(a, b, c) { - this.H(a, b, c); - a.a += a.$s * c; - this.hb.Wg[b] = a.a; - this.hb.Qk[b].Da(a.p) - }, - Bp: function(a) { - this.hb.Wg.splice(a, 1); - this.hb.Qk.splice(a, 1); - this.H(a) - } - }) - }(jb, ga, ba, R), G, ba, S), - Jb = function(a, d, c) { - return a.extend({ - init: function(a, c) { - this.H(); - this.Ea(d.em); - this.jb(a); - this.yy = c; - this.Xe = !1 - }, - Kp: function() { - c.na(c.C.Gq, this.yy) - } - }) - }(Aa, x, M), - Kb = function() { - return function(a, - d, c, b, f) { - this.start = a; - this.end = d; - this.color = f - } - }(), - Lb = function(a, d, c) { - return a.extend({ - init: function() { - this.zp = 1; - this.Na = [] - }, - Bs: function(a, c) { - this.Na.splice(c, 0, a) - }, - As: function(a) { - this.Na.push(a) - }, - log: function() { - c.debug("Constraint System Log:"); - for (var a = 0, d = this.Na.length; a < d; a++) { - var e = this.Na[a]; - c.debug("-- Point: " + e.lu()); - for (var g = 0, h = e.ic.length; g < h; g++) { - var l = e.ic[g]; - c.debug("---- Constraint: " + l.Vc.lu() + " len: " + l.Zd) - } - } - }, - aB: function(a) { - this.Na.splice(a, 1) - }, - update: function(a) { - for (var c = this.Na, - d = c.length, g = this.zp, h = 0; h < d; h++) c[h].update(a); - for (h = 0; h < g; h++) - for (a = 0; a < d; a++) c[a].Sk() - } - }) - }(aa, R, ka), - Ya = { - bj: 0, - rj: 1, - FD: 2 - }, - Za = function(a, d) { - var c = 9.8 * d.Uw, - b = { - Hq: c, - Nd: new a(0, c), - toggle: function() { - b.Nd.y = -b.Nd.y - }, - To: function() { - return 0 === b.Nd.y && 0 === b.Nd.x - }, - Bt: function() { - return b.Nd.y === b.Hq && 0 === b.Nd.x - }, - reset: function() { - b.Nd.x = 0; - b.Nd.y = c - } - }; - return b - }(R, V), - Mb = function(a, d, c, b) { - return a.extend({ - init: function() { - this.ct = !1; - this.$d(1); - this.Eu() - }, - $d: function(a) { - this.MC = a; - this.fi = 1 / a; - this.qe = new c(0, d.Hq * - a) - }, - Eu: function() { - var a = c.cb; - this.Oc = a(); - this.O = a(); - this.p = a(); - this.Jc = a(); - this.Ae = a() - }, - KF: function(a, b) { - var c = (a / b >> 0) + 1; - 0 != c && (a /= c); - for (var d = 0; d < c; d++) this.update(a) - }, - update: function(a) { - this.Ae = c.cb(); - this.ct || (b.To() ? this.Ae.add(this.qe) : this.Ae.add(c.multiply(b.Nd, this.MC))); - a /= d.Dj; - this.Ae.multiply(this.fi); - this.O = c.multiply(this.Ae, a); - this.Oc.add(this.O); - this.Jc = c.multiply(this.Oc, a); - this.p.add(this.Jc) - }, - Pn: function(a, b) { - if (!a.To()) { - var g = c.multiply(a, b / d.Dj); - this.p.add(g) - } - } - }) - }(aa, V, R, Za), - kb = function(a, d, c, b, f) { - function e(a, b, c) { - this.Vc = a; - this.Zd = b; - this.type = c - } - return d.extend({ - init: function() { - this.Ga = new c(b.ng, b.ng); - this.ad = new c(b.B, b.B); - this.ic = []; - this.Ae = c.cb(); - this.H() - }, - Eu: function() { - this.H(); - this.Ga.x = b.ng; - this.Ga.y = b.ng; - this.xu() - }, - xu: function() { - this.ic = [] - }, - vf: function(a, b, c) { - this.ic.push(new e(a, b, c)) - }, - kF: function(a) { - for (var b = this.ic, c = b.length, d = 0; d < c; d++) - if (b[d].Vc === a) { - b.splice(d, 1); - break - } - }, - YA: function(a) { - this.ic.splice(a, 1) - }, - gE: function(a, b) { - for (var c = this.ic, d = c.length, - e = 0; e < d; e++) { - var f = c[e]; - if (f.Vc === a) { - f.Vc = b; - break - } - } - }, - iz: function(a) { - for (var b = this.ic, c = b.length, d = 0; d < c; d++) - if (b[d].Vc === a) return !0; - return !1 - }, - Jj: function(a, b) { - for (var c = this.ic, d = c.length, e = 0; e < d; e++) { - var f = c[e]; - if (f.Vc === a) { - f.Zd = b; - break - } - } - }, - Ts: function(a, b, c) { - for (var d = this.ic, e = d.length, f = 0; f < e; f++) { - var p = d[f]; - if (p.Vc === a) { - p.Vc = b; - p.Zd = c; - break - } - } - }, - Zd: function(a) { - for (var c = this.ic, d = c.length, e = 0; e < d; e++) { - var f = c[e]; - if (f.Vc === a) return f.Zd - } - return b.B - }, - update: function(a) { - var c = this.Ae, - d = f.Nd; - this.ct ? - (c.x = 0, c.y = 0) : 0 !== d.y || 0 !== d.x ? (c.x = d.x, c.y = d.y) : (c.x = this.qe.x * this.fi, c.y = this.qe.y * this.fi); - c = a / b.Dj * a / b.Dj; - this.O.x = this.Ae.x * c; - this.O.y = this.Ae.y * c; - this.Ga.x === b.ng && (this.Ga.x = this.p.x, this.Ga.y = this.p.y); - this.Jc.x = this.p.x - this.Ga.x + this.O.x; - this.Jc.y = this.p.y - this.Ga.y + this.O.y; - 0 < a && (a = 1 / a, this.Oc.x = this.Jc.x * a, this.Oc.y = this.Jc.y * a); - this.Ga.x = this.p.x; - this.Ga.y = this.p.y; - this.p.x += this.Jc.x; - this.p.y += this.Jc.y - }, - Sk: function() { - var a = this.ad, - b = this.p, - c = this.fi, - d, e, f, p; - if (-1 !== a.x) b.x = a.x, b.y = - a.y; - else - for (var a = this.ic, u = a.length, s = 0; s < u; s++) { - var v = a[s], - r = v.Vc, - z = r.p; - d = z.x - b.x; - e = z.y - b.y; - 0 === d && 0 === e && (e = d = 1); - var k = Math.sqrt(d * d + e * e), - C = v.Zd, - v = v.type; - if (1 === v) { - if (k <= C) continue - } else if (2 === v && k >= C) continue; - v = -1 === r.ad.x; - r = r.fi; - k = (k - C) / ((1 < k ? k : 1) * (c + r)); - v && (f = d, p = e); - C = c * k; - d *= C; - e *= C; - b.x += d; - b.y += e; - v && (d = r * k, z.x -= f * d, z.y -= p * d) - } - }, - jF: function(a) { - this.update(a) - }, - lu: function() { - return this.p.x.toFixed(2) + ", " + this.p.y.toFixed(2) - } - }) - }(Ya, Mb, R, V, Za), - lb = function(a, d, c, b, f, e, g, h, l) { - var n = new h(0, 0, 0, 1), - q = new h(0, 0, 0, 1), - m = new h(0, 0, 0, 1), - p = new h(0, 0, 0, 1), - u = new h(0, 0, 0, 1); - a = a.extend({ - init: function(a, g, h, l, k, m, p) { - this.H(); - this.Ap = 0; - this.zp = 30; - this.lineWidth = c.yl; - this.width = c.zl; - this.Pb = b.B; - this.Je = 0; - this.highlighted = !1; - this.Wa = c.Wa; - this.ob = null != a ? a : new d; - null != l ? this.vb = l : (this.vb = new d, this.vb.$d(1)); - this.ob.$d(0.02); - this.ob.p.x = g; - this.ob.p.y = h; - this.vb.p.x = k; - this.vb.p.y = m; - this.As(this.ob); - this.As(this.vb); - this.vb.vf(this.ob, this.Wa, f.bj); - a = e.qb(this.vb.p, this.ob.p); - g = Math.round(p / this.Wa + 2); - a.fo(g); - this.Iu(p, a); - this.Fg = !1; - this.Te = b.B; - this.py = this.wt = this.Nh = !1; - this.Nj = []; - this.kh = c.kh - }, - Qd: function() { - var a = 0, - b = this.Na, - c = b.length; - if (0 < c) - for (var d = b[0].p, k = 1; k < c; k++) var e = b[k], - a = a + d.Xa(e.p), - d = e.p; - return a - }, - Iu: function(a, b) { - null == b && (b = e.cb()); - for (var c = this.Na, g = c[c.length - 2], k = this.vb, h = k.Zd(g), l = null; 0 < a;) a >= this.Wa ? (g = c[c.length - 2], l = new d, l.$d(0.02), l.p = e.add(g.p, b), this.Bs(l, this.Na.length - 1), k.Ts(g, l, h), l.vf(g, this.Wa, f.bj), a -= this.Wa) : (l = a + h, l > this.Wa ? (a = this.Wa, h = l - this.Wa) : (g = c[c.length - - 2], k.Jj(g, l), a = 0)) - }, - iB: function(a) { - for (var b = this.Na, c = b.length, d = this.vb, k = d.Zd(b[c - 2]), e; 0 < a;) - if (a >= this.Wa) { - var g = c - 2, - h = b[c - 3]; - e = b[g]; - d.Ts(e, h, k); - this.aB(g); - c--; - a -= this.Wa - } else g = k - a, 1 > g ? (a = this.Wa, k = this.Wa + g + 1) : (e = b[c - 2], d.Jj(e, g), a = 0); - b = (c - 1) * (this.Wa + 3); - d = d.ic; - c = d.length; - for (k = 0; k < c; k++) e = d[k], e.type === f.rj && (e.Zd = b); - return a - }, - FF: function() { - for (var a = this.Na, c = a.length, d = 0; d < c; d++) { - var e = a[d]; - this.ob.ad.x != b.B && (e != this.vb && e.$d(0.5), 0 < d && e.vf(this.ob, d * (this.Wa + 3), f.rj)) - } - }, - update: function(a) { - 0 < - this.Je && (this.Je = l.Pf(this.Je, 0, 1, a), 1.95 > this.Je && this.Fg && this.yu(this.Pb)); - var b = this.Na, - c = b.length, - d = this.zp, - k = this.vb, - e, f; - for (e = 0; e < c; e++) f = b[e], f !== k && f.update(a); - for (e = 0; e < d; e++) - for (a = 0; a < c; a++) b[a].Sk() - }, - yu: function(a) { - this.Fg = !1; - var b = this.Na, - c = b[a], - e = b[a + 1]; - if (e) - for (var k = e.ic, g = k.length, h = 0; h < g; h++) { - if (k[h].Vc === c) { - e.YA(h); - k = new d; - k.$d(1E-5); - k.p.Da(e.p); - k.Ga.Da(e.Ga); - this.Bs(k, a + 1); - k.vf(c, this.Wa, f.bj); - break - } - } else c.xu(); - a = 0; - for (c = b.length; a < c; a++) e = b[a], e != this.vb && e.$d(1E-5) - }, - Fp: function(a) { - this.Pb = - a; - this.Je = 2; - this.Fg = !0; - this.highlighted = !1 - }, - L: function() { - var a = this.Na, - c = a.length, - d = g.context, - e, k, f; - d.lineJoin = "round"; - d.lineWidth = this.lineWidth; - if (this.Pb === b.B) { - k = Array(c); - for (e = 0; e < c; e++) k[e] = a[e].p; - this.ho(k) - } else { - var h = [], - l = [], - m = !1; - for (e = 0; e < c; e++) { - k = a[e]; - var p = !0; - 0 < e && (f = a[e - 1], k.iz(f) || (p = !1)); - k.ad.x !== b.B || p || (m = !0); - m ? l.push(k.p) : h[e] = k.p - } - 0 < h.length && this.ho(h); - 0 < l.length && !this.wt && this.ho(l) - } - d.lineWidth = 1 - }, - ho: function(a) { - var c = a.length, - d = this.kh, - f = this.Nj; - if (!(2 > c)) { - var k = this.Pb === b.B || - this.Fg ? 1 : this.Je / 1.95; - if (!(0 >= k)) { - var l = a[0], - D = a[1], - J = l.x - D.x, - D = l.y - D.y, - J = Math.sqrt(J * J + D * D); - this.Ap = J <= this.Wa + 0.3 ? 0 : J <= this.Wa + 1 ? 1 : J < this.Wa + 4 ? 2 : 3; - if (!(3 > c)) { - n.R = 0; - n.T = 0; - n.S = 0; - n.O = k; - q.R = 0.475; - q.T = 0.305; - q.S = 0.185; - q.O = k; - m.R = 0.19; - m.T = 0.122; - m.S = 0.074; - m.O = k; - p.R = 152 / 225; - p.T = 0.44; - p.S = 62 / 225; - p.O = k; - u.R = 0.304; - u.T = 0.198; - u.S = 0.124; - u.O = k; - this.highlighted && (q.R *= 3, q.T *= 3, q.S *= 3, p.R *= 3, p.T *= 3, p.S *= 3, m.R *= 3, m.T *= 3, m.S *= 3, u.R *= 3, u.T *= 3, u.S *= 3); - J > this.Wa + 7 && !this.py && (J = 2 * (J / this.Wa), m.R *= J, u.R *= J); - var J = !1, - c = (c - - 1) * d, - B = c - 1, - d = (q.R - m.R) / B, - D = (q.T - m.T) / B, - E = (q.S - m.S) / B, - I = (p.R - u.R) / B, - wa = (p.T - u.T) / B, - B = (p.S - u.S) / B, - W = this.kh - 1, - H = W - 1, - L = g.context, - A = L.globalAlpha; - A !== k && (L.globalAlpha = k); - var w = f[0]; - w ? (w.x = l.x, w.y = l.y) : f[0] = l.copy(); - for (var x, l = 1; l <= c; l++) - if (w = l / c, (x = f[l]) || (x = f[l] = new e(0, 0)), e.Lu(a, w, x), w = (l - 1) % W, w === H || l === c) { - L.beginPath(); - x = this.Fg ? h.el.Cj : J ? m.Hi() : u.Hi(); - L.strokeStyle = x; - x = l - w - 1; - var Y = f[x++]; - for (L.moveTo(Y.x, Y.y); x <= l; x++) Y = f[x], L.lineTo(Y.x, Y.y); - L.stroke(); - J = !J; - w += 1; - m.R += d * w; - m.T += D * w; - m.S += E * w; - u.R += - I * w; - u.T += wa * w; - u.S += B * w - } A !== k && (L.globalAlpha = A) - } - } - } - } - }); - a.Uv = 30; - return a - }(Lb, kb, G, V, Ya, R, Z, ea, oa, ka), - Ra = function(a) { - return { - Jt: null, - ue: 0, - Lf: 0, - IF: !1, - Jz: function(d, c) { - this.ue = d - 1; - this.Lf = c - 1; - this.Jt = a.zg[this.ue].uc[this.Lf] - } - } - }(K), - mb = function(a, d, c) { - return a.extend({ - init: function() { - this.H() - }, - Se: function(a) { - this.H(a); - this.be = []; - this.J = []; - this.align = c.da - }, - WB: function(a, c, d) { - this.be[0] = a; - this.be[1] = c; - this.be[2] = d; - a = this.U.G[a].ga; - c = this.U.G[c].ga; - d = this.U.G[d].ga; - this.height = a >= c && a >= d ? a : c >= a && c >= d ? c : d; - this.J[0] = - Math.floor((this.height - a) / 2); - this.J[1] = Math.floor((this.height - c) / 2); - this.J[2] = Math.floor((this.height - d) / 2) - }, - L: function() { - this.Lc(); - var a = this.U.G[this.be[0]], - c = this.U.G[this.be[1]], - e = this.U.G[this.be[2]], - g = this.width - (Math.floor(a.V) + Math.floor(e.V)), - h = d.context, - l = Math.round(this.ua), - n = Math.round(this.va), - q = Math.ceil(a.V), - m = Math.ceil(a.ga), - p = Math.ceil(e.V), - u = Math.ceil(e.ga); - 0 <= g ? (h.drawImage(this.U.Gc, a.x, a.y, q, m, l, n + this.J[0], q, m), this.vy(this.be[1], l + q, n + this.J[1], g, c.ga), h.drawImage(this.U.Gc, - e.x, e.y, p, u, l + q + g, n + this.J[2], p, u)) : (a = a.copy(), c = e.copy(), a.V = Math.min(a.V, this.width / 2), c.V = Math.min(c.V, this.width - a.V), c.x += e.V - c.V, h.drawImage(this.U.Gc, a.x, a.y, a.V, a.ga, l, n + this.J[0], a.V, a.ga), h.drawImage(this.U.Gc, c.x, c.y, c.V, c.ga, l + a.V, n + this.J[2], c.V, c.ga)); - this.Kc() - }, - Xy: function() { - var a = d.element; - d.Ki(document.createElement("canvas")); - var c = d.element, - e = Math.ceil(this.width), - g = Math.ceil(this.height); - c.width = e; - c.height = g; - this.L(); - var c = c.toDataURL("image/png"), - h = new Image; - h.src = c; - $(h).width(e).height(g); - a && d.Ki(a); - return h - } - }) - }(ha, Z, P), - Nb = function(a, d, c, b, f) { - return a.extend({ - init: function(a) { - this.H(); - var g = new d; - g.Ea(b.nf); - g.WB(0, 2, 1); - g.width = a + c.El; - a = g.Xy(); - this.Se(new f(a)) - } - }) - }(ha, mb, G, x, Ua), - Ob = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s, v, r, z, k) { - return a.extend({ - init: function() { - this.H(); - this.Fa = null; - this.c = this.K = this.D = this.fz = this.i = !1; - this.ih = h.B; - this.mk = e.cb(); - this.e = 0; - this.g = !1; - this.f = 0; - this.Qe = this.Gf = this.Rb = null; - this.rk = this.sk = this.Qf = 0; - this.$g = this.Xc = !1; - this.b = null; - this.Yf = 0; - this.Et = this.Xp = - this.Xk = !1; - this.Kf = 0; - this.ai = this.nk = !1; - this.d = this.Bi = 0 - }, - Zy: function(a, b, c) { - a = e.qb(a, c); - b = e.qb(b, c).Rg() - a.Rg(); - return d.eh(b) - }, - hz: function(a, b) { - this.mk.x = a; - this.mk.y = b - }, - gz: function(a) { - b.W(f.nn); - var c = new e(this.x, this.y), - c = this.Zy(this.mk, a, c); - 180 < c ? c -= 360 : -180 > c && (c += 360); - this.yc.rotation += c; - this.hh.rotation += c; - this.gh.rotation += c; - c = 0 < c ? Math.min(Math.max(1, c), l.fj) : Math.max(Math.min(-1, c), -l.fj); - this.Fa && (0 < c ? this.Fa.Qd() < l.Gl && this.Fa.Iu(c) : 0 !== c && 3 < this.Fa.Na.length && this.Fa.iB(-c), this.Xp = !0); - this.mk.Da(a) - }, - update: function(a) { - this.H(a); - if (this.Et && this.Fa) { - var b = this.Fa.ob; - b.p.x = this.x; - b.p.y = this.y; - b.ad.Da(b.p); - this.nk ? (b = g.Ud(this.Kf, 200, 30, a), this.Kf = b.value, b.Xd && (this.nk = !1)) : (b = g.Ud(this.Kf, 130, 30, a), this.Kf = b.value, b.Xd && (this.nk = !0)); - this.bb.JB(this.Kf) - } - this.ai && (this.Bi -= 1.5 * a, 0 >= this.Bi && (this.d = h.B, this.ai = !1)); - if (this.Mb) { - var b = e.qb(this.bb.path[this.bb.cd], this.bb.p), - c = 0; - 15 < Math.abs(b.x) && (c = 0 < b.x ? 10 : -10); - this.Mb.rotation = g.Pf(this.Mb.rotation, c, 60, a) - } - this.c && this.Xp && this.Fa && - (a = 0.7 * this.Fa.Qd(), this.yc.ia = 0 === a ? this.yc.ta = 0 : this.yc.ta = Math.max(0, Math.min(1.2, 1 - a / l.Hl))) - }, - JC: function(a) { - this.Xc && this.Xk && (this.Xk = !1, this.$g = !0, b.W(f.jn), this.b.ea(0)); - if (this.Xc && this.$g) { - 0 !== this.b.Bg && (this.Yf += a * l.tn); - var c = 0; - a = !1; - if (this.Fa) - for (var k = this.Fa.Nj, g = l.Wa, m = 0, p = k.length; m < p; m++) { - var n = k[m], - q = k[m + 1], - s = Math.max(2 * g / 3, n.Xa(q)); - if (this.Yf >= c && (this.Yf < c + s || m > p - 3)) { - c = this.Yf - c; - q = e.qb(q, n); - q.multiply(c / s); - this.b.x = n.x + q.x; - this.b.y = n.y + q.y; - m > p - 3 && (a = !0); - 0 !== this.b.Bg && (this.b.rotation = - d.eh(q.Rg()) + 270); - break - } else c += s - } - a && (this.Yf = h.B) - } - }, - qy: function() { - if (!this.D && !this.i) { - if (this.F && this.K && this.Fa) { - var a = this.Fa.ob.p; - this.x = a.x; - this.y = a.y - } - this.Lc(); - 0 < this.e ? this.Rb.L() : this.back.L(); - if (this.d !== h.B || this.ai) a = new s(0.2, 0.5, 0.9, this.Bi), this.et(this.x, this.y, this.d !== h.B ? this.d : this.ou, a) - } - }, - et: function(a, b, c, k) { - if (!(0 > c)) { - var d = u.context, - e = 2 * Math.PI, - f = Math.max(16, Math.round(c / (2 * l.Wb))); - 0 !== f % 2 && f++; - d.lineWidth = 2; - d.strokeStyle = k.Hi(); - k = e / f; - for (var g = 0; g < f; g++) - if (0 === g % 2) { - var h = - g / f * e; - d.beginPath(); - d.arc(a, b, c, h, h + k, !1); - d.stroke(); - d.closePath() - } - } - }, - Dg: function() { - this.c && this.et(this.x, this.y, l.qd, s.red) - }, - L: function() { - if (!this.D) { - var a = this.Fa; - this.c && (this.gh.visible = this.ih !== h.B, this.hh.visible = this.ih === h.B, this.Ui.L()); - this.i && (this.GE.L(), this.fz || this.FE.L()); - a && a.L(); - 0 >= this.e ? this.Pd.L() : this.Qf != h.B ? this.Gf.L() : this.Qe.L(); - this.c && this.yc.L(); - this.Kc() - } - }, - uy: function() { - this.b.L() - }, - mE: function() { - this.HE.L() - }, - Tu: function(a) { - this.Fa = a; - this.ou = this.d; - this.d = h.B; - this.Xc && - (this.Xk = !0) - }, - sF: function() { - this.nk = this.Et = !0; - this.Kf = 130; - var a = new g(100, this.Kf, 0); - a.Ru("RC30", new e(this.x, this.y)); - this.Gp(a); - a.start() - }, - PB: function(a) { - this.ou = this.d; - this.d = a; - a === h.B || a === h.Vv ? (a = r.ub(f.im, f.jm), this.back = p.create(a, 0), this.back.Ja(), this.back.anchor = this.back.Ba = m.da, this.Pd = p.create(a, 1), this.Pd.anchor = this.Pd.Ba = m.da, this.fa(this.back), this.fa(this.Pd), this.back.visible = !1, this.Pd.visible = !1) : (this.back = p.create(f.lj, 0), this.back.Ja(), this.back.anchor = this.back.Ba = m.da, this.Pd = - p.create(f.lj, 1), this.Pd.anchor = this.Pd.Ba = m.da, this.fa(this.back), this.fa(this.Pd), this.back.visible = !1, this.Pd.visible = !1, this.Bi = l.Fl, this.ai = !1); - this.c && (this.Ui = p.create(f.lg, 0), this.Ui.anchor = this.Ui.Ba = m.da, this.fa(this.Ui), this.Ui.visible = !1, this.yc = p.create(f.lg, 1), this.yc.Xe = !1, this.gh = p.create(f.lg, 2), this.gh.anchor = this.gh.Ba = m.da, this.yc.fa(this.gh), this.hh = p.create(f.lg, 3), this.hh.anchor = this.hh.Ba = this.yc.anchor = this.yc.Ba = m.da, this.yc.fa(this.hh), this.fa(this.yc), this.Xp = this.yc.visible = !1) - }, - IB: function(a, b, c) { - this.e = a; - this.g = b; - this.f = c; - 0 < this.e && (this.Rb = new k(a), this.Rb.xe = -Math.round(this.Rb.width / 2) + l.ej, this.Rb.x = -l.ej, this.Gf = p.create(f.nf, 3), this.Gf.visible = !1, this.Gf.anchor = this.Gf.Ba = m.da, this.fa(this.Gf), this.Qe = p.create(f.nf, 4), this.Qe.visible = !1, this.Qe.anchor = this.Qe.Ba = m.da, this.fa(this.Qe), this.Qe.fa(this.Rb), this.g ? (this.Rb.rotation = 90, this.Rb.y = -this.f, this.sk = this.y - this.f, this.rk = this.y + (this.e - this.f), this.Qe.rotation = 90, this.Gf.rotation = 90) : (this.sk = this.x - this.f, - this.rk = this.x + (this.e - this.f), this.Rb.x += -this.f), this.Rb.anchor = m.tg | m.Bb, this.Rb.x += this.x, this.Rb.y += this.y, this.Rb.visible = !1); - this.Qf = h.B - }, - vB: function() { - this.Mb = p.create(f.rh, 1); - this.Mb.Ja(); - this.Mb.Ba = m.da; - var a = new q; - a.Ea(f.rh); - a.Ba = a.anchor = m.Yb | m.Bb; - a.Ja(); - a.Cc(0.03, v.xa.mr, 2, 4); - a.ea(0); - a.xz(r.ub(0, 2)); - this.Mb.fa(a); - a = this.Mb.U.J[0]; - this.Mb.x = -a.x; - this.Mb.y = -a.y; - this.Mb.xe = a.x - this.Mb.width / 2; - this.Mb.Xg = a.y - this.Mb.width / 2; - this.Mb.ia = this.Mb.ta = 1 / 1.3; - this.fa(this.Mb) - }, - UB: function(a) { - this.Xc = - a; - this.$g = this.Xk = !1; - this.b = new q; - this.b.Ea(f.uh); - this.b.Ja(); - this.b.anchor = m.da; - this.b.x = this.x; - this.b.y = this.y; - this.b.visible = !1; - this.b.xb(0, 0.05, v.xa.mb, 0, 6); - this.b.zB(0.4, 5, 0); - this.b.xb(1, 0.1, v.xa.Lb, 7, 10); - this.b.ze(1, 0, 0.05); - this.fa(this.b) - }, - at: function() { - this.Fa = null - } - }) - }(Ba, ga, lb, la, x, R, oa, V, G, Ra, za, P, ha, Z, ea, na, ba, mb, Nb), - Pb = function(a, d, c) { - return a.extend({ - init: function() { - this.H(); - this.a = 0; - this.Qa = d.cb(); - this.Va = d.cb(); - this.touch = this.Qi = 0 - }, - gc: function() { - var a = this.oa.V / 2; - this.Qa.x = this.x - - a; - this.Va.x = this.x + a; - this.Qa.y = this.Va.y = this.y; - this.a = c.tc(this.rotation); - this.Qa.Ca(this.a, this.x, this.y); - this.Va.Ca(this.a, this.x, this.y) - } - }) - }(Aa, R, ga), - Qb = function(a, d, c, b, f) { - return a.extend({ - init: function(a, b, c) { - this.H(a, b); - this.a = c; - this.Nn = 10; - this.speed = d.Lm; - this.Hc = 0.6; - this.size = d.Km; - this.Tj = 100; - this.Mc.R = 1; - this.Mc.T = 1; - this.Mc.S = 1; - this.Mc.O = 0.6; - this.Ec.R = 1; - this.Ec.T = 1; - this.Ec.S = 1; - this.Ec.O = 0 - }, - di: function(a) { - this.H(a); - var c = this.Ko.G[f.ub(6, 8)], - d = new b(0, 0, 0, 0); - this.hb.jb(this.jc.length, c, d, 1); - c = this.size; - a.width = c; - a.height = c - }, - Kv: function(a, b) { - a.dir.multiply(0.9); - var d = c.multiply(a.dir, b); - d.add(this.qe); - a.p.add(d) - } - }) - }(jb, G, R, S, ba), - Rb = function(a, d, c, b, f, e, g, h, l) { - var n = a.extend({ - init: function() { - this.H(); - this.a = this.group = 0; - this.Qa = new g(0, 0); - this.Va = new g(0, 0); - this.La = new g(0, 0); - this.Ma = new g(0, 0); - this.ek = 0 - }, - Oh: function() { - this.cc = new d; - this.cc.Ea(c.mg); - this.cc.anchor = b.hg | b.oc; - this.cc.Ba = b.Yb | b.oc; - this.cc.y = e.qn; - this.cc.x = 0; - this.cc.uf(0, 0.05, f.xa.mb, 4, [n.qg.pj, n.qg.pj + 1, n.qg.pj + 2, n.qg.pj + - 2 - ]); - this.cc.Ja(); - this.cc.visible = !1; - this.fa(this.cc) - }, - gc: function() { - this.Qa.x = this.x - e.Bj / 2; - this.Va.x = this.x + e.Bj / 2; - this.Qa.y = this.Va.y = this.y; - this.La.x = this.Qa.x; - this.Ma.x = this.Va.x; - this.La.y = this.Ma.y = this.y + e.rn; - this.a = l.tc(this.rotation); - this.Qa.Ca(this.a, this.x, this.y); - this.Va.Ca(this.a, this.x, this.y); - this.La.Ca(this.a, this.x, this.y); - this.Ma.Ca(this.a, this.x, this.y) - }, - L: function() { - var a = this.cc.Ob; - a && a.state === f.ka.Bh && (this.cc.visible = !1); - this.H() - }, - Dg: da(), - update: function(a) { - this.H(a); - this.bb && - this.gc() - } - }); - n.qg = { - kw: 0, - lw: 1, - pj: 2, - BD: 3, - AD: 4 - }; - n.ka = { - Zw: 0, - rx: 1, - IDLE: 2 - }; - n.ew = 0.8; - return n - }(Ba, za, x, P, na, G, R, oa, ga, Z), - nb = function(a, d, c, b, f) { - var e = a.extend({ - init: function(a) { - this.H(); - this.Tn = a; - this.state = e.ka.je; - this.vv = this.Up = this.wv = this.Tp = 0; - this.Sb = null; - this.Gg = new c(b.B, b.B, b.B, b.B) - }, - gk: function(a, b) { - a.Ba = b.Ba = f.Yb | f.Bb; - this.Ge(a, e.ka.je); - this.Ge(b, e.ka.kf); - this.Ji(e.ka.je) - }, - KE: function(a, b) { - var c = new d; - c.Se(a); - var e = new d; - e.Se(b); - this.gk(c, e) - }, - tE: ma("Gg"), - Li: function(a, b, c, d) { - this.Tp = a; - this.wv = - b; - this.Up = c; - this.vv = d - }, - Ji: function(a) { - this.state = a; - var b = this.tb(e.ka.kf); - this.tb(e.ka.je).setEnabled(a === e.ka.je); - b.setEnabled(a === e.ka.kf) - }, - Hf: function(a, d, e) { - e = e ? 0 : 15; - return this.Gg.V !== b.B ? c.Tb(a, d, this.ua + this.Gg.x - e, this.va + this.Gg.y - e, this.Gg.V + 2 * e, this.Gg.ga + 2 * e) : c.Tb(a, d, this.ua - this.Tp - e, this.va - this.Up - e, this.width + (this.Tp + this.wv) + 2 * e, this.height + (this.Up + this.vv) + 2 * e) - }, - wk: function(a, b) { - this.H(a, b); - return this.state === e.ka.je && this.Hf(a, b, !0) ? (this.Ji(e.ka.kf), !0) : !1 - }, - xk: function(a, b) { - this.H(a, - b); - return this.state === e.ka.kf && (this.Ji(e.ka.je), this.Hf(a, b, !1)) ? (this.Sb && this.Sb(this.Tn), !0) : !1 - }, - lp: function(a, b) { - this.H(a, b); - if (this.state === e.ka.kf) { - if (this.Hf(a, b, !1)) return !0; - this.Ji(e.ka.je) - } - return !1 - }, - Ge: function(a, b) { - this.H(a, b); - a.Ba = f.Yb | f.Bb; - b === e.ka.kf && (this.width = a.width, this.height = a.height, this.Ji(e.ka.je)) - } - }); - e.ka = { - je: 0, - kf: 1 - }; - return e - }(fa, ha, S, V, P), - Sb = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u) { - return a.extend({ - init: function(a, d, g, h, k) { - this.H(); - var m; - if (k !== e.B) m = c.oj + g - 1; - else switch (g) { - case 1: - m = - c.nm; - break; - case 2: - m = c.om; - break; - case 3: - m = c.pm; - break; - case 4: - m = c.qm; - break; - case 5: - m = c.kj - } - this.Ea(m); - if (0 < k) { - this.Ja(); - m = 0 + 2 * (k - 1); - var p = 1 + 2 * (k - 1), - u = l.create(c.th, m), - p = l.create(c.th, p); - u.Ja(); - p.Ja(); - this.kc = new n(0); - this.kc.gk(u, p); - this.kc.Sb = $.proxy(this.Sb, this); - this.kc.anchor = this.kc.Ba = q.da; - this.fa(this.kc); - p = u.U; - u = p.J[m]; - m = p.G[m]; - m = new b(m.V, m.ga); - p = new b(p.Wd.x, p.Wd.y); - p.qb(m); - p.qb(u); - this.kc.Li(-u.x + m.x / 2, -p.x + m.x / 2, -u.y + m.y / 2, -p.y + m.y / 2) - } - this.bl = this.xi = !1; - this.yA = this.rotation = h; - this.Qa = b.cb(); - this.Va = b.cb(); - this.La = b.cb(); - this.Ma = b.cb(); - this.Vh = !1; - this.Y = this.Z = this.X = 0; - this.Sj = !1; - this.Wc = 0; - this.x = a; - this.y = d; - this.XB(k); - this.gc(); - 5 === g && (this.xb(0, 0.05, f.xa.Lb, 0, 0), this.xb(1, 0.05, f.xa.Lb, 1, 4), this.Ja()); - this.hl = e.B - }, - gc: function() { - var a = this.Vh ? this.width - 400 * u.Wb : this.U.G[this.Vf].V, - a = a / 2; - this.Qa.x = this.x - a; - this.Va.x = this.x + a; - this.Qa.y = this.Va.y = this.y - 5; - this.La.x = this.Qa.x; - this.Ma.x = this.Va.x; - this.La.y = this.Ma.y = this.y + 5; - this.a = g.tc(this.rotation); - this.Qa.Ca(this.a, this.x, this.y); - this.Va.Ca(this.a, - this.x, this.y); - this.La.Ca(this.a, this.x, this.y); - this.Ma.Ca(this.a, this.x, this.y) - }, - wC: function() { - this.Sj = !0; - this.ea(1); - this.Wc = this.Z; - d.ku(c.ie) - }, - Dv: function() { - this.Sj = !1; - this.ea(0); - this.Wc = this.Y; - d.Qp(c.ie) - }, - update: function(a) { - this.H(a); - (this.bb || this.Yu) && this.gc(); - this.Vh && (this.Sj ? (this.Wc = h.Pf(this.Wc, 0, 1, a), 0 === this.Wc && this.Dv()) : (this.Wc = h.Pf(this.Wc, 0, 1, a), 0 === this.Wc && this.wC())) - }, - XB: ma("v"), - DE: Da("v"), - lB: function() { - this.bl = !this.bl; - this.cB(2); - var a = this.yA + (this.bl ? 90 : 0), - b = new f; - b.M(m.Ve(this.rotation, - m.N.LINEAR, 0)); - b.M(m.Ve(a, m.N.Xb, 0.3 * (Math.abs(a - this.rotation) / 90))); - b.rb = $.proxy(this.Rp, this); - this.Zb(b, 2); - this.ea(2); - this.Yu = !0; - this.kc.ia = -this.kc.ia - }, - Rp: function() { - this.gc(); - this.Yu = !1 - }, - Sb: function(a) { - 0 === a && (this.bu && this.bu(this.v), this.bl ? d.W(c.zj) : d.W(c.Aj)) - }, - Dg: function() { - var a = p.context; - a.beginPath(); - a.strokeStyle = "red"; - a.moveTo(this.Qa.x, this.Qa.y); - a.lineTo(this.Va.x, this.Va.y); - a.lineTo(this.Ma.x, this.Ma.y); - a.lineTo(this.La.x, this.La.y); - a.lineTo(this.Qa.x, this.Qa.y); - a.closePath(); - a.stroke() - } - }) - }(Ba, - la, x, R, na, V, ga, oa, ha, nb, P, pa, Z, G), - Tb = function(a, d, c, b, f, e, g, h, l, n, q) { - return a.extend({ - init: function() { - this.H(); - this.timeout = this.time = 0; - this.Nc = null; - this.Sa = 1E-4 - }, - Oh: function() { - var a; - 0 < this.timeout && (this.Nc = new d, this.Nc.Ea(c.rd), this.Nc.anchor = this.Nc.Ba = b.da, this.Nc.xb(0, this.timeout / 37, f.xa.mb, 19, 55), this.Nc.ea(0), this.time = this.timeout, this.Nc.visible = !1, this.fa(this.Nc), a = new f, a.M(e.Ka(g.Ab.copy(), e.N.LINEAR, 0)), a.M(e.Ka(g.Vb.copy(), e.N.LINEAR, 0.5)), this.Nc.Zb(a, 1), a = new f, a.M(e.pk(1, 1, e.N.LINEAR, - 0)), a.M(e.pk(0, 0, e.N.LINEAR, 0.25)), a.M(e.Ka(g.Ab.copy(), e.N.LINEAR, 0)), a.M(e.Ka(g.Vb.copy(), e.N.LINEAR, 0.25)), this.Zb(a, 1)); - this.oa = h.copy(q.vn); - a = new f; - a.M(e.ab(this.x, this.y, e.N.ge, 0)); - a.M(e.ab(this.x, this.y - 3, e.N.Xb, 0.5)); - a.M(e.ab(this.x, this.y, e.N.ge, 0.5)); - a.M(e.ab(this.x, this.y + 3, e.N.Xb, 0.5)); - a.M(e.ab(this.x, this.y, e.N.ge, 0.5)); - a.ok = f.xa.Lb; - this.Zb(a, 0); - this.ea(0); - a.update(l.ub(0, 20) / 10); - a = new d; - a.Ea(c.rd); - a.Ja(); - a.Cc(0.05, f.xa.Lb, 1, 18); - a.ea(0); - a.Fc(0).update(l.ub(0, 20) / 10); - a.anchor = a.Ba = b.da; - a.Sa = 1E-4; - this.fa(a) - }, - update: function(a) { - 0 < this.timeout && 0 < this.time && (this.time = n.Pf(this.time, 0, 1, a)); - this.H(a) - }, - L: function() { - this.Nc && this.Nc.L(); - this.H() - } - }) - }(Ba, za, x, P, na, pa, ea, S, ba, oa, G), - ob = function(a, d, c) { - return a.extend({ - init: function() { - this.H() - }, - Jp: function(a, f, e, g) { - a = d.Mj({ - Zj: a, - text: f, - width: e, - Id: g - }); - this.Se(new c(a)) - } - }) - }(ha, ca, Ua), - Ub = function(a) { - return a.extend({ - init: function() { - this.H(); - this.o = 0 - } - }) - }(ob), - Vb = function(a, d, c, b) { - var f = a.extend({ - init: function(a, b) { - this.speed = a; - this.type = b; - this.p = - d.cb(); - this.target = d.cb(); - this.offset = d.cb() - }, - moveTo: function(a, b, c) { - this.target.x = a; - this.target.y = b; - c ? this.p.Da(this.target) : this.type === f.Dd.aj ? (this.offset = d.qb(this.target, this.p), this.offset.multiply(this.speed)) : this.type === f.Dd.og && (this.offset = d.qb(this.target, this.p), this.offset.normalize(), this.offset.multiply(this.speed)) - }, - update: function(a) { - this.p.Xj(this.target) || (this.p.add(d.multiply(this.offset, a)), this.p.round(), b.Rk(this.offset.x, this.target.x - this.p.x) && b.Rk(this.offset.y, this.target.y - - this.p.y) || this.p.Da(this.target)) - }, - Kx: function() { - 0 === this.p.x && 0 === this.p.y || c.context.translate(-this.p.x, -this.p.y) - }, - Wx: function() { - 0 === this.p.x && 0 === this.p.y || c.context.translate(this.p.x, this.p.y) - } - }); - f.Dd = { - og: 0, - aj: 1 - }; - return f - }(aa, R, Z, ba), - Wb = function() { - function a(a, c, b, f) { - this.object = a; - this.Kh = c; - this.param = b; - this.delay = f - } - a.prototype.ny = function() { - this.Kh.apply(this.object, this.param) - }; - return { - Le: [], - le: function(d, c, b, f) { - this.Le.push(new a(d, c, b, f)) - }, - Wn: function() { - this.Le = [] - }, - dE: function(a, c, b) { - for (var f = - 0, e = this.Le.length; f < e; f--) { - var g = this.Le[f]; - if (g.object === a && g.Kh === c && g.param === b) { - this.Le.splice(f, 1); - break - } - } - }, - update: function(a) { - for (var c = this.Le.slice(0), b = 0, f = c.length; b < f; b++) { - var e = c[b], - g = this.Le.indexOf(e); - 0 > g || (e.delay -= a, 0 >= e.delay && (this.Le.splice(g, 1), e.ny())) - } - } - } - }(), - Xb = function() { - var a = { - fr: 0, - Oq: 1, - ds: 2, - $r: 3, - ts: 4, - Dn: 5, - fs: 6, - gs: 7, - hs: 8, - js: 9, - ks: 10, - ls: 11, - ms: 12, - ns: 13, - os: 14, - ps: 15, - qs: 16, - rs: 17, - ss: 18, - pq: 50, - qq: 51, - oq: 52, - Rq: 53, - nq: 54, - or: 55, - Ur: 56, - Wr: 57, - Xr: 58, - Yr: 59, - Zr: 60, - ix: 61, - Bl: 80, - iq: 81, - jq: 82, - Qq: 100, - Il: 101, - Sq: 102, - Tq: 103, - tr: 120, - qx: 121, - Wv: 122, - uE: function(d) { - switch (d) { - case "map": - return a.fr; - case "gameDesign": - return a.Oq; - case "target": - return a.ds; - case "target2": - return a.qx; - case "star": - return a.$r; - case "tutorialText": - return a.ts; - case "tutorial01": - return a.Dn; - case "tutorial02": - return a.fs; - case "tutorial03": - return a.gs; - case "tutorial04": - return a.hs; - case "tutorial05": - return a.js; - case "tutorial06": - return a.ks; - case "tutorial07": - return a.ls; - case "tutorial08": - return a.ms; - case "tutorial09": - return a.ns; - case "tutorial10": - return a.os; - case "tutorial11": - return a.ps; - case "tutorial12": - return a.qs; - case "tutorial13": - return a.rs; - case "tutorial14": - return a.ss; - case "candyL": - return a.pq; - case "candyR": - return a.qq; - case "candy": - return a.oq; - case "candy2": - return a.Wv; - case "gravitySwitch": - return a.Rq; - case "bubble": - return a.nq; - case "pump": - return a.or; - case "sock": - return a.Ur; - case "spike1": - return a.Wr; - case "spike2": - return a.Xr; - case "spike3": - return a.Yr; - case "spike4": - return a.Zr; - case "spikesSwitch": - return a.ix; - case "electro": - return a.Bl; - case "bouncer1": - return a.iq; - case "bouncer2": - return a.jq; - case "grab": - return a.Qq; - case "hidden01": - return a.Il; - case "hidden02": - return a.Sq; - case "hidden03": - return a.Tq; - case "rotatedCircle": - return a.tr; - default: - return alert("Unknown map item:" + d), null - } - } - }; - return a - }(), - Yb = function(a) { - return a.extend({ - init: function() { - this.H(); - this.Di = [] - }, - update: function(a) { - for (var c = 0, b = this.Di.length; c < b; c++) this.removeChild(this.Di[c]); - this.Di = []; - this.H(a) - }, - Rp: function(a) { - this.Di.push(a.element) - }, - df: function() { - var a = this; - return function(c) { - a.Rp(c) - } - }, - CA: function(a) { - this.Di.push(a) - }, - hu: function() { - var a = this; - return function(c) { - a.CA(c) - } - } - }) - }(fa), - pb = function(a, d, c, b, f, e, g) { - function h(a, b) { - this.wy = a; - this.qu = b - } - var l = a.extend({ - init: function(a, c) { - this.H(); - this.rows = a; - this.xf = c; - this.Mh = b.wb; - this.Lh = b.lb; - this.op = 1; - this.ne = []; - this.be = []; - this.Vo = []; - for (var d = 0; d < c; d++) - for (var g = this.Vo[d] = [], h = 0; h < a; h++) g[h] = f.B; - this.Ei = this.Fi = l.Bc.NONE; - this.LC = this.jz = !1; - this.tu = e.ub(1E3, 2E3) - }, - Fx: function(a, b) { - if (b === f.B) this.bg = a.ci, this.ag = a.bi; - else { - var c = a.G[b]; - this.bg = - c.V; - this.ag = c.ga - } - this.Wp(); - for (var c = f.B, e = 0, g = this.ne.length; e < g; e++) - if (this.ne[e].U === a) { - c = e; - break - } c === f.B && (e = new d(a), c = this.ne.length, this.ne.push(e)); - this.be.push(new h(c, b)) - }, - Wp: function() { - this.Wo = 2 + Math.floor(this.Mh / (this.bg + 1)); - this.Xo = 2 + Math.floor(this.Lh / (this.ag + 1)); - this.Fi === l.Bc.NONE && (this.Xo = Math.min(this.Xo, this.rows)); - this.Ei === l.Bc.NONE && (this.Wo = Math.min(this.Wo, this.xf)); - this.width = this.Oi = this.xf * this.bg; - this.height = this.Ni = this.rows * this.ag - }, - fill: function(a, b, c, d, e) { - var f = - b; - for (b += d; f < b; f++) { - d = a; - for (var g = a + c; d < g; d++) this.Vo[f][d] = e - } - }, - wF: ma("op"), - QB: function(a) { - this.Ei = a; - this.Wp() - }, - RB: function(a) { - this.Fi = a; - this.Wp() - }, - Lv: function(a) { - var b = Math.round(a.x / this.op), - d = Math.round(a.y / this.op), - e = this.x, - h = this.y, - s, v, r; - this.Fi !== l.Bc.NONE && (h -= d, s = Math.floor(h) % this.Ni, h = 0 > h ? s + d : s - this.Ni + d); - this.Ei !== l.Bc.NONE && (e -= b, s = Math.floor(e) % this.Oi, e = 0 > e ? s + b : s - this.Oi + b); - if (c.Ci(b, d, b + this.Mh, d + this.Lh, e, h, e + this.Oi, h + this.Ni)) { - s = c.uu(e, h, this.Oi, this.Ni, b, d, this.Mh, this.Lh); - s = new g(Math.max(0, - s.x), Math.max(0, s.y)); - s = new g(Math.floor(Math.floor(s.x) / this.bg), Math.floor(Math.floor(s.y) / this.ag)); - var h = h + s.y * this.ag, - z = new g(e + s.x * this.bg, h), - e = 0; - for (v = this.ne.length; e < v; e++) this.ne[e].vk = 0; - v = s.x + this.Wo - 1; - var k = s.y + this.Xo - 1; - this.Fi === l.Bc.NONE && (k = Math.min(this.rows - 1, k)); - this.Ei === l.Bc.NONE && (v = Math.min(this.xf - 1, v)); - for (e = s.x; e <= v; e++) { - z.y = h; - for (var C = s.y; C <= k && !(z.y >= d + this.Lh); C++) { - var D = c.uu(b, d, this.Mh, this.Lh, z.x, z.y, this.bg, this.ag), - J = new c(b - z.x + D.x, d - z.y + D.y, D.V, D.ga), - B = Math.round(e), - E = Math.round(C); - this.Fi === l.Bc.Iq && (z.y < y ? E = 0 : z.y >= this.y + this.Ni && (E = this.rows - 1)); - this.Ei === l.Bc.Iq && (z.x < this.x ? B = 0 : z.x >= this.x + this.Oi && (B = this.xf - 1)); - this.jz && (r = Math.sin(z.x) * this.tu, B = Math.abs(Math.floor(r) % this.xf)); - this.LC && (r = Math.sin(z.y) * this.tu, E = Math.abs(Math.floor(r) % this.rows)); - B >= this.xf && (B %= this.xf); - E >= this.rows && (E %= this.rows); - r = this.Vo[B][E]; - 0 <= r && (B = this.be[r], r = this.ne[B.wy], E = r.U, B.qu !== f.B && (B = E.G[B.qu], J.x += B.x, J.y += B.y), D = new c(a.x + D.x, a.y + D.y, D.V, D.ga), r.jb(r.vk++, J, D)); - z.y += this.ag - } - z.x += this.bg; - if (z.x >= b + this.Mh) break - } - } - }, - L: function() { - this.Lc(); - for (var a = 0, b = this.ne.length; a < b; a++) this.ne[a].L(); - this.Kc() - } - }); - l.Bc = { - NONE: 0, - Tv: 1, - Iq: 2 - }; - return l - }(fa, Na, S, G, V, ba, R), - Zb = function(a, d) { - return a.extend({ - init: function(a, b) { - this.H(a, b); - this.Dt = d.pi() - }, - Lv: function(a) { - this.Dt.Xj(a) || (this.H(a), this.Dt.Da(a)) - }, - L: function() { - this.H() - } - }) - }(pb, R), - $b = function(a, d, c) { - return a.extend({ - init: function(a, f, e, g, h) { - this.H(); - this.Tn = h; - this.La = new d(0); - this.La.gk(a, f); - this.Ma = new d(1); - this.Ma.gk(e, - g); - this.La.Ba = this.Ma.Ba = c.Yb | c.Bb; - this.width = this.La.width; - this.height = this.La.height; - this.Ge(this.La, 0); - this.Ge(this.Ma, 1); - this.Ma.setEnabled(!1); - this.La.Sb = $.proxy(this.Sb, this); - this.Ma.Sb = $.proxy(this.Sb, this) - }, - Sb: function(a) { - switch (a) { - case 0: - case 1: - this.toggle() - } - this.Sb && this.Sb(this.Tn) - }, - Li: function(a, c, d, g) { - this.La.Li(a, c, d, g); - this.Ma.Li(a, c, d, g) - }, - toggle: function() { - this.La.setEnabled(!this.La.isEnabled()); - this.Ma.setEnabled(!this.Ma.isEnabled()) - }, - So: function() { - return this.Ma.isEnabled() - } - }) - }(fa, - nb, P), - ac = function(a, d, c) { - var b = d.extend({ - init: function() { - var d = a.create(c.rd, 56), - e = a.create(c.rd, 56), - g = a.create(c.rd, 57), - h = a.create(c.rd, 57); - this.H(d, e, g, h, b.Eq); - this.Li(10, 10, 10, 10) - } - }); - b.Eq = 0; - return b - }(ha, $b, x), - bc = function(a, d, c, b, f) { - var e = a.extend({ - init: function(a, h) { - this.H(); - this.Ea(f.rd); - this.jb(58); - this.anchor = b.da; - var l = new d; - l.M(c.Ve(0, c.N.LINEAR, 0)); - l.M(c.Ve(180, c.N.Xb, 0.3)); - this.Zb(l, e.Ej.ws); - l = new d; - l.M(c.Ve(180, c.N.LINEAR, 0)); - l.M(c.Ve(0, c.N.Xb, 0.3)); - this.Zb(l, e.Ej.hc); - this.BB(f.gj, 1); - this.x += - a; - this.y += h - } - }); - e.Ej = { - hc: 0, - ws: 1 - }; - return e - }(ha, na, pa, P, x), - cc = function(a, d, c, b, f, e, g, h, l, n) { - function q() { - this.y = this.x = this.zA = 0; - this.Uj = this.Op = this.alpha = this.Wj = this.dl = this.ta = this.Vj = this.cl = this.ia = 1 - } - return a.extend({ - init: function() { - this.H(); - var a = e.pe(c.mj); - this.ru = a.ci; - this.pu = a.bi; - this.hb = new f(a); - this.hb.Sa = 0.1; - this.Ck = [] - }, - Dx: function(a, b) { - var c, d, e = [0.3, 0.3, 0.5, 0.5, 0.6], - e = c = e[h.ub(0, e.length - 1)]; - h.VA() ? c *= 1 + h.ub(0, 1) / 10 : e *= 1 + h.ub(0, 1) / 10; - c *= 1; - d = 1 * e; - var f = this.ru * c, - g = this.pu * d, - k = Math.min(1 - - c, 1 - d), - l = Math.random(), - e = new q; - e.zA = b; - e.x = a.x; - e.y = a.y; - e.cl = k + c; - e.dl = k + d; - e.ia = e.cl * l; - e.ta = e.dl * l; - e.Vj = c; - e.Wj = d; - e.Uj = 0.3; - e.Op = 1; - e.alpha = 0.7 * l + 0.3; - c = this.hb.U.G[0]; - f = new n(a.x - f / 2, a.y - g / 2, f, g); - this.hb.jb(this.Ck.length, c, f, e.alpha); - this.Ck.push(e) - }, - lt: function(a, b, c) { - var e = l.Fm, - f = c.bb.path[a]; - b = d.qb(c.bb.path[b], f); - c = Math.floor(b.Qd() / e); - var g = l.Em, - n, k; - b.normalize(); - for (n = 0; n <= c; n++) k = d.add(f, d.multiply(b, n * e)), k.x += h.ub(-g, g), k.y += h.ub(-g, g), this.Dx(k, a) - }, - update: function(a) { - this.H(a); - this.hb.update(a); - var b = this.Ck.length, - c, d, e, f; - for (c = 0; c < b; c++) d = this.Ck[c], e = g.Ud(d.ia, d.Vj, 1, a), d.ia = e.value, e.Xd && (e = d.cl, d.cl = d.Vj, d.Vj = e), e = g.Ud(d.ta, d.Wj, 1, a), d.ta = e.value, e.Xd && (e = d.dl, d.dl = d.Wj, d.Wj = e), e = this.ru * d.ia, f = this.pu * d.ta, this.hb.ff[c] = new n(d.x - e / 2, d.y - f / 2, e, f), e = g.Ud(d.alpha, d.Uj, 1, a), d.alpha = e.value, e.Xd && (e = d.Op, d.Op = d.Uj, d.Uj = e), this.hb.wg[c] = d.alpha - }, - L: function() { - this.Lc(); - this.hb.L(); - this.Kc() - } - }) - }(fa, R, x, ha, Na, Pa, oa, ba, G, S), - dc = function(a, d, c, b, f, e, g, h, l) { - var n = 7 * e.$, - q = 3 * e.$, - m = 22.5 * e.$, - p = 0.03 * - e.$, - u = c.extend({ - init: function() { - this.H(); - this.Ea(b.Ac); - this.jb(z) - } - }), - s = a.extend({ - init: function() { - this.H(); - this.Uc = []; - this.me = []; - this.Mp = d.B; - this.mi = g.pi(); - this.Ce = new u; - this.Ce.anchor = f.rg | f.tg; - this.Ce.ia = 1; - this.Ce.Ba = f.da; - this.Ce.xe = this.Ce.width / 2 + 0.5; - this.Ce.Sa = 0.001; - this.ee = new u; - this.ee.ia = -1; - this.ee.anchor = f.rg | f.tg; - this.ee.Ba = f.da; - this.ee.xe = this.ee.width / 2 - 0.5; - this.ee.Sa = 0.001; - this.ee.x = -1; - this.gg = c.create(b.Ac, k); - this.gg.anchor = f.da; - this.nc = c.create(b.Ac, r); - this.nc.anchor = f.Yb | f.rg; - this.gf = - c.create(b.Ac, r); - this.gf.ia = -1; - this.gf.anchor = f.Yb | f.Bb; - this.Eb = c.create(b.Ac, D); - this.Eb.anchor = f.da; - this.Eb.rotation = 90; - this.xc = c.create(b.Ac, D); - this.xc.anchor = f.da; - this.xc.rotation = -90; - this.Pc = c.create(b.Ac, C); - this.Pc.anchor = this.Eb.anchor; - this.Pc.rotation = this.Eb.rotation; - this.Pc.visible = !1; - this.Qc = c.create(b.Ac, C); - this.Qc.anchor = this.xc.anchor; - this.Qc.rotation = this.xc.rotation; - this.Qc.visible = !1; - this.fg = c.create(b.Ac, v); - this.fg.anchor = f.da; - this.xi = !1; - this.fa(this.Ce); - this.fa(this.ee); - this.fa(this.Pc); - this.fa(this.Qc); - this.fa(this.Eb); - this.fa(this.xc) - }, - setSize: function(a) { - this.size = a; - var b = this.size / 167; - this.nc.ia = this.nc.ta = this.gf.ta = b; - this.gf.ia = -b; - this.fg.ia = this.fg.ta = b; - a = 0.4 <= b ? b : 0.4; - this.Ce.ia = this.Ce.ta = this.ee.ta = a; - this.ee.ia = -a; - b = 0.75 <= b ? b : 0.75; - this.Eb.ia = this.Eb.ta = this.xc.ia = this.xc.ta = b; - this.Pc.ia = this.Pc.ta = this.Qc.ia = this.Qc.ta = b; - this.gg.ia = 1 - 0.5 * (1 - a); - this.gg.ta = this.gg.ia; - this.fc = this.nc.width * this.nc.ia; - this.CC() - }, - vt: function() { - return !this.Eb.visible - }, - Ou: function(a) { - this.Eb.visible = !a - }, - NE: function() { - return this.Pc.visible - }, - Pu: function(a) { - this.Pc.visible = a - }, - OE: function() { - return this.Qc.visible - }, - Qu: function(a) { - this.Qc.visible = a - }, - by: function() { - var a = this.me.length, - b, c; - for (b = 0; b < a; b++) - if (c = this.me[b], c != this && this.cy(c)) return !0; - return !1 - }, - L: function() { - var a = l.context; - if (this.Qc.visible || this.Pc.visible) { - var b = (q + e.$) * this.Eb.ia, - c = this.fc + Math.floor(b / 2); - a.beginPath(); - a.lineWidth = b; - a.arc(this.x, this.y, c, 0, 2 * Math.PI, !1); - a.stroke() - } - this.nc.color = this.color; - this.gf.color = this.color; - this.Eb.color = this.color; - this.xc.color = this.color; - this.fg.color = this.color; - this.fg.L(); - var b = this.me.length, - d, k = this.me.indexOf(this), - f = a.globalAlpha; - 0.2 !== f && (a.globalAlpha = 0.2); - for (c = 0; c < b; c++) d = this.me[c], d != this && d.by() && this.me.indexOf(d) < k && this.ry(this.x, this.y, this.fc, d.x, d.y, d.fc, 0.5 * n * d.nc.ia); - 0.2 !== f && (a.globalAlpha = f); - this.nc.L(); - this.gf.L(); - this.H(); - this.gg.L() - }, - ry: function(a, b, c, d, k, e, f) { - var h = g.Xa(a, b, d, k); - h >= c + e || c >= h + e || (c = Math.acos((h - (c * c - e * e + h * h) / (2 * h)) / e), h = (new g(a - d, b - k)).a(), - b = h - c, c = h + c, d > a && (b += Math.PI, c += Math.PI), a = l.context, a.beginPath(), a.lineWidth = f, a.arc(d, k, e, b, c, !1), a.stroke()) - }, - CC: function() { - this.fg.x = this.gg.x = this.x; - this.fg.y = this.gg.y = this.y; - var a = this.nc.width / 2 * (1 - this.nc.ia), - b = this.nc.height / 2 * (1 - this.nc.ta), - c = this.fc - (m - p * this.size) + (1 - this.Eb.ia) * (this.Eb.width / 2); - this.nc.x = this.x + a; - this.gf.x = this.x - a; - this.nc.y = this.gf.y = this.y - b; - this.Eb.x = this.x - c; - this.xc.x = this.x + c; - this.Eb.y = this.xc.y = this.y; - this.Pc.x = this.Eb.x; - this.Pc.y = this.Eb.y; - this.Qc.x = this.xc.x; - this.Qc.y = this.xc.y - }, - cy: function(a) { - if (this.x === a.x && this.y === a.y && this.size === a.size) return !1; - var b = this.Uc.length, - c; - for (c = 0; c < b; c++) - if (0 <= a.Uc.indexOf(this.Uc[c])) return !0; - return !1 - }, - copy: function(a) { - var b = new s; - b.PF = a; - b.x = this.x; - b.y = this.y; - b.rotation = this.rotation; - b.me = this.me; - b.Uc = this.Uc; - b.wi = d.B; - a = this.size * e.$; - var c = h.tc(b.rotation); - b.Kg = new g(b.x - a, b.y); - b.Rd = new g(b.x + a, b.y); - b.Kg.Ca(c, b.x, b.y); - b.Rd.Ca(c, b.x, b.y); - b.setSize(this.size); - b.Ou(this.vt()); - b.Eb.visible = !1; - b.xc.visible = !1; - return b - } - }), - v = 0, - r = 1, - z = 2, - k = 3, - C = 4, - D = 5; - return s - }(fa, V, ha, x, P, G, R, ga, Z), - Ha = { - hd: 0, - zd: 1, - pd: 2, - xd: 3, - yd: 4, - Fd: 5, - kd: 6, - jd: 7, - Ad: 8, - Cd: 9, - Bd: 10, - Gd: 11, - ld: 12, - vd: 13, - td: 14, - Ed: 15, - md: 16, - wd: 17, - sd: 18 - }, - ec = function(a, d, c, b, f, e, g, h, l) { - function n() { - z = null; - $(".ach-img").removeClass("unlocked") - } - - function q() { - n(); - r && r.bz(function(a) { - if (a) { - z = a; - a = 0; - for (var b = z.length; a < b; a++) $(".ach-" + z[a]).addClass("unlocked"); - a = v.length; - for (b = 0; b < a; b++) s(b, p(b)) - } - }) - } - - function m(a) { - var b = $("
").addClass("ach-img ach-" + a); - z && 0 <= z.indexOf(a) && b.addClass("unlocked"); - var c = new Image, - e = new Image; - g.sa({ - img: c, - text: d.$y(a), - za: !0 - }); - g.Hb({ - img: e, - text: d.Vy(a), - width: h.A(350), - scale: 0.8, - za: !0 - }); - return $("
").addClass("ach-row").append(b).append($("
").addClass("ach-name").append(c)).append($("
").addClass("ach-desc").append(e)) - } - - function p(a) { - var b = l.Qy(a) || 0; - a = c.Ig("a-" + a, 0); - return Math.max(b, a) - } - - function u(a, b) { - c.set("a-" + a, b); - l.uB(a, b); - s(a, b) - } - - function s(a, b) { - b >= v[a] && r && z && -1 === z.indexOf(a) && r.yC(a, function(b) { - b && (z.push(a), $(".ach-" + a).addClass("unlocked")) - }) - } - var v = []; - v[a.hd] = 50; - v[a.zd] = 150; - v[a.pd] = 300; - v[a.xd] = 100; - v[a.yd] = 800; - v[a.Fd] = 2E3; - v[a.kd] = 50; - v[a.jd] = 300; - v[a.Ad] = 40; - v[a.Cd] = 200; - v[a.Bd] = 100; - v[a.Gd] = 50; - v[a.ld] = 200; - v[a.vd] = 1; - v[a.td] = 1; - v[a.Ed] = 1; - v[a.md] = 1; - v[a.wd] = 100; - v[a.sd] = 200; - var r = null; - b.subscribe(b.C.dq, function(a) { - r = a - }); - var z = null; - b.subscribe(b.C.Dh, n); - b.subscribe(b.C.Ch, q); - b.subscribe(b.C.yh, q); - b.subscribe(b.C.Cb, function() { - var c = $("#achievementsPanel .content").empty(); - c.append(m(a.hd)); - c.append(m(a.zd)); - c.append(m(a.pd)); - c.append(m(a.xd)); - c.append(m(a.yd)); - c.append(m(a.Fd)); - c.append(m(a.kd)); - c.append(m(a.jd)); - c.append(m(a.Ad)); - c.append(m(a.Cd)); - c.append(m(a.Bd)); - c.append(m(a.Gd)); - c.append(m(a.ld)); - c.append(m(a.vd)); - c.append(m(a.td)); - c.append(m(a.Ed)); - c.append(m(a.md)); - c.append(m(a.wd)); - c.append(m(a.sd)); - b.na(b.C.Eh) - }); - b.subscribe(b.C.zn, function(b) { - u(a.hd, b); - u(a.zd, b); - u(a.pd, b) - }); - return { - Qb: function(a) { - var b = p(a); - u(a, b + 1) - }, - AF: u - } - }(Ha, function(a, d) { - var c = {}; - c[a.hd] = { - w: "Bronze Scissors", - t: "Ciseaux de bronze", - s: "Bronzeschere", - u: "\u0411\u0440\u043e\u043d\u0437\u043e\u0432\u044b\u0435 \u043d\u043e\u0436\u043d\u0438\u0446\u044b" - }; - c[a.zd] = { - w: "Silver Scissors", - t: "Ciseaux d'argent", - s: "Silberschere", - u: "\u0421\u0435\u0440\u0435\u0431\u0440\u044f\u043d\u044b\u0435 \u043d\u043e\u0436\u043d\u0438\u0446\u044b" - }; - c[a.pd] = { - w: "Golden Scissors", - t: "Ciseaux d'or", - s: "Goldschere", - u: "\u0417\u043e\u043b\u043e\u0442\u044b\u0435 \u043d\u043e\u0436\u043d\u0438\u0446\u044b" - }; - c[a.xd] = { - w: "Rope Cutter", - t: "Coupeur de cordes", - s: "Seilschneider", - u: "\u0412\u0435\u0440\u0435\u0432\u043a\u043e\u0440\u0435\u0437" - }; - c[a.yd] = { - w: "Rope Cutter Maniac", - t: "Coupeur compulsif", - s: "Extremseilschneider", - u: "\u041c\u0430\u043d\u044c\u044f\u043a-\u0432\u0435\u0440\u0435\u0432\u043a\u043e\u0440\u0435\u0437" - }; - c[a.Fd] = { - w: "Ultimate Rope Cutter", - t: "Ultime coupeur", - s: "Megaseilschneider", - u: "\u0418\u0434\u0435\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u0435\u0440\u0435\u0432\u043a\u043e\u0440\u0435\u0437" - }; - c[a.kd] = { - w: "Bubble Popper", - t: "\u00c9clateur de bulles", - s: "Blasenplatzer", - u: "\u041f\u0443\u0437\u044b\u0440\u0435\u0432\u0437\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044c" - }; - c[a.jd] = { - w: "Bubble Master", - t: "Ma\u00eetre des bulles", - s: "Blasenmeister", - u: "\u041f\u043e\u0432\u0435\u043b\u0438\u0442\u0435\u043b\u044c \u043f\u0443\u0437\u044b\u0440\u0435\u0439" - }; - c[a.Ad] = { - w: "Spider Buster", - t: "Anti-araign\u00e9es", - s: "Spinnenbezwinger", - u: "\u041e\u0445\u043e\u0442\u043d\u0438\u043a \u0437\u0430 \u043f\u0430\u0443\u043a\u0430\u043c\u0438" - }; - c[a.Cd] = { - w: "Spider Tamer", - t: "Dompteur d'araign\u00e9es", - s: "Spinnendompteur", - u: "\u0423\u043a\u0440\u043e\u0442\u0438\u0442\u0435\u043b\u044c \u043f\u0430\u0443\u043a\u043e\u0432" - }; - c[a.Bd] = { - w: "Spider Lover", - t: "Amateur d'araign\u00e9es", - s: "Spinnenliebhaber", - u: "\u041b\u044e\u0431\u0438\u0442\u0435\u043b\u044c \u043f\u0430\u0443\u043a\u043e\u0432" - }; - c[a.Gd] = { - w: "Weight Loser", - t: "R\u00e9gime sans bonbons", - s: "Auf Di\u00e4t", - u: "\u0421\u0431\u0440\u0430\u0441\u044b\u0432\u0430\u044e\u0449\u0438\u0439 \u0432\u0435\u0441" - }; - c[a.ld] = { - w: "Calorie Minimizer", - t: "R\u00e9ducteur de calories", - s: "Total schlank", - u: "\u041c\u0438\u043d\u0438\u043c\u0438\u0437\u0430\u0442\u043e\u0440 \u043a\u0430\u043b\u043e\u0440\u0438\u0439" - }; - c[a.vd] = { - w: "Quick Finger", - t: "Doigts agiles", - s: "Schnelle Finger", - u: "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043f\u0430\u043b\u0435\u0446" - }; - c[a.td] = { - w: "Master Finger", - t: "Doigts divins", - s: "Meisterfinger", - u: "\u041f\u0430\u043b\u0435\u0446 \u043c\u0430\u0441\u0442\u0435\u0440\u0430" - }; - c[a.Ed] = { - w: "Tummy Teaser", - t: "Taquineur d'estomac", - s: "Hungrigmacher", - u: "\u0414\u0440\u0430\u0437\u043d\u0438\u043b\u043a\u0430 \u0434\u043b\u044f \u043f\u0443\u0437\u0430" - }; - c[a.md] = { - w: "Candy Juggler", - t: "Jongleur de bonbon", - s: "Bonbonjongleur", - u: "\u0416\u043e\u043d\u0433\u043b\u0435\u0440 \u043b\u0435\u0434\u0435\u043d\u0446\u0430\u043c\u0438" - }; - c[a.wd] = { - w: "Romantic Soul", - t: "\u00c2me romantique", - s: "Romantiker", - u: "\u0414\u0443\u0448\u0430 \u0440\u043e\u043c\u0430\u043d\u0442\u0438\u043a\u0430" - }; - c[a.sd] = { - w: "Magician", - t: "Magicien", - s: "Magier", - u: "\u0412\u043e\u043b\u0448\u0435\u0431\u043d\u0438\u043a" - }; - var b = {}; - b[a.hd] = { - w: "Collect 50 stars", - t: "R\u00e9cup\u00e8re 50 \u00e9toiles", - s: "Sammle 50 Sterne", - u: "\u0421\u043e\u0431\u0435\u0440\u0438\u0442\u0435 50 \u0437\u0432\u0435\u0437\u0434" - }; - b[a.zd] = { - w: "Collect 150 stars", - t: "R\u00e9cup\u00e8re 150 \u00e9toiles", - s: "Sammle 150 Sterne", - u: "\u0421\u043e\u0431\u0435\u0440\u0438\u0442\u0435 150 \u0437\u0432\u0435\u0437\u0434" - }; - b[a.pd] = { - w: "Collect 300 stars", - t: "R\u00e9cup\u00e8re 300 \u00e9toiles", - s: "Sammle 300 Sterne", - u: "\u0421\u043e\u0431\u0435\u0440\u0438\u0442\u0435 300 \u0437\u0432\u0435\u0437\u0434" - }; - b[a.xd] = { - w: "Cut 100 ropes", - t: "Coupe 100 cordes", - s: "Schneide 100 Seile", - u: "\u041f\u0435\u0440\u0435\u0440\u0435\u0436\u044c\u0442\u0435 100 \u0432\u0435\u0440\u0435\u0432\u043e\u043a" - }; - b[a.yd] = { - w: "Cut 800 ropes", - t: "Coupe 800 cordes", - s: "Schneide 800 Seile", - u: "\u041f\u0435\u0440\u0435\u0440\u0435\u0436\u044c\u0442\u0435 800 \u0432\u0435\u0440\u0435\u0432\u043e\u043a" - }; - b[a.Fd] = { - w: "Cut 2000 ropes", - t: "Coupe 2000 cordes", - s: "Schneide 2000 Seile", - u: "\u041f\u0435\u0440\u0435\u0440\u0435\u0436\u044c\u0442\u0435 2000 \u0432\u0435\u0440\u0435\u0432\u043e\u043a" - }; - b[a.kd] = { - w: "Pop 50 bubbles", - t: "\u00c9clate 50 bulles", - s: "Lasse 50 Blasen platzen", - u: "\u041b\u043e\u043f\u043d\u0438\u0442\u0435 50 \u043f\u0443\u0437\u044b\u0440\u0435\u0439" - }; - b[a.jd] = { - w: "Pop 300 bubbles", - t: "\u00c9clate 300 bulles", - s: "Lasse 300 Blasen platzen", - u: "\u041b\u043e\u043f\u043d\u0438\u0442\u0435 300 \u043f\u0443\u0437\u044b\u0440\u0435\u0439" - }; - b[a.Ad] = { - w: "Outsmart 40 spiders", - t: "Stoppe 40 araign\u00e9es", - s: "\u00dcberliste 40 Spinnen", - u: "\u041f\u0435\u0440\u0435\u0445\u0438\u0442\u0440\u0438\u0442\u0435 40 \u043f\u0430\u0443\u043a\u043e\u0432" - }; - b[a.Cd] = { - w: "Outsmart 200 spiders", - t: "Stoppe 200 araign\u00e9es", - s: "\u00dcberliste 200 Spinnen", - u: "\u041f\u0435\u0440\u0435\u0445\u0438\u0442\u0440\u0438\u0442\u0435 200 \u043f\u0430\u0443\u043a\u043e\u0432" - }; - b[a.Bd] = { - w: "Let the spiders steal candy 100 times", - t: "Laisse les araign\u00e9es voler le bonbon 100 fois", - s: "Lass die Spinnen 100 Bonbons stehlen", - u: "\u041f\u043e\u0437\u0432\u043e\u043b\u044c\u0442\u0435 \u043f\u0430\u0443\u043a\u0430\u043c \u043f\u043e\u0445\u0438\u0442\u0438\u0442\u044c \u043b\u0435\u0434\u0435\u043d\u0435\u0446 100 \u0440\u0430\u0437" - }; - b[a.Gd] = { - w: "Lose candy 50 times", - t: "Laisse \u00e9chapper le bonbon 50 fois", - s: "Verlier 50 Bonbons", - u: "\u041f\u043e\u0442\u0435\u0440\u044f\u0439\u0442\u0435 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 50 \u0440\u0430\u0437" - }; - b[a.ld] = { - w: "Lose candy 200 times", - t: "Laisse \u00e9chapper le bonbon 200 fois", - s: "Verlier 200 Bonbons", - u: "\u041f\u043e\u0442\u0435\u0440\u044f\u0439\u0442\u0435 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 200 \u0440\u0430\u0437" - }; - b[a.vd] = { - w: "Cut 3 ropes at once", - t: "Coupe 3 cordes d'un seul coup", - s: "Schneide 3 Seile gleichzeitig", - u: "\u041e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043f\u0435\u0440\u0435\u0440\u0435\u0436\u044c\u0442\u0435 3 \u0432\u0435\u0440\u0435\u0432\u043a\u0438" - }; - b[a.td] = { - w: "Cut 5 ropes at once", - t: "Coupe 5 cordes d'un seul coup", - s: "Schneide 5 Seile gleichzeitig", - u: "\u041e\u0434\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043f\u0435\u0440\u0435\u0440\u0435\u0436\u044c\u0442\u0435 5 \u0432\u0435\u0440\u0435\u0432\u043e\u043a" - }; - b[a.Ed] = { - w: "Have Om Nom open his mouth 10 times in a row", - t: "Fais ouvrir sa bouche \u00e0 Om Nom 10 fois d'affil\u00e9e", - s: "Sorge daf\u00fcr, dass Om Nom seinen Mund 10 Mal nacheinander \u00f6ffnet", - u: "\u0417\u0430\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0410\u043c \u041d\u044f\u043c\u0430 \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0440\u043e\u0442 10 \u0440\u0430\u0437 \u043f\u043e\u0434\u0440\u044f\u0434" - }; - b[a.md] = { - w: "Keep the candy in the air for 30 seconds without ropes or bubbles", - t: "Garde le bonbon en l'air pendant 30 secondes sans cordes ni bulles", - s: "Halte das Bonbon ohne Seile oder Blasen f\u00fcr 30 Sekunden in der Luft", - u: "\u041f\u0440\u043e\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 \u0432 \u0432\u043e\u0437\u0434\u0443\u0445\u0435 30 \u0441\u0435\u043a\u0443\u043d\u0434 \u0431\u0435\u0437 \u0432\u0435\u0440\u0435\u0432\u043e\u043a \u0438 \u043f\u0443\u0437\u044b\u0440\u0435\u0439" - }; - b[a.wd] = { - w: "Reunite 100 candies", - t: "Associe 100 bonbons", - s: "Bringe 100 Bonbons zusammen", - u: "\u0421\u043e\u0431\u0435\u0440\u0438\u0442\u0435 100 \u043b\u0435\u0434\u0435\u043d\u0446\u043e\u0432" - }; - b[a.sd] = { - w: "Drop candy into magic hats 200 times", - t: "Fais tomber le bonbon dans le chapeau magique 200 fois", - s: "Lasse 200 Bonbons in Zauberh\u00fcte fallen", - u: "\u0411\u0440\u043e\u0441\u044c\u0442\u0435 \u043b\u0435\u0434\u0435\u043d\u0435\u0446 \u0432 \u0432\u043e\u043b\u0448\u0435\u0431\u043d\u044b\u0435 \u0448\u043b\u044f\u043f\u044b 200 \u0440\u0430\u0437" - }; - return { - $y: function(a) { - return d.ck(c[a]) - }, - Vy: function(a) { - return d.ck(b[a]) - } - } - }(Ha, T), va, M, T, F, ca, G, hb), - fc = function(a, d, c, b) { - return a.extend({ - init: function() { - this.H(); - this.oa = c.copy(b.Bn); - this.Us = d.Xm; - this.Du = [d.zc, d.mf, d.qh]; - this.yo = d.mf; - this.ez = 47; - this.dz = 76; - this.se = d.zc; - this.nz = 0; - this.mz = 18; - this.Fo = d.zc; - this.lz = 43; - this.kz = 67; - this.Ho = d.zc; - this.dk = 68; - this.xt = 83; - this.mo = d.mf; - this.Dy = 0; - this.Cy = 19; - this.Ik = d.mf; - this.TA = 20; - this.SA = 46; - this.jt = d.qh; - this.Gy = 0; - this.Fy = 12; - this.Zp = d.zc; - this.OC = 28; - this.NC = 31; - this.cp = - d.zc; - this.St = 19; - this.Rt = 27; - this.$o = d.zc; - this.$z = 28; - this.Zz = 31; - this.Zn = d.zc; - this.Yx = 32; - this.Xx = 40; - this.Nx = d.zc; - this.Ks = 41; - this.Js = 42 - }, - L: function() { - this.H() - } - }) - }(function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s, v) { - return a.extend({ - init: function() { - this.H(); - this.anchor = g.da; - this.xo = 10; - this.re = 0; - this.Eo = 1; - this.Go = 2; - this.lo = 3; - this.Hk = 4; - this.it = 5; - this.Yp = 6; - this.bp = 7; - this.Zo = 8; - this.Yn = 9; - this.oa = h.copy(n.An); - this.Yc = !1; - this.Us = v.Ym - }, - JA: function() { - this.Yc || this.ea(this.yo, this.xo) - }, - KA: function() { - this.Yc || this.ea(this.Fo, - this.Eo) - }, - LA: function() { - this.Yc || this.ea(this.Ho, this.Go) - }, - OA: function() { - this.Yc || this.ea(this.cp, this.bp) - }, - NA: function() { - this.Yc || this.ea(this.$o, this.Zo) - }, - IA: function() { - this.Yc || this.ea(this.jt, this.it) - }, - QA: function() { - this.Yc || (this.ea(this.Zp, this.Yp), this.Yc = !0) - }, - gF: function() { - this.Yc || this.ea(this.Zn, this.Yn) - }, - HA: function() { - this.Yc || this.ea(this.mo, this.lo) - }, - hF: function() { - this.Yc || this.ea(this.Ik, this.Hk) - }, - sz: function() { - var a = this.$b[this.se]; - return a.isEnabled() && a.Bg === this.re - }, - Oh: function(a, - c, k, f) { - var h, l, p; - l = 0; - for (p = this.Du.length; l < p; l++) h = this.Cx(this.Du[l]), h.Sa = 1E-4; - this.xb(this.yo, this.xo, 0.05, e.xa.mb, this.ez, this.dz); - this.xb(this.se, this.re, 0.05, e.xa.Lb, this.nz, this.mz); - this.xb(this.Fo, this.Eo, 0.05, e.xa.Lb, this.lz, this.kz); - h = []; - var E = this.xt - this.dk + 1; - l = this.dk; - for (p = l + E; l < p; l++) h.push(l); - l = this.dk; - for (p = l + E; l < p; l++) h.push(l); - this.uf(this.Ho, this.Go, 0.05, e.xa.mb, 2 * (this.xt - this.dk + 1), h); - this.xb(this.mo, this.lo, 0.05, e.xa.mb, this.Dy, this.Cy); - this.xb(this.Ik, this.Hk, 0.05, e.xa.mb, - this.TA, this.SA); - this.xb(this.jt, this.it, 0.05, e.xa.mb, this.Gy, this.Fy); - this.xb(this.Zp, this.Yp, 0.05, e.xa.mb, this.OC, this.NC); - this.xb(this.cp, this.bp, 0.05, e.xa.mb, this.St, this.Rt); - this.xb(this.$o, this.Zo, 0.05, e.xa.mb, this.$z, this.Zz); - this.xb(this.Zn, this.Yn, 0.05, e.xa.Lb, this.Yx, this.Xx); - this.ze(this.Zn, this.Yn, this.Zp, this.Yp, 0.05); - this.ze(this.Ik, this.Hk, this.$o, this.Zo, 0.05); - this.ze(this.se, this.re, this.yo, this.xo, 0.05); - this.ze(this.se, this.re, this.Fo, this.Eo, 0.05); - this.ze(this.se, this.re, this.Ho, - this.Go, 0.05); - this.ze(this.se, this.re, this.mo, this.lo, 0.05); - this.ze(this.se, this.re, this.Ik, this.Hk, 0.05); - this.Io = u.ub(5, 20); - this.$b[this.se].Fc(this.re).qi = $.proxy(this.lA, this); - this.ea(this.se, this.re); - this.Vk(this.cp, this.Rt - this.St, this.bp); - this.blink = new d; - this.blink.Ea(this.Nx); - this.blink.Ba = g.Yb | g.Bb; - this.blink.visible = !1; - this.blink.uf(0, 0.05, e.xa.mb, 4, [this.Ks, this.Js, this.Ks, this.Js]); - this.blink.Ku(b.vj, this.blink, 0, 0, 2, 0); - this.blink.Ja(); - this.fa(this.blink); - this.Rn = 3; - l = q.supports[m.ue]; - this.support = s.create(q.HF || v.hj); - this.support.jb(l); - this.support.Ja(); - this.support.anchor = g.da; - l = a.y; - this.x = a.x * c + k; - this.y = l * c + f; - this.support.x = this.x + Math.round((q.GF || 0) * n.Wb); - this.support.y = this.y + Math.round((this.nC || 0) * n.Wb) - }, - nC: 0, - lA: function(a, b, c) { - 1 === c && (this.BC(), this.Io--, 0 === this.Io && (1 === u.ub(0, 1) ? this.KA() : this.LA(), this.Io = u.ub(5, 20))) - }, - BC: function() { - this.Rn--; - 0 === this.Rn && (this.blink.visible = !0, this.blink.ea(0), this.Rn = 3) - }, - L: function() { - this.support.L(); - this.H() - } - }) - }(function(a, d, c, - b, f, e) { - return a.extend({ - init: function() { - this.H(); - this.$b = {} - }, - Cx: function(a) { - var b = new d; - b.Ea(a); - b.Ba = b.anchor = e.Yb | e.Bb; - b.Ja(); - this.width = b.U.Wd.x; - this.height = b.U.Wd.y; - this.$b[a] = b; - this.fa(b); - b.setEnabled(!1); - return b - }, - Vk: function(a, b, c) { - this.$b[a].Vk(b, c) - }, - Cc: function(a, b, c, d, e) { - return this.$b[a].Cc(b, c, d, e) - }, - uf: function(a, b, c, d, e, f) { - this.$b[a].uf(b, c, d, e, f) - }, - xb: function(a, b, c, d, e, f, p) { - this.$b[a].xb(b, c, d, e, f, p) - }, - Fj: function(a, b, c, d, e, f) { - this.$b[a].Fj(b, c, d, e, f) - }, - ze: function(a, d, e, n, q) { - e = this.$b[e]; - a = this.$b[a]; - n = e.Fc(n); - d = [c.create(a, b.Dm, 0, d)]; - e !== a && (d.push(c.create(a, b.Om, 1, 1)), d.push(c.create(a, b.vj, 1, 1)), d.push(c.create(a, b.Nm, 1, 1)), d.push(c.create(e, b.Om, 0, 0)), d.push(c.create(e, b.vj, 0, 0)), d.push(c.create(e, b.Nm, 0, 0))); - q = f.ni(d, q); - n.M(q) - }, - ea: function(a, b) { - for (var c in this.$b) c !== a && this.$b[c].setEnabled(!1); - c = this.$b[a]; - c.setEnabled(!0); - c.ea(b) - }, - Bk: function(a, b) { - var c, d; - for (d in this.$b) - if ((c = this.$b[d]) && c.isEnabled()) return c.Bk(a, b); - return !1 - } - }) - }(Aa, za, La, ta, pa, P, ea, ka), za, La, ta, pa, - na, P, S, ea, G, K, Ra, ka, ba, ha, x), x, S, G), - ic = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s, v, r, z, k, C, D, J, B, E, I, x, W, H, L, A, w, F, Y, G, U, Ia, M, O, R, S, V, K, Q, N, P, Z, yc, qb, Sa, T, X, ca, aa, ba, Ca, gc, ia, ja, hc) { - return k.extend({ - init: function() { - this.H(); - this.sc = v; - this.we = this.yt = I.B; - this.nb = new z; - this.nb.visible = !1; - this.fa(this.nb); - this.bh = new z; - this.bh.visible = !1; - this.fa(this.bh); - this.ja = new s(w.Zi, s.Dd.aj); - this.ah = 0; - this.Do = []; - for (var a = 0; 3 > a; a++) { - var b = this.Do[a] = new x; - b.Ea(E.ij); - b.Ja(); - b.Cc(0.05, W.xa.mb, 0, 10); - b.Vk(10, 0); - b.x = - b.width * a; - b.y = 0; - this.fa(b) - } - this.al = H.cb(); - this.Yj = []; - for (a = 0; a < I.ud; a++) this.Yj[a] = []; - this.$n = J.so(); - this.$ = w.$; - this.sb = w.sb; - this.Gb = 0; - this.oe = []; - this.Pg = this.xg = this.ki = this.ji = this.ii = 0; - this.Sh = Array(I.ud); - this.cf = Array(I.ud); - this.vp = Array(I.ud); - for (a = 0; a < I.ud; a++) this.Sh[a] = !1, this.cf[a] = H.cb(), this.vp[a] = H.cb() - }, - sp: function(a) { - var b = w.Cm; - return a.p.y > this.Sd + w.Bm || a.p.y < b - }, - mF: function() { - this.hide(); - this.show() - }, - Yk: function() { - this.target.JA() - }, - Xu: function(a) { - var b = J.Zh(); - return X.po(a.locale) !== - b ? !0 : !1 - }, - show: function() { - this.nb.vu(); - this.bh.vu(); - this.sc.Wn(); - this.Pg = this.xg = 0; - var a = G.Gt[Y.ue]; - this.Gs = D.pe(G.Ft[Y.ue]); - this.np = a ? D.pe(a) : this.Gs; - this.back = new C(1, 1); - this.back.QB(Ia.Bc.NONE); - this.back.RB(Ia.Bc.Tv); - this.back.Fx(this.Gs, 0); - this.back.fill(0, 0, 1, 1, 0); - this.$a = null; - this.wo = I.B; - this.l = 2; - this.We = 0; - this.ae = null; - B.Qp(E.ie); - this.Ra = []; - this.Jk = []; - this.lc = []; - this.Ub = []; - this.bubbles = []; - this.vc = []; - this.Hu = []; - this.Zg = []; - this.Be = []; - this.dg = []; - this.Me = []; - this.Hh = []; - this.eb = []; - this.Ye = null; - this.ba = - new M; - this.ba.$d(1); - this.wa = new M; - this.wa.$d(1); - this.Ia = new M; - this.Ia.$d(1); - this.ra = new O; - this.ra.Ea(E.Rc); - this.ra.jb(0); - this.ra.Ja(); - this.ra.anchor = U.da; - this.ra.oa = Q.copy(w.tl); - this.ra.Xe = !1; - this.ra.ia = this.ra.ta = 0.71; - this.ra.Sa = 1E-4; - this.ac = new O; - this.ac.Ea(E.Rc); - this.ac.jb(1); - this.ac.Ja(); - this.ac.anchor = this.ac.Ba = U.da; - this.ra.fa(this.ac); - this.ac.ia = this.ac.ta = 0.71; - this.ac.Sa = 1E-4; - this.Ld = new O; - this.Ld.Ea(E.Rc); - this.Ld.jb(2); - this.Ld.Ja(); - this.Ld.anchor = this.Ld.Ba = U.da; - this.ra.fa(this.Ld); - this.Ld.ia = - this.Ld.ta = 0.71; - this.Ld.Sa = 1E-4; - this.Nb = new x; - this.Nb.Ea(E.Rc); - this.Nb.Ja(); - this.Nb.xb(0, 0.07, W.xa.mb, 8, 17); - this.Nb.uf(1, 0.3, W.xa.mb, 2, [18, 18]); - a = this.Nb.Fc(1); - a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 0)); - a.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0.2)); - this.Nb.visible = !1; - this.Nb.anchor = this.Nb.Ba = U.da; - this.Nb.ia = this.Nb.ta = 0.71; - this.ra.fa(this.Nb); - this.Nb.Sa = 1E-4; - this.qc = new x; - this.qc.Ea(E.sh); - this.qc.x = this.ra.x; - this.qc.y = this.ra.y; - this.qc.Ba = this.qc.anchor = U.da; - this.qc.Cc(0.05, W.xa.Lb, 0, 12); - this.qc.ea(0); - this.ra.fa(this.qc); - this.qc.visible = !1; - this.qc.Sa = 1E-4; - for (a = 0; 3 > a; a++) { - var b = this.Do[a]; - b.Ob && b.Ob.stop(); - b.jb(0) - } - this.Kz(Y.Jt); - 2 !== this.l && (this.Jd = new x, this.Jd.Ea(E.sh), this.Jd.Ba = this.Jd.anchor = U.da, this.Jd.Cc(0.05, W.xa.Lb, 0, 12), this.Jd.ea(0), this.Ta.fa(this.Jd), this.Jd.visible = !1, this.Jd.Sa = 1E-4, this.Kd = new x, this.Kd.Ea(E.sh), this.Kd.Ba = this.Kd.anchor = U.da, this.Kd.Cc(0.05, W.xa.Lb, 0, 12), this.Kd.ea(0), this.Ua.fa(this.Kd), this.Kd.visible = !1, this.Kd.Sa = 1E-4); - for (var b = this.eb.length, c, a = 0; a < b; a++) c = this.eb[a], c.wi = - I.B, c.me = this.eb; - this.kC(); - this.ah = this.Cv = 0; - this.Dc = this.rc = this.pc = null; - this.ap = !1; - this.Ib = 2 !== this.l; - this.ec = this.dc = !1; - this.Wf = this.time = 0; - this.Jg = !0; - Sa.reset(); - this.Ok = this.Ii = this.Af = 0; - this.sc.le(this, this.oy, null, 1); - a = new S; - a.Jp(E.jg, Y.ue + 1 + " - " + (Y.Lf + 1)); - a.anchor = U.hg | U.Bb; - a.x = 37 * w.Wb; - a.y = w.lb + 25 * w.Wb; - b = new S; - b.Jp(E.jg, ca.ca(aa.Iw)); - b.anchor = U.hg | U.Bb; - b.Ba = U.Yb | U.Bb; - b.y = 80 * w.Wb; - b.xe -= b.width / 2; - b.ia = b.ta = 0.7; - a.fa(b); - b = new W; - b.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0)); - b.M(A.Ka(L.Vb.copy(), A.N.LINEAR, - 0.5)); - b.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 0.5)); - b.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 1)); - b.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0.5)); - a.Zb(b, 0); - a.ea(0); - b.rb = this.bh.df(); - this.bh.fa(a); - this.$n && this.Fu() - }, - kC: function() { - var a = w.wb, - b = w.lb; - if (this.Td > a || this.Sd > b) { - this.Re = !0; - this.kt = !1; - this.ja.type = s.Dd.og; - this.ja.speed = 10; - var c, d, k = 2 !== this.l ? this.wa : this.ba; - this.Td > a ? (c = k.p.x > this.Td / 2 ? 0 : this.Td - a, d = 0) : k.p.y > this.Sd / 2 ? d = c = 0 : (c = 0, d = this.Sd - b); - var e = k.p.y - b / 2, - a = p.Eg(k.p.x - a / 2, 0, this.Td - a), - b = p.Eg(e, 0, this.Sd - b); - this.ja.moveTo(c, - d, !0); - this.yt = this.ja.p.Xa(new H(a, b)) - } else this.Re = !1, this.ja.moveTo(0, 0, !0) - }, - oy: function() { - this.Nb.ea(0) - }, - Kz: function(a) { - function b(a, c) { - for (var k = 0, e = a.length; k < e; k++) - for (var f = a[k], g = f.length, $a = 0; $a < g; $a++) c.call(d, f[$a]) - } - var c = [], - d = this, - k; - for (k in a) a.hasOwnProperty(k) && c.push(a[k]); - b(c, function(a) { - switch (a.name) { - case r.fr: - this.Lz(a); - break; - case r.Oq: - this.Fz(a); - break; - case r.pq: - this.Dz(a); - break; - case r.qq: - this.Ez(a); - break; - case r.oq: - this.Cz(a) - } - }); - b(c, function(a) { - switch (a.name) { - case r.Rq: - this.Hz(a); - break; - case r.$r: - this.Rz(a); - break; - case r.ts: - this.Uz(a); - break; - case r.Dn: - case r.fs: - case r.gs: - case r.hs: - case r.js: - case r.ks: - case r.ls: - case r.ms: - case r.ns: - case r.os: - case r.ps: - case r.qs: - case r.rs: - case r.ss: - this.Tz(a); - break; - case r.nq: - this.Bz(a); - break; - case r.or: - this.Nz(a); - break; - case r.Ur: - this.Pz(a); - break; - case r.Wr: - case r.Xr: - case r.Yr: - case r.Zr: - case r.Bl: - this.Qz(a); - break; - case r.tr: - this.Oz(a); - break; - case r.iq: - case r.jq: - this.Az(a); - break; - case r.Qq: - this.Gz(a); - break; - case r.ds: - this.target = new hc; - this.target.Oh(a, - this.$, this.Gb, this.sb); - this.Xn = !1; - J.Yk && (this.sc.le(this, this.Yk, null, 2), J.Yk = !1); - break; - case r.Il: - case r.Sq: - case r.Tq: - this.Iz(a) - } - }) - }, - Lz: function(a) { - this.Td = a.width; - this.Sd = a.height; - this.Gb = (w.wb - this.Td * this.$) / 2; - this.Td *= this.$; - this.Sd *= this.$; - G.ZB[Y.ue] && (this.Td > w.wb && this.oe.push(new T(w.wb, 0)), this.Sd > w.lb && this.oe.push(new T(0, w.lb)), this.oe.push(new T(0, 0))) - }, - Fz: function(a) { - this.o = a.o || 0; - this.k = a.k; - this.uk = a.uk; - this.l = a.l ? 0 : 2; - this.k *= w.sj - }, - Gz: function(a) { - var b = a.x * this.$ + this.Gb, - c = a.y * this.$ + - this.sb, - d = a.length * this.$, - k = a.d, - f = a.c, - g = a.F, - h = a.D, - l = a.e * this.$ || -1, - m = a.g, - p = a.f * this.$ || 0, - n = a.b, - q = "L" === a.h, - D = a.q, - r = a.i, - s = new e; - s.x = b; - s.y = c; - s.c = f; - s.i = r; - s.F = g; - s.D = h; - s.UB(n); - s.Sf(a); - if (s.bb && (s.vB(), !D)) { - a = "R" === a.path[0]; - this.Ye || (this.Ye = new ba); - f = 0; - for (g = s.bb.path.length - 1; f < g; f++) a && 0 !== f % 3 || this.Ye.lt(f, f + 1, s); - 2 < s.bb.path.length && this.Ye.lt(0, s.bb.path.length - 1, s) - } - k !== I.B && (k *= this.$); - k !== I.B || r || (r = this.ba, 2 !== this.l && (r = q ? this.wa : this.Ia), b = new V(null, b, c, r, r.p.x, r.p.y, d), b.ob.ad.Da(b.ob.p), s.Tu(b), - this.Qn()); - s.PB(k); - s.IB(l, m, p); - this.Ra.push(s) - }, - Dz: function(a) { - this.wa.p.x = a.x * this.$ + this.Gb; - this.wa.p.y = a.y * this.$ + this.sb; - this.Ta = new O; - this.Ta.Ea(E.Rc); - this.Ta.jb(19); - this.Ta.ia = this.Ta.ta = 0.71; - this.Ta.Xe = !1; - this.Ta.Ja(); - this.Ta.anchor = U.da; - this.Ta.x = this.wa.p.x; - this.Ta.y = this.wa.p.y; - this.Ta.oa = Q.copy(w.$i) - }, - Ez: function(a) { - this.Ia.p.x = a.x * this.$ + this.Gb; - this.Ia.p.y = a.y * this.$ + this.sb; - this.Ua = new O; - this.Ua.Ea(E.Rc); - this.Ua.jb(20); - this.Ua.ia = this.Ua.ta = 0.71; - this.Ua.Xe = !1; - this.Ua.Ja(); - this.Ua.anchor = - U.da; - this.Ua.x = this.Ia.p.x; - this.Ua.y = this.Ia.p.y; - this.Ua.oa = Q.copy(w.$i) - }, - Cz: function(a) { - this.ba.p.x = a.x * this.$ + this.Gb; - this.ba.p.y = a.y * this.$ + this.sb - }, - Hz: function(a) { - this.$a = new qb; - this.$a.Sb = $.proxy(this.Sb, this); - this.$a.visible = !1; - this.$a.mc = !1; - this.fa(this.$a); - this.$a.x = a.x * this.$ + this.Gb; - this.$a.y = a.y * this.$ + this.sb; - this.$a.anchor = U.da - }, - Rz: function(a) { - var b = new q; - b.Ea(E.rd); - b.x = a.x * this.$ + this.Gb; - b.y = a.y * this.$ + this.sb; - b.timeout = a.timeout; - b.Oh(); - b.oa = Q.copy(w.un); - b.Sf(a); - b.update(0); - this.Ub.push(b) - }, - Uz: function(a) { - if (!this.Xu(a)) - if (null == a.text || "" === a.text) Ca.debug("Missing tutorial text"); - else { - var b = new m; - b.x = a.x * this.$ + this.Gb; - b.y = a.y * this.$ + this.sb; - b.o = a.o || 0; - b.align = U.oc; - b.Jp(E.nh, a.text, Math.ceil(a.width * this.$), U.oc); - b.color = L.Vb.copy(); - a = new W; - var c = 0 === Y.ue && 0 === Y.Lf; - a.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0)); - a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 1)); - a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, c ? 10 : 5)); - a.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0.5)); - b.Zb(a, 0); - 0 === b.o && b.ea(0); - this.dg.push(b) - } - }, - Tz: function(a) { - if (!this.Xu(a)) { - var b = - a.name - r.Dn, - c = new R; - c.Ea(E.sm); - c.jb(b); - c.color = L.Vb.copy(); - c.x = a.x * this.$ + this.Gb; - c.y = a.y * this.$ + this.sb; - c.rotation = a.a || 0; - c.o = a.o || 0; - c.Sf(a); - a = new W; - a.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0)); - a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 1)); - 0 === Y.ue && 0 === Y.Lf ? a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 10)) : a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 5.2)); - a.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0.5)); - c.Zb(a, 0); - 0 === c.o ? c.ea(0) : 2 === c.o && (a = new W, a.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0)), a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 0.5)), a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, - 1)), a.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 1.1)), a.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0.5)), a.M(A.ab(c.x, c.y, A.N.LINEAR, 0)), a.M(A.ab(c.x, c.y, A.N.LINEAR, 0.5)), a.M(A.ab(c.x, c.y, A.N.LINEAR, 1)), a.M(A.ab(c.x + w.En, c.y, A.N.LINEAR, 0.5)), a.M(A.ab(c.x + w.Fn, c.y, A.N.LINEAR, 0.5)), a.Of = 2, a.ok = W.xa.Lb, c.Zb(a, 1), c.ea(1)); - this.Be.push(c) - } - }, - Iz: function(a) { - var c = a.name - r.Il, - d = a.Pj - 1; - G.ky || (c = new b(c, d), c.x = a.x * this.$ + this.Gb, c.y = a.y * this.$ + this.sb, c.rotation = a.a || 0, this.Me.push(c)) - }, - Bz: function(a) { - var b = p.ub(1, 3), - c = new d; - c.Ea(E.jj); - c.jb(b); - c.Ja(); - c.oa = Q.copy(w.ml); - c.x = a.x * this.$ + this.Gb; - c.y = a.y * this.$ + this.sb; - c.anchor = U.da; - c.tp = !1; - a = new P; - a.Ea(E.jj); - a.jb(0); - a.Ja(); - a.Ba = a.anchor = U.da; - c.fa(a); - this.bubbles.push(c) - }, - Nz: function(a) { - var b = new g; - b.Ea(E.nj); - b.Ja(); - b.Bx(0.05, W.xa.mb, 4, [1, 2, 3, 0]); - b.oa = Q.copy(w.Im); - b.x = a.x * this.$ + this.Gb; - b.y = a.y * this.$ + this.sb; - b.rotation = a.a + 90; - b.gc(); - b.anchor = U.da; - this.vc.push(b) - }, - Pz: function(a) { - var b = new l; - b.Ea(E.mg); - b.ia = b.ta = 0.7; - b.Oh(); - b.Ja(); - b.x = a.x * this.$ + this.Gb; - b.y = a.y * this.$ + this.sb; - b.group = a.group; - b.anchor = U.Yb | U.oc; - b.Xg -= b.height / 2 - 25; - b.jb(0 === b.group ? l.qg.kw : l.qg.lw); - b.state = l.ka.IDLE; - b.Sf(a); - b.rotation += 90; - b.bb && (b.bb.a += 90); - b.gc(); - this.Zg.push(b) - }, - Qz: function(a) { - var b = !1 === a.v ? I.B : a.v || I.B, - c = new n(a.x * this.$ + this.Gb, a.y * this.$ + this.sb, a.size, parseFloat(a.a) || 0, b); - c.Sf(a); - b && (c.bu = $.proxy(this.jB, this)); - a.name === r.Bl ? (c.Vh = !0, c.X = a.X, c.Z = a.Z, c.Y = a.Y, c.Wc = 0, c.Dv(), c.Wc += c.X, c.gc()) : c.Vh = !1; - this.lc.push(c) - }, - Oz: function(a) { - var b = a.x * this.$ + this.Gb, - c = a.y * this.$ + this.sb, - d = a.size, - k = parseFloat(a.la) || - 0, - e = K.tc(k); - a = a.ma; - var f = new gc; - f.anchor = U.da; - f.x = b; - f.y = c; - f.rotation = k; - f.Kg = new H(f.x - d * this.$, f.y); - f.Rd = new H(f.x + d * this.$, f.y); - f.Kg.Ca(e, f.x, f.y); - f.Rd.Ca(e, f.x, f.y); - f.setSize(d); - f.Ou(a); - this.eb.push(f) - }, - Az: function(b) { - var c = new a(b.x * this.$ + this.Gb, b.y * this.$ + this.sb, b.size, b.a); - c.Sf(b); - this.Hh.push(c) - }, - qA: function(a) { - a.element.$A = !0 - }, - update: function(a) { - function b(c) { - c.Pn(new H(-c.Oc.x / Y, -c.Oc.y / Y + F), a) - } - - function d(a, b) { - return Q.Nf(a.Qa.x, a.Qa.y, a.Va.x, a.Va.y, b.p.x - C, b.p.y - C, J, J) || Q.Nf(a.La.x, a.La.y, - a.Ma.x, a.Ma.y, b.p.x - C, b.p.y - C, J, J) - } - var k, e; - k = 0; - for (e = this.Me.length; k < e; k++) this.Me[k].update(a); - this.H(a); - this.sc.update(a); - this.Ye && this.Ye.update(a); - for (k = 0; k < I.ud; k++) - for (var f = this.Yj[k], g = f.length, h = 0; h < g;) { - var m = f[h]; - e = u.Ud(m.color.O, 0, 10, a); - m.color.O = e.value; - e.Xd ? (f.splice(h, 1), g--) : h++ - } - k = 0; - for (e = this.oe.length; k < e; k++) this.oe[k].update(a); - this.Ok = u.Pf(this.Ok, 0, 1, a); - 0 === this.xg && (this.Pg += a, 30 < this.Pg && (ja.Qb(ia.md), this.Pg = 0)); - k = w.wb; - f = w.lb; - g = 2 != this.l ? this.wa : this.ba; - e = g.p.y - f / 2; - k = p.Eg(g.p.x - - k / 2, 0, this.Td - k); - f = p.Eg(e, 0, this.Sd - f); - this.ja.moveTo(k, f, !1); - this.My && this.ja.type === s.Dd.aj || this.ja.update(a); - if (this.ja.type === s.Dd.og) { - e = w.Jl; - var g = w.Gm, - h = w.Hm, - m = w.wm, - n = w.xm, - q = this.ja.p.Xa(new H(k, f)); - q < e && (this.Re = !1); - this.kt ? this.ja.speed < w.sl && (this.ja.speed *= 1.5) : q > this.yt / 2 ? (this.ja.speed += a * g, this.ja.speed = Math.min(m, this.ja.speed)) : (this.ja.speed -= a * h, this.ja.speed = Math.max(n, this.ja.speed)); - 1 > Math.abs(this.ja.p.x - k) && 1 > Math.abs(this.ja.p.y - f) && (this.ja.type = s.Dd.aj, this.ja.speed = w.Zi) - } else this.time += - a; - f = this.Ra.length; - if (0 < f) { - m = h = e = !1; - for (k = 0; k < f; k++) { - var r = this.Ra[k]; - r.update(a); - g = r.Fa; - r.bb && g && (g.ob.p.x = r.x, g.ob.p.y = r.y, g.ob.ad.Da(g.ob.p)); - if (g) { - if (g.Pb !== I.B && 0 === g.Je) { - r.at(); - continue - } - g.update(a * this.k); - if (r.Xc && (this.ja.type == s.Dd.og && this.Re || r.JC(a), r.Yf === I.B)) { - this.iC(r); - break - } - } - if (r.d !== I.B && !r.Fa) { - var v = w.wn, - n = $.proxy(function(a) { - (new H(r.x, r.y)).Xa(a.p) <= r.d + v && (a = new V(null, r.x, r.y, a, a.p.x, a.p.y, r.d + v), a.ob.ad.Da(a.ob.p), r.ai = !0, r.Tu(a), this.Qn(), B.W(E.en), r.bb && B.W(E.wj)) - }, this); - 2 !== this.l ? (this.dc || n(this.wa), this.ec || null != r.Fa || n(this.Ia)) : n(this.ba) - } - if (g) { - var q = g.ob, - n = g.Na[g.Na.length - 1], - q = H.qb(q.p, n.p), - A = !1; - e || (2 !== this.l ? n !== this.wa || this.dc || h ? n !== this.Ia || this.ec || m || (A = !0) : A = !0 : this.Ib || e || (A = !0)); - 0 !== g.Ap && g.Pb === I.B && A ? (q = K.eh(q.Rg()), 2 !== this.l ? (A = n === this.wa ? this.Ta : this.Ua, g.Nh || (g.Te = A.rotation - q), n === this.wa ? (this.ji = q + g.Te - A.rotation, h = !0) : (this.ki = q + g.Te - A.rotation, m = !0), A.rotation = q + g.Te) : (g.Nh || (g.Te = this.ac.rotation - q), this.ii = q + g.Te - this.ac.rotation, - this.ac.rotation = q + g.Te, e = !0), g.Nh = !0) : g.Nh = !1 - } - } - 2 !== this.l ? (h || this.dc || (this.Ta.rotation += Math.min(5, this.ji), this.ji *= 0.98), m || this.ec || (this.Ua.rotation += Math.min(5, this.ki), this.ki *= 0.98)) : e || this.Ib || (this.ac.rotation += Math.min(5, this.ii), this.ii *= 0.98) - } - this.Ib || (this.ra.update(a), this.ba.update(a * this.k)); - if (2 !== this.l) { - k = a * this.k; - this.Ta.update(a); - this.wa.update(k); - this.Ua.update(a); - this.Ia.update(k); - if (1 === this.l) - for (k = 0; k < V.Uv; k++) this.wa.Sk(), this.Ia.Sk(); - if (0 < this.We) - if (e = u.Ud(this.We, - 0, 200, a), this.We = e.value, e.Xd) { - B.W(E.Um); - this.l = 2; - this.Ib = !1; - this.ec = this.dc = !0; - ja.Qb(ia.wd); - if (this.rc || this.Dc) this.pc = this.rc ? this.rc : this.Dc, this.qc.visible = !0; - this.ki = this.ji = this.ii = 0; - this.ba.p.x = this.wa.p.x; - this.ba.p.y = this.wa.p.y; - this.ra.x = this.ba.p.x; - this.ra.y = this.ba.p.y; - this.ra.Jh(); - k = H.qb(this.wa.p, this.wa.Ga); - e = H.qb(this.Ia.p, this.Ia.Ga); - k = new H((k.x + e.x) / 2, (k.y + e.y) / 2); - this.ba.Ga.Da(this.ba.p); - this.ba.Ga.qb(k); - k = 0; - for (e = this.Ra.length; k < e; k++) r = this.Ra[k], !(g = r.Fa) || g.Pb === g.Na.length - - 3 || g.vb !== this.wa && g.vb !== this.Ia || (q = g.Na[g.Na.length - 2], h = g.vb.Zd(q), this.ba.vf(q, h, Z.bj), g.vb = this.ba, g.Na[g.Na.length - 1] = this.ba, g.Te = 0, g.Nh = !1); - k = new x; - k.Ea(E.Rc); - k.Ja(); - k.x = this.ra.x; - k.y = this.ra.y; - k.anchor = U.da; - q = k.Cc(0.05, W.xa.mb, 21, 25); - k.Fc(q).rb = this.nb.df(); - k.ea(0); - this.nb.fa(k) - } else this.wa.Jj(this.Ia, this.We), this.Ia.Jj(this.wa, this.We); - this.dc || this.ec || 0 !== this.l || !O.ei(this.Ta, this.Ua) || (this.l = 1, this.We = this.wa.p.Xa(this.Ia.p), this.wa.vf(this.Ia, this.We, Z.rj), this.Ia.vf(this.wa, this.We, - Z.rj)) - } - this.target.update(a); - if (this.ja.type !== s.Dd.og || !this.Re) - for (k = 0, e = this.Ub.length; k < e; k++) - if (h = this.Ub[k], h.update(a), 0 < h.timeout && 0 === h.time) { - h.Fc(1).rb = this.nb.df(); - this.nb.fa(h); - this.Ub.splice(k, 1); - h.Nc.ea(1); - h.ea(1); - break - } else if (g = !1, g = 2 !== this.l ? O.ei(this.Ta, h) && !this.dc || O.ei(this.Ua, h) && !this.ec : O.ei(this.ra, h) && !this.Ib) { - this.Nb.ea(1); - this.ah++; - this.Do[this.ah - 1].ea(0); - e = new x; - e.Ea(E.rm); - e.Ja(); - e.x = h.x; - e.y = h.y; - e.anchor = U.da; - g = e.Cc(0.05, W.xa.mb, 0, 12); - e.Fc(g).rb = this.nb.df(); - e.ea(0); - this.nb.fa(e); - this.Ub.splice(k, 1); - B.W(E.mn + this.ah - 1); - this.target.sz() && this.target.HA(); - break - } - k = 0; - for (e = this.bubbles.length; k < e; k++) { - g = this.bubbles[k]; - g.update(a); - if (!g.tp) - if (2 != this.l) { - if (!this.dc && this.No(g, this.Ta, this.rc, this.Jd)) { - this.rc = g; - break - } - if (!this.ec && this.No(g, this.Ua, this.Dc, this.Kd)) { - this.Dc = g; - break - } - } else if (!this.Ib && this.No(g, this.ra, this.pc, this.qc)) { - this.pc = g; - break - } - if (!g.$p) - for (n = this.eb.length, m = 0; m < n; m++) h = this.eb[m], H.Xa(g.x, g.y, h.x, h.y) < h.fc && (g.$p = !0) - } - k = 0; - for (e = this.dg.length; k < - e; k++) g = this.dg[k], g.update(a); - k = 0; - for (e = this.Be.length; k < e; k++) g = this.Be[k], g.update(a); - n = -1; - k = 0; - for (e = this.eb.length; k < e; k++) { - h = this.eb[k]; - for (m = 0; m < f; m++) r = this.Ra[m], g = h.Uc.indexOf(r), q = H.Xa(r.x, r.y, h.x, h.y), q <= h.fc + 5 * this.$ ? 0 > g && h.Uc.push(r) : 0 <= g && h.Uc.splice(r, 1); - A = this.bubbles.length; - for (m = 0; m < A; m++) { - var g = this.bubbles[m], - q = H.Xa(g.x, g.y, h.x, h.y), - z = h.Uc.indexOf(g); - q <= h.fc + 10 * this.$ ? 0 > z && h.Uc.push(g) : 0 <= z && h.Uc.splice(g, 1) - } - h.$A && (n = k); - h.update(a) - } - 0 <= n && this.eb.splice(n, 1); - k = 0; - for (e = this.Hu.length; k < - e; k++) f = this.Hu[k], f.update(a); - k = 0; - for (e = this.Zg.length; k < e; k++) - if (h = this.Zg[k], h.update(a), f = u.Ud(h.ek, 0, 1, a), h.ek = f.value, f.Xd && (h.state = l.ka.IDLE), g = h.rotation, h.rotation = 0, h.gc(), f = this.ba.Jc.copy(), f.rotate(K.tc(-g)), h.rotation = g, h.gc(), g = this.ba.p.x - w.Ah, m = this.ba.p.y - w.Ah, q = n = 2 * w.Ah, 0 <= f.y && (Q.Nf(h.Qa.x, h.Qa.y, h.Va.x, h.Va.y, g, m, n, q) || Q.Nf(h.La.x, h.La.y, h.Ma.x, h.Ma.y, g, m, n, q))) { - if (h.state === l.ka.IDLE) { - for (m = 0; m < e; m++) - if (k = this.Zg[m], k !== h && k.group === h.group) { - h.state = l.ka.Zw; - k.state = l.ka.rx; - this.Lk(!1); - this.pB = 0.9 * this.ba.Oc.Qd() * w.sj; - this.ae = k; - h.cc.ea(0); - h.cc.visible = !0; - B.W(E.zh); - this.sc.le(this, this.oC, null, 0.1); - break - } break - } - } else h.state !== l.ka.IDLE && 0 === h.ek && (h.ek = l.ew); - k = 0; - for (e = this.vc.length; k < e; k++) g = this.vc[k], g.update(a), f = u.Ud(g.Qi, 0, 1, a), g.Qi = f.value, f.Xd && this.xA(g, a); - k = 0; - for (e = this.Jk.length; k < e; k++) f = this.Jk[k], f.update(a), this.Pb(f, null, null, !1); - var C = w.xn, - J = 2 * C; - k = 0; - for (e = this.lc.length; k < e; k++) - if (h = this.lc[k], h.update(a), !h.Vh || h.Sj) - if (f = g = !1, 2 !== this.l ? (g = !this.dc && - d(h, this.wa)) ? f = !0 : g = !this.ec && d(h, this.Ia) : g = !this.Ib && d(h, this.ba), g) { - 2 !== this.l ? f ? this.rc && this.Ug(!0) : this.Dc && this.Ug(!1) : this.pc && this.Ug(!1); - k = D.pe(E.Rc); - g = new c(5, k); - this.$a && !this.Jg && (g.qe.y = -500, g.a = 90); - g.rb = this.nb.hu(); - 2 != this.l ? f ? (g.x = this.Ta.x, g.y = this.Ta.y, this.dc = !0) : (g.x = this.Ua.x, g.y = this.Ua.y, this.ec = !0) : (g.x = this.ra.x, g.y = this.ra.y, this.Ib = !0); - g.jv(5); - this.nb.fa(g); - B.W(E.Tm); - this.Lk(f); - 0 !== this.we && this.sc.le(this, this.ro, null, 0.3); - return - } var L = w.ll, - Ca = 2 * L, - d = function(a, b) { - return Q.Nf(a.Qa.x, - a.Qa.y, a.Va.x, a.Va.y, b.p.x - L, b.p.y - L, Ca, Ca) || Q.Nf(a.La.x, a.La.y, a.Ma.x, a.Ma.y, b.p.x - L, b.p.y - L, Ca, Ca) - }; - k = 0; - for (e = this.Hh.length; k < e; k++) h = this.Hh[k], h.update(a), f = g = !1, 2 !== this.l ? (g = !this.dc && d(h, this.wa)) ? f = !0 : g = !this.ec && d(h, this.Ia) : g = !this.Ib && d(h, this.ba), g ? 2 !== this.l ? f ? this.zo(h, this.wa, a) : this.zo(h, this.Ia, a) : this.zo(h, this.ba, a) : h.fv = !1; - var F = w.ol * (this.$a && !this.Jg ? -1 : 1), - Y = w.nl; - 0 === this.l && (this.rc && b(this.wa), this.Dc && b(this.Ia)); - if (1 === this.l) { - if (this.rc || this.Dc) b(this.wa), b(this.Ia) - } else this.pc && - b(this.ba); - if (!this.Ib && (f = w.zm, this.ap ? 0 < this.oi && (this.oi = u.Pf(this.oi, 0, 1, a), 0 >= this.oi && (k = new H(this.target.x, this.target.y), this.ba.p.Xa(k) > f ? (this.ap = !1, this.target.NA(), B.W(E.Zm), this.Cv++, 10 === this.Cv && ja.Qb(ia.Ed)) : this.oi = 1)) : (k = new H(this.target.x, this.target.y), this.ba.p.Xa(k) < f && (this.ap = !0, this.target.OA(), B.W(E.$m), this.oi = 1)), 0 !== this.we && !this.Xn && this.Ay(this.ra, this.ac, this.Ld, this.pc, this.target, this.ba))) { - this.Ib = this.Xn = !0; - this.Py(); - return - } - k = 2 === this.l && this.sp(this.ba) && !this.Ib; - f = 2 !== this.l && this.sp(this.wa) && !this.dc; - e = 2 !== this.l && this.sp(this.Ia) && !this.ec; - if (k || f || e) - if (k && (this.Ib = !0), f && (this.dc = !0), e && (this.ec = !0), 0 !== this.we) { - ja.Qb(ia.Gd); - ja.Qb(ia.ld); - if (2 != this.l && this.dc && this.ec) return; - this.ro(); - return - } if (0 !== this.o && 1 === this.o && !this.Ib && null != this.pc && this.ra.y < w.vl && this.ra.x > w.ul) { - k = this.o = 0; - for (e = this.dg.length; k < e; k++) g = this.dg[k], 1 === g.o && g.ea(0); - k = 0; - for (e = this.Be.length; k < e; k++) g = this.Be[k], 1 === g.o && g.ea(0) - } - if (this.$n && !this.Re && (this.Fu(), k = new H(0, 0), - f = H.add(this.al, this.ja.p), g = (k = this.st(k, f.x, f.y)) ? k.Fa : null)) { - m = !1; - this.$a && this.$a.tb(this.$a.So() ? 1 : 0).Hf(f.x, f.y, !0) && (m = !0); - if (this.pc || 2 != this.l && (this.rc || this.Dc)) - for (k = 0, e = this.bubbles.length; k < e; k++) { - h = this.bubbles[k]; - h = w.pl; - n = 2 * h; - if (this.pc && Q.Tb(f.x, f.y, this.ba.p.x - h, this.ba.p.y - h, n, n)) { - m = !0; - break - } - if (this.rc && Q.Tb(f.x, f.y, this.wa.p.x - h, this.wa.p.y - h, n, n)) { - m = !0; - break - } - if (this.Dc && Q.Tb(f.x, f.y, this.Ia.p.x - h, this.Ia.p.y - h, n, n)) { - m = !0; - break - } - } - k = 0; - for (e = this.lc.length; k < e; k++) h = this.lc[k], h.kc && - h.kc.Hf(f.x, f.y, !0) && (m = !0); - k = 0; - for (e = this.vc.length; k < e; k++) - if (this.vc[k].rp(f.x, f.y)) { - m = !0; - break - } k = 0; - for (e = this.eb.length; k < e; k++) { - h = this.eb[k]; - if (h.Pc.visible || h.Qc.visible) { - m = !0; - break - } - if (H.Xa(f.x, f.y, h.Rd.x, h.Rd.y) <= w.Fe || H.Xa(f.x, f.y, h.Rd.x, h.Rd.y) <= w.Fe) { - m = !0; - break - } - } - k = 0; - for (e = this.Ra.length; k < e; k++) { - r = this.Ra[k]; - if (r.c && Q.Tb(f.x, f.y, r.x - w.qd, r.y - w.qd, 2 * w.qd, 2 * w.qd)) { - m = !0; - break - } - if (0 < r.e && (Q.Tb(f.x, f.y, r.x - w.lf, r.y - w.lf, 2 * w.lf, 2 * w.lf) || r.Qf !== I.B)) { - m = !0; - break - } - } - m || (g.highlighted = !0) - } - e = u.Ud(this.Af, - 0, 1, a); - this.Af = e.value; - e.Xd && (0 === this.we ? (this.we = 1, this.hide(), this.show(), this.Af = I.Al) : this.we = I.B) - }, - No: function(a, b, c, k) { - var d = w.ql, - e = 2 * d; - return Q.Tb(b.x, b.y, a.x - d, a.y - d, e, e) ? (c && this.Dk(a.x, a.y), k.visible = !0, B.W(E.Qm), a.tp = !0, a.wu(0), this.Qn(), !0) : !1 - }, - Ay: function(a, b, c, k, d, e) { - return O.ei(a, d) ? (d.QA(), B.W(d.Us), k && (a === this.eE ? this.iF() : this.Ug(!1)), this.Lk(e), a.Xe = !0, b.ia = b.ta = 1, c.ia = c.ta = 1, b = new W, b.M(A.ab(a.x, a.y, A.N.LINEAR, 0)), b.M(A.ab(d.x, d.y + 10, A.N.LINEAR, 0.1)), b.M(A.pk(0.71, 0.71, A.N.LINEAR, - 0)), b.M(A.pk(0, 0, A.N.LINEAR, 0.1)), b.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 0)), b.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0.1)), a.Zb(b, 0), a.ea(0), b.rb = this.nb.df(), this.nb.fa(a), !0) : !1 - }, - oC: function() { - if (this.ae) { - this.ae.cc.ea(0); - this.ae.cc.visible = !0; - var a = new H(0, w.sn); - a.rotate(K.tc(this.ae.rotation)); - this.ba.p.x = this.ae.x; - this.ba.p.y = this.ae.y; - this.ba.p.add(a); - this.ba.Ga.Da(this.ba.p); - this.ba.Oc.x = 0; - this.ba.Oc.y = -1; - this.ba.Oc.rotate(K.tc(this.ae.rotation)); - this.ba.Oc.multiply(this.pB); - this.ba.Jc.Da(this.ba.Oc); - this.ba.Jc.fo(60); - this.ba.Ga.Da(this.ba.p); - this.ba.Ga.qb(this.ba.Jc); - this.ae = null; - ja.Qb(ia.sd) - } - }, - Ix: function() { - this.we = 0; - this.Af = I.Al - }, - rz: function() { - return 0 === this.we - }, - Lk: function(a) { - for (var b = 0, c = this.Ra.length; b < c; b++) { - var k = this.Ra[b], - d = k.Fa; - d && (d.vb === this.ba || d.vb === this.wa && a || d.vb === this.Ia && !a) && (d.Pb === I.B ? (d.Fp(d.Na.length - 2), this.Lj()) : d.wt = !0, k.Xc && k.$g && this.Np(k)) - } - }, - Qn: function() { - this.xg += 1 - }, - Lj: function() { - this.xg -= 1; - this.Pg = 0 - }, - Vx: function() { - this.Pi = 100 * Math.max(0, 30 - this.time); - this.Pi /= 10; - this.Pi *= 10; - this.jC = 1E3 * this.ah; - this.Wf = Math.ceil(this.Pi + this.jC) - }, - Py: function() { - this.sc.Wn(); - this.pc && this.Ug(!1); - this.Vx(); - this.Lk(!1); - var a = this; - J.av && this.sc.le(this, function() { - F.na(F.C.dr, { - Ub: a.ah, - time: a.time, - Wf: a.Wf, - mt: 1 / a.Yh.Tc - }) - }, null, 1); - this.sc.le(this, function() { - B.Qp(E.ie) - }, null, 1.5); - this.sc.le(this, function() { - this.Yh.gp.call(this.Yh) - }, null, 1.8) - }, - ro: function() { - this.sc.Wn(); - this.target.IA(); - B.W(E.an); - this.sc.le(this, function() { - this.Yh.mA.call(this.Yh); - F.na(F.C.Ow, { - time: this.time - }) - }, null, 1) - }, - L: function() { - var a = - N.context; - a.setTransform(1, 0, 0, 1, 0, 0); - a.clearRect(0, 0, w.wb, w.lb); - this.Lc(); - this.ja.Kx(); - this.back.Lv(this.ja.p); - this.back.L(); - var b, c; - this.Sd > w.lb && (c = this.np.J[0].y, b = this.np.G[0], a.drawImage(this.np.Gc, b.x, b.y + 2, b.V, b.ga - 4, 0, c + 2, b.V, b.ga - 4)); - a = 0; - for (b = this.Me.length; a < b; a++) this.Me[a].L(); - a = 0; - for (b = this.oe.length; a < b; a++) this.oe[a].L(); - this.Ye && this.Ye.L(); - this.$a && this.$a.L(); - this.target.L(); - a = 0; - for (b = this.dg.length; a < b; a++) this.dg[a].L(); - a = 0; - for (b = this.Be.length; a < b; a++) c = this.Be[a], 2 !== c.o && - c.L(); - a = 0; - for (b = this.Jk.length; a < b; a++) this.Jk[a].L(); - a = 0; - for (b = this.eb.length; a < b; a++) this.eb[a].L(); - a = 0; - for (b = this.bubbles.length; a < b; a++) this.bubbles[a].L(); - a = 0; - for (b = this.vc.length; a < b; a++) this.vc[a].L(); - a = 0; - for (b = this.lc.length; a < b; a++) this.lc[a].L(); - a = 0; - for (b = this.Hh.length; a < b; a++) this.Hh[a].L(); - a = 0; - for (b = this.Zg.length; a < b; a++) c = this.Zg[a], c.y -= 25, c.L(), c.y += 25; - c = this.Ra; - a = 0; - for (b = c.length; a < b; a++) c[a].qy(); - for (a = 0; a < b; a++) c[a].L(); - a = 0; - for (b = this.Ub.length; a < b; a++) this.Ub[a].L(); - this.Ib || - this.ae || (this.ra.x = this.ba.p.x, this.ra.y = this.ba.p.y, this.ra.L(), null != this.Nb.Ob && this.Nb.L()); - 2 !== this.l && (this.dc || (this.Ta.x = this.wa.p.x, this.Ta.y = this.wa.p.y, this.Ta.L()), this.ec || (this.Ua.x = this.Ia.p.x, this.Ua.y = this.Ia.p.y, this.Ua.L())); - a = 0; - for (b = c.length; a < b; a++) { - var k = c[a]; - k.Xc && k.uy() - } - this.nb.L(); - this.sy(); - this.ja.Wx(); - this.bh.L(); - a = 0; - for (b = this.Be.length; a < b; a++) c = this.Be[a], 2 === c.o && c.L(); - this.Kc() - }, - sy: function() { - for (var a = w.xl, b = 0; b < I.ud; b++) { - var c = this.Yj[b], - k = c.length; - if (0 < k) { - for (var d = - 1, e = null, f = [], g = 0, h = 0; h < k; h++) e = c[h], 0 === h && (f[g++] = e.start), f[g++] = e.end; - h = null; - k *= 2; - c = []; - e = 1 / k; - for (g = 0;;) { - 1 < g && (g = 1); - h = H.Tx(f, g); - c.push(h); - if (1 === g) break; - g += e - } - f = a / k; - e = []; - h = 0; - for (g = k - 1; h < g; h++) { - var l = d, - m = h === k - 1 ? 1 : d + f, - p = c[h], - n = c[h + 1], - q = H.qb(n, p); - q.normalize(); - var r = H.UA(q), - q = H.ju(q), - s = H.add(p, H.multiply(r, l)), - l = H.add(p, H.multiply(q, l)); - e.push(l); - e.push(s); - r = H.add(n, H.multiply(r, m)); - m = H.add(n, H.multiply(q, m)); - e.push(m); - e.push(r); - d += f - } - N.Hy(e, L.el.Cj) - } - } - }, - Bo: function(a, b, c, k) { - var d = w.pg; - if (c.WA(a.x - - d, a.y - d, a.x + d, a.y + d)) { - var e = new H(0, 0), - f = new H(0, 0), - g = new H(c.x, c.y); - e.x = a.x - a.oa.V / 2; - f.x = a.x + a.oa.V / 2; - e.y = f.y = a.y; - 0 != a.a && g.Ca(-a.a, a.x, a.y); - g.y < e.y && Q.Ci(g.x - c.oa.V / 2, g.y - c.oa.ga / 2, g.x + c.oa.V / 2, g.y + c.oa.ga / 2, e.x, e.y - d, f.x, f.y) && (c = new H(0, -(2 * d * (d - (e.y - g.y)) / d)), c.rotate(a.a), b.Pn(c, k)) - } - }, - zo: function(a, b, c) { - if (!a.fv) { - var k = H.qb(b.Ga, b.p), - d = b.Ga.copy(); - d.Ca(-a.a, a.x, a.y); - d = d.y < a.y ? -1 : 1; - k = Math.max(40 * k.Qd(), w.kq) * d; - d = H.ju(H.Iy(a.a)); - d.multiply(k); - b.p.Ca(-a.a, a.x, a.y); - b.Ga.Ca(-a.a, a.x, a.y); - b.Ga.y = - b.p.y; - b.p.Ca(a.a, a.x, a.y); - b.Ga.Ca(a.a, a.x, a.y); - b.Pn(d, c); - a.ea(0); - B.W(E.Pm) - } - }, - xA: function(a, b) { - a.ea(0); - B.W(p.ub(E.bn, E.cn)); - var c = D.pe(E.nj), - c = new h(5, c, K.eh(a.a) - 90); - c.rb = this.nb.hu(); - var k = new H(a.x + w.Jm, a.y); - k.Ca(a.a - Math.PI / 2, a.x, a.y); - c.x = k.x; - c.y = k.y; - c.jv(5); - this.nb.fa(c); - this.Ib || this.Bo(a, this.ba, this.ra, b); - 2 !== this.l && (this.dc || this.Bo(a, this.wa, this.Ta, b), this.ec || this.Bo(a, this.Ia, this.Ua, b)) - }, - Pb: function(a, b, c, k) { - for (var d = 0, e = 0, f = this.Ra.length; e < f; e++) { - var g = this.Ra[e], - h = g.Fa; - if (h && h.Pb === - I.B) - for (var l = w.qd, m = 2 * l, n = 0, q = h.Na.length - 1; n < q; n++) { - var r = h.Na[n], - s = h.Na[n + 1], - D = !1; - a ? r.Ga.x !== I.ng && (D = Q.Ci(p.Ot(r.p.x, r.Ga.x, s.p.x, s.Ga.x), p.Ot(r.p.y, r.Ga.y, s.p.y, s.Ga.y), p.Mt(r.p.x, r.Ga.x, s.p.x, s.Ga.x), p.Mt(r.p.y, r.Ga.y, s.p.y, s.Ga.y), a.ua, a.va, a.ua + a.width, a.va + a.height)) : D = g.c && Q.Nf(b.x, b.y, c.x, c.y, g.x - l, g.y - l, m, m) ? !1 : p.zz(b.x, b.y, c.x, c.y, r.p.x, r.p.y, s.p.x, s.p.y); - if (D) return d++, g.Xc && g.$g && this.Np(g), B.W(E.dn + h.Ap), h.Fp(n), this.Lj(), k && (h.Je = 0, h.yu(n)), d - } - } - return d - }, - Np: function(a) { - B.W(E.kn); - a.Xc = !1; - var b = P.create(E.uh, 11); - b.Ja(); - var c = new W; - this.$a && !this.Jg ? (c.M(A.ab(a.b.x, a.b.y, A.N.Xb, 0)), c.M(A.ab(a.b.x, a.b.y + 50, A.N.Xb, 0.3)), c.M(A.ab(a.b.x, a.b.y - w.lb, A.N.ge, 1))) : (c.M(A.ab(a.b.x, a.b.y, A.N.Xb, 0)), c.M(A.ab(a.b.x, a.b.y - 50, A.N.Xb, 0.3)), c.M(A.ab(a.b.x, a.b.y + w.lb, A.N.ge, 1))); - c.M(A.Ve(0, 0, 0)); - c.M(A.Ve(p.ub(-120, 120), 0, 1)); - b.Zb(c, 0); - b.ea(0); - b.x = a.b.x; - b.y = a.b.y; - b.anchor = U.da; - c.rb = this.nb.df(); - this.nb.fa(b); - ja.Qb(ia.Ad); - ja.Qb(ia.Cd) - }, - iC: function(a) { - B.W(E.ln); - for (var b = 0, c = this.Ra.length; b < c; b++) { - var k = - this.Ra[b], - d = k.Fa; - d && d.vb === this.ba && (d.Pb !== I.B ? k.at() : (d.Fp(d.Na.length - 2), this.Lj(), d.Fg = !1), k.Xc && k.$g && a !== k && this.Np(k)) - } - a.Xc = !1; - this.Ib = !0; - b = P.create(E.uh, 12); - b.Ja(); - this.ra.anchor = this.ra.Ba = U.da; - this.ra.x = 0; - this.ra.y = -5; - b.fa(this.ra); - c = new W; - this.$a && !this.Jg ? (c.M(A.ab(a.b.x, a.b.y - 10, A.N.Xb, 0)), c.M(A.ab(a.b.x, a.b.y + 70, A.N.Xb, 0.3)), c.M(A.ab(a.b.x, a.b.y - w.lb, A.N.ge, 1))) : (c.M(A.ab(a.b.x, a.b.y - 10, A.N.Xb, 0)), c.M(A.ab(a.b.x, a.b.y - 70, A.N.Xb, 0.3)), c.M(A.ab(a.b.x, a.b.y + w.lb, A.N.ge, 1))); - b.Zb(c, 0); - b.ea(0); - b.x = a.b.x; - b.y = a.b.y - 10; - b.anchor = U.da; - c.rb = this.nb.df(); - this.nb.fa(b); - 0 !== this.we && this.sc.le(this, this.ro, null, 2); - ja.Qb(ia.Bd) - }, - Ug: function(a) { - 2 !== this.l ? a ? (this.rc = null, this.Jd.visible = !1, this.Dk(this.Ta.x, this.Ta.y)) : (this.Dc = null, this.Kd.visible = !1, this.Dk(this.Ua.x, this.Ua.y)) : (this.pc = null, this.qc.visible = !1, this.Dk(this.ra.x, this.ra.y)) - }, - Dk: function(a, b) { - this.Lj(); - B.W(E.Rm); - var c = new x; - c.Ea(E.hm); - c.Ja(); - c.x = a; - c.y = b; - c.anchor = U.da; - var k = c.Cc(0.05, W.xa.mb, 0, 11); - c.Fc(k).rb = this.nb.df(); - c.ea(0); - this.nb.fa(c) - }, - Ao: function(a, b, c) { - return Q.Tb(b + this.ja.p.x, c + this.ja.p.y, a.p.x - w.Wi, a.p.y - w.Wi, w.Xi, w.Xi) ? (this.Ug(a === this.wa), ja.Qb(ia.kd), ja.Qb(ia.jd), !0) : !1 - }, - Fu: function() { - for (var a = 0, b = this.Ra.length; a < b; a++) { - var c = this.Ra[a].Fa; - c && c.Pb === I.B && (c.highlighted = !1) - } - }, - st: function(a, b, c) { - var k = w.wl, - d = null, - e = k; - b = new H(b, c); - c = 0; - for (var f = this.Ra.length; c < f; c++) { - var g = this.Ra[c], - h = g.Fa; - if (h) - for (var l = 0, m = h.Nj.length; l < m; l++) { - var p = h.Nj[l], - n = p.Xa(b); - n < k && n < e && (e = n, d = g, a.Da(p)) - } - } - return d - }, - Yy: function(a, - b) { - var c = null, - k = Number.MAX_VALUE, - d = a.copy(), - e = b.Fa; - if (!e || e.Pb !== I.B) return null; - for (var f = w.qd, g = 2 * f, h = 0, l = e.Na.length - 1; h < l; h++) { - var m = e.Na[h], - p = m.p.Xa(d); - p < k && (!b.c || Q.Tb(m.p.x, m.p.y, b.x - f, b.y - f, g, g)) && (k = p, c = e, a.Da(m.p)) - } - return c - }, - sC: function(a, b, c) { - if (this.Re) return this.ja.type === s.Dd.og && (this.kt = !0), !0; - if (c >= I.ud) return !0; - this.yk = !1; - if (this.$a && this.$a.tb(this.$a.So() ? 1 : 0).Hf(a + this.ja.p.x, b + this.ja.p.y, !0)) return this.wo = c, !0; - if (this.pc && this.Ao(this.ba, a, b) || 2 !== this.l && (this.rc && this.Ao(this.wa, - a, b) || this.Dc && this.Ao(this.Ia, a, b))) return !0; - var k = new H(a, b); - this.Sh[c] || (this.Sh[c] = !0, this.cf[c].Da(k), this.vp[c].Da(k)); - var d, e, f = this.ja.p, - k = a + f.x, - f = b + f.y; - d = 0; - for (e = this.lc.length; d < e; d++) { - var g = this.lc[d]; - if (g.kc && g.hl === I.B && g.kc.wk(k, f)) return g.hl = c, !0 - } - d = 0; - for (e = this.vc.length; d < e; d++) - if (g = this.vc[d], g.rp(k, f)) return g.Qi = 0.05, g.touch = c, !0; - var g = null, - h = !1, - l = !1; - d = 0; - for (e = this.eb.length; d < e; d++) { - var m = this.eb[d], - p = H.Xa(k, f, m.Kg.x, m.Kg.y), - n = H.Xa(k, f, m.Rd.x, m.Rd.y); - if (p < w.Fe && !m.vt() || n < w.Fe) { - for (d += - 1; d < e; d++) { - var g = this.eb[d], - q = H.Xa(g.x, g.y, m.x, m.y); - q + g.fc <= m.fc && (h = !0); - q <= m.fc + g.fc && (l = !0) - } - m.mi.x = k; - m.mi.y = f; - m.wi = c; - p < w.Fe && m.Pu(!0); - n < w.Fe && m.Qu(!0); - g = m; - break - } - } - e = this.eb.indexOf(g); - e != this.eb.length - 1 && l && !h && (d = new W, d.M(A.Ka(L.Vb.copy(), A.N.LINEAR, 0)), d.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 0.2)), h = new W, h.M(A.Ka(L.Ab.copy(), A.N.LINEAR, 0.2)), h.rb = $.proxy(this.qA, this), l = g.copy(), l.Ds(h), l.ea(0), g.Ds(d), g.ea(0), this.eb[e] = l, this.eb.push(g)); - h = w.qd; - l = 2 * h; - m = w.lf; - p = 2 * m; - d = 0; - for (e = this.Ra.length; d < e; d++) - if (g = - this.Ra[d], g.c && Q.Tb(k, f, g.x - h, g.y - h, l, l) && (g.hz(k, f), g.ih = c), 0 < g.e && Q.Tb(k, f, g.x - m, g.y - m, p, p)) return g.Qf = c, !0; - this.$n && (c = H.cb(), (k = (g = this.st(c, k, f)) ? g.Fa : null) && k.highlighted && this.Yy(c, g) && this.Pb(null, c, c, !1)); - !this.Xn && this.target.Bk(a, b) && (this.yk = !0); - return !0 - }, - Rh: Ka(!0), - vC: function(a, b, c) { - if (this.Re) return !0; - this.Sh[c] = !1; - if (this.yk && this.target.Bk(a, b)) return this.yk = !1, F.na(F.C.kr), !0; - this.yk = !1; - var k, d; - k = this.ja.p; - var e = a + k.x, - f = b + k.y; - k = 0; - for (d = this.Me.length; k < d; k++) { - var g = this.Me[k]; - if (g.rp(e, f)) { - g.Kp(); - this.Me.splice(k, 1); - break - } - } - this.$a && this.wo === c && (this.$a.tb(this.$a.So() ? 1 : 0).Hf(a + this.ja.p.x, b + this.ja.p.y, !0) && (this.$a.toggle(), this.Sb(qb.Eq)), this.wo = I.B); - k = 0; - for (d = this.lc.length; k < d; k++) - if (e = this.lc[k], e.kc && e.hl === c && (e.hl = I.B, e.kc.xk(a + this.ja.p.x, b + this.ja.p.y))) return !0; - k = 0; - for (d = this.eb.length; k < d; k++) a = this.eb[k], a.wi === c && (a.wi = I.B, a.Mp = I.B, a.Pu(!1), a.Qu(!1)); - k = 0; - for (d = this.Ra.length; k < d; k++) a = this.Ra[k], a.c && a.ih === c && (a.ih = I.B), 0 < a.e && a.Qf === c && (a.Qf = I.B); - return !0 - }, - uC: function(a, b, c) { - if (this.Re || c >= I.ud) return !0; - var k = new H(a, b), - d, e; - if (10 < this.cf[c].Xa(k)) - for (d = 0, e = this.vc.length; d < e; d++) { - var g = this.vc[d]; - g.touch === c && 0 !== g.Qi && (g.Qi = 0) - } - this.al.Da(k); - a = new H(a + this.ja.p.x, b + this.ja.p.y); - d = 0; - for (e = this.eb.length; d < e; d++) - if (b = this.eb[d], b.wi === c) { - c = new H(b.x, b.y); - c.Xa(a) < b.fc / 10 && b.mi.Da(a); - d = H.qb(b.mi, c); - k = H.qb(a, c).Rg() - d.Rg(); - k > Math.PI ? k -= 2 * Math.PI : k < -Math.PI && (k += 2 * Math.PI); - b.Kg.Ca(k, b.x, b.y); - b.Rd.Ca(k, b.x, b.y); - b.rotation += K.eh(k); - d = 0 < k ? E.gn : E.hn; - 0.07 > Math.abs(k) && - (d = I.B); - b.Mp != d && d != I.B && (B.W(d), b.Mp = d); - d = 0; - for (e = this.Ra.length; d < e; d++) { - var g = this.Ra[d], - h = new H(g.x, g.y); - h.Xa(c) <= b.fc + 5 * this.$ && (h.Ca(k, b.x, b.y), g.x = h.x, g.y = h.y, g.Fa && (g.Fa.ob.p.Da(h), g.Fa.ob.ad.Da(h))) - } - d = 0; - for (e = this.vc.length; d < e; d++) g = this.vc[d], h = new H(g.x, g.y), h.Xa(c) <= b.fc + 5 * this.$ && (h.Ca(k, b.x, b.y), g.x = h.x, g.y = h.y, g.rotation += K.eh(k), g.gc()); - d = 0; - for (e = this.bubbles.length; d < e; d++) g = this.bubbles[d], h = new H(g.x, g.y), h.Xa(c) <= b.fc + 10 * this.$ && g !== this.pc && g !== this.Dc && g !== this.rc && (h.Ca(k, - b.x, b.y), g.x = h.x, g.y = h.y); - Q.Tb(this.target.x, this.target.y, b.x - b.size, b.y - b.size, 2 * b.size, 2 * b.size) && (h = new H(this.target.x, this.target.y), h.Ca(k, b.x, b.y), this.target.x = h.x, this.target.y = h.y); - b.mi.Da(a); - return !0 - } d = 0; - for (e = this.Ra.length; d < e; d++) - if (b = this.Ra[d]) { - if (b.c && b.ih === c) return b.gz(a), !0; - if (0 < b.e && b.Qf === c) return b.g ? b.y = p.Eg(a.y, b.sk, b.rk) : b.x = p.Eg(a.x, b.sk, b.rk), b.Fa && (d = b.Fa.ob, d.p.x = d.ad.x = b.x, d.p.y = d.ad.y = b.y), !0 - } if (this.Sh[c]) { - d = new f(H.add(this.cf[c], this.ja.p), H.add(k, this.ja.p), 5, - 5, L.Qv.copy()); - a = this.Yj[c]; - b = 0; - a.push(d); - d = 0; - for (e = a.length; d < e; d++) g = a[d], b += this.Pb(null, g.start, g.end, !1); - 0 < b && (this.My = !1, this.Ii = 0 < this.Ii && 0 < this.Ok ? this.Ii + b : b, this.Ok = 0.1, ja.Qb(ia.xd), ja.Qb(ia.yd), ja.Qb(ia.Fd), 5 <= this.Ii ? ja.Qb(ia.td) : 3 <= this.Ii && ja.Qb(ia.vd)); - this.vp[c].Da(this.cf[c]); - this.cf[c].Da(k) - } - return !0 - }, - tC: function(a, b, c) { - if (c > I.ud) return !1; - this.al.x = a; - this.al.y = b; - return !0 - }, - Sb: function() { - Sa.toggle(); - this.Jg = Sa.Bt(); - B.W(this.Jg ? E.xj : E.yj); - for (var a = 0, b = this.oe.length; a < b; a++) { - var c = - this.oe[a]; - Sa.Bt() ? c.ea(T.Ej.hc) : c.ea(T.Ej.ws) - } - }, - jB: function(a) { - for (var b = 0, c = this.lc.length; b < c; b++) this.lc[b].v === a && this.lc[b].lB() - } - }) - }(Gb, Hb, Ib, Jb, Kb, Ob, Pb, Qb, Rb, Sb, Tb, Ub, ba, oa, Vb, Wb, Xb, Yb, fa, Zb, Pa, ra, la, x, V, za, na, R, ea, pa, G, M, Ra, K, P, pb, kb, Aa, Ba, ob, lb, ga, S, Z, ha, Ya, ta, ac, Za, bc, ua, T, F, cc, ka, dc, Ha, ec, fc), - jc = function(a, d, c, b, f) { - var e = a.extend({ - init: function() { - this.H() - }, - L: function() { - for (var a = this.children, h = a.length, l = 0; l < h; l++) { - var n = a[l]; - n.visible && n.L() - } - h = this.tb(e.nd.od); - 0 < h.Af && (a = h.Af / f.Al, h.rz() && - (a = 1 - a), h = b.context, a = new c(1, 1, 1, a), h.fillStyle = a.Hi(), h.fillRect(0, 0, d.wb, d.lb)) - }, - show: function() { - this.H(); - var a = this.tb(e.nd.od); - a.Jx && a.Ix() - } - }); - e.nd = { - od: 0, - HD: 1, - KD: 2, - ED: 3, - ID: 4, - LD: 5 - }; - return e - }(function(a, d) { - return a.extend({ - init: function() { - this.H(); - this.width = d.wb; - this.height = d.lb - } - }) - }(fa, G), G, ea, Z, V), - kc = function(a, d, c, b, f) { - return a.extend({ - init: function(a) { - this.H(a); - this.On = !1 - }, - Hd: function() { - this.H(); - b.zi(f.Vm); - this.dy(); - this.oz(); - this.cv(0) - }, - dy: function() { - var a = new c, - b = new d; - b.Yh = this; - b.Jx = this.On; - this.On = !1; - a.Ge(b, c.nd.od); - this.Gx(a, 0) - }, - oz: function() { - this.Hp(!1); - this.yz() - }, - yz: function() { - this.Qo = !1 - }, - SE: function() { - this.Qo = !1 - }, - gp: function() { - b.W(f.pn); - this.Od() - }, - mA: function() { - this.Mk() - }, - Hp: function(a) { - this.Qo = a; - var d = this.Ff(0); - d && (d = d.tb(c.nd.od)) && (d.mc = !a, d.Ti = !a, a ? b.EA() : b.gB()) - }, - Tg: function() { - var a = this.Ff(0); - a && (a = a.tb(c.nd.od)) && (a.Af = 0, this.Hp(!0)) - }, - Vg: function() { - this.Hp(!1) - }, - Mk: function() { - this.jy(0); - this.On = !0; - this.Hd() - }, - tk: function(a, b) { - if (this.H(a, b)) return !0; - var d = this.Ff(0); - return d && - (d = d.tb(c.nd.od)) && d.mc ? (d.sC(a, b, 0), !0) : !1 - }, - Pt: function(a, b) { - if (this.H(a, b)) return !0; - var d = this.Ff(0); - return d && (d = d.tb(c.nd.od)) && d.mc ? (d.tC(a, b, 0), !0) : !1 - }, - Qt: function(a, b) { - if (this.H(a, b)) return !0; - var d = this.Ff(0); - return d && (d = d.tb(c.nd.od)) && d.mc ? (d.uC(a, b, 0), !0) : !1 - }, - Qg: function(a, b) { - if (this.H(a, b)) return !0; - var d = this.Ff(0); - return d && (d = d.tb(c.nd.od)) && d.mc ? (d.vC(a, b, 0), !0) : !1 - }, - Rh: function(a, b) { - if (this.H(a, b)) return !0; - var d = this.Ff(0); - return d && (d = d.tb(c.nd.od)) && d.mc ? (d.Rh(a, b, 0), !0) : !1 - } - }) - }(Xa, - ic, jc, la, x, V), - ab = function(a, d, c, b, f) { - return new(d.extend({ - init: function(a) { - this.H(a) - }, - iv: function(b, d) { - f.Jz(b, d); - this.yf === a.ka.vh && this.Hd(); - var h = this.tb(3); - h && h.Zs(); - h = new c(this); - this.Ge(h, 3); - this.zx(3) - }, - Tg: function() { - var a = this.tb(3); - a && a.Tg() - }, - Vg: function() { - var a = this.tb(3); - a && a.Vg() - }, - Mk: function() { - var a = this.tb(3); - a && a.Mk() - }, - mv: function() { - this.Ys() - }, - tz: function() { - if (this.yf === a.ka.vh) return !1; - var b = this.tb(3); - return !b || b.yf === a.ka.vh || b.Qo ? !1 : !0 - }, - $t: function(a) { - this.H(a); - 3 == a && this.iy(3) - } - })) - }(Xa, - Eb, kc, K, Ra), - bb = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s) { - function v() { - h.na(h.C.tj); - r.Ag() - } - var r = { - Zk: function(b) { - a.Tg(); - $(".popupOuterFrame").hide(); - $(".popupInnerFrame").hide(); - $("#popupWindow").fadeIn(500, function() { - $("#" + b).show(); - $(".popupOuterFrame").fadeIn(500) - }) - }, - Ag: function() { - l.W(n.qa); - $("#popupWindow").fadeOut(500, function() { - a.Vg() - }) - }, - bv: function() { - l.W(n.qa); - r.Zk("payDialog") - }, - dC: function() { - var a = $("#slowComputer"); - a.children("img").remove(); - var c = $(m.sa({ - text: q.ca(p.Fr), - Id: s.da, - width: 1200 * - b.Wb, - scale: 1.25 * b.Za - })), - d = $(m.sa({ - text: q.ca(p.Er), - width: 1200 * b.Wb, - scale: 0.8 * b.Za - })); - d.css("margin-left", b.A(30)); - a.append(c).append(d); - m.sa({ - text: q.ca(p.br), - Zc: "#slowComputerBtn img", - scale: 0.8 * b.Za - }); - r.Zk("slowComputer") - } - }; - h.subscribe(h.C.Cb, function() { - m.sa({ - text: q.ca(p.Gn), - ib: "payMessage", - width: b.A(650), - Id: s.da, - scale: 0.8 * b.Za - }); - m.sa({ - text: q.ca(p.Yi), - ib: "payBtn", - scale: 0.6 * b.Za - }) - }); - $(function() { - $("#payImg").click(v); - $("#payBtn").click(v); - $("#payClose").click(r.Ag); - $("#slowComputerBtn").click(r.Ag); - $("#missingOkBtn").click(r.Ag); - $("#resetNoBtn").click(r.Ag) - }); - return r - }(ab, ya, Ga, G, X, sa, Ja, M, la, x, T, ca, F, K, P), - rb = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s) { - function v(a) { - if (a === x) { - a = I[a]; - var b = a.index; - a.gi() && (n.W(q.qa), !1 === a.Ze ? l.na(l.C.tj) : h.Mg(b) ? (p.sa({ - text: m.ca(u.rq), - ib: "missingLine1", - za: !0 - }), p.sa({ - text: h.Gi(b) - h.cg(), - ib: "missingCount", - za: !0 - }), p.sa({ - text: m.ca(u.sq), - ib: "missingLine2", - za: !0 - }), p.Hb({ - text: m.ca(u.tq), - ib: "missingLine3", - za: !0 - }), p.sa({ - text: m.ca(u.Tw), - ib: "missingOkBtn", - za: !0 - }), n.W(q.qa), - s.Zk("missingStars")) : F.vA(b)) - } - } - - function r(a) { - W = a; - G.setTransform(1, 0, 0, 1, 0, 0); - G.clearRect(0, 0, Y.width, Y.height); - var b = A + a, - c = f.A(130); - G.translate(b, c); - for (var d = 0, k = 0; k < I.length; k++) { - var e = null, - g = a + d, - h = I[k]; - h.visible && (g > f.A(-100) && g < f.A(100) && (e = -1 * (A + a) - d + f.A(452)), G.translate(d, 0), h.L(G, e), G.translate(-d, 0), d += L) - } - G.translate(-b, -c) - } - - function z(a) { - function b() { - if (O) { - var a = Date.now() - V; - W = c.Bf(a, M, R - M, d); - r(W); - 5 > Math.abs(W - R) && (H = !0); - a >= d ? (w != I[x] && (w = I[x], w.Ls(G)), w && w.si && w.si(), O = !1) : window.requestAnimationFrame(b) - } - } - 0 > a && (a = 0); - a > I.length - 1 && (a = I.length - 1); - var d = a == x ? 0 : 550; - w && w != I[a] && w.vi && w.vi(); - x = a; - l.na(l.C.as, I[x].index); - M = W; - R = -1 * L * a; - V = Date.now(); - O = !0; - b(); - U.find("div").toggleClass("boxNavDisabled", 0 >= a); - Ia.find("div").toggleClass("boxNavDisabled", a >= I.length - 1) - } - - function k() { - O = !1; - null != w && w.Ss() - } - - function C(a, b) { - return H && null != w && w.gi() && a > f.A(340) && a < f.A(680) && b > f.A(140) && b < f.A(460) ? !0 : !1 - } - - function D(a) { - k(); - T = a; - N = W; - S = !0 - } - - function J(a, b) { - S ? (k(), P = a - T, 5 < Math.abs(P) && (H = !1, r(N + P))) : $(Y).toggleClass("ctrPointer", - C(a, b)) - } - - function B(a, b) { - if (S) - if (k(), P = a - T, Math.abs(P) > L / 2) { - Q = W; - var c = Math.round(-1 * Q / L); - z(c) - } else 5 < Math.abs(P) ? (c = f.A(30), z(P > c ? x - 1 : P < -1 * c ? x + 1 : x)) : (c = I[x], c.gi() && (c.If || z(x), C(a, b) && v(x))); - S = !1 - } - - function E(a, b) { - B(a, b) - } - var I = [], - x = 0, - W = 0, - H = !0, - L = f.A(600), - A = f.A(312), - w = null, - F = null, - Y, G, U, Ia, K = new d(a.gd, "boxPanel", "menuBackground", !0); - $(function() { - Y = document.getElementById("boxCanvas"); - G = Y.getContext("2d"); - Y.width = f.A(1024); - Y.height = f.A(576); - U = $("#boxNavBack").click($.proxy(function() { - 0 < x && (z(x - 1), n.W(q.qa)) - }, - this)); - Ia = $("#boxNavForward").click($.proxy(function() { - x < I.length - 1 && (z(x + 1), n.W(q.qa)) - }, this)); - $("#boxUpgradePlate").click(function() { - v(x) - }) - }); - l.subscribe(l.C.Hn, function(a) { - I = a; - K.yp() - }); - K.init = function(a) { - F = a - }; - K.ti = function() { - this.Hd() - }; - K.fp = function() { - this.Od() - }; - K.hC = function() { - z(x + 1) - }; - K.gC = function() { - z(0) - }; - K.Ox = function() { - null != w && null != G && (w.Ss(), w.Ls(G)) - }; - var O = !1, - M, R, V, S = !1, - Q = 0, - N = 0, - P = 0, - T = null; - K.Vd = null; - K.Hd = function() { - this.Vd || (this.Vd = new b({ - element: Y, - kp: $.proxy(D, this), - hp: $.proxy(J, this), - ep: $.proxy(B, this), - ip: $.proxy(E, this), - $h: function() { - return e.az() - } - })); - this.Vd.Hd() - }; - K.Od = function() { - this.Vd && this.Vd.Od() - }; - K.yp = function() { - z(x) - }; - return K - }(ya, Ga, xa, Va, G, Wa, X, sa, M, la, x, T, ca, F, bb), - Ja = function(a, d, c, b, f, e, g, h, l, n, q) { - var m = new function() { - function p() { - if (r) { - s.pb = 0; - s.bc = 1; - var k = e.Ns, - f = e.Rx, - g, m, p, q, z; - v = []; - g = 0; - for (m = f.length; g < m; g++) { - p = f[g]; - q = b.Gi(g); - z = b.Mg(g); - switch (p) { - case c.fw: - p = new d(g, k[g], q, z, p); - p.pz() || (p = null); - break; - case c.Mm: - p = new h(g, k[g], q, z, p); - break; - case c.ym: - p = new l(g, k[g], q, - z, p); - break; - case c.Cn: - p = new n(g, k[g], q, z, p); - break; - default: - p = new a(g, k[g], q, z, p) - } - p && v.push(p) - } - u() - } - } - - function u() { - var a = [], - b, c, d; - b = 0; - for (d = v.length; b < d; b++) c = v[b], c.index = b, c.visible && a.push(c); - f.na(f.C.Hn, a) - } - var s = this, - v = []; - f.subscribe(f.C.as, function(a) { - m.pb = a; - m.bc = 1 - }); - var r = !1; - this.ke = function() { - r = !0; - p() - }; - s.pb = 0; - s.bc = 1; - var z = !1; - f.subscribe(f.C.sf, function(a) { - z = a - }); - this.jk = function() { - return b.Mg(this.pb) || b.$c(this.pb) <= this.bc ? !1 : z || !e.Mf ? !0 : !e.Mf(this.pb, this.bc) - }; - f.subscribe(f.C.Ch, p); - f.subscribe(f.C.Dh, - p); - f.subscribe(f.C.yh, p); - f.subscribe(f.C.rl, p); - this.Bu = function() { - for (var a = 0, b = 0, c = v.length; b < c; b++) v[b].Og() && a++; - return a - }; - this.RA = function() { - for (var a = 0, c = v.length, d = 0; d < c; d++) v[d].Og() && (a += b.mu(d)); - return a - }; - this.Pv = function() { - var a = 0, - b, c, d; - b = 0; - for (c = v.length; b < c; b++) d = v[b], d.Og() && !1 !== d.Ze && a++; - return a - }; - this.fB = function() { - q.gC(); - p(); - q.yp() - }; - this.Gv = function() { - var a = v.length, - c = !1, - d, e; - for (d = 1; d < a; d++) e = v[d], !b.Mg(d) && e.Ze && e.If && (e.If = !1, c = !0, b.$e(d, 0, 0)); - c && q.yp() - }; - f.subscribe(f.C.sf, function(a) { - a = - a || !0 === g.eg; - var d = e.Mf || Ka(!1), - f, h, l; - f = 1; - for (h = v.length; f < h; f++) switch (l = v[f], l.type) { - case c.Mm: - l.visible = !a; - break; - case c.ym: - l.visible = a; - break; - default: - l.Ze = a || !d(f, 0), l.If = !l.Ze || b.Mg(f) - } - u() - }) - }; - return m - }(Fa, Bb, Ea, sa, M, K, qa, Cb, Db, ib, rb), - cb = function(a, d, c, b, f) { - var e = [], - g = new Image, - h = new Image, - l = {}; - $(function() { - l.canvas = document.getElementById("levelCanvas"); - l.canvas.width = a.A(1024); - l.canvas.height = a.A(576) - }); - l.Ey = !1; - l.ke = function() { - for (var a = 0, b = d.Sn.length; a < b; a++) { - var f = new Image; - f.src = c.fd + d.Sn[a]; - e[a] = f - } - g.src = c.fd + "leveltape_left.png"; - h.src = c.fd + "leveltape_right.png" - }; - l.bd = function(c, d) { - var f = l.canvas, - p = f.getContext("2d"), - u = e[b.pb], - s = f.width / 2, - v = s - s * (1 - (d || 0)); - p.save(); - p.setTransform(1, 0, 0, 1, 0, 0); - p.clearRect(0, 0, f.width, f.height); - p.restore(); - p.drawImage(u, -1 * v, 0); - c && p.drawImage(g, s - a.A(26) - v, a.A(10)); - p.save(); - p.translate(f.width, 0); - p.scale(-1, 1); - p.drawImage(u, -1 * v, 0); - p.restore(); - c && p.drawImage(h, s + v, a.A(10)) - }; - l.mp = function(a, b, c) { - function d() { - var c = r(Date.now() - g, 0, 1, h); - 1 > c ? (l.bd(a, e ? 1 - c : - c), window.requestAnimationFrame(d)) : (l.bd(a, e ? 0 : 1), e ? $("#levelPanel").show() : $("#levelPanel").hide(), null != b && b()) - } - var e = null != c ? c : !1, - g = Date.now(), - h = 750; - l.canvas.getContext("2d"); - var r = c ? f.gt : f.Th; - window.requestAnimationFrame(d) - }; - l.$x = function(a) { - l.mp(!1, a, !0) - }; - l.Zx = function(b) { - var c = $("#tapeRoll"), - d = $("#levelTape"); - $("#levelResults").fadeOut(400); - c.css("top", a.A(-14)); - c.delay(400).fadeIn(200, function() { - function e() { - var a = Date.now() - h, - C = f.Th(a, r, g - r, z); - c.css("top", f.Th(a, v, g - v, z)); - d.css("height", - C); - a < z ? window.requestAnimationFrame(e) : (d.hide(), l.bd(!0), c.fadeOut(400, function() { - setTimeout(b, 200) - })) - } - var g = a.A(470); - a.A(553); - var h = Date.now(), - v = parseInt(c.css("top"), 10), - r = a.A(63), - z = 1E3; - d.css("height", r); - d.show(); - window.requestAnimationFrame(e) - }) - }; - l.tA = function(b) { - l.bd(!0, 0); - var c = $("#boxCutter"); - c.css("top", a.A(281)); - c.delay(200).fadeIn(200, function() { - function d() { - var a = Date.now() - g; - c.css("top", f.Th(a, h, e - h, l)); - a < l ? window.requestAnimationFrame(d) : c.fadeOut(300, b) - } - var e = a.A(-255), - g = Date.now(), - h = parseInt(c.css("top"), 10), - l = 1E3; - window.requestAnimationFrame(d) - }) - }; - l.DF = da(); - l.IE = da(); - return l - }(G, K, X, Ja, xa, M), - lc = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s, v) { - function r() { - var a = parseInt($(this).data("level"), 10); - if (f.uz(e.pb, a)) k.uA(a + 1, v.Ey); - else if (C ? 0 : p.Mf && p.Mf(e.pb, a)) s.bv(); - else return; - h.W(l.qa) - } - - function z() { - var a = e.pb, - b = f.$c(a), - c, d, k, g, h; - for (k = 0; k < b; k++) - if (c = $("#option" + (k + 1))) k < b ? (c.show(), g = C ? !1 : p.Mf ? p.Mf(e.pb, k) : !1, d = f.Ef(a, k), null === d && !g && 0 < k && (h = f.bk(a, k - 1), 0 < h && (f.$e(a, k, 0), d = 0)), null != - d ? (d = $("
").append($(q.sa({ - text: k + 1, - za: !0 - }))).append($("
").addClass("stars" + d)), c.removeClass("locked purchase").addClass("open ctrPointer").empty().append(d)) : c.removeClass("open").addClass("locked").toggleClass("purchase ctrPointer", g).empty()) : c.hide(); - a = f.Ln(e.pb) + "/" + 3 * f.$c(e.pb); - q.sa({ - text: a, - Zc: "#levelScore img", - za: !0 - }); - e.Gv(); - f.Si() - } - a = new d(a.he, "levelPanel", p.RE || "levelBackground", !0); - var k = null; - a.init = function(a) { - function b(a, c, d) { - $("
").attr("id", "option" + (a + 1)).data("level", - a).addClass("option locked ctrPointer " + p).css({ - left: u + (d || 0), - top: s - }).click(r).appendTo(g); - u += c; - u > l && (u = h, s += c) - } - k = a; - var d = f.$c(e.pb), - g = $("#levelOptions"), - h = 0; - a = 0; - var l = c.A(420), - m = c.A(153), - p = "", - n = 3, - q = d % 3; - 9 < d && 12 >= d ? (h = -80, a = 10, n = 4, l = c.A(500), m = c.A(153)) : 12 < d && (h = -30, a = -40, m = c.A(101), p = "option-small", n = 5, q = d % 5); - var s = a, - u = h; - a = 0; - for (var v = d - q; a < v; a++) b(a, m); - 0 < q && function(a) { - for (var c = (n - q) * m / 2; a < d; a++) b(a, m, c) - }(a) - }; - a.ti = function() { - z(); - $("#levelScore").delay(200).fadeIn(700); - $("#levelBack").delay(200).fadeIn(700); - $("#levelOptions").delay(200).fadeIn(700); - $("#levelResults").delay(200).fadeOut(700) - }; - var C = !1; - g.subscribe(g.C.sf, function(a) { - C = a; - z() - }); - g.subscribe(g.C.Hn, function() { - z() - }); - return a - }(ya, Ga, G, X, sa, Ja, M, la, x, T, ca, F, K, P, bb, cb), - mc = function(a, d, c, b, f, e, g, h, l, n, q) { - var m = new d(a.pf, "codePanel", "levelBackground", !1), - p = null, - u = null, - s = null, - v = null; - m.Po = function() { - return l.sE ? g.At(0) && !n.eg : !1 - }; - $(function() { - function a(b) { - p.html(b); - p.width(h + 1); - p.width(h) - } - - function c() { - f ? (n = !n, a(n ? "Validating code . . ." : ""), setTimeout(c, - n ? 600 : 250)) : n = !1 - } - - function d(c) { - f = !1; - u.attr("disabled", !1); - if (c) { - a("Code Accepted!"); - c = !0; - var k, e; - k = 0; - for (e = l.zg.length; k < e; k++) - if (!g.At(k)) { - c = !1; - break - } g.zC(); - v.delay(3E3).show(0); - b.na(b.C.rl, c) - } else a("Sorry, that code is not valid or
has already been redeemed.") - } - - function e() { - if (!f) { - var b = l.zg.length, - g = u.val() || "", - h = 0 < g.length ? parseInt(g[0], 10) || 0 : 0, - m = parseInt(g, 10), - g = m.toString().length === g.length; - isNaN(m) || !g || 0 > m || 1 > h || h > b ? a("Oops, that is not a valid code!") : (u.attr("disabled", !0), f = !0, - c(), $.ajax({ - type: "POST", - url: "http://ctrbk.cloudapp.net/api/CTRBKCodes", - contentType: "application/json", - data: '{"ctrbkcode":"' + m + '"}', - dataType: "json", - error: function() { - d(!1) - }, - success: function() { - d(!0) - } - })) - } - } - p = $("#codeMessage"); - u = $("#codeText"); - s = $("#codeOkButton"); - v = $("#codeBack").toggle(!m.Po()); - var f = !1, - h = q.A(540), - n = !1; - u.keyup(function(b) { - 13 == b.which ? e() : a("") - }); - s.click(function() { - e() - }) - }); - m.init = da(); - m.ti = function() { - p.text(""); - u.val("").focus(); - h.bd(!1, 0) - }; - m.fp = da(); - return m - }(ya, Ga, xa, M, la, ca, ib, cb, K, - qa, G), - sb = function(a, d, c, b, f, e, g, h, l, n) { - var q = new function() { - function l() { - function a() { - if (x) { - var k = Date.now(); - B += 0.1 * (k - d) / 25 * H; - d = k; - b.setTransform(1, 0, 0, 1, 0, 0); - b.clearRect(0, 0, E.width, E.height); - 1 > F && (F += 0.025, F = Math.min(F, 1), b.globalAlpha = F); - b.save(); - b.translate(0.5 * I.width, 0.5 * I.height); - b.translate(e.A(-300), e.A(-510)); - b.rotate(B * Math.PI / 180); - b.translate(0.5 * -I.width, 0.5 * -I.height); - b.drawImage(I, 0, 0); - b.restore(); - c(a) - } - } - var b = E.getContext("2d"), - c = window.requestAnimationFrame, - d = Date.now(); - x = !0; - a() - } - - function p() { - if (!G) { - if (null != - E) { - var a = E.getContext("2d"); - a.save(); - a.setTransform(1, 0, 0, 1, 0, 0); - a.clearRect(0, 0, E.width, E.height); - a.restore() - } - F = 0; - G = !0; - $("#shadowPanel").show(); - x || l() - } - } - var q = this, - s = []; - this.jp = null; - this.yb = function() { - C = $("#fadeToBlack"); - E = document.getElementById("shadowCanvas"); - E.width = e.A(1024); - E.height = e.A(576) - }; - this.ke = function(a) { - I = new Image; - I.src = g.fd + "shadow.png"; - if (a) - for (var b = 0, c = s.length; b < c; b++) a(s[b].id) - }; - var v = this.Df = function(a) { - for (var b = 0; b < s.length; b++) - if (s[b].id == a) return s[b]; - return null - }; - s.push(new d(a.Fb, - "menuPanel", "startBackground", !0)); - s.push(c); - s.push(b); - s.push(new d(a.kg, null, "levelBackground", !1)); - s.push(new d(a.dj, null, null, !1)); - s.push(new d(a.cr, null, null, !1)); - s.push(new d(a.ph, "gameCompletePanel", "menuBackground", !0)); - s.push(new d(a.De, "optionsPanel", "menuBackground", !0)); - s.push(new d(a.wq, null, null, !1)); - s.push(new d(a.of, "leaderboardPanel", "menuBackground", !0)); - s.push(new d(a.hf, "achievementsPanel", "menuBackground", !0)); - s.push(f); - this.Kj = a.Fb; - this.kb = function(a, b) { - q.Kj = a; - var c = v(a), - d = null == - b ? !1 : b; - c.cC ? p() : (x = G = !1, $("#shadowPanel").hide()); - setTimeout(function() { - c.yg && $("#" + c.yg).show(); - c.Sg && $("#" + c.Sg).show(); - for (var b = 0; b < s.length; b++) { - var k = s[b]; - null != k.Sg && k.Sg != c.Sg && $("#" + k.Sg).hide(); - null != k.yg && k.yg != c.yg && $("#" + k.yg).hide() - } - null != q.jp && q.jp(a); - d || q.oB() - }, d ? 0 : r + z); - d || q.nB() - }; - var r = 100, - z = 50, - k = 1, - C, D = !1; - this.nB = function() { - function a() { - var c = Date.now() - b; - C.css("opacity", h.Xt(c, k, r)); - c < r ? window.requestAnimationFrame(a) : C.css("opacity", k) - } - D = !0; - var b = Date.now(); - C.css("opacity", 0); - C.css("display", - "block"); - window.requestAnimationFrame(a) - }; - this.oB = function() { - function a() { - var c = Date.now() - b; - C.css("opacity", k - h.Xt(c, k, r)); - c < r ? window.requestAnimationFrame(a) : (C.css("opacity", 0), C.css("display", "none"), D = !1) - } - if (D) { - var b = Date.now(); - window.requestAnimationFrame(a) - } - }; - var x = !1, - B = 15, - E = null, - I = null, - F = 1, - G = !1, - H = n.CF || 1 - }; - l.subscribe(l.C.rl, function(b) { - var c = b ? a.Fb : a.gd; - setTimeout(function() { - q.kb(c) - }, 1E3) - }); - return q - }(ya, Ga, rb, lc, mc, G, X, xa, M, K), - tb = function(a, d, c, b, f) { - return new function() { - this.$k = d.$k; - var e = - this; - f.subscribe(f.C.Cb, function() { - e.dv = c.ca(b.Cr); - e.fC = c.ca(b.Dr); - e.eC = [{ - name: c.ca(b.Br), - link: d.$k - }] - }); - this.nu = function(b, c, d, n) { - if (a.fy) f.na(f.C.bs, b, c, d); - else { - var q = { - method: "feed" - }; - q.name = e.fC; - q.caption = b; - q.description = c; - q.link = e.$k; - q.picture = d; - q.actions = e.eC; - FB.ui(q, n) - } - } - } - }(X, K, T, F, M, Qa), - nc = function(a, d, c, b, f, e, g, h, l, n) { - return new function() { - function c(a, b, d, e, f, g, h) { - a.save(); - a.setTransform(1, 0, 0, 1, 0, 0); - a.clearRect(0, 0, a.canvas.width, a.canvas.height); - a.restore(); - a.save(); - a.translate(e, f); - a.scale(b, - d); - a.save(); - a.beginPath(); - a.moveTo(116.1, 38.3); - a.bezierCurveTo(117.2, 37.9, 118.2, 37.4, 119, 36.8); - a.lineTo(119.5, 35.6); - a.lineTo(123.3, 21.1); - a.bezierCurveTo(124.5, 18.2, 126.8, 14.6, 130.1, 10.3); - a.bezierCurveTo(129.9, 15.3, 133.6, 18.2, 141.3, 19); - a.bezierCurveTo(138.9, 19.1, 136.7, 19.9, 134.8, 21.5); - a.bezierCurveTo(132.4, 23.5, 130.7, 25.2, 129.7, 26.8); - a.bezierCurveTo(128.9, 28.3, 127.9, 30.7, 126.7, 33.8); - a.lineTo(126.4, 36.8); - a.lineTo(126.7, 37.7); - a.lineTo(128.6, 38.7); - a.bezierCurveTo(124.4, 37.5, 120.2, 37.4, 116.1, 38.3); - a.closePath(); - a.moveTo(241.8, 203.6); - a.bezierCurveTo(241.6, 202.9, 241.1, 202.2, 240.5, 201.5); - a.lineTo(214.2, 185.6); - a.bezierCurveTo(212.8, 190, 210.9, 194.2, 208.4, 198.1); - a.lineTo(208.3, 198); - a.lineTo(209.4, 192.8); - a.lineTo(211, 183.6); - a.lineTo(211.2, 182.6); - a.lineTo(212.8, 173.3); - a.bezierCurveTo(212.3, 176, 211.3, 179, 210, 182.1); - a.bezierCurveTo(209.9, 182.4, 209.8, 182.6, 209.7, 182.8); - a.bezierCurveTo(208.6, 185.2, 207.3, 187.8, 205.8, 190.5); - a.bezierCurveTo(203.4, 194.6, 200.9, 197.9, 198.1, 200.4); - a.bezierCurveTo(198.7, 201.8, 199, 203.2, 199.2, - 204.7); - a.bezierCurveTo(199.2, 204.8, 199.2, 204.9, 199.2, 205); - a.bezierCurveTo(199.5, 207.9, 199.6, 209.6, 199.7, 210.2); - a.bezierCurveTo(200, 211.2, 200.1, 212, 200.2, 212.5); - a.lineTo(199.6, 207.8); - a.bezierCurveTo(201.8, 213.8, 203.3, 218.7, 204, 222.5); - a.bezierCurveTo(205.3, 222.4, 206.5, 222.4, 207.7, 222.3); - a.bezierCurveTo(213.4, 222, 218.9, 221.9, 224.3, 222.1); - a.bezierCurveTo(227.5, 222.5, 230.1, 222.1, 232.3, 221.1); - a.bezierCurveTo(232.8, 220.7, 233.4, 220.2, 233.9, 219.6); - a.bezierCurveTo(235.2, 218.1, 236.5, 216.5, 237.8, 215); - a.bezierCurveTo(239.1, - 213.3, 240.1, 211.5, 240.9, 209.6); - a.bezierCurveTo(241.8, 207.4, 242.1, 205.4, 241.8, 203.6); - a.closePath(); - a.moveTo(148.8, 222.8); - a.bezierCurveTo(139.8, 224.7, 129.5, 225.7, 117.8, 225.9); - a.bezierCurveTo(109.6, 226, 101.7, 225.5, 94.3, 224.3); - a.bezierCurveTo(94.3, 224.9, 94.4, 225.6, 94.4, 226.2); - a.bezierCurveTo(94.4, 228.1, 94.3, 230, 94, 232); - a.lineTo(93.8, 233); - a.bezierCurveTo(103.6, 234.6, 113.4, 235.1, 123.2, 234.4); - a.bezierCurveTo(132.2, 234.4, 141, 233.2, 149.5, 231); - a.bezierCurveTo(149.4, 230.6, 149.4, 230.3, 149.4, 230); - a.bezierCurveTo(149, - 227.6, 148.9, 225.2, 148.8, 222.8); - a.closePath(); - a.moveTo(196.6, 153.6); - a.lineTo(194.5, 152.6); - a.bezierCurveTo(194.1, 152.8, 193.8, 153, 193.4, 153.2); - a.bezierCurveTo(192.6, 153.8, 191.7, 154.5, 191, 155.2); - a.lineTo(190.2, 155.8); - a.bezierCurveTo(186.6, 158.8, 183.8, 160.7, 182, 161.5); - a.bezierCurveTo(182, 162.2, 181.4, 164, 180.2, 166.7); - a.bezierCurveTo(183.2, 164.8, 186.2, 162.7, 189.3, 160.6); - a.bezierCurveTo(192.6, 158.2, 195.6, 155.9, 198.4, 153.8); - a.bezierCurveTo(197.6, 153.8, 197, 153.7, 196.6, 153.6); - a.closePath(); - a.moveTo(121.1, 189); - a.bezierCurveTo(128, 188.9, 134.8, 188, 141.7, 186); - a.bezierCurveTo(141.3, 185.9, 141, 185.7, 140.7, 185.6); - a.bezierCurveTo(136.2, 183.2, 133, 181.8, 131.3, 181.4); - a.bezierCurveTo(128.8, 181.8, 125.7, 181.8, 121.9, 181.4); - a.bezierCurveTo(118.1, 181, 114, 180.5, 109.4, 179.7); - a.lineTo(109.3, 179.7); - a.bezierCurveTo(108.3, 180.9, 106.5, 182.5, 103.8, 184.6); - a.bezierCurveTo(103.6, 184.7, 103.4, 184.9, 103.2, 185); - a.lineTo(102.1, 185.9); - a.lineTo(102.9, 186.1); - a.bezierCurveTo(110.1, 188.1, 116.2, 189, 121.1, 189); - a.closePath(); - a.moveTo(63.1, 164.7); - a.lineTo(50.7, 157.9); - a.lineTo(45.8, 159.6); - a.lineTo(46.2, 159.9); - a.bezierCurveTo(46.3, 160, 46.4, 160.1, 46.5, 160.2); - a.bezierCurveTo(52, 164, 57.9, 167.5, 64.4, 170.9); - a.lineTo(65.5, 171.5); - a.lineTo(65.2, 170.7); - a.bezierCurveTo(64, 168, 63.4, 166, 63.1, 164.7); - a.closePath(); - a.moveTo(36.5, 191.7); - a.bezierCurveTo(35.2, 189.5, 34, 187.3, 33, 185); - a.lineTo(33.1, 185.9); - a.lineTo(34, 192.4); - a.lineTo(31.3, 189.4); - a.bezierCurveTo(30.8, 188, 27.8, 189.3, 22.4, 193.3); - a.bezierCurveTo(16.9, 197.2, 13.7, 199.6, 12.7, 200.6); - a.bezierCurveTo(11.6, - 201.6, 10.2, 202.9, 8.4, 204.6); - a.bezierCurveTo(6.7, 206.1, 5.4, 207.3, 4.5, 208.2); - a.bezierCurveTo(3.6, 209, 3.2, 210.1, 3.3, 211.5); - a.bezierCurveTo(3.5, 212.9, 4, 214.8, 4.8, 217.3); - a.bezierCurveTo(5.6, 219.7, 6.5, 221.8, 7.4, 223.5); - a.bezierCurveTo(8.3, 225.2, 9.8, 226.4, 11.9, 227.1); - a.bezierCurveTo(13.9, 227.7, 15.9, 227.9, 17.8, 227.7); - a.bezierCurveTo(19.7, 227.5, 21.3, 227.4, 22.6, 227.4); - a.bezierCurveTo(24.5, 227.3, 26.4, 227.2, 28.4, 227.2); - a.bezierCurveTo(30.2, 227.2, 32, 227.2, 33.8, 227.2); - a.bezierCurveTo(35.8, 227.2, 37.7, 227.2, 39.7, - 227.2); - a.bezierCurveTo(41.2, 227.3, 42.9, 227.4, 44.5, 227.6); - a.bezierCurveTo(44.5, 225.9, 44.5, 223.5, 44.6, 220.3); - a.lineTo(44.6, 213.4); - a.lineTo(44.7, 207.6); - a.lineTo(45.1, 204.8); - a.lineTo(45.4, 203); - a.bezierCurveTo(45.4, 202.9, 45.4, 202.8, 45.5, 202.6); - a.bezierCurveTo(43.8, 201.2, 42.3, 199.7, 40.9, 198.1); - a.bezierCurveTo(39.3, 196, 37.9, 193.8, 36.5, 191.7); - a.closePath(); - a.fillStyle = "rgb(100, 150, 40)"; - a.fill(); - a.beginPath(); - a.moveTo(212.6, 151.5); - a.bezierCurveTo(213.3, 158.8, 213.4, 166.1, 212.8, 173.3); - a.bezierCurveTo(212.3, - 176, 211.3, 179, 210, 182.2); - a.bezierCurveTo(209.9, 182.4, 209.8, 182.6, 209.7, 182.8); - a.bezierCurveTo(208.6, 185.3, 207.3, 187.8, 205.8, 190.5); - a.bezierCurveTo(203.4, 194.7, 200.9, 198, 198.1, 200.5); - a.bezierCurveTo(198.7, 201.8, 199, 203.3, 199.2, 204.7); - a.bezierCurveTo(199.2, 204.8, 199.2, 204.9, 199.2, 205.1); - a.bezierCurveTo(199.5, 207.9, 199.6, 209.7, 199.7, 210.2); - a.bezierCurveTo(199.9, 214.2, 200, 218.2, 199.9, 222.4); - a.bezierCurveTo(199.9, 222.5, 199.9, 222.7, 199.9, 222.9); - a.bezierCurveTo(199.9, 225, 199.7, 227, 199.4, 228.8); - a.bezierCurveTo(199.1, - 230.5, 198.7, 232, 198.3, 233.5); - a.lineTo(196.7, 235.2); - a.bezierCurveTo(196.6, 235.3, 196.5, 235.4, 196.3, 235.5); - a.bezierCurveTo(195.2, 236.4, 193.3, 237.6, 190.7, 239.2); - a.bezierCurveTo(188.1, 240.8, 184.5, 241.7, 179.9, 242.1); - a.bezierCurveTo(175.3, 242.4, 172, 242.5, 169.8, 242.3); - a.bezierCurveTo(167.8, 242.2, 165.5, 241.7, 162.9, 240.8); - a.bezierCurveTo(160.4, 240, 158, 238, 155.6, 234.8); - a.bezierCurveTo(155.4, 234.6, 155.3, 234.4, 155.1, 234.2); - a.bezierCurveTo(154.3, 233, 153.5, 231.6, 152.8, 230.1); - a.bezierCurveTo(151.9, 227.9, 151.2, 225.3, - 150.7, 222.4); - a.bezierCurveTo(150.7, 222.2, 150.6, 222.1, 150.6, 221.9); - a.bezierCurveTo(149.7, 216.4, 149.3, 213.1, 149.2, 212); - a.bezierCurveTo(148.8, 215.6, 148.6, 219.2, 148.8, 222.8); - a.bezierCurveTo(139.8, 224.7, 129.5, 225.7, 117.8, 225.9); - a.bezierCurveTo(109.6, 226, 101.7, 225.5, 94.3, 224.3); - a.bezierCurveTo(94.2, 220.8, 94, 217.1, 93.8, 213.5); - a.bezierCurveTo(93.8, 214.9, 93.7, 216, 93.6, 216.6); - a.bezierCurveTo(93.5, 217.2, 93.5, 217.7, 93.4, 218.1); - a.bezierCurveTo(93.4, 218.5, 93.2, 219.4, 92.8, 220.9); - a.bezierCurveTo(92.6, 222, 92.3, 223, - 92, 224); - a.bezierCurveTo(91.9, 224.3, 91.8, 224.6, 91.7, 224.8); - a.bezierCurveTo(91.3, 226, 90.8, 227.2, 90.2, 228.3); - a.bezierCurveTo(89.9, 229, 89.5, 229.7, 89.2, 230.4); - a.bezierCurveTo(88.8, 230.9, 88.4, 231.4, 88, 231.9); - a.bezierCurveTo(87.5, 232.6, 86.9, 233.2, 86.2, 233.7); - a.bezierCurveTo(85.8, 234.1, 85.4, 234.5, 84.9, 234.9); - a.bezierCurveTo(83.9, 235.6, 82.8, 236.2, 81.6, 236.7); - a.bezierCurveTo(80.2, 237.3, 78.7, 237.8, 77.1, 238.2); - a.bezierCurveTo(74.1, 238.8, 71, 239.1, 67.8, 239.1); - a.bezierCurveTo(60.2, 239.2, 53.4, 237.3, 47.4, 233.3); - a.bezierCurveTo(45.9, - 232.5, 45, 231.7, 44.9, 230.9); - a.lineTo(44.6, 229.2); - a.bezierCurveTo(44.6, 228.8, 44.5, 228.3, 44.5, 227.6); - a.bezierCurveTo(44.5, 226, 44.5, 223.5, 44.6, 220.3); - a.lineTo(44.6, 213.4); - a.lineTo(44.7, 207.6); - a.lineTo(45.1, 204.9); - a.lineTo(45.4, 203); - a.bezierCurveTo(45.4, 202.9, 45.4, 202.8, 45.5, 202.7); - a.bezierCurveTo(43.8, 201.2, 42.3, 199.7, 40.9, 198.2); - a.bezierCurveTo(39.3, 196, 37.9, 193.9, 36.5, 191.7); - a.bezierCurveTo(35.2, 189.6, 34, 187.4, 33, 185.1); - a.lineTo(32.7, 183.5); - a.bezierCurveTo(31.8, 176.3, 31, 168.9, 30.3, 161.3); - a.bezierCurveTo(30.3, - 161, 30.3, 160.7, 30.2, 160.4); - a.bezierCurveTo(34.5, 162, 39, 162.1, 43.8, 160.4); - a.bezierCurveTo(44.4, 160.2, 45.1, 159.9, 45.8, 159.6); - a.lineTo(46.2, 159.9); - a.bezierCurveTo(46.3, 160, 46.4, 160.1, 46.5, 160.2); - a.bezierCurveTo(52, 164, 57.9, 167.6, 64.4, 170.9); - a.lineTo(65.5, 171.5); - a.bezierCurveTo(66.9, 174.7, 68.3, 177.8, 69.8, 180.9); - a.bezierCurveTo(71.4, 184.1, 73.4, 187, 76, 189.7); - a.bezierCurveTo(78.5, 192.3, 81.7, 193.4, 85.5, 193.1); - a.bezierCurveTo(89.2, 192.6, 92.8, 191.5, 96.3, 189.7); - a.bezierCurveTo(98.5, 188.7, 100.4, 187.4, 102.1, 185.9); - a.lineTo(102.9, 186.2); - a.bezierCurveTo(110.1, 188.1, 116.2, 189.1, 121.1, 189.1); - a.bezierCurveTo(128, 189, 134.8, 188, 141.7, 186.1); - a.bezierCurveTo(142.1, 186.3, 142.6, 186.5, 143, 186.7); - a.bezierCurveTo(143.5, 186.9, 144, 187.1, 144.5, 187.3); - a.bezierCurveTo(147.1, 188.4, 149.8, 189.4, 152.5, 190.3); - a.bezierCurveTo(155.3, 191.3, 158.2, 191.8, 161.2, 191.8); - a.bezierCurveTo(164.2, 191.8, 166.7, 190.7, 168.6, 188.6); - a.bezierCurveTo(170, 187.2, 171.1, 185.7, 172, 184.1); - a.bezierCurveTo(173.4, 181.7, 174.7, 179.2, 175.9, 176.6); - a.bezierCurveTo(177.1, - 174, 178.3, 171.4, 179.4, 168.8); - a.bezierCurveTo(179.7, 168, 180, 167.4, 180.2, 166.8); - a.bezierCurveTo(183.2, 164.8, 186.2, 162.8, 189.3, 160.6); - a.bezierCurveTo(192.6, 158.2, 195.6, 156, 198.4, 153.8); - a.bezierCurveTo(199.3, 153.8, 200.6, 153.8, 202.1, 153.6); - a.bezierCurveTo(204.6, 153.5, 207, 153.1, 209.4, 152.5); - a.bezierCurveTo(210.5, 152.2, 211.6, 151.8, 212.6, 151.4); - a.bezierCurveTo(212.6, 151.4, 212.6, 151.4, 212.6, 151.5); - a.closePath(); - a.moveTo(124.3, 61); - a.bezierCurveTo(124.5, 61.3, 124.8, 61.6, 125, 61.9); - a.bezierCurveTo(133.4, 55.3, 142.8, - 50.4, 153.1, 47.4); - a.bezierCurveTo(149.8, 46, 146.3, 44.6, 142.9, 43.3); - a.bezierCurveTo(139.9, 42.5, 137.6, 41.7, 135.8, 41.1); - a.bezierCurveTo(134.1, 40.4, 132.7, 40, 131.6, 39.8); - a.bezierCurveTo(130.5, 39.6, 129.5, 39.2, 128.6, 38.8); - a.bezierCurveTo(124.4, 37.6, 120.2, 37.4, 116.1, 38.4); - a.bezierCurveTo(115.7, 38.5, 115.2, 38.6, 114.8, 38.7); - a.bezierCurveTo(114.6, 38.8, 114.2, 38.9, 113.7, 39); - a.lineTo(106, 40.5); - a.bezierCurveTo(102.5, 41.1, 99.2, 41.9, 95.9, 42.8); - a.bezierCurveTo(106.9, 45.7, 116.3, 51.7, 124.3, 61); - a.closePath(); - a.moveTo(141.3, - 19); - a.lineTo(143.4, 19); - a.lineTo(144.6, 19.1); - a.bezierCurveTo(147.1, 19.4, 148.8, 19.2, 149.7, 18.6); - a.bezierCurveTo(151.7, 17.6, 152.9, 16, 153.3, 13.7); - a.bezierCurveTo(153.7, 12.1, 153.7, 10.4, 153.5, 8.6); - a.bezierCurveTo(152.9, 5.3, 150.9, 3.4, 147.6, 3.1); - a.bezierCurveTo(141, 2.4, 135.2, 4.8, 130.1, 10.3); - a.bezierCurveTo(129.9, 15.3, 133.6, 18.2, 141.3, 19); - a.closePath(); - a.moveTo(221, 104); - a.bezierCurveTo(220.8, 103.3, 220.5, 102.6, 220.2, 101.9); - a.bezierCurveTo(219.3, 99.7, 218.2, 97.5, 216.9, 95.4); - a.bezierCurveTo(213.3, 89.7, 209.2, 84.5, - 204.4, 79.7); - a.bezierCurveTo(205.4, 83, 205.9, 86.5, 205.9, 90.2); - a.bezierCurveTo(205.8, 91.2, 205.8, 92.2, 205.7, 93.2); - a.bezierCurveTo(205.5, 95.7, 205.1, 98.2, 204.6, 100.6); - a.bezierCurveTo(204.9, 102.3, 205.3, 104.3, 205.7, 106.6); - a.lineTo(205.7, 106.6); - a.bezierCurveTo(205.2, 104.4, 204.9, 102.5, 204.6, 101); - a.bezierCurveTo(204.2, 103, 203.6, 104.9, 203, 106.9); - a.lineTo(202.9, 106.9); - a.bezierCurveTo(200.6, 113.5, 197.1, 119.7, 192.3, 125.5); - a.bezierCurveTo(188.4, 130, 183.6, 133.5, 177.8, 135.9); - a.bezierCurveTo(169.7, 139.6, 161.7, 140.9, - 153.7, 139.7); - a.bezierCurveTo(147.7, 138.6, 142.2, 136.2, 137.2, 132.7); - a.bezierCurveTo(131.7, 128.8, 126.4, 125, 121.3, 121.5); - a.lineTo(120.9, 121.3); - a.lineTo(120.6, 121.5); - a.bezierCurveTo(113.9, 128, 106.4, 133.2, 98, 137.3); - a.bezierCurveTo(83.7, 144, 70, 142.9, 56.8, 134); - a.bezierCurveTo(50.6, 130, 45.8, 125.2, 42.5, 119.7); - a.bezierCurveTo(38.6, 113.5, 36.7, 106.4, 36.6, 98.3); - a.bezierCurveTo(36.6, 93.4, 37.1, 88.7, 38.2, 84.1); - a.bezierCurveTo(37.7, 84.8, 37.1, 85.5, 36.6, 86.2); - a.bezierCurveTo(29.8, 95.7, 24.4, 105.8, 20.3, 116.5); - a.bezierCurveTo(20.4, - 116.4, 20.4, 117, 20.3, 118.2); - a.bezierCurveTo(20.2, 119.7, 20.7, 121.1, 21.6, 122.5); - a.bezierCurveTo(22.2, 123.4, 23.3, 125, 25, 127.3); - a.lineTo(26.2, 129.3); - a.bezierCurveTo(26.3, 129.4, 26.4, 129.6, 26.5, 129.7); - a.bezierCurveTo(27.9, 131.7, 29.4, 133.7, 31.1, 135.6); - a.bezierCurveTo(34, 138.9, 37.4, 142, 41.1, 144.9); - a.bezierCurveTo(44.1, 147.2, 47.2, 149.4, 50.5, 151.6); - a.bezierCurveTo(52.5, 152.9, 54.7, 154.4, 57, 155.8); - a.bezierCurveTo(60.8, 158.3, 65.2, 160.8, 70.1, 163.1); - a.bezierCurveTo(71, 163.6, 72, 164, 72.9, 164.4); - a.bezierCurveTo(79.8, - 167.5, 86.9, 170.1, 94.1, 172.2); - a.bezierCurveTo(101.5, 174.4, 109, 175.9, 116.7, 176.5); - a.bezierCurveTo(122.5, 177.2, 128.4, 177.1, 134.5, 176.3); - a.bezierCurveTo(141.6, 175.3, 147.4, 174, 152, 172.4); - a.bezierCurveTo(156.6, 170.7, 159.7, 169.4, 161.4, 168.4); - a.lineTo(181.4, 156.2); - a.bezierCurveTo(187.7, 152, 192.6, 148.2, 195.9, 144.6); - a.lineTo(202.9, 136.6); - a.lineTo(209.8, 126.7); - a.lineTo(211.7, 124); - a.lineTo(214.9, 119.9); - a.lineTo(216.7, 117.5); - a.bezierCurveTo(217.8, 116.3, 218.7, 115.1, 219.4, 114); - a.bezierCurveTo(219.8, 113.5, 220.1, - 113, 220.3, 112.5); - a.bezierCurveTo(220.8, 111.5, 221.1, 110.5, 221.3, 109.4); - a.bezierCurveTo(221.5, 108.5, 221.6, 107.6, 221.6, 106.7); - a.bezierCurveTo(221.6, 105.8, 221.4, 104.9, 221, 104); - a.closePath(); - a.fillStyle = "rgb(153, 205, 0)"; - a.fill(); - a.beginPath(); - a.moveTo(245.5, 203.6); - a.bezierCurveTo(245.4, 202.9, 245.3, 202.4, 245.2, 202); - a.bezierCurveTo(244.7, 200.9, 244.1, 200.1, 243.5, 199.7); - a.bezierCurveTo(242.9, 199.2, 241.2, 198.1, 238.5, 196.2); - a.bezierCurveTo(238, 195.9, 237.5, 195.5, 237, 195.2); - a.bezierCurveTo(234.3, 193.5, 230.8, - 191.6, 226.3, 189.3); - a.bezierCurveTo(223, 187.4, 219.4, 185.7, 215.7, 184.2); - a.lineTo(214.7, 183.8); - a.bezierCurveTo(216, 179.3, 216.8, 174.4, 217, 169.3); - a.bezierCurveTo(217.3, 162.5, 217.5, 155.7, 217.3, 148.8); - a.bezierCurveTo(217.5, 148.7, 217.7, 148.6, 217.9, 148.5); - a.bezierCurveTo(220.1, 147, 221.6, 145.1, 222.5, 142.8); - a.bezierCurveTo(223.5, 140.2, 224.2, 137.4, 224.6, 134.6); - a.bezierCurveTo(224.9, 132.2, 225, 129.8, 225.1, 127.3); - a.bezierCurveTo(225.1, 124.8, 225.1, 122.4, 224.8, 119.9); - a.bezierCurveTo(224.8, 119.4, 224.7, 119, 224.6, 118.6); - a.lineTo(224.5, 115.9); - a.bezierCurveTo(225.1, 114.1, 225.4, 111.8, 225.6, 108.9); - a.bezierCurveTo(225.7, 107.4, 225.5, 105.8, 224.9, 104.3); - a.bezierCurveTo(220.3, 91.4, 212.2, 80.3, 200.6, 71); - a.bezierCurveTo(195.8, 62.6, 189, 55.8, 180.1, 50.6); - a.bezierCurveTo(172.6, 46.4, 165.2, 45, 157.9, 46.2); - a.bezierCurveTo(155.1, 45, 152.3, 43.9, 149.4, 42.8); - a.bezierCurveTo(148.1, 42.3, 146.8, 41.9, 145.5, 41.4); - a.bezierCurveTo(143.2, 40.6, 140.8, 39.9, 138.4, 39.2); - a.bezierCurveTo(136.1, 38.4, 133.8, 37.6, 131.6, 36.7); - a.bezierCurveTo(131.1, 36.6, 130.8, - 36.3, 130.4, 36); - a.bezierCurveTo(130.1, 35.6, 129.9, 35.3, 129.8, 35); - a.bezierCurveTo(129.8, 34.3, 129.9, 33.8, 130.1, 33.5); - a.bezierCurveTo(130.9, 31.6, 132.7, 30, 135.7, 29); - a.bezierCurveTo(137.8, 27.6, 140.6, 26.5, 144, 25.5); - a.bezierCurveTo(152.1, 23, 156.6, 19.2, 157.4, 13.9); - a.bezierCurveTo(158.5, 7.2, 155.6, 2.8, 148.7, 0.7); - a.bezierCurveTo(141.1, -1.7, 133.2, 2, 125, 11.9); - a.bezierCurveTo(121.9, 15.6, 120.1, 19, 119.4, 22.1); - a.lineTo(118.6, 25.4); - a.bezierCurveTo(118.2, 30, 117.2, 33, 115.7, 34.5); - a.bezierCurveTo(114.8, 35.3, 113.3, 36, 111.2, - 36.6); - a.bezierCurveTo(104.1, 37.5, 97.2, 39.2, 90.6, 41.6); - a.bezierCurveTo(89.4, 41.4, 88.3, 41.3, 87.1, 41.1); - a.bezierCurveTo(71.9, 41.6, 59.7, 47.8, 50.4, 59.6); - a.bezierCurveTo(46, 64.9, 42.7, 70.6, 40.4, 76.7); - a.bezierCurveTo(39.8, 77.4, 39.2, 78.1, 38.5, 78.8); - a.bezierCurveTo(29.4, 89.5, 22.3, 101, 17.2, 113.3); - a.bezierCurveTo(16.8, 114.3, 16.4, 115.3, 16.1, 116.3); - a.bezierCurveTo(15.8, 117, 15.6, 117.6, 15.5, 118.3); - a.bezierCurveTo(15.4, 118.7, 15.3, 119.1, 15.3, 119.5); - a.bezierCurveTo(15.2, 120.4, 15.1, 121.2, 15.2, 122.1); - a.bezierCurveTo(15.5, - 124.5, 16.4, 127.1, 18, 129.6); - a.bezierCurveTo(18.5, 132, 18.6, 134.2, 18.3, 136); - a.bezierCurveTo(17.4, 144.5, 19.9, 151.6, 25.9, 157.5); - a.bezierCurveTo(25.9, 159.4, 26, 161.4, 26.1, 163.4); - a.bezierCurveTo(26.4, 169.1, 27.2, 175.1, 28.4, 181.4); - a.bezierCurveTo(28.7, 182.6, 28.9, 183.7, 29.2, 184.9); - a.bezierCurveTo(29.1, 184.9, 29, 185, 28.9, 185); - a.bezierCurveTo(25.6, 186.9, 22.7, 188.6, 20.2, 190.1); - a.bezierCurveTo(17.8, 191.7, 15.6, 193.1, 13.8, 194.4); - a.bezierCurveTo(12.5, 195.5, 11.1, 196.7, 9.6, 197.9); - a.bezierCurveTo(7.9, 199, 6.3, 200.4, 4.9, - 201.9); - a.bezierCurveTo(3.7, 203, 2.7, 204.1, 1.7, 205); - a.bezierCurveTo(0.7, 206, 0.2, 207.4, 0, 209.2); - a.bezierCurveTo(-0.1, 211, 0, 212.5, 0.2, 213.8); - a.bezierCurveTo(0.4, 215, 0.9, 217, 1.5, 219.7); - a.bezierCurveTo(2.1, 222.4, 3, 224.6, 4, 226.5); - a.bezierCurveTo(5.1, 228.3, 6.7, 229.7, 9, 230.6); - a.bezierCurveTo(9.6, 230.8, 10.3, 231, 11.1, 231.2); - a.bezierCurveTo(14.9, 231.1, 18.6, 231.1, 22.4, 231.2); - a.bezierCurveTo(24.2, 231.3, 26, 231.5, 27.8, 231.7); - a.bezierCurveTo(29.4, 231.8, 31, 232, 32.7, 232.2); - a.bezierCurveTo(34.1, 232.3, 35.6, 232.5, 37.1, - 232.6); - a.bezierCurveTo(38.4, 232.7, 39.8, 232.8, 41.2, 232.9); - a.bezierCurveTo(41.5, 232.9, 41.8, 233, 42.1, 233); - a.lineTo(42.2, 233.2); - a.bezierCurveTo(42.4, 233.8, 42.8, 234.4, 43.1, 234.8); - a.bezierCurveTo(48.8, 238.6, 55, 240.9, 61.6, 241.5); - a.bezierCurveTo(68.7, 242.6, 75.6, 242.3, 82.4, 240.5); - a.bezierCurveTo(82.5, 240.5, 82.5, 240.5, 82.6, 240.5); - a.bezierCurveTo(84, 240.2, 85.4, 239.9, 86.7, 239.6); - a.bezierCurveTo(88.1, 239.3, 89.3, 238.9, 90.4, 238.4); - a.bezierCurveTo(90.9, 238.1, 91.4, 237.8, 91.8, 237.3); - a.bezierCurveTo(104.5, 241.2, 118.7, - 242, 134.5, 239.7); - a.bezierCurveTo(139.8, 238.9, 145.2, 237.5, 150.9, 235.6); - a.bezierCurveTo(151.5, 237, 152.2, 238.2, 153.1, 239.5); - a.bezierCurveTo(153.8, 240.1, 154.6, 240.7, 155.6, 241.3); - a.bezierCurveTo(156.9, 242.2, 158.4, 242.9, 160.2, 243.5); - a.bezierCurveTo(161.9, 243.8, 163.7, 244.1, 165.5, 244.5); - a.bezierCurveTo(171.9, 244.8, 178, 244.7, 183.5, 244.1); - a.bezierCurveTo(188, 243.7, 192.3, 242.6, 196.2, 240.7); - a.bezierCurveTo(197, 240.3, 197.6, 239.9, 198.3, 239.5); - a.bezierCurveTo(200, 238.4, 201.4, 237.4, 202.3, 236.5); - a.bezierCurveTo(203.2, - 235.6, 203.9, 233.1, 204.5, 229.2); - a.bezierCurveTo(204.5, 229, 204.6, 228.7, 204.6, 228.3); - a.lineTo(223.4, 226.8); - a.bezierCurveTo(225.5, 226.6, 227.6, 226.4, 229.8, 226.3); - a.bezierCurveTo(232, 226.2, 233.8, 225.5, 235.2, 224.1); - a.bezierCurveTo(237, 222.5, 238.5, 220.8, 239.4, 219.1); - a.bezierCurveTo(240.4, 217.5, 241.3, 215.9, 242.2, 214.4); - a.bezierCurveTo(243, 212.9, 243.6, 211.6, 244.1, 210.5); - a.bezierCurveTo(244.6, 209.4, 244.9, 208.1, 245.2, 206.7); - a.bezierCurveTo(245.4, 205.2, 245.5, 204.2, 245.5, 203.6); - a.closePath(); - a.moveTo(219.9, 140.2); - a.bezierCurveTo(219.5, 141.6, 218.8, 143, 218, 144.5); - a.bezierCurveTo(217.8, 144.9, 217.6, 145.2, 217.3, 145.6); - a.bezierCurveTo(216.7, 146.3, 215.9, 146.9, 214.9, 147.4); - a.bezierCurveTo(214.1, 147.8, 213.2, 148.2, 212.3, 148.4); - a.bezierCurveTo(210.2, 149.1, 208, 149.5, 205.6, 149.5); - a.bezierCurveTo(204.5, 149.5, 203.4, 149.4, 202.3, 149.3); - a.bezierCurveTo(200.6, 148.9, 199.7, 148, 199.8, 146.7); - a.lineTo(200.7, 145.2); - a.bezierCurveTo(201.3, 144.3, 201.8, 143.4, 202.4, 142.5); - a.bezierCurveTo(202.7, 141.9, 203, 141.3, 203.4, 140.8); - a.bezierCurveTo(203.8, - 140, 204.2, 139.2, 204.7, 138.5); - a.bezierCurveTo(205.3, 137.7, 205.9, 136.8, 206.5, 136); - a.bezierCurveTo(206.9, 135.5, 207.3, 135, 207.6, 134.5); - a.bezierCurveTo(208.3, 133.7, 209, 132.8, 209.7, 132); - a.bezierCurveTo(209.9, 131.7, 210.2, 131.4, 210.5, 131); - a.bezierCurveTo(211, 130.4, 211.5, 129.9, 212.1, 129.3); - a.bezierCurveTo(212.6, 128.8, 213.1, 128.3, 213.6, 127.8); - a.bezierCurveTo(214.1, 127.4, 214.6, 127, 215.1, 126.6); - a.bezierCurveTo(215.3, 126.4, 215.5, 126.3, 215.6, 126.2); - a.bezierCurveTo(216.8, 125.4, 217.9, 124.8, 219, 124.5); - a.lineTo(219.3, - 125.4); - a.bezierCurveTo(220, 127.9, 220.5, 130.6, 220.8, 133.3); - a.bezierCurveTo(221, 135.7, 220.8, 138, 219.9, 140.2); - a.closePath(); - a.moveTo(106, 40.4); - a.lineTo(113.7, 38.9); - a.bezierCurveTo(114.2, 38.8, 114.6, 38.7, 114.8, 38.6); - a.bezierCurveTo(115.2, 38.6, 115.7, 38.4, 116.1, 38.3); - a.bezierCurveTo(117.2, 37.9, 118.2, 37.4, 119, 36.8); - a.lineTo(119.5, 35.6); - a.lineTo(123.3, 21.1); - a.bezierCurveTo(124.5, 18.2, 126.8, 14.6, 130.1, 10.3); - a.bezierCurveTo(135.2, 4.8, 141, 2.4, 147.6, 3.1); - a.bezierCurveTo(150.9, 3.4, 152.9, 5.2, 153.5, 8.5); - a.bezierCurveTo(153.7, - 10.3, 153.7, 12, 153.3, 13.7); - a.bezierCurveTo(152.9, 15.9, 151.7, 17.6, 149.7, 18.6); - a.bezierCurveTo(148.8, 19.2, 147.1, 19.4, 144.6, 19.1); - a.lineTo(143.4, 19); - a.lineTo(141.3, 19); - a.bezierCurveTo(138.9, 19.1, 136.7, 19.9, 134.8, 21.5); - a.bezierCurveTo(132.4, 23.5, 130.7, 25.2, 129.7, 26.8); - a.bezierCurveTo(128.9, 28.3, 127.9, 30.7, 126.7, 33.8); - a.lineTo(126.4, 36.8); - a.lineTo(126.7, 37.7); - a.lineTo(128.6, 38.7); - a.bezierCurveTo(129.5, 39.2, 130.5, 39.5, 131.6, 39.8); - a.bezierCurveTo(132.7, 40, 134.1, 40.4, 135.8, 41); - a.bezierCurveTo(137.6, 41.7, 139.9, - 42.4, 142.9, 43.3); - a.bezierCurveTo(146.3, 44.6, 149.8, 46, 153.1, 47.4); - a.bezierCurveTo(142.8, 50.4, 133.4, 55.2, 125, 61.8); - a.bezierCurveTo(124.8, 61.6, 124.5, 61.3, 124.3, 61); - a.bezierCurveTo(116.3, 51.7, 106.9, 45.6, 95.9, 42.7); - a.bezierCurveTo(99.2, 41.9, 102.5, 41.1, 106, 40.4); - a.closePath(); - a.moveTo(41.7, 90.1); - a.bezierCurveTo(42.4, 84.8, 43.6, 79.9, 45.5, 75.3); - a.bezierCurveTo(46.5, 72.7, 47.7, 70.1, 49.2, 67.7); - a.bezierCurveTo(52.7, 61.9, 57.3, 56.8, 63, 52.3); - a.bezierCurveTo(70.4, 46.7, 77.8, 43.8, 85.3, 43.7); - a.bezierCurveTo(87.3, 43.6, - 89.3, 43.8, 91.3, 44.1); - a.bezierCurveTo(95.6, 44.9, 100, 46.5, 104.4, 49.1); - a.bezierCurveTo(111.9, 53.4, 117.3, 59.5, 120.8, 67.4); - a.lineTo(124.2, 73.8); - a.lineTo(124.6, 73.8); - a.bezierCurveTo(124.7, 73.5, 124.9, 73.2, 125, 72.9); - a.bezierCurveTo(126.3, 71.1, 127.5, 69.4, 128.6, 67.7); - a.bezierCurveTo(136, 57.6, 146.1, 51.7, 158.7, 50.1); - a.bezierCurveTo(158.9, 50.1, 159.1, 50.1, 159.2, 50.1); - a.bezierCurveTo(162.5, 50.1, 165.7, 50.5, 168.8, 51.2); - a.bezierCurveTo(176.5, 53, 183.4, 56.7, 189.4, 62.4); - a.bezierCurveTo(190, 63, 190.6, 63.5, 191.1, 64.1); - a.bezierCurveTo(193.9, - 67, 196.1, 70.1, 197.8, 73.5); - a.bezierCurveTo(201.1, 79.7, 202.5, 86.8, 202.2, 94.7); - a.bezierCurveTo(202, 99, 201.3, 103.2, 199.9, 107.1); - a.bezierCurveTo(197.5, 114.2, 193.1, 120.7, 186.7, 126.4); - a.bezierCurveTo(177.6, 134.4, 168.3, 137.9, 158.5, 137); - a.bezierCurveTo(153.1, 136.4, 149.4, 135.6, 147.3, 134.6); - a.bezierCurveTo(137.6, 129.8, 130.4, 122.6, 125.6, 113); - a.bezierCurveTo(124.9, 111.7, 124.3, 110.4, 123.8, 109); - a.bezierCurveTo(123.3, 107.9, 122.9, 106.7, 122.6, 105.5); - a.bezierCurveTo(121.9, 106.9, 121.2, 108.3, 120.5, 109.6); - a.bezierCurveTo(119.7, - 111, 118.8, 112.4, 118, 113.7); - a.bezierCurveTo(110.3, 125.2, 100.6, 132.5, 88.9, 135.6); - a.bezierCurveTo(75.9, 139.1, 64.3, 136.3, 54.2, 127.3); - a.bezierCurveTo(51.5, 124.9, 49.2, 122.2, 47.4, 119.3); - a.bezierCurveTo(42.2, 111.4, 40.4, 101.7, 41.7, 90.1); - a.closePath(); - a.moveTo(20.3, 118.2); - a.bezierCurveTo(20.4, 117, 20.4, 116.4, 20.3, 116.5); - a.bezierCurveTo(24.4, 105.8, 29.8, 95.7, 36.6, 86.2); - a.bezierCurveTo(37.1, 85.5, 37.7, 84.8, 38.2, 84.1); - a.bezierCurveTo(37.1, 88.6, 36.6, 93.4, 36.6, 98.3); - a.bezierCurveTo(36.7, 106.3, 38.6, 113.5, 42.5, 119.7); - a.bezierCurveTo(45.8, 125.2, 50.6, 129.9, 56.8, 134); - a.bezierCurveTo(70, 142.9, 83.7, 143.9, 98, 137.2); - a.bezierCurveTo(106.4, 133.2, 113.9, 127.9, 120.6, 121.5); - a.lineTo(120.9, 121.3); - a.lineTo(121.3, 121.5); - a.bezierCurveTo(126.4, 125, 131.7, 128.7, 137.2, 132.7); - a.bezierCurveTo(142.2, 136.2, 147.7, 138.6, 153.7, 139.7); - a.bezierCurveTo(161.7, 140.8, 169.7, 139.6, 177.8, 135.9); - a.bezierCurveTo(183.6, 133.5, 188.4, 130, 192.3, 125.5); - a.bezierCurveTo(197.1, 119.7, 200.6, 113.5, 202.9, 106.8); - a.bezierCurveTo(203.6, 104.8, 204.2, 102.7, 204.6, 100.6); - a.bezierCurveTo(205.1, 98.2, 205.5, 95.7, 205.7, 93.2); - a.bezierCurveTo(205.8, 92.2, 205.8, 91.1, 205.9, 90.2); - a.bezierCurveTo(205.9, 86.5, 205.4, 83, 204.4, 79.6); - a.bezierCurveTo(209.2, 84.5, 213.3, 89.7, 216.9, 95.4); - a.bezierCurveTo(218.2, 97.5, 219.3, 99.6, 220.2, 101.8); - a.bezierCurveTo(220.5, 102.5, 220.8, 103.3, 221, 104); - a.bezierCurveTo(221.4, 104.9, 221.6, 105.7, 221.6, 106.6); - a.bezierCurveTo(221.6, 107.6, 221.5, 108.5, 221.3, 109.4); - a.bezierCurveTo(221.1, 110.4, 220.8, 111.5, 220.3, 112.5); - a.bezierCurveTo(220.1, 113, 219.8, 113.5, 219.4, - 114); - a.bezierCurveTo(218.7, 115.1, 217.8, 116.3, 216.7, 117.4); - a.lineTo(214.9, 119.9); - a.lineTo(211.7, 124); - a.lineTo(209.8, 126.7); - a.lineTo(202.9, 136.6); - a.lineTo(195.9, 144.6); - a.bezierCurveTo(192.6, 148.2, 187.7, 152, 181.4, 156.2); - a.lineTo(161.4, 168.4); - a.bezierCurveTo(159.7, 169.4, 156.6, 170.7, 152, 172.3); - a.bezierCurveTo(147.4, 173.9, 141.6, 175.3, 134.5, 176.2); - a.bezierCurveTo(128.4, 177.1, 122.5, 177.2, 116.7, 176.5); - a.bezierCurveTo(109, 175.8, 101.5, 174.4, 94.1, 172.2); - a.bezierCurveTo(86.9, 170, 79.8, 167.4, 72.9, 164.4); - a.bezierCurveTo(72, - 164, 71, 163.5, 70.1, 163.1); - a.bezierCurveTo(65.2, 160.7, 60.8, 158.3, 57, 155.8); - a.bezierCurveTo(54.7, 154.3, 52.5, 152.9, 50.5, 151.5); - a.bezierCurveTo(47.2, 149.4, 44.1, 147.1, 41.1, 144.8); - a.bezierCurveTo(37.4, 142, 34, 138.9, 31.1, 135.5); - a.bezierCurveTo(29.4, 133.7, 27.9, 131.7, 26.5, 129.7); - a.bezierCurveTo(26.4, 129.5, 26.3, 129.4, 26.2, 129.3); - a.lineTo(25, 127.3); - a.bezierCurveTo(23.3, 125, 22.2, 123.4, 21.6, 122.5); - a.bezierCurveTo(20.7, 121.1, 20.2, 119.7, 20.3, 118.2); - a.closePath(); - a.moveTo(177.9, 163.2); - a.lineTo(174.9, 169.8); - a.lineTo(174.7, - 170.3); - a.lineTo(174.4, 170.9); - a.bezierCurveTo(174, 172.1, 173.5, 173.3, 173.1, 174.5); - a.bezierCurveTo(172.2, 177.2, 171.1, 179.7, 169.6, 182.2); - a.bezierCurveTo(168.3, 184.5, 166.3, 186.1, 163.6, 187.2); - a.bezierCurveTo(160.6, 188.4, 157.5, 188.5, 154.4, 187.3); - a.bezierCurveTo(151.9, 186.4, 149.5, 185.5, 147.2, 184.7); - a.lineTo(146.7, 184.5); - a.lineTo(146.3, 184.3); - a.lineTo(140.9, 182.4); - a.bezierCurveTo(142.8, 182.1, 145, 181.4, 147.5, 180.4); - a.bezierCurveTo(148.2, 180, 148.9, 179.7, 149.6, 179.4); - a.bezierCurveTo(152.5, 178, 155.3, 176.5, 158.1, - 174.8); - a.bezierCurveTo(161.2, 172.9, 164.4, 171.1, 167.5, 169.3); - a.bezierCurveTo(170.7, 167.7, 173.7, 165.9, 176.8, 163.9); - a.bezierCurveTo(177.2, 163.7, 177.6, 163.5, 177.9, 163.2); - a.closePath(); - a.moveTo(101.1, 181.4); - a.lineTo(97.1, 184.2); - a.lineTo(96.8, 184.3); - a.lineTo(96.3, 184.7); - a.bezierCurveTo(93.2, 186.5, 90.2, 187.9, 87.1, 188.9); - a.bezierCurveTo(83.9, 189.9, 81.1, 189.2, 78.6, 186.6); - a.bezierCurveTo(76, 184.1, 74, 181.3, 72.5, 178.3); - a.bezierCurveTo(71.3, 175.7, 70.1, 172.9, 69, 170.1); - a.lineTo(68, 167.8); - a.bezierCurveTo(67.8, 167.3, - 67.7, 166.8, 67.5, 166.3); - a.bezierCurveTo(69.1, 167.1, 70.7, 167.9, 72.4, 168.8); - a.bezierCurveTo(74.1, 169.6, 75.9, 170.5, 77.9, 171.4); - a.bezierCurveTo(79.9, 172.3, 83.2, 173.8, 87.9, 175.9); - a.bezierCurveTo(92.5, 177.9, 95.7, 179.3, 97.5, 180); - a.bezierCurveTo(99.2, 180.7, 100.4, 181.2, 101.1, 181.4); - a.closePath(); - a.moveTo(25.8, 151.1); - a.bezierCurveTo(23.2, 147.7, 22, 143.6, 22.3, 139); - a.bezierCurveTo(22.3, 139, 22.3, 139, 22.3, 139); - a.lineTo(22.4, 135.1); - a.bezierCurveTo(22.5, 134.4, 22.9, 134.4, 23.6, 134.9); - a.bezierCurveTo(24.4, 135.4, 25.2, - 136, 26, 136.6); - a.bezierCurveTo(27.6, 137.8, 29.1, 139, 30.7, 140.2); - a.bezierCurveTo(34.1, 142.9, 37.3, 145.8, 40.4, 148.8); - a.bezierCurveTo(42.4, 150.6, 44.1, 152.6, 45.6, 154.7); - a.bezierCurveTo(45.8, 155.3, 45.9, 155.7, 45.7, 156); - a.lineTo(45.5, 156.1); - a.bezierCurveTo(40.5, 158.4, 35.6, 158.3, 30.9, 155.9); - a.bezierCurveTo(30.6, 155.7, 30.3, 155.6, 30, 155.4); - a.bezierCurveTo(30, 155.3, 29.9, 155.3, 29.9, 155.3); - a.bezierCurveTo(28.3, 154, 26.9, 152.6, 25.8, 151.1); - a.closePath(); - a.moveTo(240.9, 209.6); - a.bezierCurveTo(240.1, 211.5, 239.1, 213.3, - 237.8, 215); - a.bezierCurveTo(236.5, 216.5, 235.2, 218.1, 233.9, 219.6); - a.bezierCurveTo(233.4, 220.2, 232.8, 220.7, 232.3, 221.1); - a.bezierCurveTo(230.1, 222.1, 227.5, 222.5, 224.3, 222.1); - a.bezierCurveTo(218.9, 221.9, 213.4, 222, 207.7, 222.3); - a.bezierCurveTo(206.5, 222.4, 205.3, 222.4, 204, 222.5); - a.bezierCurveTo(203.3, 218.7, 201.8, 213.8, 199.6, 207.8); - a.lineTo(200.2, 212.5); - a.bezierCurveTo(200.1, 212, 200, 211.2, 199.7, 210.2); - a.bezierCurveTo(199.9, 214.1, 200, 218.2, 199.9, 222.3); - a.bezierCurveTo(199.9, 222.5, 199.9, 222.7, 199.9, 222.9); - a.bezierCurveTo(199.9, - 225, 199.7, 226.9, 199.4, 228.8); - a.bezierCurveTo(199.1, 230.4, 198.7, 232, 198.3, 233.5); - a.lineTo(196.7, 235.1); - a.bezierCurveTo(196.6, 235.2, 196.5, 235.4, 196.3, 235.5); - a.bezierCurveTo(195.2, 236.4, 193.3, 237.6, 190.7, 239.1); - a.bezierCurveTo(188.1, 240.7, 184.5, 241.7, 179.9, 242.1); - a.bezierCurveTo(175.3, 242.4, 172, 242.5, 169.8, 242.3); - a.bezierCurveTo(167.8, 242.1, 165.5, 241.6, 162.9, 240.8); - a.bezierCurveTo(160.4, 239.9, 158, 237.9, 155.6, 234.8); - a.bezierCurveTo(155.4, 234.6, 155.3, 234.4, 155.1, 234.2); - a.bezierCurveTo(154.3, 233, 153.5, - 231.6, 152.8, 230); - a.bezierCurveTo(151.9, 227.8, 151.2, 225.3, 150.7, 222.4); - a.bezierCurveTo(150.7, 222.2, 150.6, 222.1, 150.6, 221.9); - a.bezierCurveTo(149.7, 216.4, 149.3, 213.1, 149.2, 212); - a.bezierCurveTo(148.8, 215.6, 148.6, 219.2, 148.8, 222.8); - a.bezierCurveTo(148.9, 225.2, 149, 227.6, 149.4, 230); - a.bezierCurveTo(149.4, 230.3, 149.4, 230.6, 149.5, 231); - a.bezierCurveTo(141, 233.2, 132.2, 234.4, 123.2, 234.4); - a.bezierCurveTo(113.4, 235.1, 103.6, 234.6, 93.8, 233); - a.lineTo(94, 232); - a.bezierCurveTo(94.3, 230, 94.4, 228.1, 94.4, 226.2); - a.bezierCurveTo(94.4, - 225.6, 94.3, 224.9, 94.3, 224.3); - a.bezierCurveTo(94.2, 220.7, 94, 217.1, 93.8, 213.5); - a.bezierCurveTo(93.8, 214.9, 93.7, 215.9, 93.6, 216.6); - a.bezierCurveTo(93.5, 217.2, 93.5, 217.7, 93.4, 218.1); - a.bezierCurveTo(93.4, 218.5, 93.2, 219.4, 92.8, 220.9); - a.bezierCurveTo(92.6, 222, 92.3, 223, 92, 223.9); - a.bezierCurveTo(91.9, 224.2, 91.8, 224.5, 91.7, 224.8); - a.bezierCurveTo(91.3, 226, 90.8, 227.1, 90.2, 228.3); - a.bezierCurveTo(89.9, 229, 89.5, 229.7, 89.2, 230.4); - a.bezierCurveTo(88.8, 230.9, 88.4, 231.4, 88, 231.9); - a.bezierCurveTo(87.5, 232.5, 86.9, 233.1, - 86.2, 233.7); - a.bezierCurveTo(85.8, 234.1, 85.4, 234.5, 84.9, 234.8); - a.bezierCurveTo(83.9, 235.6, 82.8, 236.2, 81.6, 236.7); - a.bezierCurveTo(80.2, 237.3, 78.7, 237.7, 77.1, 238.1); - a.bezierCurveTo(74.1, 238.7, 71, 239, 67.8, 239); - a.bezierCurveTo(60.3, 239.1, 53.6, 237.3, 47.7, 233.5); - a.bezierCurveTo(47.6, 233.4, 47.5, 233.4, 47.4, 233.3); - a.bezierCurveTo(45.9, 232.5, 45, 231.7, 44.9, 230.9); - a.lineTo(44.6, 229.2); - a.bezierCurveTo(44.6, 228.8, 44.5, 228.2, 44.5, 227.6); - a.bezierCurveTo(44.5, 225.9, 44.5, 223.5, 44.6, 220.3); - a.lineTo(44.6, 213.4); - a.lineTo(44.7, - 207.6); - a.lineTo(43.7, 213); - a.lineTo(42.4, 220.3); - a.bezierCurveTo(41.9, 223.1, 41.7, 225.4, 41.6, 227.4); - a.bezierCurveTo(41, 227.3, 40.3, 227.3, 39.7, 227.2); - a.bezierCurveTo(37.7, 227.2, 35.8, 227.2, 33.8, 227.2); - a.bezierCurveTo(32, 227.2, 30.2, 227.2, 28.4, 227.2); - a.bezierCurveTo(26.4, 227.2, 24.5, 227.3, 22.6, 227.4); - a.bezierCurveTo(21.3, 227.4, 19.7, 227.5, 17.8, 227.7); - a.bezierCurveTo(15.9, 227.9, 13.9, 227.7, 11.9, 227.1); - a.bezierCurveTo(9.8, 226.4, 8.3, 225.2, 7.4, 223.5); - a.bezierCurveTo(6.5, 221.8, 5.6, 219.7, 4.8, 217.3); - a.bezierCurveTo(4, - 214.8, 3.5, 212.9, 3.3, 211.5); - a.bezierCurveTo(3.2, 210.1, 3.6, 209, 4.5, 208.2); - a.bezierCurveTo(5.4, 207.3, 6.7, 206.1, 8.4, 204.6); - a.bezierCurveTo(10.2, 202.9, 11.6, 201.6, 12.7, 200.6); - a.bezierCurveTo(13.7, 199.6, 16.9, 197.2, 22.4, 193.3); - a.bezierCurveTo(26.1, 190.5, 28.7, 189.1, 30.1, 188.9); - a.bezierCurveTo(31.2, 193, 32.3, 197, 33.7, 201); - a.bezierCurveTo(34.2, 202.8, 35, 204.4, 36, 205.9); - a.lineTo(33.3, 187.7); - a.lineTo(33.1, 185.9); - a.lineTo(32.9, 184.7); - a.lineTo(32.7, 183.4); - a.bezierCurveTo(31.8, 176.3, 31, 168.9, 30.3, 161.3); - a.bezierCurveTo(30.3, - 161, 30.3, 160.7, 30.2, 160.3); - a.bezierCurveTo(34.5, 162, 39, 162, 43.8, 160.4); - a.bezierCurveTo(44.4, 160.1, 45.1, 159.9, 45.8, 159.6); - a.lineTo(50.7, 157.9); - a.lineTo(63.1, 164.7); - a.bezierCurveTo(63.4, 166, 64, 168, 65.2, 170.7); - a.lineTo(65.5, 171.5); - a.bezierCurveTo(66.9, 174.7, 68.3, 177.8, 69.8, 180.9); - a.bezierCurveTo(71.4, 184.1, 73.4, 187, 76, 189.6); - a.bezierCurveTo(78.5, 192.2, 81.7, 193.4, 85.5, 193.1); - a.bezierCurveTo(89.2, 192.6, 92.8, 191.5, 96.3, 189.7); - a.bezierCurveTo(98.5, 188.6, 100.4, 187.4, 102.1, 185.9); - a.lineTo(103.2, 185); - a.bezierCurveTo(103.4, - 184.9, 103.6, 184.7, 103.8, 184.6); - a.bezierCurveTo(106.5, 182.5, 108.3, 180.9, 109.3, 179.7); - a.lineTo(109.4, 179.7); - a.bezierCurveTo(114, 180.5, 118.1, 181, 121.9, 181.4); - a.bezierCurveTo(125.7, 181.8, 128.8, 181.8, 131.3, 181.4); - a.bezierCurveTo(133, 181.8, 136.2, 183.2, 140.7, 185.6); - a.bezierCurveTo(141, 185.7, 141.3, 185.9, 141.7, 186); - a.bezierCurveTo(142.1, 186.3, 142.6, 186.5, 143, 186.7); - a.bezierCurveTo(143.5, 186.9, 144, 187.1, 144.5, 187.3); - a.bezierCurveTo(147.1, 188.4, 149.8, 189.4, 152.5, 190.3); - a.bezierCurveTo(155.3, 191.3, 158.2, 191.7, - 161.2, 191.7); - a.bezierCurveTo(164.2, 191.7, 166.7, 190.7, 168.6, 188.6); - a.bezierCurveTo(170, 187.2, 171.1, 185.6, 172, 184.1); - a.bezierCurveTo(173.4, 181.6, 174.7, 179.1, 175.9, 176.6); - a.bezierCurveTo(177.1, 174, 178.3, 171.4, 179.4, 168.7); - a.bezierCurveTo(179.7, 168, 180, 167.3, 180.2, 166.7); - a.bezierCurveTo(181.4, 164, 182, 162.2, 182, 161.5); - a.bezierCurveTo(183.8, 160.7, 186.6, 158.8, 190.2, 155.8); - a.lineTo(191, 155.2); - a.bezierCurveTo(191.7, 154.5, 192.6, 153.8, 193.4, 153.2); - a.bezierCurveTo(193.8, 153, 194.1, 152.8, 194.5, 152.6); - a.lineTo(196.6, - 153.6); - a.bezierCurveTo(197, 153.7, 197.6, 153.8, 198.4, 153.8); - a.bezierCurveTo(199.3, 153.8, 200.6, 153.7, 202.1, 153.6); - a.bezierCurveTo(204.6, 153.5, 207, 153.1, 209.4, 152.5); - a.bezierCurveTo(210.5, 152.1, 211.6, 151.8, 212.6, 151.3); - a.bezierCurveTo(212.6, 151.4, 212.6, 151.4, 212.6, 151.4); - a.bezierCurveTo(213.3, 158.8, 213.4, 166.1, 212.8, 173.3); - a.lineTo(211.2, 182.6); - a.lineTo(211, 183.6); - a.lineTo(209.4, 192.8); - a.lineTo(208.3, 198); - a.lineTo(208.4, 198.1); - a.bezierCurveTo(210.9, 194.2, 212.8, 190, 214.2, 185.6); - a.lineTo(240.5, 201.5); - a.bezierCurveTo(241.1, - 202.2, 241.6, 202.9, 241.8, 203.6); - a.bezierCurveTo(242.1, 205.4, 241.8, 207.4, 240.9, 209.6); - a.closePath(); - a.fillStyle = "rgb(35, 44, 30)"; - a.fill(); - a.beginPath(); - a.moveTo(219.9, 140.2); - a.bezierCurveTo(219.5, 141.6, 218.8, 143, 218, 144.5); - a.bezierCurveTo(217.8, 144.9, 217.6, 145.2, 217.3, 145.6); - a.bezierCurveTo(216.7, 146.3, 215.9, 146.9, 214.9, 147.4); - a.bezierCurveTo(214.1, 147.8, 213.2, 148.2, 212.3, 148.4); - a.bezierCurveTo(210.2, 149.1, 208, 149.5, 205.6, 149.5); - a.bezierCurveTo(204.5, 149.5, 203.4, 149.4, 202.3, 149.3); - a.bezierCurveTo(200.6, - 148.9, 199.7, 148, 199.8, 146.7); - a.lineTo(200.7, 145.2); - a.bezierCurveTo(201.3, 144.3, 201.8, 143.4, 202.4, 142.5); - a.bezierCurveTo(202.7, 141.9, 203, 141.3, 203.4, 140.8); - a.bezierCurveTo(203.8, 140, 204.2, 139.2, 204.7, 138.5); - a.bezierCurveTo(205.3, 137.7, 205.9, 136.8, 206.5, 136); - a.bezierCurveTo(206.9, 135.5, 207.3, 135, 207.6, 134.5); - a.bezierCurveTo(208.3, 133.7, 209, 132.8, 209.7, 132); - a.bezierCurveTo(209.9, 131.7, 210.2, 131.4, 210.5, 131); - a.bezierCurveTo(211, 130.4, 211.5, 129.9, 212.1, 129.3); - a.bezierCurveTo(212.6, 128.8, 213.1, 128.3, 213.6, - 127.8); - a.bezierCurveTo(214.1, 127.4, 214.6, 127, 215.1, 126.6); - a.bezierCurveTo(215.3, 126.4, 215.5, 126.3, 215.6, 126.2); - a.bezierCurveTo(216.8, 125.4, 217.9, 124.8, 219, 124.5); - a.lineTo(219.3, 125.4); - a.bezierCurveTo(220, 127.9, 220.5, 130.6, 220.8, 133.3); - a.bezierCurveTo(221, 135.7, 220.8, 138, 219.9, 140.2); - a.closePath(); - a.moveTo(40.4, 148.8); - a.bezierCurveTo(37.3, 145.8, 34.1, 142.9, 30.7, 140.2); - a.bezierCurveTo(29.1, 139, 27.6, 137.8, 26, 136.6); - a.bezierCurveTo(25.2, 136, 24.4, 135.4, 23.6, 134.9); - a.bezierCurveTo(22.9, 134.4, 22.5, 134.4, - 22.4, 135.1); - a.lineTo(22.3, 139); - a.bezierCurveTo(22.3, 139, 22.3, 139, 22.3, 139); - a.bezierCurveTo(22, 143.6, 23.2, 147.7, 25.8, 151.1); - a.bezierCurveTo(26.9, 152.6, 28.3, 154, 29.9, 155.3); - a.bezierCurveTo(29.9, 155.3, 30, 155.3, 30, 155.4); - a.bezierCurveTo(30.3, 155.6, 30.6, 155.7, 30.9, 155.9); - a.bezierCurveTo(35.6, 158.3, 40.5, 158.4, 45.5, 156.1); - a.lineTo(45.7, 156); - a.bezierCurveTo(45.9, 155.7, 45.8, 155.3, 45.6, 154.7); - a.bezierCurveTo(44.1, 152.6, 42.4, 150.6, 40.4, 148.8); - a.closePath(); - a.moveTo(87.9, 175.9); - a.bezierCurveTo(83.2, 173.8, 79.9, - 172.3, 77.9, 171.4); - a.bezierCurveTo(75.9, 170.5, 74.1, 169.6, 72.4, 168.8); - a.bezierCurveTo(70.7, 167.9, 69.1, 167.1, 67.5, 166.3); - a.bezierCurveTo(67.7, 166.8, 67.8, 167.3, 68, 167.8); - a.lineTo(69, 170.1); - a.bezierCurveTo(70.1, 172.9, 71.3, 175.7, 72.5, 178.3); - a.bezierCurveTo(74, 181.3, 76, 184.1, 78.6, 186.6); - a.bezierCurveTo(81.1, 189.2, 83.9, 189.9, 87.1, 188.9); - a.bezierCurveTo(90.2, 187.9, 93.2, 186.5, 96.3, 184.7); - a.lineTo(96.8, 184.3); - a.lineTo(97.1, 184.2); - a.lineTo(101.1, 181.4); - a.bezierCurveTo(100.4, 181.2, 99.2, 180.7, 97.5, 180); - a.bezierCurveTo(95.7, - 179.3, 92.5, 177.9, 87.9, 175.9); - a.closePath(); - a.moveTo(167.5, 169.3); - a.bezierCurveTo(164.4, 171.1, 161.2, 172.9, 158.1, 174.8); - a.bezierCurveTo(155.3, 176.5, 152.5, 178, 149.6, 179.4); - a.bezierCurveTo(148.9, 179.7, 148.2, 180, 147.5, 180.4); - a.bezierCurveTo(145, 181.4, 142.8, 182.1, 140.9, 182.4); - a.lineTo(146.3, 184.3); - a.lineTo(146.7, 184.5); - a.lineTo(147.2, 184.7); - a.bezierCurveTo(149.5, 185.5, 151.9, 186.4, 154.4, 187.3); - a.bezierCurveTo(157.5, 188.5, 160.6, 188.4, 163.6, 187.2); - a.bezierCurveTo(166.3, 186.1, 168.3, 184.5, 169.6, 182.2); - a.bezierCurveTo(171.1, - 179.7, 172.2, 177.2, 173.1, 174.5); - a.bezierCurveTo(173.5, 173.3, 174, 172.1, 174.4, 170.9); - a.lineTo(174.7, 170.3); - a.lineTo(174.9, 169.8); - a.lineTo(177.9, 163.2); - a.bezierCurveTo(177.6, 163.5, 177.2, 163.7, 176.8, 163.9); - a.bezierCurveTo(173.7, 165.9, 170.7, 167.7, 167.5, 169.3); - a.closePath(); - a.moveTo(202.2, 94.7); - a.bezierCurveTo(202.5, 86.8, 201.1, 79.7, 197.8, 73.5); - a.bezierCurveTo(196.1, 70.1, 193.9, 67, 191.1, 64.1); - a.bezierCurveTo(190.6, 63.5, 190, 63, 189.4, 62.4); - a.bezierCurveTo(183.4, 56.7, 176.5, 53, 168.8, 51.2); - a.bezierCurveTo(165.7, - 50.5, 162.5, 50.1, 159.2, 50.1); - a.bezierCurveTo(159.1, 50.1, 158.9, 50.1, 158.7, 50.1); - a.bezierCurveTo(146.1, 51.7, 136, 57.6, 128.6, 67.7); - a.bezierCurveTo(127.5, 69.4, 126.3, 71.1, 125, 72.9); - a.bezierCurveTo(124.9, 73.2, 124.7, 73.5, 124.6, 73.8); - a.lineTo(124.4, 74.2); - a.lineTo(124.2, 73.8); - a.lineTo(120.8, 67.4); - a.bezierCurveTo(117.3, 59.5, 111.9, 53.4, 104.4, 49.1); - a.bezierCurveTo(100, 46.5, 95.6, 44.9, 91.3, 44.1); - a.bezierCurveTo(89.3, 43.8, 87.3, 43.6, 85.3, 43.7); - a.bezierCurveTo(77.8, 43.8, 70.4, 46.7, 63, 52.3); - a.bezierCurveTo(57.3, 56.8, - 52.7, 61.9, 49.2, 67.7); - a.bezierCurveTo(47.7, 70.1, 46.5, 72.7, 45.5, 75.3); - a.bezierCurveTo(43.6, 79.9, 42.4, 84.8, 41.7, 90.1); - a.bezierCurveTo(40.4, 101.7, 42.2, 111.4, 47.4, 119.3); - a.bezierCurveTo(49.2, 122.2, 51.5, 124.9, 54.2, 127.3); - a.bezierCurveTo(64.3, 136.3, 75.9, 139.1, 88.9, 135.6); - a.bezierCurveTo(100.6, 132.5, 110.3, 125.2, 118, 113.7); - a.bezierCurveTo(118.8, 112.4, 119.7, 111, 120.5, 109.6); - a.bezierCurveTo(121.2, 108.3, 121.9, 106.9, 122.6, 105.5); - a.bezierCurveTo(122.9, 106.7, 123.3, 107.9, 123.8, 109); - a.bezierCurveTo(124.3, 110.4, 124.9, - 111.7, 125.6, 113); - a.bezierCurveTo(130.4, 122.6, 137.6, 129.8, 147.3, 134.6); - a.bezierCurveTo(149.4, 135.6, 153.1, 136.4, 158.5, 137); - a.bezierCurveTo(168.3, 137.9, 177.6, 134.4, 186.7, 126.4); - a.bezierCurveTo(193.1, 120.7, 197.5, 114.2, 199.9, 107.1); - a.bezierCurveTo(201.3, 103.2, 202, 99, 202.2, 94.7); - a.closePath(); - a.fillStyle = "rgb(255, 255, 255)"; - a.fill(); - a.save(); - a.translate(g, 0); - a.beginPath(); - a.moveTo(101.3, 71.1); - a.bezierCurveTo(101, 71.1, 100.7, 71.2, 100.5, 71.3); - a.bezierCurveTo(100.5, 71.3, 100.5, 71.3, 100.5, 71.3); - a.bezierCurveTo(102.7, - 72.9, 103.8, 75.8, 104, 79.9); - a.bezierCurveTo(104.1, 84.2, 100.5, 86.1, 93, 85.6); - a.bezierCurveTo(91, 85.5, 89.2, 85.4, 87.8, 85.3); - a.bezierCurveTo(87.7, 86.6, 87.6, 87.9, 87.6, 89.3); - a.bezierCurveTo(87.8, 91.8, 88.6, 94.3, 89.9, 96.7); - a.bezierCurveTo(91.9, 101.5, 95.2, 103.9, 99.8, 103.9); - a.bezierCurveTo(107.4, 103.7, 112.3, 98, 114.7, 86.8); - a.bezierCurveTo(114.7, 74.4, 110.2, 69.2, 101.3, 71.1); - a.closePath(); - a.fillStyle = "rgb(0, 0, 0)"; - a.fill(); - a.restore(); - a.save(); - a.translate(h, 0); - a.beginPath(); - a.moveTo(150.4, 74.1); - a.bezierCurveTo(147.9, - 71.7, 145.3, 70.5, 142.4, 70.5); - a.bezierCurveTo(141.5, 70.5, 140.5, 70.7, 139.6, 71); - a.bezierCurveTo(140.1, 71.3, 140.6, 71.6, 141.1, 72); - a.bezierCurveTo(143.3, 73.6, 144.5, 76.5, 144.6, 80.6); - a.bezierCurveTo(144.8, 84.9, 141.1, 86.8, 133.7, 86.3); - a.bezierCurveTo(132.1, 86.2, 130.8, 86.2, 129.6, 86.1); - a.bezierCurveTo(129.6, 86.2, 129.6, 86.2, 129.6, 86.3); - a.bezierCurveTo(129.6, 89.1, 130.2, 91.7, 131.5, 94.1); - a.bezierCurveTo(134.1, 99, 138.3, 101.5, 144, 101.5); - a.bezierCurveTo(146.8, 101.7, 149.7, 99.7, 152.5, 95.6); - a.bezierCurveTo(154.5, 91.6, 155.5, - 88.9, 155.5, 87.5); - a.bezierCurveTo(155.5, 81.9, 153.8, 77.5, 150.4, 74.1); - a.closePath(); - a.fillStyle = "rgb(0, 0, 0)"; - a.fill(); - a.restore(); - a.restore(); - a.restore() - } - - function f(a) { - function b() { - var f = Date.now() - g; - f < s ? h = 0 - e.io(f, 0, 100, s) : f < v ? f > s + 100 && (n = p = -1 * e.Bf(f - (s + 100), 0, 10, v - (s + 100))) : f < w ? n = p = -10 + e.Rj(f - v, 20, w - v) : f < z ? f > w + 100 && (n = p = 10 - e.Rj(f - (w + 100), 10, z - (w + 100))) : f < x || f < F && (m = e.Bf(f - x, r, 50, F - x)); - f > s && f < w && (G = e.Qj(f - s, 0.02, w - s, 6)); - f > w && f < x && (G = 0.02 - e.Qj(f - w, 0.02, x - w, 2)); - var u = 0 + l, - K = 75 + m + h; - d.save(); - d.rotate(30 * - Math.PI / 180); - c(d, 0.32, 0.32 + G, u, K, p, n); - d.restore(); - f < F ? window.requestAnimationFrame(b) : a() - } - var d = u.getContext("2d"), - g = Date.now(), - h = 0.1, - l = 0, - m = 0, - p = 0, - n = 0, - r = l, - s = 600, - v = 400 + s, - w = 600 + v, - z = 700 + w, - x = 500 + z, - F = 800 + x, - G = 0; - window.requestAnimationFrame(b) - } - - function p() { - $("#dpic").removeClass(); - $("#dframe").animate({ - top: b.A(50), - scale: 0.2 - }, 350, "easeInExpo"); - $("#dmsg").animate({ - top: b.A(50), - scale: 0.2 - }, 350, "easeInExpo"); - $("#dshareBtn").fadeTo(200, 0); - $("#d").delay(200).fadeOut(200, function() { - h.Vg(); - r = null; - $("#gameBtnTray").show() - }) - } - var u, s, v = b.A(2.2); - this.yb = function() { - s = document.getElementById("e"); - s.width = b.A(1024); - s.height = b.A(576); - if (u = document.getElementById("moreCanvas")) u.width = 51, u.height = 51; - $("#dshareBtn").click(function() { - d.nu(l.ca(n.wr), d.dv, "images\\1366\\ui\\drawing" + r + ".jpg", function() { - p(); - return !0 - }); - return !1 - }); - $("#d").click(function() { - p() - }); - $("#moreLink").mouseenter(function() { - z || (z = !0, f(function() { - z = !1 - })) - }).click(function() { - Analytics.ZD("SMG_MRTINX_CTR_SITE_BehindtheScenes") - }) - }; - this.ke = function() { - g.subscribe(g.C.Cb, - function() { - a.sa({ - text: l.ca(n.Mq), - Lo: "dmsg", - za: !0 - }); - a.sa({ - text: l.ca(n.vr), - Zc: "#dshareBtn img", - za: !0 - }) - }); - g.subscribe(g.C.kr, this.bC); - g.subscribe(g.C.Gq, this.Kp) - }; - var r = null; - this.Kp = function(a) { - r = a + 1; - h.Tg(); - $("#gameBtnTray").hide(); - $("#dpic").addClass("drawing" + r); - $("#dframe").animate({ - top: b.A(100), - scale: 0.35 - }, 0); - $("#dframe").fadeTo(0, 0); - $("#dmsg").animate({ - top: b.A(60), - scale: 0.5 - }, 0); - $("#dmsg").fadeTo(0, 0); - $("#dshareBtn").fadeTo(0, 0); - $("#d").fadeIn(100, function() { - $("#dframe").fadeTo(0, 1); - $("#dmsg").fadeTo(0, - 1); - $("#dframe").animate({ - top: 0, - scale: 1 - }, 350, "easeOutBack"); - $("#dmsg").animate({ - top: 0, - scale: 1 - }, 350, "easeOutBack"); - $("#dshareBtn").delay(600).fadeTo(200, 1) - }) - }; - var z = !1; - this.bC = function() { - var a = s.getContext("2d"); - h.Tg(); - $("#e").fadeIn(function() { - function d() { - var O = Date.now() - f; - O < w ? (g = e.io(O, s, v, w), l = e.io(O, u, v, w)) : O < x ? O > w + 100 && (r = n = -1 * e.Bf(O - (w + 100), 0, b.A(10), x - (w + 100))) : O < F ? r = n = b.A(-10) + e.Rj(O - x, b.A(20), F - x) : O < G ? O > F + 100 && (r = n = b.A(10) - e.Rj(O - (F + 100), b.A(10), G - (F + 100))) : !(O < K) && O < M && (p = e.Bf(O - K, z, b.A(300), - M - K), g = b.A(v) - e.Bf(O - K, 0, b.A(2), w), l = b.A(v) - e.Bf(O - K, 0, b.A(2), w)); - O > w && O < F && (P = e.Qj(O - w, 0.1, F - w, 6)); - O > F && O < K && (P = 0.1 - e.Qj(O - F, 0.1, K - F, 2)); - O < M ? window.requestAnimationFrame(d) : ($("#e").fadeOut(), h.Vg()); - var O = m + (b.A(500) - g / v * b.A(200)), - R = p + (b.A(600) - l / v * b.A(400)); - c(a, g, l + P, O, R, n, r) - } - var f = Date.now(), - g = 0.1, - l = 0.1, - m = 0, - p = 0, - n = 0, - r = 0, - s = g, - u = l, - z = m, - w = 600, - x = 400 + w, - F = 600 + x, - G = 700 + F, - K = 500 + G, - M = 800 + K, - P = 0; - window.requestAnimationFrame(d) - }) - } - } - }(ca, tb, X, G, Qa, xa, M, ab, T, F), - oc = function() { - for (var a = ["ms", "moz", "webkit", "o"], d = - 0; d < a.length && !window.requestAnimationFrame; d++) window.requestAnimationFrame = window[a[d] + "RequestAnimationFrame"]; - if (!window.requestAnimationFrame) { - var c = 1E3 / 60, - b = 0; - window.requestAnimationFrame = function(a) { - var d = Date.now(), - g = Math.max(0, c - (d - b)); - window.setTimeout(function() { - a(Date.now()) - }, g); - b = d + g - } - } - return window.requestAnimationFrame - }(), - pc = function(a, d, c, b, f, e, g, h, l) { - function n() { - var a = document.getElementById("vid"); - if (!a) { - try { - a = document.createElement("video") - } catch (b) { - return null - } - a.id = "vid"; - a.className = - "ctrPointer"; - $("#video").append(a) - } - return a - } - var q = null, - m = { - It: function() { - if (0 === (l.Ef(0, 0) || 0)) { - var a = n(), - b = d.Jn, - e = c.Nv; - if (null != a) try { - a.src = e + "intro_" + b + ".mp4", a.load() - } catch (f) {} - } - }, - ZA: function() { - 0 < (l.Ef(0, 0) || 0) && $("#vid").remove() - }, - MA: function(a) { - var b = l.Ef(0, 0) || 0, - c = document.getElementById("vid"); - q = a; - if (0 === b && c && (a = c.readyState, 2 === a || 3 === a || 4 === a)) { - g.yi(); - $(c).fadeIn(300, function() { - c.play() - }); - c.addEventListener("ended", m.bo); - c.addEventListener("mousedown", m.bo); - return - } - m.bo() - }, - bo: function() { - var a = - document.getElementById("vid"); - $(a).fadeOut(500, function() { - a.pause(); - a.currentTime = 0 - }); - q && q() - }, - Mz: function() { - var a = n(), - b = d.Jn, - e = c.Nv; - if (null != a) try { - a.src = e + "outro_" + b + ".mp4", a.load() - } catch (f) {} - }, - PA: function() { - var a = document.getElementById("vid"); - if (a) { - var c = a.readyState; - 2 === c || 3 === c || 4 === c ? (g.yi(), g.Rf || (a.volume = 0), $(a).fadeIn(300, function() { - a.play() - }), a.addEventListener("ended", m.Ws), a.addEventListener("mousedown", m.Ws)) : ($(a).remove(), f.kb(b.ph, !1)) - } - }, - Ws: function() { - f.kb(b.ph, !0); - var a = $("#vid"); - a.fadeOut(500, function() { - a[0].pause(); - a[0].currentTime = 0; - a.remove() - }) - }, - yb: function() { - this.It() - } - }; - h.subscribe(h.C.er, function() { - m.It() - }); - return m - }(K, G, X, ya, sb, ra, la, M, sa), - qc = function(a, d, c, b, f, e, g, h, l, n, q, m, p, u, s, v, r, z, k, x, D, F, B, E, I, G, K, H, L) { - var A = a.VE || p.Wm, - w = new function() { - function s() { - $("#levelMenu").hide() - } - - function u() { - r.Tg(); - $("#levelMenu").show() - } - - function x() { - f.pb >= f.Bu() - 1 ? (G.hide(), z.PA()) : (N.Ro = !0, g.kb(a.bt ? e.Fb : e.gd, !1)) - } - - function C() { - if (f.pb !== f.Bu() - 1) return !1; - var a = b.$c(f.pb); - return f.bc !== - a ? !1 : !0 - } - - function M() { - $("#resultScore").text(ha[fa]); - fa++; - fa < ea.length && (fa < ka ? setTimeout(function() { - M() - }, 10) : setTimeout(function() { - M() - }, 167)) - } - - function P() { - N.Ue = !0; - null != aa && clearTimeout(aa); - aa = setTimeout(function() { - N.Ue = !1; - aa = null - }, 1E3) - } - - function O(a) { - var c = g.Df(a); - a == e.Fb || a == e.gd || a == e.De ? G.fadeOut(300) : a !== e.he && G.show(); - a !== e.dj && s(); - a !== e.Fb && a !== e.he || m.zi(A); - var h = g.Df(e.gd); - a == e.gd ? (f.Gv(), b.Si(), h.ti(), N.Ro ? (N.Ro = !1, setTimeout(function() { - $("#levelResults").hide(); - h.hC(); - f.jk() || L.bv() - }, 800)) : - (clearTimeout(ca), ca = setTimeout(function() { - h.Ox() - }, 300))) : h.fp(); - var p = g.Df(e.pf); - p && (a === e.pf ? p.ti() : p.fp()); - a == e.he ? (H.bd(!0, 0), c.ti()) : a == e.kg ? T(!1) : a === e.ph ? ($("#levelResults").hide(), G.CB(), a = D.ca(B.Pq).replace("%d", b.cg()), l.sa({ - text: a, - Zc: "#finalScore img", - scale: 0.8 * d.Za - }), $("#congrats").empty().append(l.sa({ - text: D.ca(B.vq), - scale: 1.2 * d.Za - })), l.sa({ - text: D.ca(B.xr), - Zc: "#finalShareBtn img", - scale: 0.8 * d.Za, - Yo: d.A(130) - }), l.sa({ - text: D.ca(B.hr), - Zc: "#finalFunBtn img", - scale: 0.8 * d.Za, - Yo: d.A(310) - })) : a == - e.De ? k.na(k.C.yn) : a == e.hf ? k.na(k.C.Eh) : a == e.of && k.na(k.C.Eh) - } - - function R(h) { - if (h == e.Fb) { - $("#playBtn").click(function() { - m.W(p.qa); - K.oA && K.oA(); - z.MA(function() { - 0 === (b.Ef(0, 0) || 0) ? N.Yt(0, 0) : g.kb(a.bt ? e.he : e.gd, !1) - }) - }); - $("#optionsBtn").click(function() { - m.W(p.qa); - c.ey ? k.na(k.C.cs) : g.kb(e.De) - }); - $("#achievementsBtn").click(function() { - X && (m.W(p.qa), g.kb(e.hf)) - }).toggleClass("disabled", !X); - $("#leaderboardsBtn").click(function() { - X && (m.W(p.qa), g.kb(e.of)) - }).toggleClass("disabled", !X); - var v = null; - $("#resetYesBtn").on(n.Pp, - function() { - m.W(p.qa); - v = setTimeout(function() { - L.Ag(); - v = null; - q.clear(); - b.dB(); - f.fB(); - k.na(k.C.er) - }, 3E3) - }).on(n.ko, function() { - null != v && clearTimeout(v) - }); - T(!1); - $("#optionSound").click(function() { - T(!0, "optionMsg") - }); - N.Mv ? ($("#optionHd").addClass("activeResolution"), $("#optionSd").addClass("inActiveResolution"), $("#optionSd").addClass("ctrPointer"), $("#optionSd").hover(function() { - V("optionMsg", D.ca(B.qr), 4E3) - }, function() { - $("#optionMsg").stop(!0, !0).fadeOut(500) - }), h = "optionSd") : ($("#optionSd").addClass("activeResolution"), - $("#optionHd").addClass("inActiveResolution"), $("#optionHd").addClass("ctrPointer"), $("#optionHd").hover(function() { - V("optionMsg", D.ca(B.pr), 4E3) - }, function() { - $("#optionMsg").stop(!0, !0).fadeOut(500) - }), h = "optionHd"); - $("#" + h).click(function() { - q.DB(!N.Mv); - window.location.reload() - }); - k.subscribe(k.C.Cb, function() { - Q("#playBtn img", B.Vw); - Q("#optionsBtn img", B.De); - Q("#resetYesBtn img", B.ux); - Q("#resetNoBtn img", B.Sw); - l.sa({ - text: D.ca(B.of), - ib: "leaderboardsBtn", - scale: 0.8 * d.Za - }); - l.sa({ - text: D.ca(B.hf), - ib: "achievementsBtn", - scale: 0.8 * d.Za - }) - }) - } else if (h == e.gd) $("#boxBack").click(function() { - m.W(p.qa); - g.kb(e.Fb) - }), h = g.Df(h), h.init(w); - else if (h == e.pf) $("#boxEnterCodeButton").click(function() { - m.W(p.qa); - g.kb(e.pf) - }), $("#codeBack").click(function() { - m.W(p.qa); - g.kb(e.gd) - }), h = g.Df(h), h.init(w); - else if (h == e.he) $("#levelBack").click(function() { - m.W(p.qa); - g.kb(a.bt ? e.Fb : e.gd) - }), H.bd(!0, 0), h = g.Df(h), h.init(w); - else if (h == e.kg) $("#gameRestartBtn").click(function() { - N.Ue || (m.W(p.qa), ba(f.bc, !0, !0)) - }), $("#gameMenuBtn").click(function() { - N.Ue || - (m.W(p.qa), u()) - }); - else if (h == e.dj) $("#continueBtn").click(function() { - m.W(p.qa); - s(); - r.Vg() - }), $("#skipBtn").click(function() { - m.W(p.qa); - s(); - $("#gameBtnTray").hide(); - f.jk() ? (b.$e(f.pb, f.bc, 0), ba(f.bc + 1, !1)) : x() - }), $("#selectBtn").click(function() { - m.W(p.qa); - s(); - r.mv(); - b.Mg(f.pb) || (N.Ng = !0, N.hi = !1, N.ao()) - }), $("#menuBtn").click(function() { - m.W(p.qa); - s(); - r.mv(); - N.Ng = !0; - N.hi = !0; - N.ao() - }), T(!1), $("#gameSound").click(function() { - T(!0, "gameMsg") - }), k.subscribe(k.C.Cb, function() { - Q("#continueBtn img", B.Zv); - Q("#skipBtn img", - B.dx); - Q("#selectBtn img", B.Nw); - Q("#menuBtn img", B.Pw) - }); - else if (h == e.cr) $("#nextBtn").click(function() { - N.Ue || (P(), m.W(p.qa), f.jk() ? ba(f.bc + 1, !1) : x()) - }), $("#replayBtn").click(function() { - N.Ue || (P(), m.W(p.qa), ba(f.bc, !1)) - }), $("#lrMenuBtn").click(function() { - N.Ue || (P(), m.W(p.qa), N.Ng = !0, N.hi = !1, N.pv()) - }), k.subscribe(k.C.Cb, function() { - Q("#nextBtn img", B.NEXT); - Q("#replayBtn img", B.Lb); - Q("#lrMenuBtn img", B.Fb); - l.Hb({ - text: D.ca(B.aw), - Lo: "resultTickerMessage", - za: !0 - }) - }); - else if (h == e.ph) $("#gameCompleteBack").click(function() { - m.W(p.qa); - g.kb(e.Fb); - G.hide() - }), $("#finalShareBtn").click(function() { - var a = b.cg(); - I.nu(c.Wy(a, f.RA()), I.dv, "images\\scores\\score" + a + ".png", Ka(!0)) - }); - else if (h == e.De) { - var A = c.IC, - C = $("#soundBtn"); - c.TB(C, function() { - var a = !q.vo(); - m.Wk(a); - m.W(p.qa); - A(C, a); - T(!1); - T(!1) - }); - var M = c.GC, - O = $("#musicBtn"); - c.KB(O, function() { - m.W(p.qa); - var a = !q.uo(); - m.Uk(a); - M(O, a); - T(!1); - T(!1) - }); - var S = c.FC; - c.GB(function(b) { - m.W(p.qa); - null == b && (b = a.Uo.indexOf(q.Zh()), b = a.Uo[(b + 1) % a.Uo.length]); - q.FB(b); - k.na(k.C.Cb) - }); - var U = c.DC; - c.yB(function() { - m.W(p.qa); - var a = !q.so(); - q.xB(a); - U(a) - }); - var Z = $("#resetBtn").click(function() { - var a = l.sa({ - text: D.ca(B.sr), - Id: E.da, - width: 1250 * d.Wb, - za: !0 - }), - b = l.Hb({ - text: D.ca(B.rr), - za: !0, - Yo: d.A(550) - }); - $("#resetText").empty().append($(a)); - $("#resetHoldYes").empty().append($(b)); - m.W(p.qa); - L.Zk("resetGame") - }); - $("#optionsBack").click(function() { - m.W(p.qa); - g.kb(e.Fb) - }); - c.rC(!a.lE); - h = function() { - Q("#optionsTitle img", B.De); - A(C, q.vo()); - M(O, q.uo()); - S(); - U(q.so()); - c.SB(Z, D.ca(B.$w)); - var a = q.Zh(); - $("#lang").removeClass("lang-en lang-de lang-ru lang-fr").addClass("lang-" + - F.pC(a)) - }; - k.subscribe(k.C.Cb, h); - k.subscribe(k.C.yn, h) - } else h === e.of ? $("#leaderboardBack").click(function() { - m.W(p.qa); - g.kb(e.Fb) - }) : h === e.hf && $("#achievementsBack").click(function() { - m.W(p.qa); - g.kb(e.Fb) - }) - } - - function S() { - $("#achievementsBtn").toggleClass("disabled", !X); - $("#leaderboardsBtn").toggleClass("disabled", !X) - } - - function V(a, b, c) { - if (void 0 != a) { - c = c || 500; - a = $("#" + a); - var d = a.find("img"); - 0 === d.length && (d = $("").appendTo(a)); - l.Hb({ - text: b, - img: d[0], - za: !0, - alpha: 0.6 - }); - a.stop(!0, !0).fadeIn(500).delay(c).fadeOut(750) - } - } - - function T(a, b) { - var c, d = m.af, - e = m.Rf; - a && (d && e ? (d = !0, e = !1) : e = d || e ? d = !1 : d = !0, m.Wk(d), m.Uk(e)); - c = d && !e ? "effectsOnly" : d || e ? "allSound" : "noSound"; - $("#optionSound").removeClass("effectsOnly noSound allSound").addClass(c); - $("#gameSound").removeClass("effectsOnly noSound allSound").addClass(c); - e || d ? (c = e ? B.Rw : B.Qw, d = d ? B.hx : B.gx, d = D.ca(B.cq).replace("{0}", D.ca(c).toLowerCase()).replace("{1}", D.ca(d).toLowerCase())) : d = D.ca(B.Kq); - V(b, d) - } - - function Q(a, b) { - l.sa({ - text: D.ca(b), - Zc: a, - za: !0 - }) - } - var N = this; - this.Mv = d.ME; - this.Ue = - this.ik = this.Ro = this.hi = this.Ng = !1; - var Z = v.WE || 30, - X = !1; - k.subscribe(k.C.Ch, function() { - X = !0; - S() - }); - k.subscribe(k.C.Dh, function() { - X = !1; - S() - }); - var ca = null, - aa = null, - ba = this.uA = function(a, b, c) { - G.fadeIn(650, 100); - f.bc = a; - C() && z.Mz(); - c ? r.Mk() : (g.kb(e.kg, !b), setTimeout(function() { - N.cu() - }, 200)) - }; - this.pv = function() { - N.hi && (G.fadeOut(800, 400), m.zi(A)); - H.Zx(function() { - N.ik = !1; - N.hi ? g.kb(e.Fb, !1) : (H.bd(!0, 0), g.kb(e.he, !0)) - }) - }; - this.cu = function() { - var a = g.Kj == e.he ? 400 : 0; - $("#levelScore").fadeOut(); - $("#levelBack").fadeOut(); - $("#levelOptions").fadeOut(a, function() { - N.ik ? ($("#levelResults").fadeOut(800), setTimeout(function() { - r.iv(f.pb + 1, f.bc); - H.mp(!1, function() { - N.$u() - }) - }, 400)) : H.tA(function() { - N.ik = !0; - r.iv(f.pb + 1, f.bc); - H.mp(!0, function() { - N.$u() - }) - }) - }) - }; - this.ao = function() { - N.ay(); - setTimeout(function() { - N.Ng || $("#levelResults").delay(750).fadeIn(250); - H.$x(function() { - N.Ng ? N.pv() : setTimeout(function() { - M() - }, 250) - }) - }, 250) - }; - this.$u = function() { - $("#levelBackground").hide(); - v.Zu && a.By && $("#bg").show(); - $("#gameBtnTray").fadeIn() - }; - this.ay = - function() { - H.bd(!1, 1); - P(); - $("#levelBackground").show(); - v.Zu && a.By && $("#bg").hide(); - $("#gameBtnTray").fadeOut() - }; - var ea = [], - ha = [], - fa = 0, - ka = 0; - this.gp = function(a) { - function d(a, b, c) { - function e() { - var d = Date.now(), - q = (d - m) / k; - m = d; - n += Math.round(b * q); - h -= a * q; - 0 >= h ? (h = 0, n = f, s.fadeOut(400), r.fadeOut(400, c)) : p(e); - l.Hb({ - text: g(h), - img: r[0], - za: !0 - }); - l.dt({ - text: n, - ib: "resultScore", - za: !0 - }) - } - var f = n + b, - h = a, - k = Math.max(1E3, 2E3 - 50 * a), - m = Date.now(), - p = window.requestAnimationFrame; - e() - } - - function e(a, b) { - function c() { - var e = Date.now(), - h = Math.min(Math.round(a * (e - f) / 1E3), d); - f = e; - d -= h; - n += h; - 0 >= d ? (d = 0, n = a, s.fadeOut(400), r.fadeOut(400, b)) : g(c); - l.Hb({ - text: d, - img: r[0], - za: !0 - }); - l.dt({ - text: n, - ib: "resultScore", - za: !0 - }) - } - var d = a, - f = Date.now(), - g = window.requestAnimationFrame; - c() - } - - function g(a) { - var b = Math.floor(a / 60); - a = Math.round(a % 60); - return b + ":" + (10 > a ? "0" + a : a) - } - var h = a.Ub, - k = a.Wf, - m = a.time, - p, n = 0, - q = 1E3 * h; - Math.round((k - 1E3 * h) / m); - switch (h) { - case 3: - $("#resultStar1").removeClass("starEmpty").addClass("star"); - $("#resultStar2").removeClass("starEmpty").addClass("star"); - $("#resultStar3").removeClass("starEmpty").addClass("star"); - p = D.ca(B.Mw); - break; - case 2: - $("#resultStar1").removeClass("starEmpty").addClass("star"); - $("#resultStar2").removeClass("starEmpty").addClass("star"); - $("#resultStar3").removeClass("star").addClass("starEmpty"); - p = D.ca(B.Lw); - break; - case 1: - $("#resultStar1").removeClass("starEmpty").addClass("star"); - $("#resultStar2").removeClass("star").addClass("starEmpty"); - $("#resultStar3").removeClass("star").addClass("starEmpty"); - p = D.ca(B.Kw); - break; - default: - $("#resultStar1").removeClass("star").addClass("starEmpty"), - $("#resultStar2").removeClass("star").addClass("starEmpty"), $("#resultStar3").removeClass("star").addClass("starEmpty"), p = D.ca(B.Jw) - } - l.sa({ - text: p, - Zc: "#resultStatus img", - za: !0 - }); - var r = $("#resultTickerValue").hide(), - s = $("#resultTickerLabel").hide(), - u = $("#resultScore").empty().hide(), - v = $("#resultImproved").hide(), - w = $("#resultTickerMessage").hide(); - l.Hb({ - text: D.ca(B.jx), - img: s[0], - za: !0 - }); - l.Hb({ - text: q, - img: r[0], - za: !0 - }); - $("#resultScore img").remove(); - setTimeout(function() { - s.fadeIn(300); - r.fadeIn(300); - u.fadeIn(300, - function() { - e(q, function() { - l.Hb({ - text: D.ca(B.Cn), - img: s[0], - za: !0 - }); - s.fadeIn(300); - l.Hb({ - text: g(Math.ceil(m)), - img: r[0], - za: !0 - }); - r.fadeIn(300, function() { - d(Math.ceil(m), k - n, function() { - w.fadeIn(300); - null != A && 0 < A && k > A && v.animate({ - scale: 2.5, - opacity: 0 - }, 0, function() { - v.css("display", "block"); - v.animate({ - scale: 1, - opacity: 1 - }, 600, "easeInCubic") - }) - }) - }) - }) - }) - }, 1E3); - p = f.pb; - var x = f.bc, - A = b.bk(p, x - 1); - b.Ip(p, x - 1, k); - b.$e(p, x - 1, h); - b.$c(p) > x && f.jk() && b.$e(p, x, 0); - N.Ng = !1; - N.ao(); - 0 === p && 1 === x && (K.kA && K.kA(a.mt), a.mt < Z && !c.ly && setTimeout(function() { - L.dC() - }, - 3E3), z.ZA()) - }; - var ga = !0; - this.Iv = function() { - $(window).width() < d.A(1024) + 120 && ga ? ($("#moreLink").fadeOut(function() { - ga = !1 - }), $("#zenbox_tab").fadeOut()) : $(window).width() > d.A(1024) + 120 && !ga && ($("#moreLink").fadeIn(function() { - ga = !0 - }), $("#zenbox_tab").fadeIn()) - }; - this.qo = !0; - this.pp = function() { - g.Kj === e.kg && r.tz() && !N.Ue ? u() : m.yi() - }; - this.Gu = function() { - g.Kj !== e.dj && N.qo && m.Dp() - }; - this.init = function() { - b.load(); - g.jp = O - }; - this.yb = function() { - z.yb(); - h.yb(); - g.yb(); - G.yb(); - $(window).blur(N.pp); - $(window).focus(N.Gu); - $(window).resize(function() { - N.Iv() - }) - }; - this.ke = function() { - k.subscribe(k.C.dr, this.gp); - H.ke(); - h.ke(); - g.ke(R); - f.ke(); - k.na(k.C.Cb); - if (null != v.Px && null != v.Lf) this.Yt(v.Px - 1, v.Lf - 1); - else if (q.av) { - var a = g.Df(e.pf); - a && a.Po && a.Po() ? (H.bd(!0, 0), g.kb(e.pf, !0)) : g.kb(e.Fb, !0) - } - var b = this; - k.subscribe(k.C.Yw, function() { - b.pp() - }); - k.subscribe(k.C.Lq, function() { - b.qo = !0; - b.Gu() - }); - k.subscribe(k.C.Fq, function() { - b.qo = !1; - b.pp() - }) - }; - this.Yt = function(a, b) { - g.kb(e.kg, !0); - f.pb = a; - f.bc = b + 1; - this.cu() - }; - this.vA = function(a) { - N.ik = !1; - H.bd(!0, - 0); - g.kb(e.he); - G.wB(a) - } - }; - return w - }(K, G, X, sa, Ja, ya, sb, nc, ca, Va, ra, la, x, oc, xa, qa, ab, pc, M, Ea, T, ua, F, P, tb, function(a, d) { - var c = null; - return { - yb: function() { - c = $("#gameBorder") - }, - wB: function(b) { - b = (b = d.Ms[b]) ? a.fd + b : ""; - c.removeClass("gameComplete").css("background-image", "url(" + b + ")") - }, - CB: function() { - c.css("background-image", "").addClass("gameComplete") - }, - hide: function() { - c.hide() - }, - show: function() { - c.show() - }, - fadeIn: function(a, d) { - c.delay(d || 0).fadeIn(a) - }, - fadeOut: function(a, d) { - c.delay(d || 0).fadeOut(a) - } - } - }(X, K), Qa, cb, - bb), - rc = function(a, d, c, b, f, e, g, h) { - return { - init: function() { - a.init(); - e.ri(function() { - c.init(); - h.na(h.C.gq) - }) - }, - yb: function() { - f.my && "undefined" != typeof document.body.onselectstart && (document.body.onselectstart = Ka(!1)); - $(".ctrCursor").on("mousedown mouseup", function() { - $(this).toggleClass("ctrCursorActive") - }); - $("body").addClass("ui-" + d.sg); - b.yb("c"); - b.element.width = d.wb; - b.element.height = d.lb; - d.UC || (d.Yv ? $(b.element).width(d.Yv).height(d.TC) : $(b.element).width(d.wb).height(d.lb)); - g.yb && g.yb(); - a.yb(); - c.yb(); - h.na(h.C.fq) - }, - Ep: function() { - a.Ep(function() { - c.ke(); - h.na(h.C.Vi); - $(".hideBeforeLoad").fadeIn(500); - c.Iv(); - $("#gameFooterSocial").css("top", 0); - if (!f.Vn) { - $("#lsDomain").text(location.protocol + "//" + location.host); - $("#lsChromeInfoLink").show(0 <= navigator.userAgent.indexOf("Chrome")); - var a = $("#lsWarning").fadeIn(100); - $("#lsOkButton").on("click", function() { - a.fadeOut() - }) - } - }) - } - } - }(Ab, G, qc, Z, ra, va, Wa, M, fb, X), - sc = function() { - return function(a, d) { - var c = window.ZeptoLab; - null == c && (c = window.ZeptoLab = {}); - var b = c.ctr; - null == - b && (b = c.ctr = {}); - b[a] = d - } - }(), - tc = function() { - return { - Sz: function(a) { - if (null == a) return null; - if (window.DOMParser) return (new DOMParser).parseFromString(a, "text/xml"); - var d = new ActiveXObject("Microsoft.XMLDOM"); - d.async = "false"; - d.loadXML(a); - return d - }, - TE: function(a) { - var d; - d = window.XMLHttpRequest ? new XMLHttpRequest : new ActiveXObject("Microsoft.XMLHTTP"); - d.open("GET", a, !1); - d.send(); - return d.responseXML - }, - attr: function(a, d) { - return a.getAttribute(d) - }, - Fs: function(a, d) { - var c = a.getAttribute(d); - return null == c ? 0 : parseInt(c, - 10) - }, - $D: function(a, d) { - return "true" === a.getAttribute(d) - }, - Es: function(a, d) { - var c = a.getAttribute(d); - return null == c ? 0 : parseFloat(c) - }, - MF: function(a) { - a = a.textContent; - return null == a ? 0 : parseInt(a, 10) - }, - value: function(a) { - return a ? a.textContent : null - }, - qt: function(a, d) { - if (null == a) return null; - var c = a.getElementsByTagName(d); - return 0 === c.length ? null : c[0] - } - } - }(), - uc = function(a, d, c) { - var b = !1, - f = null, - e = { - bz: function(a) { - f ? f.getUnlockedIds(function(b) { - if (b) { - var c = [], - e = b.length, - f; - for (f = 0; f < e; f++) c[f] = d.qC(b[f]); - a(c) - } else a(null) - }) : - a(null) - }, - yC: function(a, b) { - if (f) { - var c = d.Ny(a); - f.unlock(c, b) - } else b(!1) - }, - YD: function() { - return b - }, - EF: Ka(!1) - }; - c.subscribe(c.C.sf, function() { - b = !0 - }); - return { - OB: function(a) { - f = a; - c.na(c.C.dq, e) - } - } - }(Ha, function(a, d) { - var c = { - hd: 1, - zd: 2, - pd: 3, - xd: 4, - yd: 5, - Fd: 6, - kd: 7, - jd: 8, - Ad: 10, - Cd: 11, - Bd: 12, - Gd: 13, - ld: 14, - vd: 15, - td: 16, - Ed: 17, - md: 18, - wd: 19, - sd: 20, - Ny: function(b) { - switch (b) { - case d.hd: - return c.hd; - case d.zd: - return c.zd; - case d.pd: - return c.pd; - case d.xd: - return c.xd; - case d.yd: - return c.yd; - case d.Fd: - return c.Fd; - case d.kd: - return c.kd; - case d.jd: - return c.jd; - case d.Ad: - return c.Ad; - case d.Cd: - return c.Cd; - case d.Bd: - return c.Bd; - case d.Gd: - return c.Gd; - case d.ld: - return c.ld; - case d.vd: - return c.vd; - case d.td: - return c.td; - case d.Ed: - return c.Ed; - case d.md: - return c.md; - case d.wd: - return c.wd; - case d.sd: - return c.sd; - default: - return a.debug("Invalid ctr achievementId: " + b), -1 - } - }, - qC: function(b) { - switch (b) { - case c.hd: - return d.hd; - case c.zd: - return d.zd; - case c.pd: - return d.pd; - case c.xd: - return d.xd; - case c.yd: - return d.yd; - case c.Fd: - return d.Fd; - case c.kd: - return d.kd; - case c.jd: - return d.jd; - case c.Ad: - return d.Ad; - case c.Cd: - return d.Cd; - case c.Bd: - return d.Bd; - case c.Gd: - return d.Gd; - case c.ld: - return d.ld; - case c.vd: - return d.vd; - case c.td: - return d.td; - case c.Ed: - return d.Ed; - case c.md: - return d.md; - case c.wd: - return d.wd; - case c.sd: - return d.sd; - default: - return a.debug("Invalid xbox achievementId:" + b), -1 - } - } - }; - return c - }(ka, Ha), M), - vc = function(a, d, c, b, f, e, g) { - function h(a) { - $("#leaderboardPanel"); - var b = p.ot(a), - d = c.Pv(); - u = a; - $("#leaderboardLeft").toggleClass("disabled", 0 === u).toggle(1 < d); - $("#leaderboardRight").toggleClass("disabled", - u === d - 1).toggle(1 < d); - n(); - $(".lb-row").remove(); - if (b) l(b); - else if (q) { - var e = $("#leaderboardLoading").fadeIn(250); - setTimeout(function() { - e.addClass("show") - }, 300); - p.XA(a, function() { - u === a && l(p.ot(a)) - }) - } - } - - function l(b) { - var c = $("#leaderboardPanel .content"), - d = b ? b.length : 0, - e, f; - for (f = 0; f < d; f++) - if (e = b[f]) e = $("
").addClass("lb-row").append($("").addClass("lb-place").text(f + 1 + ".")).append($("").addClass("lb-name").text(e.KC)).append($("").addClass("lb-score").text(e.Wf)), c.append(e); - $("#leaderboardLoading").hide().removeClass("show"); - a.na(a.C.Eh) - } - - function n() { - 0 <= u && e.sa({ - text: d.Ij(u, !0), - ib: "leaderboardTitle", - za: !0 - }) - } - var q = null, - m = [], - p = { - XA: function(a, b) { - q || b(!1); - q.Ry(a, 25, function(c) { - c || b(!1); - if (c) { - var d = [], - e, f, g; - f = 0; - for (e = c.length; f < e; f++) g = c[f], d.push({ - KC: g.username, - Wf: g.score - }); - m[a] = d - } - b(!0) - }) - }, - ot: function(a) { - return m[a] - }, - up: function(a, b) { - if (q) { - q.up(a, b); - var c = m[a], - d, e, f; - if (c) - if (d = c.length, 25 > d) m[a] = null; - else { - e = 55; - for (f = 0; f < d; f++) e = Math.min(e, c[f].Wf); - b > e && (m[a] = null) - } - } - }, - HB: function(a) { - q = { - Ry: a.getBoxScores, - wE: a.getAllScores, - up: a.postScore - } - } - }; - a.subscribe(a.C.xs, function(a, b) { - p.up(a, b) - }); - var u = -1; - $(document).ready(function() { - $("#leaderboardsBtn").click(function() { - h(0) - }); - $("#leaderboardLeft").click(function() { - 0 < u && (b.W(f.qa), h(u - 1)) - }); - $("#leaderboardRight").click(function() { - u < c.Pv() - 1 && (b.W(f.qa), h(u + 1)) - }) - }); - a.subscribe(a.C.Cb, function() { - n(); - e.Hb({ - text: d.ca(g.jr), - ib: "lb-name", - za: !0 - }); - e.Hb({ - text: d.ca(g.ax), - ib: "lb-score", - za: !0 - }) - }); - return p - }(M, T, Ja, la, x, ca, F), - wc = function(a, d, c, b, f) { - function e() { - n ? m.Uu(l) : m.Vu(h); - q && (c.Hb({ - text: m.get(a.zr), - ib: "signInButton", - scale: 0.6 * f.Za - }), c.Hb({ - text: m.get(a.Ar), - ib: "signOutButton", - scale: 0.6 * f.Za - })) - } - var g = {}; - g[a.tx] = { - w: "Xbox Live", - t: "Xbox Live", - s: "Xbox Live", - u: "Xbox Live" - }; - g[a.Ar] = { - w: "Sign Out", - t: "Se d\u00e9connecter", - s: "Abmelden", - u: "\u0412\u044b\u0445\u043e\u0434" - }; - g[a.zr] = { - w: "Sign In", - t: "Se connecter", - s: "Anmelden", - u: "\u0412\u0445\u043e\u0434" - }; - g[a.cx] = { - w: "Signing In", - t: "Connexion", - s: "Anmeldevorgang l\u00e4uft", - u: "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0432\u0445\u043e\u0434" - }; - g[a.dw] = { - w: "Getting user profile", - t: "Obtention du profil utilisateur", - s: "Profil wird geladen", - u: "\u041f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f" - }; - g[a.Xw] = { - w: "Profile not found", - t: "Profil introuvable", - s: "Profil nicht gefunden", - u: "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d" - }; - g[a.Xv] = { - w: "Cannot sign in", - t: "Connexion impossible", - s: "Anmeldung fehlgeschlagen", - u: "\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0432\u043e\u0439\u0442\u0438" - }; - var h = a.WD, - l = "", - n = !1, - q = !1; - b.subscribe(b.C.Vi, function() { - q = !0; - e() - }); - var m = { - get: function(a) { - return d.ck(g[a]) - }, - Vu: function(a) { - h = a; - n = !1; - q && c.Hb({ - text: m.get(a), - ib: "signInMessage", - scale: 0.55 * f.Za - }) - }, - Uu: function(a) { - l = a; - n = !0; - q && c.Hb({ - text: a, - ib: "signInMessage", - scale: 0.55 * f.Za - }) - } - }; - b.subscribe(b.C.Cb, e); - return m - }({ - tx: 0, - Ar: 1, - zr: 2, - cx: 3, - dw: 4, - Xw: 5, - Xv: 6 - }, T, ca, M, G), - xc = function(a, d, c, b, f, e, g, h, - l, n, q) { - a("enable", function() { - c.na(c.C.Lq) - }); - a("disable", function() { - c.na(c.C.Fq) - }); - a("addStarUpdateListener", function(a) { - c.subscribe(c.C.zn, a) - }); - a("onShare", function(a) { - c.subscribe(c.C.bs, a) - }); - a("onShowOptions", function(a) { - c.subscribe(c.C.cs, a) - }); - a("refreshOptions", function() { - c.na(c.C.yn) - }); - a("getMenuText", function(a) { - return q.ca(a) - }); - a("setPaidBoxes", function(a) { - c.na(c.C.sf, a) - }); - a("promptPurchaseBoxes", function(a) { - c.subscribe(c.C.tj, a) - }); - a("onAppInit", function(a) { - c.subscribe(c.C.gq, a) - }); - a("onAppDomReady", - function(a) { - c.subscribe(c.C.fq, a) - }); - a("onAppRun", function(a) { - c.subscribe(c.C.Vi, a) - }); - a("setRoamingSettingProvider", function(a) { - c.na(c.C.ur, a) - }); - a("onRoamingDataChanged", function() { - c.na(c.C.yh) - }); - a("onSignIn", function() { - c.na(c.C.Ch) - }); - a("onSignOut", function() { - c.na(c.C.Dh) - }); - a("onUserIdChanged", function(a) { - c.na(c.C.In, a) - }); - a("onUpdateCandyScroller", function(a) { - var b = f.A(60); - c.subscribe(c.C.Eh, function() { - a(b) - }) - }); - a("getScoreImage", function(a, c) { - var d = new Image; - b.sa({ - text: a, - img: d, - width: c, - scale: 1366 === - f.wb ? 1.4 : 1, - Id: e.da - }); - return d - }); - a("extractCustomDataSource", function(a) { - var b = g.Sz(a || ""); - a = g.qt(b, "brand"); - b = g.value(g.qt(b, "manufacturer")) || ""; - a = g.value(a) || ""; - return b ? a && a !== b ? b + "-" + a : b : a ? a : "WindowsStore" - }); - a("setAchievementsProvider", function(a) { - h.OB(a) - }); - a("setLeaderboardProvider", function(a) { - l.HB(a) - }); - a("setSignInMessage", n.Vu); - a("setSignInGamertag", n.Uu); - return window.ZeptoLab - }(sc, ra, M, ca, G, P, tc, uc, vc, wc, T); - (function(a) { - a.init(); - $(document).ready(function() { - a.yb(); - a.Ep() - }) - })(rc, X, xc) - })(); -})(); \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/scripts/jquery.nanoscroller.min.js b/packages/zeptolabuklimited.cuttherope/scripts/jquery.nanoscroller.min.js deleted file mode 100644 index 5c6df37e..00000000 --- a/packages/zeptolabuklimited.cuttherope/scripts/jquery.nanoscroller.min.js +++ /dev/null @@ -1,13 +0,0 @@ -(function(c,f,g){var j,h,k,l,m;l={paneClass:"pane",sliderClass:"slider",contentClass:"content",iOSNativeScrolling:!1,preventPageScrolling:!1,disableResize:!1,alwaysVisible:!1,flashDelay:1500,sliderMinHeight:20,sliderMaxHeight:null};j="Microsoft Internet Explorer"===f.navigator.appName&&/msie 7./i.test(f.navigator.appVersion)&&f.ActiveXObject;h=null;m=function(){var b,a;b=g.createElement("div");a=b.style;a.position="absolute";a.width="100px";a.height="100px";a.overflow="scroll";a.top="-9999px";g.body.appendChild(b); -a=b.offsetWidth-b.clientWidth;g.body.removeChild(b);return a};k=function(){function b(a,b){this.el=a;this.options=b;h||(h=m());this.$el=c(this.el);this.doc=c(g);this.win=c(f);this.generate();this.createEvents();this.addEvents();this.reset()}b.prototype.preventScrolling=function(a,b){this.isActive&&("DOMMouseScroll"===a.type?("down"===b&&0a.originalEvent.detail)&&a.preventDefault():"mousewheel"===a.type&&a.originalEvent&&a.originalEvent.wheelDelta&&("down"===b&& -0>a.originalEvent.wheelDelta||"up"===b&&0=a.maxScrollTop?a.$el.trigger("scrollend"):0===a.contentScrollTop&&a.$el.trigger("scrolltop");return!1},up:function(){a.isBeingDragged=!1;a.pane.removeClass("active");a.doc.unbind("mousemove",a.events.drag).unbind("mouseup",a.events.up);return!1},resize:function(){a.reset()},panedown:function(b){a.sliderY= -(b.offsetY||b.originalEvent.layerY)-0.5*a.sliderHeight;a.scroll();a.events.down(b);return!1},scroll:function(b){a.isBeingDragged||(a.updateScrollValues(),a.sliderY=a.sliderTop,a.slider.css({top:a.sliderTop}),null!=b&&(a.contentScrollTop>=a.maxScrollTop?(a.options.preventPageScrolling&&a.preventScrolling(b,"down"),a.$el.trigger("scrollend")):0===a.contentScrollTop&&(a.options.preventPageScrolling&&a.preventScrolling(b,"up"),a.$el.trigger("scrolltop"))))},wheel:function(b){if(null!=b)return a.sliderY+= --b.wheelDeltaY||-b.delta,a.scroll(),!1}}};b.prototype.addEvents=function(){var a;this.removeEvents();a=this.events;this.options.disableResize||this.win.bind("resize",a.resize);this.slider.bind("mousedown",a.down);this.pane.bind("mousedown",a.panedown).bind("mousewheel DOMMouseScroll",a.wheel);this.content.bind("scroll mousewheel DOMMouseScroll touchmove",a.scroll)};b.prototype.removeEvents=function(){var a;a=this.events;this.win.unbind("resize",a.resize);this.slider.unbind();this.pane.unbind();this.content.unbind("scroll mousewheel DOMMouseScroll touchmove", -a.scroll).unbind("keydown",a.keydown).unbind("keyup",a.keyup)};b.prototype.generate=function(){var a,b,i,c,d;i=this.options;c=i.paneClass;d=i.sliderClass;a=i.contentClass;!this.$el.find(""+c).length&&!this.$el.find(""+d).length&&this.$el.append('
');this.content=this.$el.children("."+a);this.content.attr("tabindex",0);this.slider=this.$el.find("."+d);this.pane=this.$el.find("."+c);h&&(b={right:-h},this.$el.addClass("has-scrollbar"));i.iOSNativeScrolling&& -(null==b&&(b={}),b.WebkitOverflowScrolling="touch");null!=b&&this.content.css(b);i.alwaysVisible&&this.pane.css({opacity:1,visibility:"visible"});return this};b.prototype.restore=function(){this.stopped=!1;this.pane.show();return this.addEvents()};b.prototype.reset=function(){var a,b,c,f,d,g,e;this.$el.find("."+this.options.paneClass).length||this.generate().stop();this.stopped&&this.restore();a=this.content[0];c=a.style;f=c.overflowY;j&&this.content.css({height:this.content.height()});b=a.scrollHeight+ -h;g=this.pane.outerHeight();e=parseInt(this.pane.css("top"),10);d=parseInt(this.pane.css("bottom"),10);d=g+e+d;e=Math.round(d/b*d);ethis.options.sliderMaxHeight&&(e=this.options.sliderMaxHeight);"scroll"===f&&"scroll"!==c.overflowX&&(e+=h);this.maxSliderTop=d-e;this.contentHeight=b;this.paneHeight=g;this.paneOuterHeight=d;this.sliderHeight=e;this.slider.height(e);this.events.scroll();this.pane.show(); -this.isActive=!0;this.pane.outerHeight(!0)>=a.scrollHeight&&"scroll"!==f?(this.pane.hide(),this.isActive=!1):this.el.clientHeight===a.scrollHeight&&"scroll"===f?this.slider.hide():this.slider.show();return this};b.prototype.scroll=function(){this.sliderY=Math.max(0,this.sliderY);this.sliderY=Math.min(this.maxSliderTop,this.sliderY);this.content.scrollTop(-1*((this.paneHeight-this.contentHeight+h)*this.sliderY/this.maxSliderTop));this.slider.css({top:this.sliderY});return this};b.prototype.scrollBottom= -function(a){this.reset();this.content.scrollTop(this.contentHeight-this.content.height()-a).trigger("mousewheel");return this};b.prototype.scrollTop=function(a){this.reset();this.content.scrollTop(+a).trigger("mousewheel");return this};b.prototype.scrollTo=function(a){this.reset();a=c(a).offset().top;a>this.maxSliderTop&&(a/=this.contentHeight,this.sliderY=a*=this.maxSliderTop,this.scroll());return this};b.prototype.stop=function(){this.stopped=!0;this.removeEvents();this.pane.hide();return this}; -b.prototype.flash=function(){var a=this;this.pane.addClass("flashed");setTimeout(function(){a.pane.removeClass("flashed")},this.options.flashDelay);return this};return b}();c.fn.nanoScroller=function(b){return this.each(function(){var a;if(!(a=this.nanoscroller))a=c.extend({},l),b&&"object"===typeof b&&(a=c.extend(a,b)),this.nanoscroller=a=new k(this,a);if(b&&"object"===typeof b){c.extend(a.options,b);if(b.scrollBottom)return a.scrollBottom(b.scrollBottom);if(b.scrollTop)return a.scrollTop(b.scrollTop); -if(b.scrollTo)return a.scrollTo(b.scrollTo);if("bottom"===b.scroll)return a.scrollBottom(0);if("top"===b.scroll)return a.scrollTop(0);if(b.scroll&&b.scroll instanceof c)return a.scrollTo(b.scroll);if(b.stop)return a.stop();if(b.flash)return a.flash()}return a.reset()})}})(jQuery,window,document); \ No newline at end of file diff --git a/packages/zeptolabuklimited.cuttherope/scripts/libraries.js b/packages/zeptolabuklimited.cuttherope/scripts/libraries.js deleted file mode 100644 index 30dc3c88..00000000 --- a/packages/zeptolabuklimited.cuttherope/scripts/libraries.js +++ /dev/null @@ -1,144 +0,0 @@ -/** - * almond 0.2.6 Copyright (c) 2011-2012, The Dojo Foundation All Rights Reserved. - * Available via the MIT or new BSD license. - * see: http://github.com/jrburke/almond for details - */ -var requirejs,require,define; -(function(n){function t(a,b){var c,p,e,g,d,l,y,f,m,q=b&&b.split("/"),n=k.map,h=n&&n["*"]||{};if(a&&"."===a.charAt(0))if(b){q=q.slice(0,q.length-1);a=q.concat(a.split("/"));for(f=0;f)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^-ms-/,N=/-([\da-z])/gi,E=function(e,t){return t.toUpperCase()},S=function(){o.removeEventListener("DOMContentLoaded",S,!1),e.removeEventListener("load",S,!1),x.ready()};x.fn=x.prototype={jquery:p,constructor:x,init:function(e,t,n){var r,i;if(!e)return this;if("string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:T.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),C.test(r[1])&&x.isPlainObject(t))for(r in t)x.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return i=o.getElementById(r[2]),i&&i.parentNode&&(this.length=1,this[0]=i),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?n.ready(e):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return d.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,t,n,r,i,o,s=arguments[0]||{},a=1,u=arguments.length,l=!1;for("boolean"==typeof s&&(l=s,s=arguments[1]||{},a=2),"object"==typeof s||x.isFunction(s)||(s={}),u===a&&(s=this,--a);u>a;a++)if(null!=(e=arguments[a]))for(t in e)n=s[t],r=e[t],s!==r&&(l&&r&&(x.isPlainObject(r)||(i=x.isArray(r)))?(i?(i=!1,o=n&&x.isArray(n)?n:[]):o=n&&x.isPlainObject(n)?n:{},s[t]=x.extend(l,o,r)):r!==undefined&&(s[t]=r));return s},x.extend({expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=a),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){(e===!0?--x.readyWait:x.isReady)||(x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(o,[x]),x.fn.trigger&&x(o).trigger("ready").off("ready")))},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if("object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:JSON.parse,parseXML:function(e){var t,n;if(!e||"string"!=typeof e)return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&x.error("Invalid XML: "+e),t},noop:function(){},globalEval:function(e){var t,n=eval;e=x.trim(e),e&&(1===e.indexOf("use strict")?(t=o.createElement("script"),t.text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(k,"ms-").replace(N,E)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,s=j(e);if(n){if(s){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(s){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:function(e){return null==e?"":v.call(e)},makeArray:function(e,t){var n=t||[];return null!=e&&(j(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:g.call(t,e,n)},merge:function(e,t){var n=t.length,r=e.length,i=0;if("number"==typeof n)for(;n>i;i++)e[r++]=t[i];else while(t[i]!==undefined)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){var r,i=[],o=0,s=e.length;for(n=!!n;s>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,s=j(e),a=[];if(s)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(a[a.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(a[a.length]=r);return f.apply([],a)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(n=e[t],t=e,e=n),x.isFunction(e)?(r=d.call(arguments,2),i=function(){return e.apply(t||this,r.concat(d.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):undefined},access:function(e,t,n,r,i,o,s){var a=0,u=e.length,l=null==n;if("object"===x.type(n)){i=!0;for(a in n)x.access(e,t,a,n[a],!0,o,s)}else if(r!==undefined&&(i=!0,x.isFunction(r)||(s=!0),l&&(s?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;u>a;a++)t(e[a],n,s?r:r.call(e[a],a,t(e[a],n)));return i?e:l?t.call(e):u?t(e[0],n):o},now:Date.now,swap:function(e,t,n,r){var i,o,s={};for(o in t)s[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=s[o];return i}}),x.ready.promise=function(t){return n||(n=x.Deferred(),"complete"===o.readyState?setTimeout(x.ready):(o.addEventListener("DOMContentLoaded",S,!1),e.addEventListener("load",S,!1))),n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function j(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}t=x(o),function(e,undefined){var t,n,r,i,o,s,a,u,l,c,p,f,h,d,g,m,y,v="sizzle"+-new Date,b=e.document,w=0,T=0,C=st(),k=st(),N=st(),E=!1,S=function(e,t){return e===t?(E=!0,0):0},j=typeof undefined,D=1<<31,A={}.hasOwnProperty,L=[],q=L.pop,H=L.push,O=L.push,F=L.slice,P=L.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",W="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",$=W.replace("w","w#"),B="\\["+M+"*("+W+")"+M+"*(?:([*^$|!~]?=)"+M+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+$+")|)|)"+M+"*\\]",I=":("+W+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+B.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=RegExp("^"+M+"*,"+M+"*"),X=RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=RegExp(M+"*[+~]"),Y=RegExp("="+M+"*([^\\]'\"]*)"+M+"*\\]","g"),V=RegExp(I),G=RegExp("^"+$+"$"),J={ID:RegExp("^#("+W+")"),CLASS:RegExp("^\\.("+W+")"),TAG:RegExp("^("+W.replace("w","w*")+")"),ATTR:RegExp("^"+B),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:RegExp("^(?:"+R+")$","i"),needsContext:RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Q=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Z=/^(?:input|select|textarea|button)$/i,et=/^h\d$/i,tt=/'|\\/g,nt=RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),rt=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{O.apply(L=F.call(b.childNodes),b.childNodes),L[b.childNodes.length].nodeType}catch(it){O={apply:L.length?function(e,t){H.apply(e,F.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function ot(e,t,r,i){var o,s,a,u,l,f,g,m,x,w;if((t?t.ownerDocument||t:b)!==p&&c(t),t=t||p,r=r||[],!e||"string"!=typeof e)return r;if(1!==(u=t.nodeType)&&9!==u)return[];if(h&&!i){if(o=K.exec(e))if(a=o[1]){if(9===u){if(s=t.getElementById(a),!s||!s.parentNode)return r;if(s.id===a)return r.push(s),r}else if(t.ownerDocument&&(s=t.ownerDocument.getElementById(a))&&y(t,s)&&s.id===a)return r.push(s),r}else{if(o[2])return O.apply(r,t.getElementsByTagName(e)),r;if((a=o[3])&&n.getElementsByClassName&&t.getElementsByClassName)return O.apply(r,t.getElementsByClassName(a)),r}if(n.qsa&&(!d||!d.test(e))){if(m=g=v,x=t,w=9===u&&e,1===u&&"object"!==t.nodeName.toLowerCase()){f=gt(e),(g=t.getAttribute("id"))?m=g.replace(tt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",l=f.length;while(l--)f[l]=m+mt(f[l]);x=U.test(e)&&t.parentNode||t,w=f.join(",")}if(w)try{return O.apply(r,x.querySelectorAll(w)),r}catch(T){}finally{g||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,r,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>i.cacheLength&&delete t[e.shift()],t[n]=r}return t}function at(e){return e[v]=!0,e}function ut(e){var t=p.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function lt(e,t){var n=e.split("|"),r=e.length;while(r--)i.attrHandle[n[r]]=t}function ct(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return at(function(t){return t=+t,at(function(n,r){var i,o=e([],n.length,t),s=o.length;while(s--)n[i=o[s]]&&(n[i]=!(r[i]=n[i]))})})}s=ot.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},n=ot.support={},c=ot.setDocument=function(e){var t=e?e.ownerDocument||e:b,r=t.defaultView;return t!==p&&9===t.nodeType&&t.documentElement?(p=t,f=t.documentElement,h=!s(t),r&&r.attachEvent&&r!==r.top&&r.attachEvent("onbeforeunload",function(){c()}),n.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ut(function(e){return e.appendChild(t.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=ut(function(e){return e.innerHTML="
",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),n.getById=ut(function(e){return f.appendChild(e).id=v,!t.getElementsByName||!t.getElementsByName(v).length}),n.getById?(i.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){return e.getAttribute("id")===t}}):(delete i.find.ID,i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=n.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==j?t.getElementsByTagName(e):undefined}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.CLASS=n.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==j&&h?t.getElementsByClassName(e):undefined},g=[],d=[],(n.qsa=Q.test(t.querySelectorAll))&&(ut(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll(":checked").length||d.push(":checked")}),ut(function(e){var n=t.createElement("input");n.setAttribute("type","hidden"),e.appendChild(n).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&d.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||d.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),d.push(",.*:")})),(n.matchesSelector=Q.test(m=f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ut(function(e){n.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",I)}),d=d.length&&RegExp(d.join("|")),g=g.length&&RegExp(g.join("|")),y=Q.test(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},S=f.compareDocumentPosition?function(e,r){if(e===r)return E=!0,0;var i=r.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(r);return i?1&i||!n.sortDetached&&r.compareDocumentPosition(e)===i?e===t||y(b,e)?-1:r===t||y(b,r)?1:l?P.call(l,e)-P.call(l,r):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,n){var r,i=0,o=e.parentNode,s=n.parentNode,a=[e],u=[n];if(e===n)return E=!0,0;if(!o||!s)return e===t?-1:n===t?1:o?-1:s?1:l?P.call(l,e)-P.call(l,n):0;if(o===s)return ct(e,n);r=e;while(r=r.parentNode)a.unshift(r);r=n;while(r=r.parentNode)u.unshift(r);while(a[i]===u[i])i++;return i?ct(a[i],u[i]):a[i]===b?-1:u[i]===b?1:0},t):p},ot.matches=function(e,t){return ot(e,null,null,t)},ot.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Y,"='$1']"),!(!n.matchesSelector||!h||g&&g.test(t)||d&&d.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(i){}return ot(t,p,null,[e]).length>0},ot.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},ot.attr=function(e,t){(e.ownerDocument||e)!==p&&c(e);var r=i.attrHandle[t.toLowerCase()],o=r&&A.call(i.attrHandle,t.toLowerCase())?r(e,t,!h):undefined;return o===undefined?n.attributes||!h?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null:o},ot.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},ot.uniqueSort=function(e){var t,r=[],i=0,o=0;if(E=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(S),E){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return e},o=ot.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=ot.selectors={cacheLength:50,createPseudo:at,match:J,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(nt,rt),e[3]=(e[4]||e[5]||"").replace(nt,rt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ot.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ot.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return J.CHILD.test(e[0])?null:(e[3]&&e[4]!==undefined?e[2]=e[4]:n&&V.test(n)&&(t=gt(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(nt,rt).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ot.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,h,d,g=o!==s?"nextSibling":"previousSibling",m=t.parentNode,y=a&&t.nodeName.toLowerCase(),x=!u&&!a;if(m){if(o){while(g){p=t;while(p=p[g])if(a?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&x){c=m[v]||(m[v]={}),l=c[e]||[],h=l[0]===w&&l[1],f=l[0]===w&&l[2],p=h&&m.childNodes[h];while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[w,h,f];break}}else if(x&&(l=(t[v]||(t[v]={}))[e])&&l[0]===w)f=l[1];else while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if((a?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(x&&((p[v]||(p[v]={}))[e]=[w,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||ot.error("unsupported pseudo: "+e);return r[v]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?at(function(e,n){var i,o=r(e,t),s=o.length;while(s--)i=P.call(e,o[s]),e[i]=!(n[i]=o[s])}):function(e){return r(e,0,n)}):r}},pseudos:{not:at(function(e){var t=[],n=[],r=a(e.replace(z,"$1"));return r[v]?at(function(e,t,n,i){var o,s=r(e,null,i,[]),a=e.length;while(a--)(o=s[a])&&(e[a]=!(t[a]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:at(function(e){return function(t){return ot(e,t).length>0}}),contains:at(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:at(function(e){return G.test(e||"")||ot.error("unsupported lang: "+e),e=e.replace(nt,rt).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return et.test(e.nodeName)},input:function(e){return Z.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},i.pseudos.nth=i.pseudos.eq;for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})i.pseudos[t]=ft(t);function dt(){}dt.prototype=i.filters=i.pseudos,i.setFilters=new dt;function gt(e,t){var n,r,o,s,a,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);a=e,u=[],l=i.preFilter;while(a){(!n||(r=_.exec(a)))&&(r&&(a=a.slice(r[0].length)||a),u.push(o=[])),n=!1,(r=X.exec(a))&&(n=r.shift(),o.push({value:n,type:r[0].replace(z," ")}),a=a.slice(n.length));for(s in i.filter)!(r=J[s].exec(a))||l[s]&&!(r=l[s](r))||(n=r.shift(),o.push({value:n,type:s,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ot.error(e):k(e,u).slice(0)}function mt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function yt(e,t,n){var i=t.dir,o=n&&"parentNode"===i,s=T++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,a){var u,l,c,p=w+" "+s;if(a){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,a))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[v]||(t[v]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,a)||r,l[1]===!0)return!0}}function vt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,s=[],a=0,u=e.length,l=null!=t;for(;u>a;a++)(o=e[a])&&(!n||n(o,r,i))&&(s.push(o),l&&t.push(a));return s}function bt(e,t,n,r,i,o){return r&&!r[v]&&(r=bt(r)),i&&!i[v]&&(i=bt(i,o)),at(function(o,s,a,u){var l,c,p,f=[],h=[],d=s.length,g=o||Ct(t||"*",a.nodeType?[a]:a,[]),m=!e||!o&&t?g:xt(g,f,e,a,u),y=n?i||(o?e:d||r)?[]:s:m;if(n&&n(m,y,a,u),r){l=xt(y,h),r(l,[],a,u),c=l.length;while(c--)(p=l[c])&&(y[h[c]]=!(m[h[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?P.call(o,p):f[c])>-1&&(o[l]=!(s[l]=p))}}else y=xt(y===s?y.splice(d,y.length):y),i?i(null,s,y,u):O.apply(s,y)})}function wt(e){var t,n,r,o=e.length,s=i.relative[e[0].type],a=s||i.relative[" "],l=s?1:0,c=yt(function(e){return e===t},a,!0),p=yt(function(e){return P.call(t,e)>-1},a,!0),f=[function(e,n,r){return!s&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>l;l++)if(n=i.relative[e[l].type])f=[yt(vt(f),n)];else{if(n=i.filter[e[l].type].apply(null,e[l].matches),n[v]){for(r=++l;o>r;r++)if(i.relative[e[r].type])break;return bt(l>1&&vt(f),l>1&&mt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&wt(e.slice(l,r)),o>r&&wt(e=e.slice(r)),o>r&&mt(e))}f.push(n)}return vt(f)}function Tt(e,t){var n=0,o=t.length>0,s=e.length>0,a=function(a,l,c,f,h){var d,g,m,y=[],v=0,x="0",b=a&&[],T=null!=h,C=u,k=a||s&&i.find.TAG("*",h&&l.parentNode||l),N=w+=null==C?1:Math.random()||.1;for(T&&(u=l!==p&&l,r=n);null!=(d=k[x]);x++){if(s&&d){g=0;while(m=e[g++])if(m(d,l,c)){f.push(d);break}T&&(w=N,r=++n)}o&&((d=!m&&d)&&v--,a&&b.push(d))}if(v+=x,o&&x!==v){g=0;while(m=t[g++])m(b,y,l,c);if(a){if(v>0)while(x--)b[x]||y[x]||(y[x]=q.call(f));y=xt(y)}O.apply(f,y),T&&!a&&y.length>0&&v+t.length>1&&ot.uniqueSort(f)}return T&&(w=N,u=C),b};return o?at(a):a}a=ot.compile=function(e,t){var n,r=[],i=[],o=N[e+" "];if(!o){t||(t=gt(e)),n=t.length;while(n--)o=wt(t[n]),o[v]?r.push(o):i.push(o);o=N(e,Tt(i,r))}return o};function Ct(e,t,n){var r=0,i=t.length;for(;i>r;r++)ot(e,t[r],n);return n}function kt(e,t,r,o){var s,u,l,c,p,f=gt(e);if(!o&&1===f.length){if(u=f[0]=f[0].slice(0),u.length>2&&"ID"===(l=u[0]).type&&n.getById&&9===t.nodeType&&h&&i.relative[u[1].type]){if(t=(i.find.ID(l.matches[0].replace(nt,rt),t)||[])[0],!t)return r;e=e.slice(u.shift().value.length)}s=J.needsContext.test(e)?0:u.length;while(s--){if(l=u[s],i.relative[c=l.type])break;if((p=i.find[c])&&(o=p(l.matches[0].replace(nt,rt),U.test(u[0].type)&&t.parentNode||t))){if(u.splice(s,1),e=o.length&&mt(u),!e)return O.apply(r,o),r;break}}}return a(e,f)(o,t,!h,r,U.test(e)),r}n.sortStable=v.split("").sort(S).join("")===v,n.detectDuplicates=E,c(),n.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(p.createElement("div"))}),ut(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||lt("type|href|height|width",function(e,t,n){return n?undefined:e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ut(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||lt("value",function(e,t,n){return n||"input"!==e.nodeName.toLowerCase()?undefined:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||lt(R,function(e,t,n){var r;return n?undefined:(r=e.getAttributeNode(t))&&r.specified?r.value:e[t]===!0?t.toLowerCase():null}),x.find=ot,x.expr=ot.selectors,x.expr[":"]=x.expr.pseudos,x.unique=ot.uniqueSort,x.text=ot.getText,x.isXMLDoc=ot.isXML,x.contains=ot.contains}(e);var D={};function A(e){var t=D[e]={};return x.each(e.match(w)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?D[e]||A(e):x.extend({},e);var t,n,r,i,o,s,a=[],u=!e.once&&[],l=function(p){for(t=e.memory&&p,n=!0,s=i||0,i=0,o=a.length,r=!0;a&&o>s;s++)if(a[s].apply(p[0],p[1])===!1&&e.stopOnFalse){t=!1;break}r=!1,a&&(u?u.length&&l(u.shift()):t?a=[]:c.disable())},c={add:function(){if(a){var n=a.length;(function s(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&c.has(n)||a.push(n):n&&n.length&&"string"!==r&&s(n)})})(arguments),r?o=a.length:t&&(i=n,l(t))}return this},remove:function(){return a&&x.each(arguments,function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),r&&(o>=n&&o--,s>=n&&s--)}),this},has:function(e){return e?x.inArray(e,a)>-1:!(!a||!a.length)},empty:function(){return a=[],o=0,this},disable:function(){return a=u=t=undefined,this},disabled:function(){return!a},lock:function(){return u=undefined,t||c.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!a||n&&!u||(t=t||[],t=[e,t.slice?t.slice():t],r?u.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var s=o[0],a=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var s=o[2],a=o[3];r[o[1]]=s.add,a&&s.add(function(){n=a},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=s.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=d.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),s=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?d.call(arguments):r,n===a?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},a,u,l;if(r>1)for(a=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(s(t,l,n)).fail(o.reject).progress(s(t,u,a)):--i;return i||o.resolveWith(l,n),o.promise()}}),x.support=function(t){var n=o.createElement("input"),r=o.createDocumentFragment(),i=o.createElement("div"),s=o.createElement("select"),a=s.appendChild(o.createElement("option"));return n.type?(n.type="checkbox",t.checkOn=""!==n.value,t.optSelected=a.selected,t.reliableMarginRight=!0,t.boxSizingReliable=!0,t.pixelPosition=!1,n.checked=!0,t.noCloneChecked=n.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!a.disabled,n=o.createElement("input"),n.value="t",n.type="radio",t.radioValue="t"===n.value,n.setAttribute("checked","t"),n.setAttribute("name","t"),r.appendChild(n),t.checkClone=r.cloneNode(!0).cloneNode(!0).lastChild.checked,t.focusinBubbles="onfocusin"in e,i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===i.style.backgroundClip,x(function(){var n,r,s="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",a=o.getElementsByTagName("body")[0];a&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(i),i.innerHTML="",i.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",x.swap(a,null!=a.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===i.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(i,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(i,null)||{width:"4px"}).width,r=i.appendChild(o.createElement("div")),r.style.cssText=i.style.cssText=s,r.style.marginRight=r.style.width="0",i.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),a.removeChild(n))}),t):t}({});var L,q,H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,O=/([A-Z])/g;function F(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=x.expando+Math.random()}F.uid=1,F.accepts=function(e){return e.nodeType?1===e.nodeType||9===e.nodeType:!0},F.prototype={key:function(e){if(!F.accepts(e))return 0;var t={},n=e[this.expando];if(!n){n=F.uid++;try{t[this.expando]={value:n},Object.defineProperties(e,t)}catch(r){t[this.expando]=n,x.extend(e,t)}}return this.cache[n]||(this.cache[n]={}),n},set:function(e,t,n){var r,i=this.key(e),o=this.cache[i];if("string"==typeof t)o[t]=n;else if(x.isEmptyObject(o))x.extend(this.cache[i],t);else for(r in t)o[r]=t[r];return o},get:function(e,t){var n=this.cache[this.key(e)];return t===undefined?n:n[t]},access:function(e,t,n){var r;return t===undefined||t&&"string"==typeof t&&n===undefined?(r=this.get(e,t),r!==undefined?r:this.get(e,x.camelCase(t))):(this.set(e,t,n),n!==undefined?n:t)},remove:function(e,t){var n,r,i,o=this.key(e),s=this.cache[o];if(t===undefined)this.cache[o]={};else{x.isArray(t)?r=t.concat(t.map(x.camelCase)):(i=x.camelCase(t),t in s?r=[t,i]:(r=i,r=r in s?[r]:r.match(w)||[])),n=r.length;while(n--)delete s[r[n]]}},hasData:function(e){return!x.isEmptyObject(this.cache[e[this.expando]]||{})},discard:function(e){e[this.expando]&&delete this.cache[e[this.expando]]}},L=new F,q=new F,x.extend({acceptData:F.accepts,hasData:function(e){return L.hasData(e)||q.hasData(e)},data:function(e,t,n){return L.access(e,t,n)},removeData:function(e,t){L.remove(e,t)},_data:function(e,t,n){return q.access(e,t,n)},_removeData:function(e,t){q.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,r,i=this[0],o=0,s=null;if(e===undefined){if(this.length&&(s=L.get(i),1===i.nodeType&&!q.get(i,"hasDataAttrs"))){for(n=i.attributes;n.length>o;o++)r=n[o].name,0===r.indexOf("data-")&&(r=x.camelCase(r.slice(5)),P(i,r,s[r]));q.set(i,"hasDataAttrs",!0)}return s}return"object"==typeof e?this.each(function(){L.set(this,e)}):x.access(this,function(t){var n,r=x.camelCase(e);if(i&&t===undefined){if(n=L.get(i,e),n!==undefined)return n;if(n=L.get(i,r),n!==undefined)return n;if(n=P(i,r,undefined),n!==undefined)return n}else this.each(function(){var n=L.get(this,r);L.set(this,r,t),-1!==e.indexOf("-")&&n!==undefined&&L.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){L.remove(this,e)})}});function P(e,t,n){var r;if(n===undefined&&1===e.nodeType)if(r="data-"+t.replace(O,"-$1").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:H.test(n)?JSON.parse(n):n}catch(i){}L.set(e,t,n)}else n=undefined;return n}x.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=q.get(e,t),n&&(!r||x.isArray(n)?r=q.access(e,t,x.makeArray(n)):r.push(n)),r||[]):undefined},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),s=function(){x.dequeue(e,t) -};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q.access(e,n,{empty:x.Callbacks("once memory").add(function(){q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),n>arguments.length?x.queue(this[0],e):t===undefined?this:this.each(function(){var n=x.queue(this,e,t);x._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=undefined),e=e||"fx";while(s--)n=q.get(o[s],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(a));return a(),i.promise(t)}});var R,M,W=/[\t\r\n\f]/g,$=/\r/g,B=/^(?:input|select|textarea|button)$/i;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})},addClass:function(e){var t,n,r,i,o,s=0,a=this.length,u="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,s=0,a=this.length,u=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,i=0,o=x(this),s=e.match(w)||[];while(t=s[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===r||"boolean"===n)&&(this.className&&q.set(this,"__className__",this.className),this.className=this.className||e===!1?"":q.get(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(W," ").indexOf(t)>=0)return!0;return!1},val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=x.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,x(this).val()):e,null==i?i="":"number"==typeof i?i+="":x.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&t.set(this,i,"value")!==undefined||(this.value=i))});if(i)return t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,"string"==typeof n?n.replace($,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,s=o?null:[],a=o?i+1:r.length,u=0>i?a:o?i:0;for(;a>u;u++)if(n=r[u],!(!n.selected&&u!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),s=i.length;while(s--)r=i[s],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,t,n){var i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===r?x.prop(e,t,n):(1===s&&x.isXMLDoc(e)||(t=t.toLowerCase(),i=x.attrHooks[t]||(x.expr.match.bool.test(t)?M:R)),n===undefined?i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=x.find.attr(e,t),null==o?undefined:o):null!==n?i&&"set"in i&&(o=i.set(e,n,t))!==undefined?o:(e.setAttribute(t,n+""),n):(x.removeAttr(e,t),undefined))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return o=1!==s||!x.isXMLDoc(e),o&&(t=x.propFix[t]||t,i=x.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||B.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),M={set:function(e,t,n){return t===!1?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,t){var n=x.expr.attrHandle[t]||x.find.attr;x.expr.attrHandle[t]=function(e,t,r){var i=x.expr.attrHandle[t],o=r?undefined:(x.expr.attrHandle[t]=undefined)!=n(e,t,r)?t.toLowerCase():null;return x.expr.attrHandle[t]=i,o}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){return x.isArray(t)?e.checked=x.inArray(x(e).val(),t)>=0:undefined}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var I=/^key/,z=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,X=/^([^.]*)(?:\.(.+)|)$/;function U(){return!0}function Y(){return!1}function V(){try{return o.activeElement}catch(e){}}x.event={global:{},add:function(e,t,n,i,o){var s,a,u,l,c,p,f,h,d,g,m,y=q.get(e);if(y){n.handler&&(s=n,n=s.handler,o=s.selector),n.guid||(n.guid=x.guid++),(l=y.events)||(l=y.events={}),(a=y.handle)||(a=y.handle=function(e){return typeof x===r||e&&x.event.triggered===e.type?undefined:x.event.dispatch.apply(a.elem,arguments)},a.elem=e),t=(t||"").match(w)||[""],c=t.length;while(c--)u=X.exec(t[c])||[],d=m=u[1],g=(u[2]||"").split(".").sort(),d&&(f=x.event.special[d]||{},d=(o?f.delegateType:f.bindType)||d,f=x.event.special[d]||{},p=x.extend({type:d,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&x.expr.match.needsContext.test(o),namespace:g.join(".")},s),(h=l[d])||(h=l[d]=[],h.delegateCount=0,f.setup&&f.setup.call(e,i,g,a)!==!1||e.addEventListener&&e.addEventListener(d,a,!1)),f.add&&(f.add.call(e,p),p.handler.guid||(p.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,p):h.push(p),x.event.global[d]=!0);e=null}},remove:function(e,t,n,r,i){var o,s,a,u,l,c,p,f,h,d,g,m=q.hasData(e)&&q.get(e);if(m&&(u=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(a=X.exec(t[l])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){p=x.event.special[h]||{},h=(r?p.delegateType:p.bindType)||h,f=u[h]||[],a=a[2]&&RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=o=f.length;while(o--)c=f[o],!i&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(o,1),c.selector&&f.delegateCount--,p.remove&&p.remove.call(e,c));s&&!f.length&&(p.teardown&&p.teardown.call(e,d,m.handle)!==!1||x.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)x.event.remove(e,h+t[l],n,r,!0);x.isEmptyObject(u)&&(delete m.handle,q.remove(e,"events"))}},trigger:function(t,n,r,i){var s,a,u,l,c,p,f,h=[r||o],d=y.call(t,"type")?t.type:t,g=y.call(t,"namespace")?t.namespace.split("."):[];if(a=u=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!_.test(d+x.event.triggered)&&(d.indexOf(".")>=0&&(g=d.split("."),d=g.shift(),g.sort()),c=0>d.indexOf(":")&&"on"+d,t=t[x.expando]?t:new x.Event(d,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=g.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=undefined,t.target||(t.target=r),n=null==n?[t]:x.makeArray(n,[t]),f=x.event.special[d]||{},i||!f.trigger||f.trigger.apply(r,n)!==!1)){if(!i&&!f.noBubble&&!x.isWindow(r)){for(l=f.delegateType||d,_.test(l+d)||(a=a.parentNode);a;a=a.parentNode)h.push(a),u=a;u===(r.ownerDocument||o)&&h.push(u.defaultView||u.parentWindow||e)}s=0;while((a=h[s++])&&!t.isPropagationStopped())t.type=s>1?l:f.bindType||d,p=(q.get(a,"events")||{})[t.type]&&q.get(a,"handle"),p&&p.apply(a,n),p=c&&a[c],p&&x.acceptData(a)&&p.apply&&p.apply(a,n)===!1&&t.preventDefault();return t.type=d,i||t.isDefaultPrevented()||f._default&&f._default.apply(h.pop(),n)!==!1||!x.acceptData(r)||c&&x.isFunction(r[d])&&!x.isWindow(r)&&(u=r[c],u&&(r[c]=null),x.event.triggered=d,r[d](),x.event.triggered=undefined,u&&(r[c]=u)),t.result}},dispatch:function(e){e=x.event.fix(e);var t,n,r,i,o,s=[],a=d.call(arguments),u=(q.get(this,"events")||{})[e.type]||[],l=x.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),t=0;while((i=s[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(o.namespace))&&(e.handleObj=o,e.data=o.data,r=((x.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,s=[],a=t.delegateCount,u=e.target;if(a&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!==this;u=u.parentNode||this)if(u.disabled!==!0||"click"!==e.type){for(r=[],n=0;a>n;n++)o=t[n],i=o.selector+" ",r[i]===undefined&&(r[i]=o.needsContext?x(i,this).index(u)>=0:x.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&s.push({elem:u,handlers:r})}return t.length>a&&s.push({elem:this,handlers:t.slice(a)}),s},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,s=t.button;return null==e.pageX&&null!=t.clientX&&(n=e.target.ownerDocument||o,r=n.documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||s===undefined||(e.which=1&s?1:2&s?3:4&s?2:0),e}},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,s=e,a=this.fixHooks[i];a||(this.fixHooks[i]=a=z.test(i)?this.mouseHooks:I.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new x.Event(s),t=r.length;while(t--)n=r[t],e[n]=s[n];return e.target||(e.target=o),3===e.target.nodeType&&(e.target=e.target.parentNode),a.filter?a.filter(e,s):e},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==V()&&this.focus?(this.focus(),!1):undefined},delegateType:"focusin"},blur:{trigger:function(){return this===V()&&this.blur?(this.blur(),!1):undefined},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&x.nodeName(this,"input")?(this.click(),!1):undefined},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==undefined&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)},x.Event=function(e,t){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.getPreventDefault&&e.getPreventDefault()?U:Y):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,undefined):new x.Event(e,t)},x.Event.prototype={isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=U,e&&e.preventDefault&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=U,e&&e.stopPropagation&&e.stopPropagation()},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=U,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,t,n,r,i){var o,s;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=undefined);for(s in e)this.on(s,t,n,e[s],i);return this}if(null==n&&null==r?(r=t,n=t=undefined):null==r&&("string"==typeof t?(r=n,n=undefined):(r=n,n=t,t=undefined)),r===!1)r=Y;else if(!r)return this;return 1===i&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),this.each(function(){x.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,x(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=undefined),n===!1&&(n=Y),this.each(function(){x.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?x.event.trigger(e,t,n,!0):undefined}});var G=/^.[^:#\[\.,]*$/,J=/^(?:parents|prev(?:Until|All))/,Q=x.expr.match.needsContext,K={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){var e=0;for(;n>e;e++)if(x.contains(this,t[e]))return!0})},not:function(e){return this.pushStack(et(this,e||[],!0))},filter:function(e){return this.pushStack(et(this,e||[],!1))},is:function(e){return!!et(this,"string"==typeof e&&Q.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],s=Q.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(s?s.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?g.call(x(e),this[0]):g.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function Z(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return Z(e,"nextSibling")},prev:function(e){return Z(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return e.contentDocument||x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(K[e]||x.unique(i),J.test(e)&&i.reverse()),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function et(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(G.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return g.call(t,e)>=0!==n})}var tt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,nt=/<([\w:]+)/,rt=/<|&#?\w+;/,it=/<(?:script|style|link)/i,ot=/^(?:checkbox|radio)$/i,st=/checked\s*(?:[^=]|=\s*.checked.)/i,at=/^$|\/(?:java|ecma)script/i,ut=/^true\/(.*)/,lt=/^\s*\s*$/g,ct={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ct.optgroup=ct.option,ct.tbody=ct.tfoot=ct.colgroup=ct.caption=ct.thead,ct.th=ct.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===undefined?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(mt(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&dt(mt(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(mt(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!it.test(e)&&!ct[(nt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(tt,"<$1>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(mt(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=f.apply([],e);var r,i,o,s,a,u,l=0,c=this.length,p=this,h=c-1,d=e[0],g=x.isFunction(d);if(g||!(1>=c||"string"!=typeof d||x.support.checkClone)&&st.test(d))return this.each(function(r){var i=p.eq(r);g&&(e[0]=d.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(r=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),i=r.firstChild,1===r.childNodes.length&&(r=i),i)){for(o=x.map(mt(r,"script"),ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,mt(a,"script"))),t.call(this[l],a,l);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,ht),l=0;s>l;l++)a=o[l],at.test(a.type||"")&&!q.access(a,"globalEval")&&x.contains(u,a)&&(a.src?x._evalUrl(a.src):x.globalEval(a.textContent.replace(lt,"")))}return this}}),x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=[],i=x(e),o=i.length-1,s=0;for(;o>=s;s++)n=s===o?this:this.clone(!0),x(i[s])[t](n),h.apply(r,n.get());return this.pushStack(r)}}),x.extend({clone:function(e,t,n){var r,i,o,s,a=e.cloneNode(!0),u=x.contains(e.ownerDocument,e);if(!(x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(s=mt(a),o=mt(e),r=0,i=o.length;i>r;r++)yt(o[r],s[r]);if(t)if(n)for(o=o||mt(e),s=s||mt(a),r=0,i=o.length;i>r;r++)gt(o[r],s[r]);else gt(e,a);return s=mt(a,"script"),s.length>0&&dt(s,!u&&mt(e,"script")),a},buildFragment:function(e,t,n,r){var i,o,s,a,u,l,c=0,p=e.length,f=t.createDocumentFragment(),h=[];for(;p>c;c++)if(i=e[c],i||0===i)if("object"===x.type(i))x.merge(h,i.nodeType?[i]:i);else if(rt.test(i)){o=o||f.appendChild(t.createElement("div")),s=(nt.exec(i)||["",""])[1].toLowerCase(),a=ct[s]||ct._default,o.innerHTML=a[1]+i.replace(tt,"<$1>")+a[2],l=a[0];while(l--)o=o.lastChild;x.merge(h,o.childNodes),o=f.firstChild,o.textContent=""}else h.push(t.createTextNode(i));f.textContent="",c=0;while(i=h[c++])if((!r||-1===x.inArray(i,r))&&(u=x.contains(i.ownerDocument,i),o=mt(f.appendChild(i),"script"),u&&dt(o),n)){l=0;while(i=o[l++])at.test(i.type||"")&&n.push(i)}return f},cleanData:function(e){var t,n,r,i,o,s,a=x.event.special,u=0;for(;(n=e[u])!==undefined;u++){if(F.accepts(n)&&(o=n[q.expando],o&&(t=q.cache[o]))){if(r=Object.keys(t.events||{}),r.length)for(s=0;(i=r[s])!==undefined;s++)a[i]?x.event.remove(n,i):x.removeEvent(n,i,t.handle);q.cache[o]&&delete q.cache[o]}delete L.cache[n[L.expando]]}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}});function pt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ft(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function ht(e){var t=ut.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function dt(e,t){var n=e.length,r=0;for(;n>r;r++)q.set(e[r],"globalEval",!t||q.get(t[r],"globalEval"))}function gt(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(q.hasData(e)&&(o=q.access(e),s=q.set(t,o),l=o.events)){delete s.handle,s.events={};for(i in l)for(n=0,r=l[i].length;r>n;n++)x.event.add(t,i,l[i][n])}L.hasData(e)&&(a=L.access(e),u=x.extend({},a),L.set(t,u))}}function mt(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"*"):e.querySelectorAll?e.querySelectorAll(t||"*"):[];return t===undefined||t&&x.nodeName(e,t)?x.merge([e],n):n}function yt(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ot.test(e.type)?t.checked=e.checked:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}x.fn.extend({wrapAll:function(e){var t;return x.isFunction(e)?this.each(function(t){x(this).wrapAll(e.call(this,t))}):(this[0]&&(t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var vt,xt,bt=/^(none|table(?!-c[ea]).+)/,wt=/^margin/,Tt=RegExp("^("+b+")(.*)$","i"),Ct=RegExp("^("+b+")(?!px)[a-z%]+$","i"),kt=RegExp("^([+-])=("+b+")","i"),Nt={BODY:"block"},Et={position:"absolute",visibility:"hidden",display:"block"},St={letterSpacing:0,fontWeight:400},jt=["Top","Right","Bottom","Left"],Dt=["Webkit","O","Moz","ms"];function At(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=Dt.length;while(i--)if(t=Dt[i]+n,t in e)return t;return r}function Lt(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function qt(t){return e.getComputedStyle(t,null)}function Ht(e,t){var n,r,i,o=[],s=0,a=e.length;for(;a>s;s++)r=e[s],r.style&&(o[s]=q.get(r,"olddisplay"),n=r.style.display,t?(o[s]||"none"!==n||(r.style.display=""),""===r.style.display&&Lt(r)&&(o[s]=q.access(r,"olddisplay",Rt(r.nodeName)))):o[s]||(i=Lt(r),(n&&"none"!==n||!i)&&q.set(r,"olddisplay",i?n:x.css(r,"display"))));for(s=0;a>s;s++)r=e[s],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[s]||"":"none"));return e}x.fn.extend({css:function(e,t){return x.access(this,function(e,t,n){var r,i,o={},s=0;if(x.isArray(t)){for(r=qt(e),i=t.length;i>s;s++)o[t[s]]=x.css(e,t[s],!1,r);return o}return n!==undefined?x.style(e,t,n):x.css(e,t)},e,t,arguments.length>1)},show:function(){return Ht(this,!0)},hide:function(){return Ht(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Lt(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=vt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,s,a=x.camelCase(t),u=e.style;return t=x.cssProps[a]||(x.cssProps[a]=At(u,a)),s=x.cssHooks[t]||x.cssHooks[a],n===undefined?s&&"get"in s&&(i=s.get(e,!1,r))!==undefined?i:u[t]:(o=typeof n,"string"===o&&(i=kt.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(x.css(e,t)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||x.cssNumber[a]||(n+="px"),x.support.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),s&&"set"in s&&(n=s.set(e,n,r))===undefined||(u[t]=n)),undefined)}},css:function(e,t,n,r){var i,o,s,a=x.camelCase(t);return t=x.cssProps[a]||(x.cssProps[a]=At(e.style,a)),s=x.cssHooks[t]||x.cssHooks[a],s&&"get"in s&&(i=s.get(e,!0,n)),i===undefined&&(i=vt(e,t,r)),"normal"===i&&t in St&&(i=St[t]),""===n||n?(o=parseFloat(i),n===!0||x.isNumeric(o)?o||0:i):i}}),vt=function(e,t,n){var r,i,o,s=n||qt(e),a=s?s.getPropertyValue(t)||s[t]:undefined,u=e.style;return s&&(""!==a||x.contains(e.ownerDocument,e)||(a=x.style(e,t)),Ct.test(a)&&wt.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=s.width,u.width=r,u.minWidth=i,u.maxWidth=o)),a};function Ot(e,t,n){var r=Tt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function Ft(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,s=0;for(;4>o;o+=2)"margin"===n&&(s+=x.css(e,n+jt[o],!0,i)),r?("content"===n&&(s-=x.css(e,"padding"+jt[o],!0,i)),"margin"!==n&&(s-=x.css(e,"border"+jt[o]+"Width",!0,i))):(s+=x.css(e,"padding"+jt[o],!0,i),"padding"!==n&&(s+=x.css(e,"border"+jt[o]+"Width",!0,i)));return s}function Pt(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=qt(e),s=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=vt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Ct.test(i))return i;r=s&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+Ft(e,t,n||(s?"border":"content"),r,o)+"px"}function Rt(e){var t=o,n=Nt[e];return n||(n=Mt(e,t),"none"!==n&&n||(xt=(xt||x("